Skip to content

Instantly share code, notes, and snippets.

@asvnpr
Last active February 27, 2020 18:20
Show Gist options
  • Save asvnpr/edc04141f7e0718551b54876c95803de to your computer and use it in GitHub Desktop.
Save asvnpr/edc04141f7e0718551b54876c95803de to your computer and use it in GitHub Desktop.
topic_modeling demo.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"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.6.9"
},
"colab": {
"name": "topic_modeling demo.ipynb",
"provenance": [],
"collapsed_sections": [],
"include_colab_link": true
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/asvnpr/edc04141f7e0718551b54876c95803de/topic_modeling-demo.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "wehaECjm8Z4t",
"colab_type": "text"
},
"source": [
"# Service Text Content : Topic Model\n",
"\n",
"See how the text is spread in our data through topic modeling\n"
]
},
{
"cell_type": "code",
"metadata": {
"id": "a73qer_zPJLy",
"colab_type": "code",
"outputId": "44991665-07fd-48db-caa6-41132b087350",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 515
}
},
"source": [
"!pip3 install gdown tqdm pyldavis"
],
"execution_count": 1,
"outputs": [
{
"output_type": "stream",
"text": [
"Requirement already satisfied: gdown in /usr/local/lib/python3.6/dist-packages (3.6.4)\n",
"Requirement already satisfied: tqdm in /usr/local/lib/python3.6/dist-packages (4.28.1)\n",
"Requirement already satisfied: pyldavis in /usr/local/lib/python3.6/dist-packages (2.1.2)\n",
"Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from gdown) (1.12.0)\n",
"Requirement already satisfied: requests in /usr/local/lib/python3.6/dist-packages (from gdown) (2.21.0)\n",
"Requirement already satisfied: numexpr in /usr/local/lib/python3.6/dist-packages (from pyldavis) (2.7.1)\n",
"Requirement already satisfied: pytest in /usr/local/lib/python3.6/dist-packages (from pyldavis) (3.6.4)\n",
"Requirement already satisfied: pandas>=0.17.0 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (0.25.3)\n",
"Requirement already satisfied: joblib>=0.8.4 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (0.14.1)\n",
"Requirement already satisfied: wheel>=0.23.0 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (0.34.2)\n",
"Requirement already satisfied: funcy in /usr/local/lib/python3.6/dist-packages (from pyldavis) (1.14)\n",
"Requirement already satisfied: scipy>=0.18.0 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (1.4.1)\n",
"Requirement already satisfied: numpy>=1.9.2 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (1.17.5)\n",
"Requirement already satisfied: future in /usr/local/lib/python3.6/dist-packages (from pyldavis) (0.16.0)\n",
"Requirement already satisfied: jinja2>=2.7.2 in /usr/local/lib/python3.6/dist-packages (from pyldavis) (2.11.1)\n",
"Requirement already satisfied: urllib3<1.25,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests->gdown) (1.24.3)\n",
"Requirement already satisfied: idna<2.9,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests->gdown) (2.8)\n",
"Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests->gdown) (3.0.4)\n",
"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests->gdown) (2019.11.28)\n",
"Requirement already satisfied: atomicwrites>=1.0 in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (1.3.0)\n",
"Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (45.1.0)\n",
"Requirement already satisfied: pluggy<0.8,>=0.5 in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (0.7.1)\n",
"Requirement already satisfied: attrs>=17.4.0 in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (19.3.0)\n",
"Requirement already satisfied: py>=1.5.0 in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (1.8.1)\n",
"Requirement already satisfied: more-itertools>=4.0.0 in /usr/local/lib/python3.6/dist-packages (from pytest->pyldavis) (8.2.0)\n",
"Requirement already satisfied: python-dateutil>=2.6.1 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.17.0->pyldavis) (2.6.1)\n",
"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.17.0->pyldavis) (2018.9)\n",
"Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib/python3.6/dist-packages (from jinja2>=2.7.2->pyldavis) (1.1.1)\n"
],
"name": "stdout"
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "CXWz_ZR5cQhO",
"colab_type": "text"
},
"source": [
"## GSDMM Topic Modeling \n",
"( Gibbs Sampling\n",
"algorithm for the Dirichlet Multinomial Mixture model for\n",
"short text clustering) \n",
"Designed for short texts. Converges relatively quickly. [See paper](http://dbgroup.cs.tsinghua.edu.cn/wangjy/papers/KDD14-GSDMM.pdf). Following this [guide](https://towardsdatascience.com/short-text-topic-modeling-70e50a57c883)"
]
},
{
"cell_type": "code",
"metadata": {
"id": "c2vAWxuGeKi9",
"colab_type": "code",
"colab": {}
},
"source": [
"# following this writeup: https://towardsdatascience.com/short-text-topic-modeling-70e50a57c883\n",
"\n",
"# STTM lib from Github\n",
"\n",
"import pyLDAvis\n",
"import json\n",
"import os\n",
"from tqdm import tqdm, trange\n",
"# import pandas as pd\n",
"# import numpy as np\n",
"import gdown"
],
"execution_count": 0,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "_JWQwgp7tHi_",
"colab_type": "text"
},
"source": [
"### Download GSDMM Topic Model visualization and display"
]
},
{
"cell_type": "code",
"metadata": {
"id": "0SMtUDYgh6yU",
"colab_type": "code",
"outputId": "0f269a02-0dd1-49f2-cb3a-7211afb4cfc5",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 88
}
},
"source": [
"vis_file = 'pyLDAvis.json'\n",
"vis_url = 'https://drive.google.com/uc?id=1AUCu7QC85xkdaJebWVwbxw5DX-d0qyqy'\n",
"gdown.download(vis_url, vis_file, quiet=False)\n",
"\n",
"if os.path.exists(vis_file):\n",
" with open(vis_file) as f:\n",
" prep_data = json.load(f)\n",
" ldavis_prep_data = pyLDAvis.PreparedData(\n",
" topic_coordinates=prep_data['mdsDat'],\n",
" topic_info=prep_data['tinfo'],\n",
" token_table=prep_data['token.table'],\n",
" R=prep_data['R'],\n",
" lambda_step=prep_data['lambda.step'],\n",
" plot_opts=prep_data['plot.opts'],\n",
" topic_order=prep_data['topic.order']\n",
" )\n",
" def to_dict():\n",
" return prep_data\n",
" ldavis_prep_data.to_dict = to_dict\n",
"else:\n",
" print('ERROR! Visualization data file does not exist...')\n"
],
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"text": [
"Downloading...\n",
"From: https://drive.google.com/uc?id=1AUCu7QC85xkdaJebWVwbxw5DX-d0qyqy\n",
"To: /content/pyLDAvis.json\n",
"100%|██████████| 392k/392k [00:00<00:00, 61.4MB/s]\n"
],
"name": "stderr"
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "gnBhOnPH187e",
"colab_type": "code",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 861
},
"outputId": "319d6eb8-a78d-4958-9c20-05e4c45f86f2"
},
"source": [
"pyLDAvis.display(ldavis_prep_data)"
],
"execution_count": 4,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/html": [
"\n",
"<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css\">\n",
"\n",
"\n",
"<div id=\"ldavis_el8371405438089155206449921432\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el8371405438089155206449921432_data = {\"mdsDat\": {\"x\": [-157.0683135986328, -29.18461799621582, 75.21026611328125, -136.37696838378906, 13.511815071105957, -76.70690155029297, -99.0778579711914, 137.46820068359375, -43.97426986694336, -43.669185638427734, 0.620433509349823, 70.11038208007812, -100.59305572509766, 75.86831665039062, 87.5549545288086, -69.06086730957031, 115.11629486083984, 30.58905029296875, -160.81356811523438, 138.0100555419922, 15.351123809814453, 10.904839515686035, 39.229736328125, -88.58614349365234, -28.109970092773438], \"y\": [-10.944620132446289, 119.14608001708984, 55.861595153808594, -86.61174774169922, 44.31654739379883, 168.01365661621094, 100.30857849121094, 7.732316493988037, 2.4529268741607666, 61.07630920410156, -126.78361511230469, -5.224271297454834, 29.705629348754883, -122.7475814819336, 137.25604248046875, -117.64570617675781, -59.610435485839844, 101.8108901977539, 68.44844818115234, 80.57588958740234, 174.06019592285156, -12.363207817077637, -65.61944580078125, -39.20649719238281, -61.89720153808594], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25], \"cluster\": [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], \"Freq\": [40.2189059303144, 5.891990402441421, 4.844938857459485, 4.199173922716332, 3.5312767309409936, 3.184644829519498, 3.073980563916806, 2.9977791431106704, 2.9518882422587422, 2.715252046865349, 2.599906370041993, 2.437765289878626, 2.4045135212218396, 2.183601858553305, 2.02792637445735, 1.8368255953001673, 1.826213537578876, 1.5488181758122967, 1.4771215461978655, 1.4533080178719855, 1.3881393028257287, 1.3692574352239648, 1.325474399365746, 1.28136344336891, 1.2299344627576605]}, \"tinfo\": {\"Category\": [\"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\"], \"Freq\": [611140.0, 139598.0, 319887.0, 148785.0, 234924.0, 235519.0, 321473.0, 349653.0, 271487.0, 277843.0, 149507.0, 116846.0, 64504.0, 310305.0, 98008.0, 171976.0, 41381.0, 73107.0, 107763.0, 201467.0, 281.2164134887468, 1874.7760899249788, 1546.6902741881077, 2296.600710158099, 2015.3842966693521, 468.6940224812447, 4218.246202331202, 234.34701124062235, 234.34701124062235, 281.2164134887468, 140.6082067443734, 1124.8656539549872, 937.3880449624894, 140.6082067443734, 562.4328269774936, 468.6940224812447, 234.34701124062235, 140.6082067443734, 140.6082067443734, 6327.369303496804, 232706.58216193801, 316368.4651748402, 59945.9654753512, 93926.28210524144, 73678.70033405167, 56149.54389325311, 58352.405798914966, 61211.43933605056, 312478.3047882459, 105174.93864479131, 41573.15979408641, 50009.65219874881, 197460.7916713484, 48744.178338049445, 24465.827973520976, 38526.64864795831, 23434.701124062234, 83005.71138142842, 34917.704674852735, 20294.451173437898, 85817.87551631591, 42838.63365478577, 64070.47287318615, 330476.1552515257, 261578.13394678268, 290590.29393837176, 551465.3868514325, 252860.42512863153, 243908.36929923974, 516407.0739698354, 218645.76148750065, 566932.2895933136, 161418.22134254067, 252391.73110615028, 180540.93745977548, 127765.99052838731, 176369.5606596924, 200507.3028174765, 141030.03136460655, 155793.89307276576, 158746.66541439758, 480.63924982150775, 398.2439498521064, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 549.3019997960089, 6.866274997450111, 6.866274997450111, 1098.6039995920178, 1098.6039995920178, 549.3019997960089, 398.2439498521064, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 2554.254299051441, 432.575324839357, 446.3078748342572, 6.866274997450111, 851.4180996838137, 487.50552481895784, 487.50552481895784, 2561.1205740488913, 2561.1205740488913, 418.84277484445676, 1654.7722743854767, 1647.9059993880267, 480.63924982150775, 988.7435996328161, 4085.433623482816, 3158.486498827051, 12558.416970336253, 25302.223365603655, 7552.902497195122, 8830.029646720843, 8747.634346751442, 5534.21764794479, 8527.913546833037, 45770.58913300244, 14920.41556945909, 8781.965721738692, 8507.314721840688, 6701.484397511308, 14117.061394757427, 4840.723873202328, 15352.99089429845, 8260.128821932483, 11178.295695848781, 8555.378646822837, 13581.491944956319, 8960.488871672394, 7889.349972070177, 8898.692396695344, 7188.989922330266, 50.81477097217892, 5.646085663575435, 11.29217132715087, 79.04519929005609, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 11.29217132715087, 11.29217132715087, 11.29217132715087, 587.1929090118452, 553.3163950303926, 553.3163950303926, 553.3163950303926, 242.7816835337437, 214.55125521586652, 146.7982272529613, 95.98345628078239, 90.33737061720696, 84.69128495363152, 84.69128495363152, 73.39911362648066, 67.75302796290522, 67.75302796290522, 67.75302796290522, 67.75302796290522, 67.75302796290522, 56.46085663575435, 56.46085663575435, 56.46085663575435, 479.917281403912, 67.75302796290522, 333.11905415095066, 700.1146222833539, 242.7816835337437, 1072.7562760793326, 750.9293932555328, 2021.2986675600057, 474.2711957403365, 462.9790244131857, 2501.2159489639175, 9666.098656041144, 3190.038399920121, 632.3615943204487, 10479.134991596007, 1767.2248126991112, 10213.768965407962, 5759.007376846944, 4251.502504672302, 3444.112254781015, 5064.538840227165, 2868.2115170963207, 3811.1078229134187, 5036.308411909288, 6080.834259670743, 8593.342379961812, 2732.7054611705103, 5245.2135814615785, 5809.822147819123, 7447.186990255998, 5166.168382171523, 4200.687733700123, 3952.2599645028045, 3393.2974838088367, 3342.4827128366574, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 9.787077352856672, 4.893538676428336, 39.14830941142669, 171.27385367499176, 4.893538676428336, 39.14830941142669, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 73.40308014642504, 278.9317045564152, 278.9317045564152, 171.27385367499176, 171.27385367499176, 171.27385367499176, 166.38031499856342, 97.87077352856672, 92.97723485213838, 92.97723485213838, 83.19015749928171, 73.40308014642504, 68.5095414699967, 29.361232058570014, 24.46769338214168, 19.574154705713344, 14.680616029285007, 92.97723485213838, 92.97723485213838, 342.5477073499835, 332.76062999712684, 1252.745901165654, 626.372950582827, 611.692334553542, 391.48309411426686, 229.9963177921318, 1218.4911304306559, 6850.95414699967, 1908.480083807051, 293.61232058570016, 327.86709132069853, 924.8788098449554, 2671.872117329872, 10824.50755225948, 1424.0197548406459, 738.9243401406787, 2221.6665590984644, 743.817878817107, 1590.4000698392092, 6753.083373471103, 3454.8383055584054, 4066.5306401119474, 1903.5865451306227, 7315.8403212603625, 773.1791108756771, 5612.888861863301, 11617.260817840868, 2280.3890232156045, 3435.2641508526917, 9048.153012715993, 3342.2869160005534, 4120.359565552659, 4076.317717464804, 4663.542358636204, 5001.196527309759, 3689.7281620269655, 2588.6819598305897, 2730.594581447012, 2666.978578653443, 4.115199698338031, 8.230399396676061, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 8.230399396676061, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 8.230399396676061, 4.115199698338031, 2024.6782515823113, 674.8927505274371, 674.8927505274371, 674.8927505274371, 674.8927505274371, 674.8927505274371, 485.59356440388757, 127.57119064847895, 127.57119064847895, 127.57119064847895, 90.53439336343668, 82.30399396676061, 57.612795776732426, 53.4975960783944, 32.921597586704245, 32.921597586704245, 28.806397888366213, 28.806397888366213, 28.806397888366213, 28.806397888366213, 1353.900700753212, 539.091160482282, 510.2847625939158, 10822.97520662902, 242.79678220194378, 1806.5726675703954, 1329.2095025631838, 530.860761085606, 337.44637526371855, 518.5151619905919, 1432.0894950216345, 1411.5134965299446, 8909.407346901837, 2008.217452788959, 4456.761273300087, 1440.3198944183107, 4777.746849770453, 1917.6830594255223, 2823.0269930598893, 2576.115011159607, 6995.839487174651, 5868.274769830032, 2691.340602713072, 2279.820632879269, 2687.2254030147337, 3045.247776770143, 2851.8333909482553, 2316.857430164311, 2049.3694497723395, 2144.019042834114, 2246.899035292565, 2234.5534361975506, 2115.212644945748, 3.7112496245119098, 7.4224992490238195, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 7.4224992490238195, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 4382.985806548565, 2189.6372784620266, 100.20373986182157, 2211.904776209098, 37.1124962451191, 29.689996996095278, 22.267497747071456, 22.267497747071456, 18.55624812255955, 14.844998498047639, 14.844998498047639, 14.844998498047639, 14.844998498047639, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 7.4224992490238195, 2193.3485280865384, 96.49249023730965, 11801.773805947872, 2200.7710273355624, 2197.0597777110506, 2189.6372784620266, 1517.9010964253712, 760.8061730249415, 2197.0597777110506, 2189.6372784620266, 2197.0597777110506, 2189.6372784620266, 33430.93661760328, 2189.6372784620266, 2267.573520576777, 2237.8835235806814, 2234.1722739561696, 2300.974767197384, 2271.2847702012887, 5585.430684890424, 7040.240537699093, 2579.318489035777, 2753.747221387837, 2423.446004806277, 2308.3972664464077, 2219.327275458122, 2211.904776209098, 254.34231995262274, 7.1645723930316265, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 7.1645723930316265, 3.5822861965158133, 28.658289572126506, 7.1645723930316265, 3.5822861965158133, 3.5822861965158133, 17.911430982579066, 10.74685858954744, 286.58289572126506, 286.58289572126506, 254.34231995262274, 214.9371717909488, 53.7342929477372, 50.152006751221386, 42.98743435818976, 42.98743435818976, 39.40514816167395, 32.24057576864232, 254.34231995262274, 28.658289572126506, 28.658289572126506, 21.49371717909488, 17.911430982579066, 17.911430982579066, 17.911430982579066, 125.38001687805347, 125.38001687805347, 57.31657914425301, 630.4823705867832, 268.671464738686, 1339.7750374969141, 1841.295105009128, 225.68403038049627, 677.0520911414887, 5316.112715629467, 2324.903741538763, 171.94973743275904, 286.58289572126506, 247.17774755959115, 2242.5111590188994, 2410.8786102551426, 988.7109902383646, 3241.969007846811, 659.1406601589097, 1902.193970349897, 1089.0150037408073, 895.5715491289534, 777.3561046439315, 3012.7026912697993, 540.9252156738878, 1622.7756470216634, 1529.6362059122523, 1336.1927513003984, 1135.5847242955128, 1715.9150881310745, 4442.034883679608, 2052.649990603561, 2249.675731411931, 2378.6380344865, 1658.5985089868216, 2246.093445215415, 2174.447721285099, 1612.0287884321162, 1572.6236402704421, 1551.1299230913473, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 6.986968603916647, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 41.921811623499885, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 10.480452905874971, 13.973937207833295, 3.4934843019583237, 3.4934843019583237, 834.9427481680393, 834.9427481680393, 779.0469993367062, 779.0469993367062, 779.0469993367062, 779.0469993367062, 331.8810086860408, 62.88271743524983, 17.46742150979162, 13.973937207833295, 13.973937207833295, 6.986968603916647, 6.986968603916647, 6.986968603916647, 6.986968603916647, 6.986968603916647, 834.9427481680393, 779.0469993367062, 779.0469993367062, 6.986968603916647, 779.0469993367062, 779.0469993367062, 782.5404836386645, 779.0469993367062, 834.9427481680393, 45.41529592545821, 1558.0939986734124, 1561.5874829753707, 1984.2990835123278, 293.4526813644992, 834.9427481680393, 9554.679565856015, 3510.9517234681152, 10187.000224510472, 4583.451404169321, 1565.080967277329, 7825.404836386646, 2424.4781055590765, 1565.080967277329, 2295.2191863866187, 1600.0158102969124, 2054.1687695514943, 1921.416366077078, 2592.1653520530763, 2103.077549778911, 1778.1835096967866, 1453.2894696146627, 950.2277301326641, 1264.6413173089131, 3.440004998088533, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 708.6410296062379, 629.5209146502016, 295.84042983561386, 1685.6024490633813, 48.160069973239466, 44.72006497515093, 30.960044982796802, 17.200024990442667, 13.760019992354133, 13.760019992354133, 13.760019992354133, 13.760019992354133, 10.3200149942656, 10.3200149942656, 10.3200149942656, 10.3200149942656, 6.880009996177066, 6.880009996177066, 6.880009996177066, 6.880009996177066, 708.6410296062379, 333.68048481458777, 151.36021991589547, 6.880009996177066, 61.920089965593604, 708.6410296062379, 4341.286307587729, 14864.261596740555, 1967.682858906641, 144.4802099197184, 712.0810346043264, 2707.2839334956757, 27.520039984708266, 240.80034986619734, 34.400049980885335, 388.7205647840043, 698.3210146119723, 708.6410296062379, 1981.4428788989953, 5232.247602092659, 626.0809096521131, 4650.886757415697, 1692.4824590595586, 3577.6051980120747, 4093.605947725355, 3808.0855328840066, 7998.01162055584, 4093.605947725355, 983.8414294533205, 2920.5642433771645, 1551.4422541379286, 1706.2424790519124, 1565.2022741302826, 1097.361594390242, 2067.4430038512087, 1695.922464057647, 3.164239241367661, 9.492717724102983, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 6.328478482735322, 56.95630634461791, 37.97087089641193, 34.80663165504428, 34.80663165504428, 34.80663165504428, 34.80663165504428, 34.80663165504428, 28.478153172308954, 22.149674689573626, 18.985435448205966, 18.985435448205966, 15.821196206838305, 12.656956965470645, 12.656956965470645, 12.656956965470645, 9.492717724102983, 9.492717724102983, 9.492717724102983, 9.492717724102983, 310.0954456540308, 310.0954456540308, 411.35110137779594, 3202.2101122640734, 1110.647973720049, 34.80663165504428, 654.9975229631059, 230.98946461983928, 303.76696717129545, 367.0517519986487, 1882.7223486137584, 632.8478482735322, 1294.1738497193735, 2831.9941210240568, 1075.841342065005, 275.2888139989865, 91.76293799966217, 91.76293799966217, 762.5816571696064, 310.0954456540308, 1012.5565572376515, 984.0784040653426, 3072.476303367999, 1246.7102610988586, 1414.4149408913445, 1936.5144157170084, 2148.518444888642, 2819.337164058586, 5831.692921840599, 4088.1970998470183, 2107.383334750862, 2256.1025790951426, 974.5856863412396, 1382.772548477668, 1433.4003763395506, 1379.6083092363, 1325.8162421330499, 1281.5168927539028, 1227.7248256506525, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 6.059640591720429, 6.059640591720429, 3.0298202958602145, 3.0298202958602145, 24.238562366881716, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 6.059640591720429, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 242.38562366881717, 199.96813952677417, 175.72957715989244, 175.72957715989244, 175.72957715989244, 139.37173360956987, 139.37173360956987, 121.19281183440859, 121.19281183440859, 121.19281183440859, 96.95424946752686, 72.71568710064514, 69.68586680478494, 69.68586680478494, 490.83088792935473, 54.53676532548387, 54.53676532548387, 54.53676532548387, 51.506945029623644, 51.506945029623644, 51.506945029623644, 51.506945029623644, 106.0437103551075, 51.506945029623644, 51.506945029623644, 460.53268497075265, 736.2463318940322, 4893.159777814247, 69.68586680478494, 242.38562366881717, 890.7671669829031, 175.72957715989244, 130.28227272198922, 1645.1924206520964, 2278.4248624868815, 624.1429809472043, 266.62418603569887, 415.0853805328494, 745.3357927816129, 718.067410118871, 1072.5563847345159, 1233.1368604151073, 1227.077219823387, 1875.458763137473, 2696.540063315591, 693.8288477519891, 1169.5106342020429, 902.8864481663439, 1393.7173360956986, 1317.9718286991933, 1539.1487102969888, 1118.0036891724192, 1133.1527906517204, 1069.5265644386557, 902.8864481663439, 960.453033787688, 960.453033787688, 2.840867977756647, 2.840867977756647, 17.045207866539883, 68.18083146615953, 2.840867977756647, 2.840867977756647, 39.772151688593055, 161.92947473212888, 8.522603933269941, 17.045207866539883, 267.0415899091248, 17.045207866539883, 267.0415899091248, 2.840867977756647, 267.0415899091248, 17.045207866539883, 267.0415899091248, 25.567811799809824, 2.840867977756647, 19.886075844296528, 767.0343539942947, 267.0415899091248, 267.0415899091248, 267.0415899091248, 267.0415899091248, 71.02169944391618, 71.02169944391618, 68.18083146615953, 68.18083146615953, 68.18083146615953, 68.18083146615953, 45.45388764410635, 1849.4050535195772, 420.44846070798377, 857.9421292825074, 7613.526180387814, 1232.936702346385, 207.38336237623523, 548.2875197070329, 267.0415899091248, 267.0415899091248, 267.0415899091248, 985.7811882815565, 1874.972865319387, 1281.231457968248, 420.44846070798377, 3406.2007053302195, 1701.6799186762314, 1877.8137332971437, 1164.7558708802253, 951.6907725484767, 1545.432179899616, 1372.1392332564606, 2480.0777445815525, 3502.7902165739456, 1596.5678034992357, 1244.3001742574115, 1488.614820344483, 1596.5678034992357, 960.2133764817466, 974.41771637053, 974.41771637053, 5.604235561875693, 11.208471123751385, 5.604235561875693, 5.604235561875693, 42.03176671406769, 8.406353342813539, 473.55790497849597, 2.8021177809378464, 8.406353342813539, 2.8021177809378464, 33.625413371254155, 11.208471123751385, 106.48047567563816, 2.8021177809378464, 2.8021177809378464, 8.406353342813539, 5.604235561875693, 8.406353342813539, 11.208471123751385, 2.8021177809378464, 473.55790497849597, 473.55790497849597, 367.07742930285787, 367.07742930285787, 42.03176671406769, 19.614824466564922, 19.614824466564922, 16.812706685627077, 11.208471123751385, 11.208471123751385, 8.406353342813539, 252.19060028440614, 285.8160136556603, 473.55790497849597, 297.0244847794117, 291.420249217536, 285.8160136556603, 285.8160136556603, 476.36002275943383, 151.3143601706437, 196.14824466564923, 196.14824466564923, 689.3209741107102, 882.6671009954215, 4332.07408932991, 484.7663761022474, 515.5896716925637, 1331.005945945477, 734.1548586057157, 2925.4109632991117, 3673.5764108095163, 3483.032401705743, 1801.7617331430351, 580.0383806541341, 560.4235561875693, 975.1369877663703, 2115.598924608074, 1003.158165575749, 1025.5751078232515, 1123.6492301560763, 1132.0555834988897, 1174.0873502129573, 1740.1151419624025, 1541.1647795158153, 787.3950964435347, 1017.1687544804381, 863.0522765288566, 1146.066172403579, 1104.0344056895115, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 5.089353451613745, 12.72338362903436, 2.5446767258068723, 2.5446767258068723, 20.35741380645498, 2.5446767258068723, 10.17870690322749, 2.5446767258068723, 5.089353451613745, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 7.634030177420616, 27.991443983875595, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 142.50189664518484, 142.50189664518484, 35.62547416129621, 27.991443983875595, 27.991443983875595, 27.991443983875595, 25.44676725806872, 25.44676725806872, 25.44676725806872, 20.35741380645498, 20.35741380645498, 17.812737080648105, 15.268060354841232, 15.268060354841232, 15.268060354841232, 15.268060354841232, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 221.38687514519788, 27.991443983875595, 22.90209053226185, 122.14448283872986, 498.75663825814695, 142.50189664518484, 142.50189664518484, 234.11025877423225, 150.13592682260546, 241.74428895165286, 740.5009272097999, 1425.0189664518484, 218.842198419391, 221.38687514519788, 96.69771558066115, 152.68060354841234, 73.7956250483993, 142.50189664518484, 147.5912500967986, 832.1092893388471, 552.1948495000913, 1147.6492033388995, 1022.9600437743626, 493.66728480653325, 2226.5921350810136, 1333.410604322801, 1170.551293871161, 348.6207114355415, 1073.8535782905, 1015.326013596942, 1211.2661214840712, 763.4030177420616, 379.156832145224, 839.7433195162678, 625.9904745484906, 506.3906684355676, 486.0332546291126, 524.2034055162158, 68.5345150119825, 49.628441905228705, 99.25688381045741, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 4.726518276688449, 4.726518276688449, 2.3632591383442243, 11.816295691721121, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 7.089777415032673, 2.3632591383442243, 7.089777415032673, 222.1463590043571, 11.816295691721121, 2.3632591383442243, 129.97925260893234, 42.53866449019604, 40.175405351851815, 33.08562793681914, 30.722368798474918, 155.97510313071882, 96.8936246721132, 16.54281396840957, 16.54281396840957, 14.179554830065346, 11.816295691721121, 11.816295691721121, 11.816295691721121, 11.816295691721121, 44.90192362854027, 40.175405351851815, 61.444737596949835, 155.97510313071882, 224.5096181427013, 205.60354503594752, 836.5937349738554, 760.9694425468402, 1018.5646886263606, 1755.9015397897585, 959.4832101677551, 229.23613641938977, 739.7001103017423, 1271.4334164291927, 224.5096181427013, 1165.0867552037028, 205.60354503594752, 2843.000743428102, 1640.1018420108917, 2351.442842652503, 607.3575985544657, 853.136548942265, 957.1199510294108, 300.1339105697165, 942.9403961993455, 931.1241005076245, 742.0633694400864, 609.7208576928099, 1018.5646886263606, 801.144847898692, 720.7940371949884, 777.5122565152498, 6.421675256527887, 2.140558418842629, 4.281116837685258, 2.140558418842629, 14.983908931898403, 4.281116837685258, 4.281116837685258, 2.140558418842629, 2.140558418842629, 12.843350513055775, 2.140558418842629, 2.140558418842629, 2.140558418842629, 2.140558418842629, 6.421675256527887, 2.140558418842629, 2.140558418842629, 6.421675256527887, 2.140558418842629, 4.281116837685258, 248.30477658574497, 57.79507730875099, 44.95172679569521, 40.670609958009955, 40.670609958009955, 40.670609958009955, 23.546142607268923, 23.546142607268923, 19.265025769583662, 17.124467350741032, 12.843350513055775, 10.702792094213146, 10.702792094213146, 8.562233675370516, 6.421675256527887, 6.421675256527887, 6.421675256527887, 6.421675256527887, 83.48177833486253, 6.421675256527887, 6.421675256527887, 389.58163222935855, 57.79507730875099, 6.421675256527887, 291.11594496259755, 209.77472504657766, 1275.772817630207, 177.6663487639382, 652.8703177470019, 652.8703177470019, 725.6493039876513, 455.93894321348006, 216.19640030310555, 192.65025769583661, 115.59015461750198, 252.58589342343024, 162.68243983203982, 196.93137453352188, 622.9024998832051, 171.24467350741034, 194.79081611467927, 1074.5603262589998, 592.9346820194083, 556.5451888990835, 862.6450427935796, 468.78229372653584, 948.2673795472846, 468.78229372653584, 308.2404123133386, 552.2640720613983, 532.9990462918147, 477.3445274019063, 445.2361511192669, 496.60955317148995, 415.26833325547005, 400.28442432357167, 2.1281915781612515, 70.2303220793213, 4.256383156322503, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 40.43563998506377, 76.61489681380505, 2.1281915781612515, 2.1281915781612515, 4.256383156322503, 2.1281915781612515, 23.410107359773765, 2.1281915781612515, 40.43563998506377, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 280.9212883172852, 61.71755576667629, 40.43563998506377, 40.43563998506377, 27.666490516096268, 25.538298937935014, 23.410107359773765, 23.410107359773765, 23.410107359773765, 23.410107359773765, 23.410107359773765, 17.025532625290012, 12.769149468967507, 12.769149468967507, 8.512766312645006, 1683.3995383255497, 5888.706096772183, 549.0734271656029, 108.5377704862238, 759.7643934035667, 7535.92637826899, 729.9697113093092, 61.71755576667629, 61.71755576667629, 978.9681259541755, 602.2782166196341, 1372.683567914007, 712.9441786840192, 206.4345830816414, 1015.1473827829168, 329.86969461499393, 1138.5824943162695, 5269.402347527259, 883.1995049369193, 583.1244924161829, 563.9707682127316, 527.7915113839903, 470.3303387736365, 523.5351282276679, 515.0223619150228, 640.5856650265366, 840.6356733736942, 663.9957723863104, 542.6888524311191, 3.60985364530454, 1.80492682265227, 3.60985364530454, 3.60985364530454, 1.80492682265227, 1.80492682265227, 18.0492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 3.60985364530454, 1.80492682265227, 7.21970729060908, 10.82956093591362, 19.85419504917497, 28.87882916243632, 19.85419504917497, 19.85419504917497, 16.24434140387043, 16.24434140387043, 14.43941458121816, 10.82956093591362, 7.21970729060908, 5.41478046795681, 3.60985364530454, 3.60985364530454, 3.60985364530454, 3.60985364530454, 3.60985364530454, 158.83356039339975, 158.83356039339975, 9.02463411326135, 158.83356039339975, 48.733024211611294, 48.733024211611294, 48.733024211611294, 490.9400957614174, 122.73502394035435, 135.36951169892023, 1147.9334592068435, 530.6484858597673, 285.17843797905863, 1102.8102886405368, 157.02863357074747, 166.05326768400883, 182.29760908787927, 397.0839009834994, 158.83356039339975, 158.83356039339975, 158.83356039339975, 173.2729749746179, 312.2523403188427, 149.8089262801384, 992.7097524587484, 669.6278512039921, 877.1944358090033, 498.1598030520265, 897.0486308581781, 357.3755108851494, 444.01199837245844, 689.4820462531671, 449.42677884041524, 454.84155930837204, 299.6178525602768, 637.1391683962513, 496.3548762293742, 469.28097388959014, 444.01199837245844, 438.59721790450163, 424.1578033232834, 1.7213746201369664, 196.23670669561417, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 27.541993922191462, 1.7213746201369664, 1.7213746201369664, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 1.7213746201369664, 1.7213746201369664, 3.442749240273933, 12.049622340958763, 1.7213746201369664, 196.23670669561417, 165.25196353314877, 151.48096657205303, 56.805362464519895, 29.263368542328426, 165.25196353314877, 24.099244681917526, 12.049622340958763, 12.049622340958763, 12.049622340958763, 12.049622340958763, 10.328247720821798, 8.606873100684831, 5.164123860410899, 196.23670669561417, 184.1870843546554, 776.3399536817718, 166.97333815328574, 82.62598176657438, 345.99629864753024, 349.4390478878042, 68.85498480547865, 349.4390478878042, 296.0764346635582, 325.3398032058866, 552.5612530639662, 166.97333815328574, 366.6527940891739, 189.3512082150663, 251.32069453999708, 383.86654029054347, 512.969636800816, 986.3476573384817, 836.5880653865657, 745.3552105193064, 914.0499232927291, 796.9964491234155, 363.2100448488999, 717.8132165971149, 540.5116307230074, 318.4543047253388, 506.08413832026804, 385.5879149106804, 411.40853421273493, 390.75203877109135, 397.63753725163923, 15.242610124273133, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 3.3872466942829185, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 3.3872466942829185, 1.6936233471414592, 1.6936233471414592, 6.774493388565837, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 69.43855723279982, 66.0513105385169, 66.0513105385169, 64.35768719137545, 64.35768719137545, 64.35768719137545, 20.323480165697507, 15.242610124273133, 13.548986777131674, 10.161740082848754, 8.468116735707296, 8.468116735707296, 6.774493388565837, 5.080870041424377, 5.080870041424377, 5.080870041424377, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 33.872466942829185, 3.3872466942829185, 352.2736562054235, 718.0962991879786, 64.35768719137545, 147.34523120130694, 164.28146467272154, 71.13218057994128, 64.35768719137545, 64.35768719137545, 521.6359909195694, 74.5194272742242, 203.23480165697512, 643.5768719137544, 1302.3963539517822, 240.4945152940872, 286.22234566690656, 298.0777090968968, 242.18813864122865, 340.41829277543326, 824.7945700578906, 525.0232376138523, 623.253391748057, 377.67800641254536, 338.72466942829186, 611.3980283180667, 348.8864095111406, 680.8365855508665, 364.12901963541367, 548.7339644738328, 453.89105703391107, 276.06060558405784, 311.6266958740285, 289.60959236118947, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 30.735891473345443, 1.6176784985971286, 4.853035495791385, 1.6176784985971286, 3.2353569971942573, 1.6176784985971286, 3.2353569971942573, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 4.853035495791385, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 79.26624643125929, 50.14803345651098, 29.118212974748314, 29.118212974748314, 14.559106487374157, 12.94142798877703, 11.3237494901799, 11.3237494901799, 9.70607099158277, 8.088392492985642, 106.76678090741049, 6.470713994388515, 6.470713994388515, 6.470713994388515, 4.853035495791385, 4.853035495791385, 4.853035495791385, 32.35356997194257, 134.26731538356165, 16.176784985971285, 11.3237494901799, 59.85410444809375, 278.2407017587061, 50.14803345651098, 77.64856793266216, 346.1831986997855, 854.1342472592839, 66.32481844248227, 985.1662056456513, 51.76571195510812, 406.03730314787924, 121.32588739478463, 459.4206936015845, 105.14910240881335, 490.1565850749299, 299.2705222404688, 1095.168343550256, 765.1619298364417, 920.4590657017661, 638.9830069458658, 650.3067564360456, 509.5687270580954, 579.1289024977721, 321.91802122082856, 393.09587515910226, 870.3110322452551, 294.4174867446774, 244.2694532881664, 370.4483761787424, 347.8008771983826, 315.44730722644005, 1.5956743732398582, 1.5956743732398582, 3.1913487464797163, 1.5956743732398582, 149.99339108454666, 92.54911364791177, 1.5956743732398582, 1.5956743732398582, 1.5956743732398582, 1.5956743732398582, 54.25292869015517, 1.5956743732398582, 7.97837186619929, 12.765394985918865, 1.5956743732398582, 1.5956743732398582, 149.99339108454666, 92.54911364791177, 1.5956743732398582, 149.99339108454666, 188.28957604230325, 149.99339108454666, 92.54911364791177, 92.54911364791177, 7.97837186619929, 149.99339108454666, 6.382697492959433, 4.787023119719574, 4.787023119719574, 3.1913487464797163, 92.54911364791177, 92.54911364791177, 35.104836211276876, 299.9867821690933, 92.54911364791177, 678.1616086269396, 299.9867821690933, 149.99339108454666, 149.99339108454666, 122.86692673946906, 185.09822729582353, 1002.0835063946308, 1975.4448740709445, 185.09822729582353, 185.09822729582353, 149.99339108454666, 185.09822729582353, 978.148390796033, 863.2598359227633, 392.5358958170051, 392.5358958170051, 962.1916470636344, 298.3911077958535, 462.74556823955885, 540.9336125283119, 635.0784005494635, 459.5542194930792, 400.51426768320437, 454.7671963733596, 299.9867821690933, 311.1565027817723, 359.0267339789681, 309.5608284085325, 299.9867821690933, 1.544651485575075, 173.0009663844084, 1.544651485575075, 1.544651485575075, 6.1786059423003, 3.08930297115015, 173.0009663844084, 1.544651485575075, 4.633954456725225, 1.544651485575075, 173.0009663844084, 1.544651485575075, 1.544651485575075, 1.544651485575075, 1.544651485575075, 1.544651485575075, 101.94699804795496, 1.544651485575075, 4.633954456725225, 3.08930297115015, 173.0009663844084, 173.0009663844084, 173.0009663844084, 95.76839210565466, 142.1079366729069, 9.26790891345045, 101.94699804795496, 100.40234656237988, 4.633954456725225, 3.08930297115015, 1.544651485575075, 346.0019327688168, 444.8596278456217, 426.32381001872074, 562.2531407493274, 173.0009663844084, 173.0009663844084, 202.34934461033484, 675.0126991963077, 142.1079366729069, 173.0009663844084, 271.8586614612132, 434.0470674465961, 1107.5151151573289, 1306.7751567965136, 318.19820602846545, 457.2168397302222, 418.6005525908453, 525.1815050955255, 980.8536933401726, 675.0126991963077, 276.49261591793845, 427.8684615042958, 236.33167729298646, 364.5377505957177, 278.0372674035135, 315.1089030573153, 437.13637041774626, 335.1893723697913, 338.27867534094145, 1.4932464537289274, 2.986492907457855, 1.4932464537289274, 1.4932464537289274, 2.986492907457855, 1.4932464537289274, 5.97298581491571, 1.4932464537289274, 4.479739361186782, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 22.398696805933913, 4.479739361186782, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 13.439218083560348, 4.479739361186782, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 11.94597162983142, 11.94597162983142, 13.439218083560348, 271.7708545786648, 143.35165955797703, 37.33116134322319, 2177.1533295367763, 88.10154077000672, 1754.5645831314896, 137.3786737430613, 144.84490601170597, 176.20308154001344, 143.35165955797703, 185.162560262387, 285.2100726622252, 144.84490601170597, 144.84490601170597, 910.8803367746457, 143.35165955797703, 373.31161343223187, 298.6492907457855, 158.2841240952663, 1258.8067604934859, 418.1090070440997, 452.453675479865, 894.4546257836275, 786.9408811151447, 407.6562818679972, 286.70331911595406, 358.3791488949426, 434.5347180351179, 288.196565569683, 343.4466843576533, 352.4061630800269, 334.48720563527974, 294.1695513845987, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 41.566085910873056, 1.4333133072714845, 1.4333133072714845, 50.16596575450196, 2.866626614542969, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 55.89921898358789, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 55.89921898358789, 55.89921898358789, 55.89921898358789, 51.59927906177345, 41.566085910873056, 7.166566536357423, 2.866626614542969, 2.866626614542969, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 55.89921898358789, 51.59927906177345, 50.16596575450196, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 28.66626614542969, 28.66626614542969, 28.66626614542969, 1.4333133072714845, 57.33253229085938, 55.89921898358789, 55.89921898358789, 55.89921898358789, 51.59927906177345, 50.16596575450196, 220.73024931980862, 226.46350254889458, 994.7194352464103, 491.62646439411924, 171.99759687257816, 272.32952838158207, 487.32652447230475, 199.23054971073634, 167.6976569507637, 121.83163111807619, 170.56428356530668, 149.0645839562344, 227.89681585616603, 233.630069085252, 240.7966356216094, 623.4912886630958, 510.25953738864854, 345.4285070524278, 409.9276058796446, 242.2299489288809, 348.2951336669708, 379.82802642694344, 425.6940522596309, 338.26194051607035, 239.36332231433795, 263.72964853795315, 252.2631420797813, 236.49669569979494], \"Term\": [\"assistance\", \"food\", \"bill\", \"expense\", \"payment\", \"court\", \"case\", \"child\", \"support\", \"help\", \"group\", \"financial\", \"office\", \"care\", \"counseling\", \"housing\", \"government\", \"school\", \"abuse\", \"state\", \"exclusively\", \"converted\", \"preschoolage\", \"attends\", \"reheat\", \"reproduce\", \"pda\", \"classroombased\", \"phased\", \"outdoors\", \"planted\", \"dogcatcher\", \"padd\", \"dispenser\", \"advocatesrepresentatives\", \"voadcoad\", \"duo\", \"adoptablock\", \"incoherence\", \"chewing\", \"court\", \"case\", \"fuel\", \"gas\", \"heating\", \"involving\", \"civil\", \"childhood\", \"bill\", \"insurance\", \"superior\", \"jurisdiction\", \"state\", \"misdemeanor\", \"infraction\", \"medicare\", \"lieap\", \"tax\", \"established\", \"heap\", \"domestic\", \"claim\", \"plan\", \"child\", \"help\", \"care\", \"assistance\", \"support\", \"health\", \"service\", \"payment\", \"program\", \"housing\", \"may\", \"family\", \"medical\", \"individual\", \"provide\", \"home\", \"information\", \"people\", \"freshly\", \"hauler\", \"mortgate\", \"careassistance\", \"highrise\", \"twilight\", \"gns\", \"morrisett\", \"rentutility\", \"fagen\", \"amo\", \"presidential\", \"piankeshaw\", \"define\", \"bowman\", \"got\", \"touched\", \"preestablished\", \"cherriespeaches\", \"pastured\", \"undesignated\", \"collectionprocessing\", \"discretionary\", \"drink\", \"hayden\", \"seniorsdisabilities\", \"waterworks\", \"grissom\", \"agi\", \"aeroplex\", \"rentmortgage\", \"nonlocal\", \"greenhousegrown\", \"george\", \"mccormic\", \"cremation\", \"handcrafted\", \"baked\", \"majority\", \"interment\", \"loaninsurance\", \"token\", \"funeral\", \"burial\", \"gr\", \"watersewer\", \"bundled\", \"picked\", \"exchanged\", \"cash\", \"farmer\", \"water\", \"expense\", \"rent\", \"prescription\", \"trustee\", \"burialcremation\", \"denial\", \"assistance\", \"financial\", \"township\", \"able\", \"utility\", \"need\", \"mortgage\", \"payment\", \"transportation\", \"help\", \"income\", \"program\", \"may\", \"provide\", \"service\", \"bill\", \"helplessness\", \"clinicprenatal\", \"clare\", \"evaluationplacement\", \"womenservices\", \"momtime\", \"mending\", \"experancing\", \"adhaadd\", \"crimefree\", \"behavorial\", \"postdischarge\", \"olderinpatient\", \"victimssurvivors\", \"jailed\", \"visitspap\", \"psychiatricmental\", \"drugtreatment\", \"asotp\", \"childrearing\", \"infertility\", \"advisability\", \"conceiving\", \"spacing\", \"alanon\", \"selfneglect\", \"alateen\", \"spousespartners\", \"compulsion\", \"premarital\", \"gamble\", \"gambler\", \"counselingtreatment\", \"cmhc\", \"internalize\", \"hiding\", \"unwed\", \"separationdivorce\", \"alatot\", \"compile\", \"troubling\", \"wanted\", \"familiesfriends\", \"grieving\", \"prolife\", \"bereavement\", \"gambling\", \"grief\", \"whatever\", \"express\", \"loss\", \"counseling\", \"pregnancy\", \"explore\", \"group\", \"inpatient\", \"support\", \"treatment\", \"disorder\", \"problem\", \"mental\", \"alcohol\", \"substance\", \"abuse\", \"family\", \"service\", \"outpatient\", \"individual\", \"health\", \"program\", \"child\", \"provide\", \"people\", \"parent\", \"may\", \"agrability\", \"eligbile\", \"aug\", \"flattened\", \"gradespecific\", \"treament\", \"farmersagricultural\", \"aquaculture\", \"collegeuniversitybound\", \"emphasized\", \"ranch\", \"oregondavis\", \"theraputic\", \"checklist\", \"iroquois\", \"lcsc\", \"carecoordinated\", \"eduction\", \"heth\", \"denture\", \"thunderstorm\", \"noah\", \"secondaryhigh\", \"whereas\", \"precollegiate\", \"osteopath\", \"gardeninglandscaping\", \"planter\", \"decking\", \"fluoride\", \"reclamation\", \"adultaging\", \"prenatalage\", \"periodontal\", \"periodontist\", \"judsonsan\", \"decorative\", \"fencing\", \"collegeuniversity\", \"lawn\", \"homemaking\", \"demonstrating\", \"teeth\", \"combining\", \"extraction\", \"curriculum\", \"student\", \"radio\", \"sacrificing\", \"lecture\", \"teaching\", \"weather\", \"school\", \"bus\", \"administers\", \"dental\", \"middle\", \"alert\", \"education\", \"special\", \"district\", \"specialized\", \"information\", \"elementary\", \"disability\", \"service\", \"instruction\", \"referral\", \"program\", \"transportation\", \"need\", \"provides\", \"health\", \"child\", \"provide\", \"resource\", \"age\", \"county\", \"shopoing\", \"parksmith\", \"grandview\", \"abington\", \"baron\", \"waynetown\", \"liftequipped\", \"talbot\", \"magizines\", \"ambia\", \"vogel\", \"fowler\", \"boostinsure\", \"framed\", \"cordy\", \"btaccess\", \"anson\", \"ccplgo\", \"orangeville\", \"incounty\", \"cyber\", \"caf\\u00e9s\", \"cybercafe\", \"cybercaf\\u00e9s\", \"proprietary\", \"internetenabled\", \"er\", \"flexibly\", \"transportationcommunity\", \"paratransitcommunity\", \"audiovisual\", \"messenger\", \"varied\", \"reservationsbased\", \"audiocassette\", \"evergreen\", \"indygo\", \"hotspot\", \"crosstown\", \"marketsrestaurants\", \"cafe\", \"multipurpose\", \"doortodoor\", \"library\", \"twenty\", \"reference\", \"phonebased\", \"curbtocurb\", \"nonbook\", \"paratransit\", \"inhouse\", \"lending\", \"public\", \"ride\", \"access\", \"book\", \"transportation\", \"card\", \"internet\", \"senior\", \"service\", \"program\", \"center\", \"computer\", \"community\", \"county\", \"provide\", \"facility\", \"activity\", \"older\", \"offer\", \"provides\", \"medical\", \"stjoseph\", \"theresa\", \"iuk\", \"nwestern\", \"needclients\", \"lifehouse\", \"rdgar\", \"seastern\", \"sampson\", \"rdlincoln\", \"northwood\", \"rdclinton\", \"hyatt\", \"patrick\", \"sdupont\", \"salto\", \"wschwartz\", \"etonkel\", \"earlham\", \"ntrier\", \"shelf\", \"hamper\", \"wagon\", \"cupboard\", \"storehouse\", \"tailgate\", \"gleaner\", \"connectionsdisconnections\", \"baccalaureate\", \"ossian\", \"preprofessional\", \"whitely\", \"wsaint\", \"impa\", \"cogic\", \"hilltop\", \"esaint\", \"ncounty\", \"episcopal\", \"missional\", \"closet\", \"sandwich\", \"pantry\", \"canned\", \"deliver\", \"leave\", \"nonperishable\", \"perishable\", \"drive\", \"difficult\", \"distribute\", \"acquire\", \"food\", \"direct\", \"bank\", \"box\", \"grocery\", \"donation\", \"product\", \"people\", \"program\", \"make\", \"service\", \"purchase\", \"emergency\", \"home\", \"disability\", \"defines\", \"chafia\", \"catheterization\", \"iota\", \"glassware\", \"alabaster\", \"homegoods\", \"vintage\", \"clothed\", \"sorority\", \"chairlift\", \"marsdale\", \"oldstyle\", \"jc\", \"deconstruction\", \"sweater\", \"sonshine\", \"midwife\", \"magnifier\", \"steeltoe\", \"salvaged\", \"consignment\", \"auspex\", \"materialssupplies\", \"bandage\", \"decor\", \"continence\", \"sickroom\", \"equipmentassistive\", \"jacket\", \"subacute\", \"obsolete\", \"footwear\", \"msd\", \"cleanout\", \"outerwear\", \"gennesaret\", \"pampers\", \"cloth\", \"gentlyused\", \"resale\", \"apparel\", \"thrift\", \"secondhand\", \"refurbish\", \"shoe\", \"clothing\", \"clothes\", \"layette\", \"kitchenware\", \"coat\", \"shop\", \"good\", \"sell\", \"donation\", \"maternity\", \"item\", \"furniture\", \"appliance\", \"donated\", \"clinic\", \"donate\", \"new\", \"equipment\", \"store\", \"distribution\", \"general\", \"program\", \"community\", \"people\", \"health\", \"hospital\", \"care\", \"service\", \"provide\", \"need\", \"medical\", \"seminary\", \"bellmont\", \"surfing\", \"torner\", \"swinford\", \"gill\", \"pioneer\", \"rolloff\", \"milligan\", \"validation\", \"arboretum\", \"senator\", \"meadowood\", \"jug\", \"beam\", \"brass\", \"formulating\", \"florescent\", \"swimwear\", \"jan\", \"conferred\", \"sovereign\", \"connecticut\", \"operational\", \"fortyeight\", \"rhode\", \"installed\", \"familiarize\", \"foodbeverage\", \"greenway\", \"commonwealth\", \"cansbottles\", \"proposes\", \"jarsbottles\", \"staggered\", \"copper\", \"tenure\", \"louisiana\", \"divided\", \"blanton\", \"designation\", \"parish\", \"island\", \"alaska\", \"thereby\", \"constituent\", \"borough\", \"village\", \"smoke\", \"authorizes\", \"appointed\", \"government\", \"town\", \"office\", \"city\", \"alarm\", \"county\", \"official\", \"call\", \"township\", \"park\", \"local\", \"public\", \"program\", \"may\", \"information\", \"municipal\", \"regional\", \"provides\", \"brandywine\", \"kenmar\", \"somethings\", \"devotional\", \"lafontaine\", \"postsurgery\", \"tab\", \"oversouth\", \"stin\", \"ahepa\", \"swat\", \"congregant\", \"rhisp\", \"chi\", \"gluten\", \"sitdow\", \"vegetarian\", \"medicallytailored\", \"capri\", \"courier\", \"seated\", \"mealsnutrition\", \"sitdown\", \"soup\", \"lunchesdinners\", \"carryout\", \"supper\", \"pancake\", \"telephoning\", \"cup\", \"concentrated\", \"refrigerated\", \"cookout\", \"dinein\", \"pureed\", \"den\", \"mow\", \"insurancemedicare\", \"chef\", \"entree\", \"rarely\", \"weekday\", \"sack\", \"salad\", \"midday\", \"buy\", \"hot\", \"meal\", \"dining\", \"delivers\", \"distributed\", \"lunch\", \"appreciated\", \"tourist\", \"takehome\", \"reservation\", \"nutritional\", \"hall\", \"congregate\", \"senior\", \"deficit\", \"site\", \"kitchen\", \"homeless\", \"adult\", \"older\", \"program\", \"people\", \"served\", \"may\", \"social\", \"food\", \"andor\", \"prepare\", \"service\", \"provide\", \"tannadoonah\", \"fuua\", \"parentlead\", \"sitter\", \"reveal\", \"hawthorne\", \"tao\", \"helpsports\", \"artscrafts\", \"cnap\", \"delevlopment\", \"hopson\", \"sixhour\", \"sumy\", \"communitybuilding\", \"spark\", \"onemain\", \"carson\", \"incentivebased\", \"clover\", \"boysgirls\", \"choking\", \"patriotic\", \"babyproofing\", \"shaken\", \"pageant\", \"strollercarrier\", \"venturing\", \"adventurethemed\", \"hurrah\", \"divorceddivorcing\", \"ceramic\", \"youthled\", \"sculpture\", \"pat\", \"unlike\", \"galleriesexhibits\", \"lifting\", \"subsidize\", \"instructs\", \"setup\", \"schoolage\", \"seat\", \"passenger\", \"celebration\", \"craft\", \"cirbs\", \"height\", \"outofschool\", \"car\", \"effective\", \"enrichment\", \"parenting\", \"leadership\", \"mini\", \"motivating\", \"workscope\", \"academic\", \"traveling\", \"h\", \"potential\", \"youth\", \"workshop\", \"club\", \"safety\", \"activity\", \"parent\", \"program\", \"child\", \"education\", \"class\", \"art\", \"social\", \"offer\", \"age\", \"provide\", \"support\", \"provides\", \"cprfirst\", \"resettled\", \"greeting\", \"agenciesorganizes\", \"develpomental\", \"preparednessmobilization\", \"razoo\", \"managementreliefresponse\", \"gal\", \"backsacks\", \"expeditemonitor\", \"tending\", \"intersts\", \"smoothly\", \"heavier\", \"wake\", \"mentees\", \"oldie\", \"bette\", \"petanque\", \"litem\", \"undue\", \"absorbed\", \"ingested\", \"familychildolder\", \"augment\", \"matchingreferral\", \"recruitmentplacement\", \"enlistment\", \"boule\", \"emergencyrelated\", \"unascertained\", \"judged\", \"casa\", \"setupcleanup\", \"justicelegal\", \"disasteremergency\", \"volcanic\", \"snowstorm\", \"tillingplantingcultivatingharvesting\", \"eruption\", \"clerical\", \"famine\", \"productionpreparationdelivery\", \"requisite\", \"remuneration\", \"volunteer\", \"unborn\", \"occurrence\", \"poisoning\", \"clinicbased\", \"talent\", \"lead\", \"opportunity\", \"actively\", \"preparedness\", \"appointed\", \"willing\", \"voluntary\", \"disaster\", \"organization\", \"victim\", \"county\", \"service\", \"seeking\", \"emergency\", \"work\", \"individual\", \"family\", \"program\", \"information\", \"child\", \"court\", \"community\", \"may\", \"assistance\", \"davidson\", \"freeroaminguntouchable\", \"killing\", \"fallopian\", \"elkhartttownship\", \"sr\", \"hopewell\", \"paramedicsemts\", \"ferals\", \"remainder\", \"mantoux\", \"tamed\", \"vollmer\", \"headquarterstation\", \"inflammatory\", \"trapneuterrelease\", \"tuberculin\", \"awarenesspersons\", \"nrockville\", \"capturing\", \"firehouse\", \"pirquet\", \"rubbed\", \"bacillus\", \"von\", \"reproducing\", \"alter\", \"neuteringspaying\", \"ovary\", \"testis\", \"surgically\", \"rehabilitates\", \"tuberculosis\", \"firefighting\", \"tb\", \"fire\", \"dispatch\", \"retardant\", \"skin\", \"administering\", \"injected\", \"chest\", \"rescue\", \"responds\", \"station\", \"ambulance\", \"emergency\", \"department\", \"situation\", \"call\", \"personnel\", \"city\", \"material\", \"county\", \"service\", \"test\", \"prevention\", \"person\", \"program\", \"hazardous\", \"medical\", \"need\", \"winslow\", \"racketeering\", \"commissary\", \"yeast\", \"expressway\", \"eastwest\", \"arresting\", \"ache\", \"expresscare\", \"shed\", \"policecommunity\", \"toll\", \"suppressing\", \"andf\", \"perrysville\", \"covington\", \"clermont\", \"afterhours\", \"centrally\", \"tcsd\", \"apprehending\", \"detaining\", \"regulating\", \"presenting\", \"intelligence\", \"medcheck\", \"med\", \"harmony\", \"underworld\", \"executed\", \"attica\", \"solicits\", \"negro\", \"suspect\", \"distributes\", \"federated\", \"jewish\", \"umbrella\", \"peace\", \"tendigit\", \"laceration\", \"episodic\", \"urgent\", \"investigating\", \"police\", \"engaging\", \"enforcing\", \"united\", \"borough\", \"enforcement\", \"agency\", \"law\", \"crime\", \"preventing\", \"dispatch\", \"minor\", \"county\", \"town\", \"department\", \"city\", \"emergency\", \"local\", \"service\", \"care\", \"call\", \"activity\", \"fund\", \"assistance\", \"program\", \"lowincomefinancially\", \"homeaccess\", \"isotope\", \"swift\", \"imagingradiology\", \"lie\", \"eighty\", \"areata\", \"verifiably\", \"lowrise\", \"sevenyear\", \"cleft\", \"trainingcoaching\", \"custommade\", \"underpayment\", \"breathalyzer\", \"preceded\", \"zeroentry\", \"boater\", \"sounded\", \"constructiondevelopment\", \"carport\", \"rgi\", \"multilevel\", \"walkway\", \"transcend\", \"purchasable\", \"hairpiece\", \"emitted\", \"alopecia\", \"soldier\", \"laundromat\", \"ironing\", \"roofing\", \"uso\", \"drying\", \"electromagnetic\", \"radiopaque\", \"ultrasonic\", \"radiant\", \"radionuclides\", \"atom\", \"contrast\", \"dormitorystyle\", \"sloping\", \"interfaith\", \"wig\", \"construction\", \"garage\", \"wiring\", \"plumbing\", \"authorize\", \"ramp\", \"permit\", \"job\", \"zoning\", \"motel\", \"remodeling\", \"conditioning\", \"searchplacement\", \"retaining\", \"engineering\", \"employment\", \"repair\", \"shelter\", \"homeless\", \"building\", \"program\", \"housing\", \"people\", \"search\", \"home\", \"provide\", \"service\", \"provides\", \"stay\", \"assistance\", \"county\", \"offer\", \"available\", \"individual\", \"intermediatestay\", \"disrupted\", \"parentage\", \"hygene\", \"ratio\", \"clip\", \"spouseswidows\", \"semidependent\", \"citiy\", \"fivfelv\", \"hammilton\", \"fiv\", \"lois\", \"housecall\", \"prompting\", \"lpn\", \"ambulation\", \"birthsdeaths\", \"dumped\", \"standardform\", \"recordspermits\", \"microchip\", \"scannable\", \"augustes\", \"heartworm\", \"distinct\", \"genealogical\", \"flea\", \"selffeeding\", \"facilitybased\", \"fosterbased\", \"earmite\", \"rehome\", \"dislike\", \"euthanize\", \"kill\", \"rehomes\", \"convalescent\", \"occurring\", \"continuous\", \"skilled\", \"copy\", \"certificate\", \"nursing\", \"pet\", \"vital\", \"death\", \"birth\", \"named\", \"animal\", \"phase\", \"care\", \"home\", \"service\", \"record\", \"facility\", \"provides\", \"\\u2019\", \"individual\", \"county\", \"person\", \"activity\", \"program\", \"provide\", \"living\", \"may\", \"symptomatic\", \"inurned\", \"miniphysical\", \"wart\", \"cervix\", \"metabolic\", \"gravis\", \"bvtrichomoniasis\", \"bunion\", \"lump\", \"capsule\", \"obstetricgynecological\", \"recklinghausens\", \"milroys\", \"wanderer\", \"spur\", \"cholinesterase\", \"fplus\", \"regionalaffiliated\", \"hepatic\", \"appealscomplaints\", \"mitigate\", \"platelet\", \"strawcolored\", \"immunoglobin\", \"expanders\", \"bracelet\", \"piercings\", \"studied\", \"pendant\", \"thickening\", \"wearer\", \"neurofibromatosis\", \"transfusion\", \"lupus\", \"asymptomatic\", \"fullblown\", \"plasmacare\", \"discriminated\", \"nmdp\", \"pendent\", \"absentee\", \"cooperation\", \"ideological\", \"poll\", \"ballot\", \"election\", \"volunteering\", \"voting\", \"vote\", \"voter\", \"candidate\", \"registering\", \"countylevel\", \"polling\", \"plasma\", \"authorizes\", \"next\", \"registration\", \"precinct\", \"campaign\", \"information\", \"application\", \"day\", \"county\", \"screening\", \"program\", \"disease\", \"transmitted\", \"people\", \"provides\", \"treatment\", \"office\", \"health\", \"emergency\", \"service\", \"stii\", \"petrelated\", \"david\", \"stuff\", \"unopened\", \"aremuch\", \"toilestries\", \"fodder\", \"crate\", \"spettit\", \"babytoddler\", \"auctioned\", \"remover\", \"edible\", \"oftroy\", \"creature\", \"aquinas\", \"wrange\", \"sst\", \"sieoc\", \"foodsupplies\", \"formulababy\", \"sustenance\", \"dried\", \"cookware\", \"dire\", \"grocer\", \"unmarketable\", \"grower\", \"banksfood\", \"wholesaler\", \"spayed\", \"tableware\", \"crockery\", \"writeoff\", \"formula\", \"donation\", \"donate\", \"utensil\", \"canned\", \"food\", \"drive\", \"familyconsumer\", \"ffa\", \"pet\", \"h\", \"supply\", \"supplement\", \"toiletry\", \"pantry\", \"nonperishable\", \"baby\", \"program\", \"infant\", \"distribution\", \"keep\", \"accept\", \"bank\", \"serve\", \"club\", \"animal\", \"people\", \"use\", \"service\", \"laryngectomy\", \"dtprovides\", \"cleaninghygiene\", \"familiessupport\", \"lowcostnocost\", \"dwarfed\", \"verdict\", \"palmar\", \"irritable\", \"supvervised\", \"physique\", \"langfuhs\", \"trisomy\", \"carcinoidneuroendocrine\", \"summoned\", \"vertebra\", \"guilty\", \"relaxed\", \"guardianshipconservatorship\", \"sworn\", \"annulment\", \"custodyvisitation\", \"bench\", \"wordforword\", \"abstract\", \"terminating\", \"conservatorship\", \"mended\", \"neck\", \"protonotary\", \"bph\", \"neuropathy\", \"crohn\", \"lumbar\", \"marry\", \"magistrate\", \"myeloma\", \"authorization\", \"informationadvice\", \"cited\", \"trafficparking\", \"copy\", \"warrant\", \"countylevel\", \"marriage\", \"issued\", \"ticket\", \"license\", \"waiting\", \"judgment\", \"clerk\", \"petition\", \"minister\", \"ceremony\", \"going\", \"appear\", \"applicant\", \"expungement\", \"group\", \"issue\", \"county\", \"must\", \"support\", \"record\", \"related\", \"court\", \"one\", \"office\", \"maintains\", \"program\", \"provide\", \"information\", \"people\", \"child\", \"health\", \"lalke\", \"stipulation\", \"mite\", \"incubator\", \"accreditation\", \"nonspecific\", \"coworking\", \"comorbidity\", \"infested\", \"reincarcerated\", \"siags\", \"smaller\", \"forprofit\", \"ero\", \"substancerelated\", \"probationer\", \"reformer\", \"sarcoptes\", \"think\", \"lesser\", \"penitentiary\", \"detain\", \"addictionsdependencies\", \"addictionssubstance\", \"penal\", \"scabies\", \"genderspecific\", \"delousingbody\", \"inservice\", \"scabei\", \"conditionally\", \"appears\", \"deedstitles\", \"suspended\", \"linking\", \"probation\", \"sentenced\", \"louse\", \"sentence\", \"detention\", \"anesthetist\", \"convicted\", \"jail\", \"awaiting\", \"correctional\", \"confinement\", \"offense\", \"assigned\", \"anonymous\", \"offender\", \"crime\", \"group\", \"community\", \"facility\", \"support\", \"county\", \"formal\", \"program\", \"provide\", \"institution\", \"service\", \"person\", \"court\", \"including\", \"people\", \"editorial\", \"laurellwood\", \"engineer\", \"indianastrives\", \"landuse\", \"unusual\", \"restricting\", \"drivingaccident\", \"auctioneer\", \"stachybotrys\", \"ordinancesthis\", \"gazetteer\", \"rezoning\", \"realtor\", \"astronomical\", \"huntingfishing\", \"parkingrelated\", \"chiropractor\", \"incidentvehicle\", \"comsumer\", \"enforcementappeals\", \"abatementbrush\", \"vegetation\", \"negligent\", \"proportion\", \"chaparral\", \"reportingremoval\", \"publishingdistribution\", \"fugitive\", \"departmentsoffices\", \"advises\", \"tiplines\", \"multifamily\", \"brutality\", \"feedback\", \"misrepresentation\", \"specificarea\", \"ranger\", \"anticrime\", \"buildingzoning\", \"ethical\", \"framework\", \"diner\", \"stopper\", \"weed\", \"zoning\", \"notifying\", \"overgrown\", \"remodeling\", \"classify\", \"fail\", \"rooming\", \"code\", \"ruling\", \"lot\", \"building\", \"complaint\", \"commercial\", \"permit\", \"licensing\", \"conduct\", \"report\", \"county\", \"property\", \"food\", \"regarding\", \"inspection\", \"housing\", \"safety\", \"service\", \"city\", \"program\", \"health\", \"control\", \"provides\", \"issue\", \"schoolor\", \"mainly\", \"olderto\", \"equation\", \"osher\", \"dor\", \"englishspeakers\", \"asq\", \"aed\", \"lcore\", \"spanishspeakers\", \"employability\", \"jobtraining\", \"limitedenglishspeaking\", \"citizenshiplegal\", \"multisensory\", \"governmentsubsidized\", \"highschool\", \"assylum\", \"perfecting\", \"computation\", \"coursework\", \"creditgranting\", \"adjunct\", \"welding\", \"carerelated\", \"versa\", \"vice\", \"indigenous\", \"defibrillator\", \"proficiency\", \"nonnative\", \"notarized\", \"spelling\", \"remedial\", \"behindthewheel\", \"tractor\", \"noncredit\", \"prep\", \"ell\", \"signature\", \"abe\", \"tutoring\", \"upgrading\", \"daytoday\", \"english\", \"language\", \"gained\", \"instruction\", \"attended\", \"ged\", \"math\", \"reading\", \"esl\", \"equivalency\", \"second\", \"school\", \"high\", \"test\", \"education\", \"adult\", \"skill\", \"class\", \"student\", \"basic\", \"program\", \"preparation\", \"writing\", \"age\", \"service\", \"offer\", \"needymeds\", \"typhoidtetanus\", \"wize\", \"bacteria\", \"vaccinepreventable\", \"tonsil\", \"ipv\", \"typhoid\", \"gone\", \"pneumovax\", \"adultadolescent\", \"chickenpoxshingles\", \"freeat\", \"midoctober\", \"menegitus\", \"twinrix\", \"contagious\", \"vulva\", \"capamericas\", \"epidemiology\", \"papillomavirus\", \"tracingnotification\", \"anus\", \"penis\", \"familywize\", \"persontoperson\", \"shingle\", \"olderhpv\", \"meningitis\", \"hn\", \"indicate\", \"palate\", \"olderother\", \"vector\", \"vagina\", \"communicable\", \"infectious\", \"epidemic\", \"outbreak\", \"tdap\", \"strain\", \"flu\", \"disease\", \"nasal\", \"mist\", \"indirect\", \"cervical\", \"control\", \"vaccine\", \"hpv\", \"shot\", \"immunization\", \"spread\", \"cancer\", \"prevent\", \"program\", \"age\", \"public\", \"health\", \"contact\", \"vaccination\", \"offer\", \"community\", \"activity\", \"grading\", \"pavement\", \"itemheavy\", \"pact\", \"pothole\", \"rightofways\", \"overpass\", \"noncity\", \"theme\", \"booklet\", \"streetrelated\", \"nontoxic\", \"nit\", \"prosector\", \"japser\", \"countywaste\", \"paving\", \"bestway\", \"bug\", \"dialatrailer\", \"marking\", \"salting\", \"byway\", \"sweeping\", \"corruption\", \"phenomenon\", \"mowing\", \"patching\", \"botanical\", \"baiting\", \"citywide\", \"pedestrian\", \"roadside\", \"prosecuting\", \"prosecutor\", \"obstruction\", \"gutter\", \"roadway\", \"removal\", \"unlawful\", \"debris\", \"highway\", \"snow\", \"street\", \"maintenance\", \"sidewalk\", \"responsible\", \"conduct\", \"repair\", \"county\", \"public\", \"prosecution\", \"criminal\", \"dead\", \"control\", \"enforces\", \"traffic\", \"service\", \"provides\", \"program\", \"nott\", \"prefiling\", \"montgomerytippecanoe\", \"nonsupport\", \"cobra\", \"clientbusiness\", \"contention\", \"contested\", \"moneygenerating\", \"litc\", \"taxrelated\", \"postfiling\", \"dunn\", \"feegenerating\", \"drugstore\", \"schneck\", \"employeremployee\", \"dependentssurvivors\", \"burdensome\", \"nonfeegenerating\", \"taxationtaxes\", \"mediator\", \"dame\", \"employeebenefit\", \"reestablishing\", \"workplacerelated\", \"notre\", \"ebsa\", \"uncompensated\", \"elderlaw\", \"peaceful\", \"correctness\", \"expungements\", \"victimoffender\", \"merriville\", \"multipartygroup\", \"innocent\", \"generate\", \"taxation\", \"surviving\", \"formalized\", \"cvso\", \"veteran\", \"immigrationnaturalization\", \"benefit\", \"submission\", \"entitled\", \"bankruptcy\", \"litigation\", \"officer\", \"spouse\", \"affair\", \"country\", \"legal\", \"negotiate\", \"aid\", \"right\", \"representation\", \"assistance\", \"form\", \"law\", \"service\", \"program\", \"andor\", \"advocacy\", \"tax\", \"provide\", \"process\", \"offer\", \"information\", \"help\", \"county\", \"export\", \"binder\", \"macbeth\", \"emmerich\", \"controlshelter\", \"unstructured\", \"crossage\", \"ptsc\", \"arithmetic\", \"unstaffed\", \"recyclintg\", \"broaden\", \"preknd\", \"garbagesanitation\", \"emma\", \"toter\", \"jk\", \"vacuuming\", \"tso\", \"sanitationtrashcompost\", \"foundationlevel\", \"distinguishing\", \"sk\", \"geography\", \"vegetarianism\", \"elementarysecondary\", \"turnaround\", \"brushlimb\", \"bundle\", \"barrel\", \"elklhart\", \"ample\", \"utilties\", \"storytelling\", \"seventh\", \"ninth\", \"quarantine\", \"gradual\", \"nightline\", \"carr\", \"wasteaway\", \"donnan\", \"adoptionsurrender\", \"lscs\", \"middlehigh\", \"sanitationtrashrecycling\", \"tied\", \"trashyard\", \"supporor\", \"burlap\", \"sandbagswater\", \"altering\", \"bulky\", \"drama\", \"shape\", \"comprehending\", \"introduction\", \"eighth\", \"add\", \"middle\", \"kindergarten\", \"school\", \"student\", \"curriculum\", \"grade\", \"district\", \"pickup\", \"trash\", \"adopt\", \"horse\", \"separate\", \"learning\", \"nutrition\", \"collection\", \"program\", \"child\", \"education\", \"information\", \"educational\", \"provides\", \"support\", \"service\", \"county\", \"basic\", \"living\", \"provide\", \"age\"], \"Total\": [611140.0, 139598.0, 319887.0, 148785.0, 234924.0, 235519.0, 321473.0, 349653.0, 271487.0, 277843.0, 149507.0, 116846.0, 64504.0, 310305.0, 98008.0, 171976.0, 41381.0, 73107.0, 107763.0, 201467.0, 281.2164134887468, 1874.7760899249788, 1546.6902741881077, 2296.600710158099, 2015.3842966693521, 468.6940224812447, 4218.246202331202, 234.34701124062235, 234.34701124062235, 281.2164134887468, 140.6082067443734, 1124.8656539549872, 937.3880449624894, 140.6082067443734, 562.4328269774936, 468.6940224812447, 234.34701124062235, 140.6082067443734, 140.6082067443734, 6327.369303496804, 235519.32548995753, 321473.70467190753, 59955.37642707446, 94439.1472853664, 73942.49453009688, 56329.61870882669, 58572.44119902065, 61553.63584092591, 319887.76556577755, 106558.2904274771, 41737.44235282206, 50320.723974444365, 201467.68181475604, 49040.316968503445, 24475.592357537393, 38719.89584341061, 23434.701124062234, 84159.98956427554, 35107.67455789181, 20294.451173437898, 87498.35503456731, 43173.86542201442, 65238.598351369765, 349653.00154490164, 277843.6395067894, 310305.3512994725, 611140.2778911776, 271487.74835384573, 262391.34280532046, 577493.0085727422, 234924.57029975083, 649641.9057245489, 171976.3906408258, 276792.4419318766, 196261.07815707274, 135738.7248215028, 194397.04389549364, 230849.9920471641, 153561.54158721934, 177991.6464157515, 187601.81957412316, 480.63924982150775, 398.2439498521064, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 549.3019997960089, 6.866274997450111, 6.866274997450111, 1098.6039995920178, 1098.6039995920178, 549.3019997960089, 400.384508270949, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 13.732549994900221, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 6.866274997450111, 2835.470712540188, 465.49692242606125, 483.4858555772839, 6.866274997450111, 945.1569041800626, 534.3749270670824, 534.3749270670824, 2996.494181059143, 3080.721921957796, 500.18399476047665, 2357.813308107344, 2397.816435358018, 630.6944140373275, 1402.2679055233054, 6719.888773037572, 5783.468878555483, 52702.19607797373, 148785.82546512864, 26676.148521163115, 36291.90769656916, 41389.7930263591, 20816.85270212591, 40881.659156026246, 611140.2778911776, 116846.36331640044, 50199.761096571216, 48708.54028543049, 34332.24357245051, 158504.51975528547, 20917.978642326918, 234924.57029975083, 69142.664921359, 277843.6395067894, 123542.38939410447, 649641.9057245489, 276792.4419318766, 230849.9920471641, 577493.0085727422, 319887.76556577755, 50.81477097217892, 5.646085663575435, 11.29217132715087, 79.04519929005609, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 5.646085663575435, 5.646085663575435, 11.29217132715087, 5.646085663575435, 5.646085663575435, 11.29217132715087, 11.29217132715087, 11.29217132715087, 587.1929090118452, 553.3163950303926, 553.3163950303926, 553.3163950303926, 242.7816835337437, 214.55125521586652, 146.7982272529613, 95.98345628078239, 90.33737061720696, 84.69128495363152, 84.69128495363152, 73.39911362648066, 67.75302796290522, 67.75302796290522, 67.75302796290522, 67.75302796290522, 67.75302796290522, 56.46085663575435, 56.46085663575435, 56.46085663575435, 573.656085900161, 69.44665131004668, 426.8578586471996, 1028.2004380202252, 299.0093845604637, 2181.47489658467, 1512.0483003492757, 5505.660298941039, 870.4957459704303, 914.772647266105, 12048.24358863006, 98008.9715713965, 19602.49988721535, 1722.545220831168, 149507.20090026196, 10409.199714928212, 271487.74835384573, 100983.70120718873, 57016.847845737975, 39782.03152033395, 86869.87141352938, 30864.685872057977, 57066.33737115977, 107763.33934438479, 196261.07815707274, 577493.0085727422, 34288.60116326094, 194397.04389549364, 262391.34280532046, 649641.9057245489, 349653.00154490164, 230849.9920471641, 187601.81957412316, 93431.12353795549, 276792.4419318766, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 9.787077352856672, 4.893538676428336, 39.14830941142669, 171.27385367499176, 4.893538676428336, 39.14830941142669, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 4.893538676428336, 73.40308014642504, 278.9317045564152, 278.9317045564152, 171.27385367499176, 171.27385367499176, 171.27385367499176, 166.38031499856342, 97.87077352856672, 92.97723485213838, 92.97723485213838, 83.19015749928171, 73.40308014642504, 68.5095414699967, 29.361232058570014, 24.46769338214168, 19.574154705713344, 14.680616029285007, 96.55952104865419, 97.23361800846088, 402.358537586885, 395.8683797401992, 1680.7695660539673, 813.850559575325, 892.9087480422888, 532.0913008586402, 285.1745245134606, 2090.59303850084, 17240.135448806974, 3746.1910851683315, 387.35112508194914, 465.8275931568731, 1788.9688930074478, 7108.24783307508, 73107.54683101419, 4064.04635569207, 1582.8170013800182, 8642.549808617632, 1634.4703870195071, 5503.2719700852795, 75525.52548728156, 28058.615900583933, 40537.15454312505, 10263.614681549674, 177991.6464157515, 2037.4930783468278, 111302.9650873356, 577493.0085727422, 18320.841900654308, 56001.67996193466, 649641.9057245489, 69142.664921359, 158504.51975528547, 152866.35361227495, 262391.34280532046, 349653.00154490164, 230849.9920471641, 51218.715474522905, 127478.6547019503, 191181.2826516585, 4.115199698338031, 8.230399396676061, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 8.230399396676061, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 4.115199698338031, 8.230399396676061, 4.115199698338031, 2026.3718749294528, 674.8927505274371, 674.8927505274371, 674.8927505274371, 674.8927505274371, 674.8927505274371, 485.59356440388757, 127.57119064847895, 127.57119064847895, 127.57119064847895, 90.53439336343668, 82.30399396676061, 57.612795776732426, 53.4975960783944, 32.921597586704245, 32.921597586704245, 28.806397888366213, 28.806397888366213, 28.806397888366213, 28.806397888366213, 1575.8017814053226, 622.009915776537, 604.0235670901648, 16673.112502345346, 293.24005617618235, 2674.377827075823, 2010.3890617409388, 718.3383700781039, 431.18517975996747, 752.8621732312142, 3159.7545353854293, 3586.479970129411, 65844.32948535183, 7859.130545382322, 33817.095264782096, 4994.282535536757, 69142.664921359, 10875.584301443503, 26092.433844703774, 31445.963655670737, 577493.0085727422, 649641.9057245489, 53657.32055857022, 36315.315891496095, 89752.93586498094, 191181.2826516585, 230849.9920471641, 66667.13149555927, 47774.34208652641, 68911.45795778972, 103084.9017518224, 152866.35361227495, 135738.7248215028, 3.7112496245119098, 7.4224992490238195, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 7.4224992490238195, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 3.7112496245119098, 4432.885029092549, 2203.96642324809, 100.20373986182157, 2291.1293941070007, 37.1124962451191, 29.689996996095278, 22.267497747071456, 22.267497747071456, 18.55624812255955, 14.844998498047639, 14.844998498047639, 14.844998498047639, 14.844998498047639, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 11.133748873535728, 7.4224992490238195, 2445.696921972028, 103.37250023348672, 15699.811776100412, 2967.005246033078, 3168.610348704226, 3304.9567835817347, 2303.105511679628, 1197.7892651003058, 4232.574083239432, 4375.248104824928, 4392.807832544145, 4577.272835694036, 139598.8058661172, 6453.1640843072255, 8564.732070692155, 8895.643632307643, 10251.12373061816, 15289.884871738228, 15307.019703518125, 187601.81957412316, 649641.9057245489, 36120.967982674025, 577493.0085727422, 45830.337288934665, 51389.47330273483, 153561.54158721934, 111302.9650873356, 254.34231995262274, 7.1645723930316265, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 3.5822861965158133, 7.1645723930316265, 3.5822861965158133, 28.658289572126506, 7.1645723930316265, 3.5822861965158133, 3.5822861965158133, 17.911430982579066, 10.74685858954744, 286.58289572126506, 286.58289572126506, 254.34231995262274, 214.9371717909488, 53.7342929477372, 50.152006751221386, 42.98743435818976, 42.98743435818976, 39.40514816167395, 32.24057576864232, 259.9884056161982, 28.658289572126506, 28.658289572126506, 21.49371717909488, 17.911430982579066, 17.911430982579066, 17.911430982579066, 134.92883085390488, 134.92883085390488, 60.11869692519086, 759.0965287531178, 315.54086698681044, 1926.4028271296884, 2762.5322849774607, 281.0661989412657, 982.5464916306555, 10415.856306149459, 4266.182768904692, 214.88430117358652, 400.7352177118069, 336.6794921722118, 5822.599701973412, 7828.696260212595, 2370.23392066121, 15289.884871738228, 1536.037771371837, 10150.48305316157, 4462.898608095149, 3131.5565953772016, 2614.481209289672, 46100.46856962452, 1340.4417078554425, 15572.387765842012, 16383.412582283006, 12938.199343071292, 8798.01122355599, 28517.639172657553, 649641.9057245489, 89752.93586498094, 187601.81957412316, 262391.34280532046, 62098.45665917779, 310305.3512994725, 577493.0085727422, 230849.9920471641, 158504.51975528547, 135738.7248215028, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 6.986968603916647, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 41.921811623499885, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 3.4934843019583237, 10.480452905874971, 13.973937207833295, 3.4934843019583237, 3.4934843019583237, 834.9427481680393, 834.9427481680393, 779.0469993367062, 779.0469993367062, 779.0469993367062, 779.0469993367062, 336.97036213765455, 62.88271743524983, 17.46742150979162, 13.973937207833295, 13.973937207833295, 6.986968603916647, 6.986968603916647, 6.986968603916647, 6.986968603916647, 6.986968603916647, 881.8121504161638, 825.9164015848307, 831.5624872484061, 6.986968603916647, 872.7858038329551, 881.7802704085665, 923.1486903830379, 966.524608329204, 1045.603899435859, 49.69641276314347, 2339.1182595272526, 2466.139892506167, 4185.573116736275, 456.135121196539, 1738.336681465851, 41381.369424675104, 13648.892448909117, 64504.53798787088, 40640.580249561695, 4305.052987484386, 191181.2826516585, 12521.747214444145, 9364.167252837784, 50199.761096571216, 17503.811610785495, 69407.07801449733, 65844.32948535183, 649641.9057245489, 276792.4419318766, 177991.6464157515, 42748.839753552245, 2639.4386403864974, 152866.35361227495, 3.440004998088533, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 6.880009996177066, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 3.440004998088533, 708.6410296062379, 629.5209146502016, 295.84042983561386, 1739.913966351411, 48.160069973239466, 44.72006497515093, 30.960044982796802, 17.200024990442667, 13.760019992354133, 13.760019992354133, 13.760019992354133, 13.760019992354133, 10.3200149942656, 10.3200149942656, 10.3200149942656, 10.3200149942656, 6.880009996177066, 6.880009996177066, 6.880009996177066, 6.880009996177066, 755.5104318543624, 364.1656389306738, 166.068922617102, 6.880009996177066, 67.97973055731403, 911.0462045971841, 6576.977582056392, 27039.432233325664, 3201.149375645763, 187.9932531163359, 1206.0722863056806, 6278.870209049771, 30.684279226075926, 390.9360497437243, 40.04613564446077, 795.7562283612363, 1807.0253043523126, 1851.0226007832632, 7617.907944558889, 31445.963655670737, 1678.8728718747093, 35463.160157444436, 8238.148060593252, 51349.47324896237, 79324.63103279816, 68911.45795778972, 649641.9057245489, 187601.81957412316, 5039.339162249915, 276792.4419318766, 41713.77397334752, 139598.8058661172, 88881.43325393634, 10899.88330627405, 577493.0085727422, 230849.9920471641, 3.164239241367661, 9.492717724102983, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 3.164239241367661, 6.328478482735322, 56.95630634461791, 37.97087089641193, 34.80663165504428, 34.80663165504428, 34.80663165504428, 34.80663165504428, 34.80663165504428, 28.478153172308954, 22.149674689573626, 18.985435448205966, 18.985435448205966, 15.821196206838305, 12.656956965470645, 12.656956965470645, 12.656956965470645, 9.492717724102983, 9.492717724102983, 9.492717724102983, 9.492717724102983, 358.6584712492967, 362.3579273363597, 497.03196026395403, 4440.468104510061, 1829.9345515687482, 40.45271731861971, 1261.8475049287993, 371.5976713642127, 518.2396494869373, 652.9156642818527, 6281.3246798319615, 1586.7280292582855, 4075.604478560303, 12235.28965743214, 4043.924968526176, 613.1787234986019, 138.63234024778666, 138.63234024778666, 2883.419879703403, 820.2558844649262, 4730.332074037105, 4911.71383406119, 38048.91816013581, 9508.27742064361, 12255.978225604096, 33361.01755096596, 47774.34208652641, 93431.12353795549, 649641.9057245489, 349653.00154490164, 75525.52548728156, 100014.91832986624, 8473.696080089383, 41713.77397334752, 103084.9017518224, 127478.6547019503, 230849.9920471641, 271487.74835384573, 152866.35361227495, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 6.059640591720429, 6.059640591720429, 3.0298202958602145, 3.0298202958602145, 24.238562366881716, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 6.059640591720429, 3.0298202958602145, 3.0298202958602145, 3.0298202958602145, 242.38562366881717, 199.96813952677417, 175.72957715989244, 175.72957715989244, 175.72957715989244, 139.37173360956987, 139.37173360956987, 121.19281183440859, 121.19281183440859, 121.19281183440859, 96.95424946752686, 72.71568710064514, 69.68586680478494, 69.68586680478494, 501.189478904192, 54.53676532548387, 54.53676532548387, 54.53676532548387, 51.506945029623644, 51.506945029623644, 51.506945029623644, 51.506945029623644, 107.66138885370464, 51.506945029623644, 51.506945029623644, 554.2714894670016, 989.0282540829951, 19540.59087644304, 75.33195246836037, 398.24670676425325, 3039.2313911284464, 271.8316407944856, 177.15167497011367, 9857.198650241837, 20752.709538889572, 2915.424075306523, 626.7609210303235, 1738.336681465851, 6579.8148593047345, 6095.781793294225, 15982.834169212621, 45522.914488100956, 47647.722391253206, 191181.2826516585, 577493.0085727422, 10018.128690346617, 51389.47330273483, 38659.42633113365, 194397.04389549364, 196261.07815707274, 649641.9057245489, 177991.6464157515, 349653.00154490164, 235519.32548995753, 89752.93586498094, 276792.4419318766, 611140.2778911776, 2.840867977756647, 2.840867977756647, 17.045207866539883, 68.18083146615953, 2.840867977756647, 2.840867977756647, 39.772151688593055, 161.92947473212888, 8.522603933269941, 17.045207866539883, 267.0415899091248, 17.045207866539883, 267.0415899091248, 2.840867977756647, 267.0415899091248, 17.045207866539883, 267.0415899091248, 25.567811799809824, 2.840867977756647, 19.886075844296528, 767.0343539942947, 267.0415899091248, 267.0415899091248, 267.0415899091248, 269.1821483279674, 71.02169944391618, 71.02169944391618, 68.18083146615953, 68.18083146615953, 68.18083146615953, 68.18083146615953, 45.45388764410635, 2011.8426263212098, 514.1872652042327, 1174.2724594952695, 14696.35523195121, 1890.1288833260633, 254.2527646243597, 836.1160396881558, 360.7803944053737, 360.7803944053737, 371.69083687516377, 1988.6727661339164, 6415.787978139868, 4065.689354090072, 764.8446654330011, 51389.47330273483, 17941.037538867135, 28244.141223143193, 9364.167252837784, 6499.035147773965, 40640.580249561695, 28681.996399977128, 191181.2826516585, 577493.0085727422, 60775.751246041575, 31048.905126360376, 83634.59634756477, 649641.9057245489, 12162.67823195951, 135738.7248215028, 158504.51975528547, 5.604235561875693, 11.208471123751385, 5.604235561875693, 5.604235561875693, 42.03176671406769, 8.406353342813539, 473.55790497849597, 2.8021177809378464, 8.406353342813539, 2.8021177809378464, 33.625413371254155, 11.208471123751385, 106.48047567563816, 2.8021177809378464, 2.8021177809378464, 8.406353342813539, 5.604235561875693, 8.406353342813539, 11.208471123751385, 2.8021177809378464, 473.55790497849597, 473.55790497849597, 367.07742930285787, 367.07742930285787, 42.03176671406769, 19.614824466564922, 19.614824466564922, 16.812706685627077, 11.208471123751385, 11.208471123751385, 8.406353342813539, 276.50233636187886, 332.68541590378476, 586.4796182500047, 376.51026236040366, 385.15905371378494, 379.5548181519092, 379.5548181519092, 672.8638705174106, 191.08651185923677, 289.8870491618982, 289.8870491618982, 1379.6609815026256, 1875.7996374372237, 14109.07431713441, 928.5889932463884, 1224.6649266678623, 5660.9004088259735, 2339.1182595272526, 23164.52359824323, 42228.75344286505, 51834.577293001676, 17202.1392674197, 1617.1709922549362, 1890.1288833260633, 11316.269533572346, 191181.2826516585, 13648.892448909117, 17941.037538867135, 40640.580249561695, 51389.47330273483, 69407.07801449733, 577493.0085727422, 310305.3512994725, 9364.167252837784, 47774.34208652641, 19252.453327336905, 611140.2778911776, 649641.9057245489, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 5.089353451613745, 12.72338362903436, 2.5446767258068723, 2.5446767258068723, 20.35741380645498, 2.5446767258068723, 10.17870690322749, 2.5446767258068723, 5.089353451613745, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 7.634030177420616, 27.991443983875595, 2.5446767258068723, 2.5446767258068723, 2.5446767258068723, 142.50189664518484, 142.50189664518484, 35.62547416129621, 27.991443983875595, 27.991443983875595, 27.991443983875595, 25.44676725806872, 25.44676725806872, 25.44676725806872, 20.35741380645498, 20.35741380645498, 17.812737080648105, 15.268060354841232, 15.268060354841232, 15.268060354841232, 15.268060354841232, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 12.72338362903436, 268.25627739332236, 29.796370806527865, 26.613340156773763, 274.5653751762951, 2167.470676476657, 381.44646043444635, 396.75466126954456, 852.8593752858536, 456.28740540195156, 1153.2041829444572, 7255.051512532477, 23944.091869517884, 1034.170786405577, 1111.905517859563, 260.9791802533827, 581.7689879437052, 167.53442954464825, 627.3816291300088, 700.8465760218085, 27098.646859996235, 11923.726619861922, 57406.6693460458, 51349.47324896237, 11722.97462282803, 649641.9057245489, 171976.3906408258, 187601.81957412316, 5391.505350254547, 153561.54158721934, 230849.9920471641, 577493.0085727422, 152866.35361227495, 9994.367039562785, 611140.2778911776, 191181.2826516585, 103084.9017518224, 97214.42651535632, 194397.04389549364, 68.5345150119825, 49.628441905228705, 99.25688381045741, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 4.726518276688449, 4.726518276688449, 2.3632591383442243, 11.816295691721121, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 2.3632591383442243, 7.089777415032673, 2.3632591383442243, 7.089777415032673, 222.1463590043571, 11.816295691721121, 2.3632591383442243, 129.97925260893234, 42.53866449019604, 40.175405351851815, 33.08562793681914, 30.722368798474918, 159.13934237208647, 98.51130317071033, 16.54281396840957, 16.54281396840957, 14.179554830065346, 11.816295691721121, 11.816295691721121, 11.816295691721121, 11.816295691721121, 46.33523693581175, 42.72008207765869, 74.48199240692412, 253.29619382348358, 392.64926312859325, 398.3735848479743, 2759.8569056455563, 2534.2770171260827, 5011.192465682109, 18231.566933650975, 9231.80668512899, 843.5450106887284, 7907.864014773451, 23397.392094778836, 953.050932577319, 31533.81751377645, 959.3632311077974, 310305.3512994725, 153561.54158721934, 577493.0085727422, 14592.561354522848, 66667.13149555927, 152866.35361227495, 2516.2239166020713, 194397.04389549364, 191181.2826516585, 83634.59634756477, 47774.34208652641, 649641.9057245489, 230849.9920471641, 137300.8511189859, 276792.4419318766, 6.421675256527887, 2.140558418842629, 4.281116837685258, 2.140558418842629, 14.983908931898403, 4.281116837685258, 4.281116837685258, 2.140558418842629, 2.140558418842629, 12.843350513055775, 2.140558418842629, 2.140558418842629, 2.140558418842629, 2.140558418842629, 6.421675256527887, 2.140558418842629, 2.140558418842629, 6.421675256527887, 2.140558418842629, 4.281116837685258, 248.30477658574497, 57.79507730875099, 44.95172679569521, 40.670609958009955, 40.670609958009955, 40.670609958009955, 23.546142607268923, 23.546142607268923, 19.265025769583662, 17.124467350741032, 12.843350513055775, 10.702792094213146, 10.702792094213146, 8.562233675370516, 6.421675256527887, 6.421675256527887, 6.421675256527887, 6.421675256527887, 86.97526263682084, 6.421675256527887, 6.421675256527887, 486.8139210275658, 66.27090218169513, 6.421675256527887, 388.96994915718454, 307.0070138447849, 2885.158406063061, 287.2603485074282, 1402.7807537169933, 1523.0549610466596, 2253.428182078972, 1304.7752913288205, 507.2171274762784, 467.173869816464, 259.6918456638337, 910.3752033957699, 456.135121196539, 767.002557570415, 7224.172163571616, 617.4174462465635, 809.6995889505588, 177991.6464157515, 37082.6807597373, 35612.52592511851, 191181.2826516585, 22355.415234816664, 649641.9057245489, 31056.951246652447, 5325.807831842481, 187601.81957412316, 152866.35361227495, 100983.70120718873, 64504.53798787088, 262391.34280532046, 51389.47330273483, 577493.0085727422, 2.1281915781612515, 70.2303220793213, 4.256383156322503, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 40.43563998506377, 76.61489681380505, 2.1281915781612515, 2.1281915781612515, 4.256383156322503, 2.1281915781612515, 23.410107359773765, 2.1281915781612515, 40.43563998506377, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 2.1281915781612515, 280.9212883172852, 61.71755576667629, 40.43563998506377, 40.43563998506377, 27.666490516096268, 25.538298937935014, 23.410107359773765, 23.410107359773765, 23.410107359773765, 23.410107359773765, 23.410107359773765, 17.025532625290012, 12.769149468967507, 12.769149468967507, 8.512766312645006, 2006.178527041619, 15289.884871738228, 1340.4417078554425, 205.30639527833296, 2967.005246033078, 139598.8058661172, 4232.574083239432, 108.58695801480076, 108.58695801480076, 9231.80668512899, 4730.332074037105, 19779.99893410041, 6553.057227250047, 892.9471541221845, 15699.811776100412, 2303.105511679628, 26174.780204457347, 649641.9057245489, 18934.486524962846, 8798.01122355599, 8962.292733057882, 11567.535054948019, 8564.732070692155, 11587.152265211857, 12255.978225604096, 31533.81751377645, 187601.81957412316, 78502.62010578836, 577493.0085727422, 3.60985364530454, 1.80492682265227, 3.60985364530454, 3.60985364530454, 1.80492682265227, 1.80492682265227, 18.0492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 1.80492682265227, 3.60985364530454, 1.80492682265227, 7.21970729060908, 10.82956093591362, 19.85419504917497, 28.87882916243632, 19.85419504917497, 19.85419504917497, 16.24434140387043, 16.24434140387043, 14.43941458121816, 10.82956093591362, 7.21970729060908, 5.41478046795681, 3.60985364530454, 3.60985364530454, 3.60985364530454, 3.60985364530454, 3.60985364530454, 175.77181738412605, 252.5723648896487, 11.165192532103978, 394.87419498116355, 95.60242645973577, 95.60242645973577, 95.60242645973577, 2534.2770171260827, 396.6279256971726, 467.173869816464, 10310.611950350618, 3381.313991062949, 1382.6074732803997, 11531.953164664252, 593.5845340437178, 657.7539418739173, 801.8007185274088, 2922.356737377584, 721.2663873708934, 723.8110640967002, 890.0926231973631, 1302.8655117001174, 4515.933616564165, 1049.3261878479398, 149507.20090026196, 58039.12780464379, 191181.2826516585, 36479.645854737486, 271487.74835384573, 14592.561354522848, 36074.5877215313, 235519.32548995753, 46218.92269105434, 64504.53798787088, 9230.98985796248, 649641.9057245489, 230849.9920471641, 177991.6464157515, 187601.81957412316, 349653.00154490164, 262391.34280532046, 1.7213746201369664, 196.23670669561417, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 27.541993922191462, 1.7213746201369664, 1.7213746201369664, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 12.049622340958763, 1.7213746201369664, 1.7213746201369664, 1.7213746201369664, 1.7213746201369664, 3.442749240273933, 12.049622340958763, 1.7213746201369664, 196.23670669561417, 165.25196353314877, 151.48096657205303, 56.805362464519895, 29.263368542328426, 168.281783829009, 24.099244681917526, 12.049622340958763, 12.049622340958763, 12.049622340958763, 12.049622340958763, 10.328247720821798, 8.606873100684831, 5.164123860410899, 243.10610894373866, 282.0410885492424, 2046.5957321210974, 318.87371622481, 132.88944110696423, 881.6622196089935, 931.7260699144729, 115.72438705360312, 1007.006712072842, 830.1619425905346, 1060.6624640264943, 2708.7057836052454, 465.12800863275885, 3553.4654520884123, 1016.7527442567462, 1987.5037619966158, 7320.727698118859, 17202.1392674197, 149507.20090026196, 89752.93586498094, 66667.13149555927, 271487.74835384573, 191181.2826516585, 8949.021044991649, 649641.9057245489, 230849.9920471641, 6132.635071396472, 577493.0085727422, 83634.59634756477, 235519.32548995753, 109799.25230687267, 187601.81957412316, 15.242610124273133, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 3.3872466942829185, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 3.3872466942829185, 1.6936233471414592, 1.6936233471414592, 6.774493388565837, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 1.6936233471414592, 69.43855723279982, 66.0513105385169, 66.0513105385169, 64.35768719137545, 64.35768719137545, 64.35768719137545, 20.323480165697507, 15.242610124273133, 13.548986777131674, 10.161740082848754, 8.468116735707296, 8.468116735707296, 6.774493388565837, 5.080870041424377, 5.080870041424377, 5.080870041424377, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 3.3872466942829185, 37.31247194091772, 3.3872466942829185, 466.746869481941, 1034.170786405577, 79.22162923925244, 204.87277065463323, 260.9791802533827, 118.00158282806575, 158.0964916876244, 158.0964916876244, 3633.7836513228476, 216.93256084124988, 1174.8664011832007, 11722.97462282803, 56988.995543263176, 3522.789021186079, 7255.051512532477, 8113.106568618669, 5013.08752797204, 13140.637870423792, 191181.2826516585, 53857.6740497667, 139598.8058661172, 24875.621928576584, 20476.281962318437, 171976.3906408258, 33361.01755096596, 577493.0085727422, 40640.580249561695, 649641.9057245489, 262391.34280532046, 23999.03570497441, 152866.35361227495, 58039.12780464379, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 30.735891473345443, 1.6176784985971286, 4.853035495791385, 1.6176784985971286, 3.2353569971942573, 1.6176784985971286, 3.2353569971942573, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 4.853035495791385, 1.6176784985971286, 1.6176784985971286, 1.6176784985971286, 79.26624643125929, 50.14803345651098, 29.118212974748314, 29.118212974748314, 14.559106487374157, 12.94142798877703, 11.3237494901799, 11.3237494901799, 9.70607099158277, 8.088392492985642, 109.79660120327071, 6.470713994388515, 6.470713994388515, 6.470713994388515, 4.853035495791385, 4.853035495791385, 4.853035495791385, 36.06481959645448, 237.78070847607384, 20.291984684309316, 13.464307909022528, 106.72350669621822, 769.0690506247724, 97.01743570463546, 221.28659497289578, 2142.272093605945, 8431.772768826435, 206.93302518685567, 18320.841900654308, 151.2134324185316, 5811.286622037035, 699.948508033634, 9109.110852017611, 577.9583245883961, 11178.536283874815, 4555.725152338097, 73107.54683101419, 34960.887682460016, 60775.751246041575, 75525.52548728156, 79324.63103279816, 48862.54419978631, 100014.91832986624, 17240.135448806974, 36098.890735678935, 649641.9057245489, 23601.073016235507, 8630.58447136605, 127478.6547019503, 577493.0085727422, 103084.9017518224, 1.5956743732398582, 1.5956743732398582, 3.1913487464797163, 1.5956743732398582, 149.99339108454666, 92.54911364791177, 1.5956743732398582, 1.5956743732398582, 1.5956743732398582, 1.5956743732398582, 54.25292869015517, 1.5956743732398582, 7.97837186619929, 12.765394985918865, 1.5956743732398582, 1.5956743732398582, 149.99339108454666, 92.54911364791177, 1.5956743732398582, 149.99339108454666, 188.28957604230325, 149.99339108454666, 92.54911364791177, 92.54911364791177, 7.97837186619929, 154.640889879004, 6.382697492959433, 4.787023119719574, 4.787023119719574, 3.1913487464797163, 97.08360497280987, 97.63846709952551, 37.906953992214724, 356.72846418712317, 107.53302257981017, 917.6727437279728, 408.75356209257495, 196.86279333267112, 204.04501283997718, 172.5384467685314, 292.3860081625578, 5624.829267769055, 31056.951246652447, 372.5758362883214, 372.5758362883214, 249.791836172516, 453.694173237928, 23999.03570497441, 19443.248402845507, 3120.18501924569, 3751.2522229391543, 70616.75738124533, 1755.5839865202136, 8042.516024384111, 20425.36498101181, 649641.9057245489, 127478.6547019503, 65844.32948535183, 262391.34280532046, 13184.473087337356, 20362.78902190112, 103084.9017518224, 89752.93586498094, 47774.34208652641, 1.544651485575075, 173.0009663844084, 1.544651485575075, 1.544651485575075, 6.1786059423003, 3.08930297115015, 173.0009663844084, 1.544651485575075, 4.633954456725225, 1.544651485575075, 173.0009663844084, 1.544651485575075, 1.544651485575075, 1.544651485575075, 1.544651485575075, 1.544651485575075, 101.94699804795496, 1.544651485575075, 4.633954456725225, 3.08930297115015, 173.0009663844084, 173.0009663844084, 173.0009663844084, 95.76839210565466, 145.4951833671898, 9.26790891345045, 104.49167477376183, 102.94702328818674, 4.633954456725225, 3.08930297115015, 1.544651485575075, 396.2585817112242, 632.3372368381196, 622.82605312448, 873.9597633346201, 246.02344796121798, 316.15384985458866, 392.190212741177, 1732.3424372662898, 282.7161434172803, 366.05307239857336, 697.4797020180126, 1430.4625038373808, 9602.272455124057, 24054.311742218557, 1326.1079564261668, 6289.124107771933, 5013.08752797204, 11923.726619861922, 191181.2826516585, 65844.32948535183, 1968.8804503020333, 31935.014018781407, 1189.2605023504113, 23999.03570497441, 4289.010713672481, 17447.06878505723, 577493.0085727422, 152866.35361227495, 649641.9057245489, 1.4932464537289274, 2.986492907457855, 1.4932464537289274, 1.4932464537289274, 2.986492907457855, 1.4932464537289274, 5.97298581491571, 1.4932464537289274, 4.479739361186782, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 22.398696805933913, 4.479739361186782, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 13.439218083560348, 4.479739361186782, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 2.986492907457855, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 1.4932464537289274, 13.750898452483689, 14.490648355638292, 18.528571535174095, 1087.317924942542, 518.3068775429729, 94.97563971383059, 33416.47895436831, 407.8480057979209, 36506.127474644636, 941.0247869586274, 1235.2913209534063, 1790.598409367094, 1433.3356081611396, 2661.786083538911, 5700.718161225044, 2090.76815378487, 2095.26701646018, 62080.067349269295, 2257.2012790002664, 23091.574853813647, 14333.716333031114, 3609.5657150953543, 611140.2778911776, 41807.71892441429, 51834.577293001676, 577493.0085727422, 649641.9057245489, 88881.43325393634, 28065.1883630256, 84159.98956427554, 230849.9920471641, 36736.66319269661, 103084.9017518224, 177991.6464157515, 277843.6395067894, 191181.2826516585, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 41.566085910873056, 1.4333133072714845, 1.4333133072714845, 50.16596575450196, 2.866626614542969, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 55.89921898358789, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 55.89921898358789, 55.89921898358789, 55.89921898358789, 51.59927906177345, 41.566085910873056, 7.166566536357423, 2.866626614542969, 2.866626614542969, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 59.06345822495555, 55.09276336373178, 53.65945005646029, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 1.4333133072714845, 41.02347803003029, 41.02347803003029, 41.02347803003029, 1.4333133072714845, 104.20193453898386, 102.76862123171236, 106.00397822890662, 115.7100492204894, 105.19752260905051, 112.81661567061951, 1634.4703870195071, 2327.341279009308, 73107.54683101419, 17240.135448806974, 2090.59303850084, 7612.969333091498, 40537.15454312505, 4188.332814531141, 2943.650597086144, 1159.3955100221779, 3363.637993249166, 2178.2685815530313, 9049.288641655163, 13815.20846839885, 15581.91558841493, 649641.9057245489, 349653.00154490164, 75525.52548728156, 177991.6464157515, 27905.251314868583, 152866.35361227495, 271487.74835384573, 577493.0085727422, 191181.2826516585, 36098.890735678935, 137300.8511189859, 230849.9920471641, 127478.6547019503], \"loglift\": [20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9543, 3.9423, 3.9383, 3.9541, 3.9489, 3.9507, 3.9511, 3.9505, 3.9487, 3.9309, 3.9412, 3.9504, 3.9481, 3.9342, 3.9482, 3.9539, 3.9493, 3.9543, 3.9405, 3.9489, 3.9543, 3.9349, 3.9465, 3.9362, 3.8979, 3.894, 3.8887, 3.8516, 3.8832, 3.8813, 3.8425, 3.8825, 3.8181, 3.8909, 3.862, 3.8708, 3.8938, 3.857, 3.8134, 3.8692, 3.8211, 3.7873, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.8697, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.875, 5.7706, 5.8017, 5.795, 5.875, 5.7706, 5.7832, 5.7832, 5.718, 5.6903, 5.6976, 5.521, 5.5, 5.6033, 5.5256, 5.3774, 5.2701, 4.4408, 4.1034, 4.6132, 4.4616, 4.3208, 4.5502, 4.3077, 3.2834, 3.8169, 4.1317, 4.1301, 4.2413, 3.4566, 4.4115, 3.1471, 3.7503, 2.662, 3.205, 2.0073, 2.4446, 2.4988, 1.7022, 2.0796, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 6.0707, 5.8923, 6.046, 5.8227, 5.6864, 5.8624, 5.3609, 5.3708, 5.0687, 5.4634, 5.3897, 4.4986, 3.7543, 4.2551, 5.0686, 3.4127, 4.2974, 2.7905, 3.2065, 3.4746, 3.624, 3.2286, 3.6948, 3.3644, 3.0074, 2.5964, 1.863, 3.5412, 2.4581, 2.2604, 1.6021, 1.8559, 2.0642, 2.2107, 2.7553, 1.6541, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.2137, 6.1759, 6.169, 6.0528, 6.0401, 5.9198, 5.9519, 5.8355, 5.9069, 5.9987, 5.6739, 5.2909, 5.5393, 5.9367, 5.8625, 5.554, 5.2353, 4.3036, 5.1651, 5.452, 4.8553, 5.4265, 4.9724, 3.7993, 4.1192, 3.9143, 4.5289, 3.0221, 5.2448, 3.2266, 2.3075, 4.1301, 3.4225, 1.9399, 3.1842, 2.5639, 2.5894, 2.1837, 1.9665, 2.0775, 3.2288, 2.3703, 1.9415, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.3861, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.387, 6.2352, 6.2439, 6.2183, 5.9548, 6.1982, 5.9947, 5.9732, 6.0845, 6.1418, 6.0141, 5.5956, 5.4545, 4.3868, 5.0225, 4.3604, 5.1435, 3.7148, 4.6516, 4.1631, 3.885, 1.9736, 1.6801, 3.3944, 3.6188, 2.8784, 2.2473, 1.9932, 3.0275, 3.238, 2.9168, 2.561, 2.1615, 2.2254, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.479, 6.4838, 6.4903, 6.4551, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.4903, 6.3814, 6.4214, 6.2049, 6.1915, 6.1241, 6.0786, 6.0734, 6.0364, 5.8346, 5.7981, 5.7974, 5.7529, 5.061, 5.4095, 5.1614, 5.1103, 4.9668, 4.5964, 4.5823, 2.9761, 1.9655, 3.8509, 1.1446, 3.5505, 3.3874, 2.2534, 2.5719, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5037, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.5257, 6.4523, 6.4523, 6.4779, 6.34, 6.3649, 6.1625, 6.12, 6.3062, 6.1533, 5.8531, 5.9186, 6.3028, 6.1904, 6.2166, 5.5715, 5.3479, 5.6513, 4.9747, 5.6796, 4.8511, 5.1151, 5.2738, 5.3127, 3.7977, 5.6182, 4.2643, 4.1544, 4.2553, 4.4783, 3.7151, 1.5404, 2.7477, 2.1021, 1.8224, 2.9029, 1.5973, 0.9437, 1.5614, 1.9126, 2.0539, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5355, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.5508, 6.4961, 6.4923, 6.4855, 6.5508, 6.4371, 6.4269, 6.3855, 6.3351, 6.3258, 6.4607, 6.1445, 6.0938, 5.8044, 6.1097, 5.8174, 5.085, 5.193, 4.7051, 4.3684, 5.5389, 3.3549, 4.9089, 4.7618, 3.4656, 4.1584, 3.0306, 3.0165, 1.0268, 1.6709, 1.9446, 3.1693, 5.5291, 1.756, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5345, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5662, 6.5021, 6.4788, 6.4734, 6.5662, 6.4728, 6.3149, 6.1508, 5.9679, 6.0795, 6.3029, 6.0393, 5.7249, 6.4574, 6.0816, 6.4142, 5.8498, 5.6154, 5.606, 5.2195, 4.7728, 5.5798, 4.5348, 4.9836, 3.9022, 3.6021, 3.6705, 2.169, 2.7413, 4.9326, 2.0147, 3.2745, 2.1617, 2.5269, 4.2703, 0.9338, 1.6526, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.6498, 6.5043, 6.494, 6.4605, 6.3228, 6.1504, 6.4994, 5.994, 6.1743, 6.1156, 6.0738, 5.4449, 5.7306, 5.5026, 5.1864, 5.3256, 5.8489, 6.2371, 6.2371, 5.3197, 5.677, 5.1082, 5.0421, 4.1334, 4.6181, 4.4905, 3.8033, 3.548, 3.149, 1.9366, 2.2009, 3.0707, 2.8581, 4.487, 3.243, 2.3742, 2.1236, 1.49, 1.2939, 1.8253, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6723, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.6932, 6.678, 6.6932, 6.6932, 6.5079, 6.398, 5.3085, 6.6153, 6.1966, 5.4659, 6.2569, 6.3859, 4.9028, 4.484, 5.1518, 5.8384, 5.261, 4.5152, 4.5544, 3.9917, 3.0845, 3.034, 2.0688, 1.3264, 4.0232, 2.9103, 2.9362, 1.7552, 1.6898, 0.648, 1.623, 0.9612, 1.2986, 2.0939, 1.0295, 0.2375, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7496, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.7576, 6.6734, 6.5563, 6.4437, 6.0999, 6.3303, 6.5538, 6.3356, 6.4567, 6.4567, 6.4269, 6.0558, 5.5274, 5.6028, 6.1592, 4.0437, 4.4021, 4.0468, 4.6732, 4.8364, 3.4881, 3.7177, 2.4126, 1.6524, 3.1182, 3.5406, 2.7289, 0.749, 4.2186, 1.8209, 1.6659, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.7713, 6.6793, 6.6194, 6.5574, 6.5342, 6.4924, 6.4876, 6.4876, 6.4259, 6.5379, 6.3807, 6.3807, 6.0774, 6.0174, 5.5905, 6.1213, 5.9062, 5.3236, 5.6125, 4.7021, 4.3294, 4.0711, 4.515, 5.7459, 5.5556, 4.3199, 2.2674, 4.1608, 3.9095, 3.1831, 2.9559, 2.6918, 0.9665, 1.4663, 4.2954, 2.9218, 3.6664, 0.4923, 0.3938, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.8677, 6.6756, 6.8052, 6.7175, 6.0577, 5.3985, 5.883, 5.8437, 5.5749, 5.7561, 5.3052, 4.5855, 4.0461, 5.3147, 5.2537, 5.8748, 5.5299, 6.0478, 5.3855, 5.3098, 3.3844, 3.7953, 2.9552, 2.9517, 3.7002, 1.1917, 2.008, 1.7908, 4.1291, 1.9048, 1.4411, 0.7006, 1.5681, 3.5958, 0.2777, 1.146, 1.5517, 1.5693, 0.9519, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9215, 6.9251, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9416, 6.9102, 6.8802, 6.7492, 6.4568, 6.3826, 6.2802, 5.748, 5.7386, 5.3483, 4.6014, 4.6776, 5.6388, 4.5723, 4.0291, 5.4959, 3.6434, 5.4013, 2.2489, 2.4023, 1.438, 3.7625, 2.5831, 1.8682, 4.8153, 1.613, 1.617, 2.2168, 2.5804, 0.4836, 1.2781, 1.692, 1.0667, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 7.0406, 6.9996, 7.0406, 7.0406, 6.8178, 6.9037, 7.0406, 6.7508, 6.6598, 6.2246, 6.5601, 6.2758, 6.1935, 5.9075, 5.9892, 6.1878, 6.1548, 6.2312, 5.7585, 6.0096, 5.681, 4.5898, 5.7581, 5.6159, 1.9308, 2.9048, 2.8819, 1.6396, 3.1759, 0.5111, 2.8472, 4.1912, 1.2125, 1.3818, 1.6861, 2.0647, 0.7708, 2.2223, -0.2337, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 7.0464, 6.871, 6.0922, 6.1539, 6.409, 5.6841, 4.1273, 5.2888, 6.4814, 6.4814, 4.8025, 4.9854, 4.3785, 4.8281, 5.5818, 4.3078, 5.1031, 3.9114, 2.2319, 3.9812, 4.3325, 4.2806, 3.9591, 4.1444, 3.9493, 3.8768, 3.15, 1.6385, 2.2738, 0.0765, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.2111, 7.1098, 6.7473, 6.9983, 6.3004, 6.5373, 6.5373, 6.5373, 5.5698, 6.0382, 5.9724, 5.0159, 5.3592, 5.6325, 4.8639, 5.8814, 5.8346, 5.7299, 5.2151, 5.698, 5.6945, 5.4877, 5.1937, 4.5396, 5.2646, 2.1965, 2.749, 1.8269, 2.9176, 1.4986, 3.5017, 2.8137, 1.3775, 2.578, 2.2566, 3.7833, 0.284, 1.0689, 1.2729, 1.1649, 0.53, 0.7837, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2404, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.2585, 7.0444, 6.8324, 6.2892, 6.6116, 6.7833, 6.3232, 6.2778, 6.7393, 6.2001, 6.2275, 6.0768, 5.6689, 6.2341, 4.9873, 5.5778, 5.1906, 4.3104, 3.746, 2.2374, 2.5831, 2.7649, 1.5648, 1.7784, 4.0542, 0.4506, 1.2015, 4.3006, 0.2188, 1.8791, 0.9086, 1.6202, 1.102, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.2748, 7.1781, 7.2748, 6.9934, 6.91, 7.067, 6.9452, 6.8119, 6.7686, 6.376, 6.376, 5.3337, 6.2063, 5.5202, 4.3725, 3.4961, 4.5905, 4.0421, 3.9709, 4.2447, 3.6215, 1.8289, 2.6441, 1.8632, 3.0872, 3.173, 1.6354, 2.7144, 0.5317, 2.5598, 0.1982, 0.9151, 2.8096, 1.0793, 1.9745, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.2927, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.3207, 7.2121, 6.7492, 7.094, 7.1475, 6.7423, 6.304, 6.6608, 6.2734, 5.498, 5.031, 6.1828, 4.3977, 6.2487, 4.6596, 5.5681, 4.3336, 5.6165, 4.1936, 4.5979, 3.1196, 3.4988, 3.1306, 2.5483, 2.5168, 2.7575, 2.1691, 3.34, 2.8007, 0.7053, 2.9366, 3.7559, 1.4797, -0.0942, 1.5314, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3344, 7.3039, 7.3344, 7.3344, 7.3344, 7.3344, 7.2865, 7.2808, 7.2576, 7.1611, 7.1843, 7.0319, 7.025, 7.0625, 7.0266, 6.9948, 6.8772, 5.6093, 4.5793, 6.6348, 6.6348, 6.8243, 6.4378, 4.1343, 4.2198, 5.2613, 5.0771, 3.0386, 5.5622, 4.479, 3.7031, 0.4039, 1.7089, 2.2321, 0.9766, 3.5513, 3.1532, 1.6745, 1.6647, 2.2639, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3669, 7.3433, 7.3669, 7.3422, 7.3418, 7.3669, 7.3669, 7.3669, 7.2312, 7.0152, 6.9878, 6.9258, 7.0147, 6.7639, 6.7051, 6.4244, 6.679, 6.6174, 6.4247, 6.1743, 5.207, 4.4541, 5.9395, 4.7454, 4.884, 4.2443, 2.0943, 2.7865, 5.4038, 3.0542, 5.751, 3.1797, 4.6308, 3.3529, 0.1807, 1.2442, -0.1934, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.4007, 7.26, 7.2076, 7.0796, 6.0142, 6.1154, 6.4669, 4.6697, 5.8683, 4.3655, 5.4765, 5.2573, 5.082, 5.0983, 4.7352, 4.4056, 4.7311, 4.7289, 3.1789, 4.6441, 3.2759, 3.5296, 4.2738, 1.2155, 2.7956, 2.6596, 0.9305, 0.6847, 2.0161, 2.8169, 1.9418, 1.1255, 2.5528, 1.6964, 1.176, 0.6785, 0.9239, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.3866, 7.3762, 7.3744, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.4417, 7.0833, 7.0833, 7.0833, 7.4417, 6.8442, 6.8327, 6.8017, 6.7141, 6.7293, 6.6312, 5.4395, 5.1118, 3.1444, 3.8844, 4.944, 4.1111, 3.0206, 4.3961, 4.5764, 5.1887, 4.46, 4.7598, 3.7601, 3.3619, 3.2718, 0.4928, 0.9119, 2.0542, 1.3682, 2.695, 1.3574, 0.8697, 0.2289, 1.1045, 2.4256, 1.1867, 0.6226, 1.1519], \"logprob\": [20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, -7.705, -5.8078, -6.0002, -5.6049, -5.7355, -7.1941, -4.9969, -7.8873, -7.8873, -7.705, -8.3981, -6.3187, -6.501, -8.3981, -7.0118, -7.1941, -7.8873, -8.3981, -8.3981, -4.5914, -0.9866, -0.6794, -2.3429, -1.8938, -2.1366, -2.4083, -2.3698, -2.322, -0.6918, -1.7807, -2.7089, -2.5241, -1.1508, -2.5497, -3.2391, -2.785, -3.2821, -2.0174, -2.8833, -3.426, -1.9841, -2.6789, -2.2763, -0.6358, -0.8696, -0.7644, -0.1238, -0.9035, -0.9395, -0.1894, -1.0489, -0.0961, -1.3523, -0.9053, -1.2404, -1.5861, -1.2637, -1.1355, -1.4874, -1.3878, -1.369, -5.2482, -5.4363, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -5.1147, -9.4967, -9.4967, -4.4215, -4.4215, -5.1147, -5.4363, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -3.5778, -5.3536, -5.3223, -9.4967, -4.6764, -5.234, -5.234, -3.5751, -3.5751, -5.3858, -4.0119, -4.0161, -5.2482, -4.5269, -3.1082, -3.3655, -1.9852, -1.2847, -2.4937, -2.3374, -2.3468, -2.8046, -2.3722, -0.6919, -1.8129, -2.3429, -2.3747, -2.6133, -1.8682, -2.9385, -1.7843, -2.4041, -2.1016, -2.369, -1.9069, -2.3228, -2.4501, -2.3297, -2.543, -7.2995, -9.4967, -8.8036, -6.8577, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -8.8036, -8.8036, -8.8036, -4.8523, -4.9118, -4.9118, -4.9118, -5.7355, -5.8591, -6.2386, -6.6635, -6.7241, -6.7887, -6.7887, -6.9318, -7.0118, -7.0118, -7.0118, -7.0118, -7.0118, -7.1941, -7.1941, -7.1941, -5.0541, -7.0118, -5.4192, -4.6764, -5.7355, -4.2497, -4.6064, -3.6162, -5.0659, -5.09, -3.4032, -2.0513, -3.1599, -4.7782, -1.9705, -3.7505, -1.9962, -2.5692, -2.8727, -3.0833, -2.6977, -3.2662, -2.982, -2.7033, -2.5148, -2.1689, -3.3146, -2.6626, -2.5604, -2.3121, -2.6778, -2.8847, -2.9456, -3.0981, -3.1132, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -7.4173, -5.9414, -9.4967, -7.4173, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -6.7887, -5.4537, -5.4537, -5.9414, -5.9414, -5.9414, -5.9704, -6.501, -6.5523, -6.5523, -6.6635, -6.7887, -6.8577, -7.705, -7.8873, -8.1104, -8.3981, -6.5523, -6.5523, -5.2482, -5.2772, -3.9515, -4.6447, -4.6684, -5.1147, -5.6466, -3.9793, -2.2525, -3.5306, -5.4024, -5.292, -4.255, -3.1941, -1.7951, -3.8234, -4.4794, -3.3786, -4.4728, -3.7129, -2.2669, -2.9371, -2.7741, -3.5331, -2.1868, -4.4341, -2.4518, -1.7244, -3.3525, -2.9428, -1.9743, -2.9702, -2.7609, -2.7717, -2.6371, -2.5672, -2.8713, -3.2257, -3.1724, -3.1959, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -3.2982, -4.3969, -4.3969, -4.3969, -4.3969, -4.3969, -4.726, -6.0627, -6.0627, -6.0627, -6.4057, -6.501, -6.8577, -6.9318, -7.4173, -7.4173, -7.5508, -7.5508, -7.5508, -7.5508, -3.7007, -4.6215, -4.6764, -1.622, -5.4192, -3.4122, -3.7191, -4.6369, -5.09, -4.6604, -3.6445, -3.659, -1.8165, -3.3064, -2.5092, -3.6388, -2.4397, -3.3525, -2.9658, -3.0574, -2.0583, -2.2341, -3.0136, -3.1796, -3.0151, -2.8901, -2.9557, -3.1634, -3.2861, -3.241, -3.1941, -3.1996, -3.2545, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -2.4226, -3.1166, -6.2009, -3.1065, -7.1941, -7.4173, -7.705, -7.705, -7.8873, -8.1104, -8.1104, -8.1104, -8.1104, -8.3981, -8.3981, -8.3981, -8.3981, -8.3981, -8.3981, -8.8036, -3.1149, -6.2386, -1.4321, -3.1115, -3.1132, -3.1166, -3.483, -4.1737, -3.1132, -3.1166, -3.1132, -3.1166, -0.3909, -3.1166, -3.0816, -3.0948, -3.0965, -3.067, -3.08, -2.1802, -1.9487, -2.9528, -2.8874, -3.0151, -3.0638, -3.1031, -3.1065, -5.234, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -7.4173, -8.8036, -9.4967, -9.4967, -7.8873, -8.3981, -5.1147, -5.1147, -5.234, -5.4024, -6.7887, -6.8577, -7.0118, -7.0118, -7.0988, -7.2995, -5.234, -7.4173, -7.4173, -7.705, -7.8873, -7.8873, -7.8873, -5.9414, -5.9414, -6.7241, -4.3262, -5.1792, -3.5725, -3.2545, -5.3536, -4.255, -2.1942, -3.0213, -5.6255, -5.1147, -5.2626, -3.0574, -2.985, -3.8763, -2.6888, -4.2818, -3.222, -3.7797, -3.9753, -4.1168, -2.7621, -4.4794, -3.3808, -3.4399, -3.5751, -3.7378, -3.325, -2.3739, -3.1458, -3.0542, -2.9984, -3.359, -3.0558, -3.0882, -3.3875, -3.4122, -3.426, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -7.0118, -9.4967, -9.4967, -9.4967, -9.4967, -8.3981, -8.1104, -9.4967, -9.4967, -4.0203, -4.0203, -4.0895, -4.0895, -4.0895, -4.0895, -4.9428, -6.6063, -7.8873, -8.1104, -8.1104, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -4.0203, -4.0895, -4.0895, -8.8036, -4.0895, -4.0895, -4.0851, -4.0895, -4.0203, -6.9318, -3.3964, -3.3942, -3.1546, -5.0659, -4.0203, -1.5828, -2.584, -1.5188, -2.3174, -3.3919, -1.7825, -2.9542, -3.3919, -3.009, -3.3699, -3.12, -3.1868, -2.8874, -3.0965, -3.2643, -3.466, -3.8909, -3.6051, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -4.1688, -4.2872, -5.0424, -3.3023, -6.8577, -6.9318, -7.2995, -7.8873, -8.1104, -8.1104, -8.1104, -8.1104, -8.3981, -8.3981, -8.3981, -8.3981, -8.8036, -8.8036, -8.8036, -8.8036, -4.1688, -4.922, -5.7125, -8.8036, -6.6063, -4.1688, -2.3563, -1.1255, -3.1476, -5.7591, -4.164, -2.8285, -7.4173, -5.2482, -7.1941, -4.7693, -4.1835, -4.1688, -3.1406, -2.1696, -4.2927, -2.2874, -3.2982, -2.5497, -2.415, -2.4873, -1.7452, -2.415, -3.8407, -2.7527, -3.3853, -3.2901, -3.3764, -3.7315, -3.0981, -3.2962, -9.4967, -8.3981, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -6.6063, -7.0118, -7.0988, -7.0988, -7.0988, -7.0988, -7.0988, -7.2995, -7.5508, -7.705, -7.705, -7.8873, -8.1104, -8.1104, -8.1104, -8.3981, -8.3981, -8.3981, -8.3981, -4.9118, -4.9118, -4.6292, -2.577, -3.6359, -7.0988, -4.164, -5.2063, -4.9324, -4.7431, -3.1082, -4.1984, -3.483, -2.6999, -3.6678, -5.0308, -6.1294, -6.1294, -4.0119, -4.9118, -3.7284, -3.7569, -2.6184, -3.5204, -3.3942, -3.08, -2.9761, -2.7044, -1.9776, -2.3328, -2.9954, -2.9272, -3.7666, -3.4168, -3.3808, -3.4191, -3.4589, -3.4928, -3.5357, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -8.8036, -9.4967, -9.4967, -7.4173, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -5.1147, -5.3071, -5.4363, -5.4363, -5.4363, -5.6681, -5.6681, -5.8078, -5.8078, -5.8078, -6.031, -6.3187, -6.3612, -6.3612, -4.4091, -6.6063, -6.6063, -6.6063, -6.6635, -6.6635, -6.6635, -6.6635, -5.9414, -6.6635, -6.6635, -4.4728, -4.0037, -2.1096, -6.3612, -5.1147, -3.8131, -5.4363, -5.7355, -3.1996, -2.874, -4.1688, -5.0194, -4.5767, -3.9914, -4.0287, -3.6274, -3.4879, -3.4928, -3.0686, -2.7055, -4.063, -3.5409, -3.7996, -3.3655, -3.4214, -3.2662, -3.5859, -3.5725, -3.6303, -3.7996, -3.7378, -3.7378, -9.4967, -9.4967, -7.705, -6.3187, -9.4967, -9.4967, -6.8577, -5.4537, -8.3981, -7.705, -4.9534, -7.705, -4.9534, -9.4967, -4.9534, -7.705, -4.9534, -7.2995, -9.4967, -7.5508, -3.8983, -4.9534, -4.9534, -4.9534, -4.9534, -6.2778, -6.2778, -6.3187, -6.3187, -6.3187, -6.3187, -6.7241, -3.0182, -4.4995, -3.7863, -1.6031, -3.4237, -5.2063, -4.234, -4.9534, -4.9534, -4.9534, -3.6474, -3.0045, -3.3853, -4.4995, -2.4075, -3.1015, -3.003, -3.4806, -3.6826, -3.1978, -3.3167, -2.7248, -2.3795, -3.1652, -3.4145, -3.2352, -3.1652, -3.6737, -3.659, -3.659, -8.8036, -8.1104, -8.8036, -8.8036, -6.7887, -8.3981, -4.3668, -9.4967, -8.3981, -9.4967, -7.0118, -8.1104, -5.8591, -9.4967, -9.4967, -8.3981, -8.8036, -8.3981, -8.1104, -9.4967, -4.3668, -4.3668, -4.6215, -4.6215, -6.7887, -7.5508, -7.5508, -7.705, -8.1104, -8.1104, -8.3981, -4.9969, -4.8717, -4.3668, -4.8333, -4.8523, -4.8717, -4.8717, -4.3609, -5.5077, -5.2482, -5.2482, -3.9914, -3.7441, -2.1533, -4.3434, -4.2818, -3.3334, -3.9284, -2.5459, -2.3182, -2.3714, -3.0306, -4.164, -4.1984, -3.6445, -2.87, -3.6162, -3.5941, -3.5028, -3.4953, -3.4589, -3.0654, -3.1868, -3.8584, -3.6023, -3.7666, -3.483, -3.5204, -9.4967, -9.4967, -9.4967, -8.8036, -7.8873, -9.4967, -9.4967, -7.4173, -9.4967, -8.1104, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -8.3981, -7.0988, -9.4967, -9.4967, -9.4967, -5.4714, -5.4714, -6.8577, -7.0988, -7.0988, -7.0988, -7.1941, -7.1941, -7.1941, -7.4173, -7.4173, -7.5508, -7.705, -7.705, -7.705, -7.705, -7.8873, -7.8873, -7.8873, -7.8873, -7.8873, -7.8873, -7.8873, -5.0308, -7.0988, -7.2995, -5.6255, -4.2186, -5.4714, -5.4714, -4.9749, -5.4192, -4.9428, -3.8234, -3.1688, -5.0424, -5.0308, -5.8591, -5.4024, -6.1294, -5.4714, -5.4363, -3.7068, -4.1168, -3.3853, -3.5003, -4.2289, -2.7225, -3.2352, -3.3655, -4.5767, -3.4517, -3.5078, -3.3313, -3.7929, -4.4928, -3.6976, -3.9914, -4.2034, -4.2444, -4.1688, -6.1294, -6.4522, -5.7591, -9.4967, -9.4967, -9.4967, -8.8036, -8.8036, -9.4967, -7.8873, -9.4967, -9.4967, -9.4967, -9.4967, -8.3981, -9.4967, -8.3981, -4.9534, -7.8873, -9.4967, -5.4894, -6.6063, -6.6635, -6.8577, -6.9318, -5.3071, -5.7831, -7.5508, -7.5508, -7.705, -7.8873, -7.8873, -7.8873, -7.8873, -6.5523, -6.6635, -6.2386, -5.3071, -4.9428, -5.0308, -3.6274, -3.7222, -3.4306, -2.886, -3.4904, -4.922, -3.7505, -3.2089, -4.9428, -3.2962, -5.0308, -2.4041, -2.9542, -2.594, -3.9476, -3.6078, -3.4928, -4.6525, -3.5078, -3.5204, -3.7473, -3.9438, -3.4306, -3.6707, -3.7764, -3.7007, -8.3981, -9.4967, -8.8036, -9.4967, -7.5508, -8.8036, -8.8036, -9.4967, -9.4967, -7.705, -9.4967, -9.4967, -9.4967, -9.4967, -8.3981, -9.4967, -9.4967, -8.3981, -9.4967, -8.8036, -4.7431, -6.2009, -6.4522, -6.5523, -6.5523, -6.5523, -7.0988, -7.0988, -7.2995, -7.4173, -7.705, -7.8873, -7.8873, -8.1104, -8.3981, -8.3981, -8.3981, -8.3981, -5.8332, -8.3981, -8.3981, -4.2927, -6.2009, -8.3981, -4.5841, -4.9118, -3.1065, -5.0779, -3.7764, -3.7764, -3.6707, -4.1354, -4.8816, -4.9969, -5.5077, -4.726, -5.166, -4.9749, -3.8234, -5.1147, -4.9859, -3.2781, -3.8727, -3.936, -3.4978, -4.1076, -3.4032, -4.1076, -4.5269, -3.9438, -3.9793, -4.0895, -4.1592, -4.05, -4.2289, -4.2656, -9.4967, -6.0002, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -6.5523, -5.9132, -9.4967, -9.4967, -8.8036, -9.4967, -7.0988, -9.4967, -6.5523, -9.4967, -9.4967, -9.4967, -9.4967, -4.6139, -6.1294, -6.5523, -6.5523, -6.9318, -7.0118, -7.0988, -7.0988, -7.0988, -7.0988, -7.0988, -7.4173, -7.705, -7.705, -8.1104, -2.8234, -1.5712, -3.9438, -5.5649, -3.619, -1.3246, -3.659, -6.1294, -6.1294, -3.3655, -3.8513, -3.0275, -3.6826, -4.922, -3.3292, -4.4533, -3.2145, -1.6823, -3.4684, -3.8836, -3.917, -3.9833, -4.0986, -3.9914, -4.0078, -3.7896, -3.5178, -3.7537, -3.9555, -8.8036, -9.4967, -8.8036, -8.8036, -9.4967, -9.4967, -7.1941, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -8.1104, -7.705, -7.0988, -6.7241, -7.0988, -7.0988, -7.2995, -7.2995, -7.4173, -7.705, -8.1104, -8.3981, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -5.0194, -5.0194, -7.8873, -5.0194, -6.2009, -6.2009, -6.2009, -3.8909, -5.2772, -5.1792, -3.0415, -3.8131, -4.4341, -3.0816, -5.0308, -4.9749, -4.8816, -4.1031, -5.0194, -5.0194, -5.0194, -4.9324, -4.3434, -5.0779, -3.1868, -3.5805, -3.3105, -3.8763, -3.2881, -4.2085, -3.9914, -3.5513, -3.9793, -3.9673, -4.3847, -3.6303, -3.88, -3.936, -3.9914, -4.0037, -4.0371, -9.4967, -4.7605, -7.5508, -9.4967, -9.4967, -6.7241, -9.4967, -9.4967, -7.5508, -9.4967, -9.4967, -7.5508, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -7.5508, -9.4967, -4.7605, -4.9324, -5.0194, -6.0002, -6.6635, -4.9324, -6.8577, -7.5508, -7.5508, -7.5508, -7.5508, -7.705, -7.8873, -8.3981, -4.7605, -4.8239, -3.3853, -4.922, -5.6255, -4.1934, -4.1835, -5.8078, -4.1835, -4.3492, -4.255, -3.7253, -4.922, -4.1354, -4.7962, -4.5131, -4.0895, -3.7996, -3.1458, -3.3105, -3.426, -3.222, -3.359, -4.1449, -3.4636, -3.7473, -4.2764, -3.8131, -4.0851, -4.0203, -4.0718, -4.0543, -7.2995, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -8.8036, -9.4967, -9.4967, -8.1104, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -5.7831, -5.8332, -5.8332, -5.8591, -5.8591, -5.8591, -7.0118, -7.2995, -7.4173, -7.705, -7.8873, -7.8873, -8.1104, -8.3981, -8.3981, -8.3981, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -6.501, -8.8036, -4.1592, -3.447, -5.8591, -5.0308, -4.922, -5.7591, -5.8591, -5.8591, -3.7666, -5.7125, -4.7092, -3.5566, -2.8516, -4.5409, -4.3668, -4.3262, -4.5339, -4.1934, -3.3085, -3.7601, -3.5886, -4.0895, -4.1984, -3.6078, -4.1688, -3.5003, -4.1261, -3.716, -3.9057, -4.403, -4.2818, -4.3551, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -6.5523, -9.4967, -8.3981, -9.4967, -8.8036, -9.4967, -8.8036, -9.4967, -9.4967, -9.4967, -8.3981, -9.4967, -9.4967, -9.4967, -5.6049, -6.0627, -6.6063, -6.6063, -7.2995, -7.4173, -7.5508, -7.5508, -7.705, -7.8873, -5.3071, -8.1104, -8.1104, -8.1104, -8.3981, -8.3981, -8.3981, -6.501, -5.0779, -7.1941, -7.5508, -5.8858, -4.3492, -6.0627, -5.6255, -4.1307, -3.2276, -5.7831, -3.0849, -6.031, -3.9713, -5.1792, -3.8477, -5.3223, -3.783, -4.2764, -2.9791, -3.3376, -3.1528, -3.5178, -3.5003, -3.7441, -3.6162, -4.2034, -4.0037, -3.2089, -4.2927, -4.4794, -4.063, -4.1261, -4.2237, -9.4967, -9.4967, -8.8036, -9.4967, -4.9534, -5.4363, -9.4967, -9.4967, -9.4967, -9.4967, -5.9704, -9.4967, -7.8873, -7.4173, -9.4967, -9.4967, -4.9534, -5.4363, -9.4967, -4.9534, -4.726, -4.9534, -5.4363, -5.4363, -7.8873, -4.9534, -8.1104, -8.3981, -8.3981, -8.8036, -5.4363, -5.4363, -6.4057, -4.2603, -5.4363, -3.4446, -4.2603, -4.9534, -4.9534, -5.1529, -4.7431, -3.0542, -2.3755, -4.7431, -4.7431, -4.9534, -4.7431, -3.0784, -3.2033, -3.9914, -3.9914, -3.0948, -4.2656, -3.8268, -3.6707, -3.5103, -3.8338, -3.9713, -3.8442, -4.2603, -4.2237, -4.0806, -4.2289, -4.2603, -9.4967, -4.7782, -9.4967, -9.4967, -8.1104, -8.8036, -4.7782, -9.4967, -8.3981, -9.4967, -4.7782, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -5.3071, -9.4967, -8.3981, -8.8036, -4.7782, -4.7782, -4.7782, -5.3696, -4.9749, -7.705, -5.3071, -5.3223, -8.3981, -8.8036, -9.4967, -4.0851, -3.8338, -3.8763, -3.5996, -4.7782, -4.7782, -4.6215, -3.4168, -4.9749, -4.7782, -4.3262, -3.8584, -2.9216, -2.7562, -4.1688, -3.8064, -3.8946, -3.6678, -3.0431, -3.4168, -4.3093, -3.8727, -4.4663, -4.0329, -4.3038, -4.1786, -3.8513, -4.1168, -4.1076, -9.4967, -8.8036, -9.4967, -9.4967, -8.8036, -9.4967, -8.1104, -9.4967, -8.3981, -9.4967, -9.4967, -9.4967, -9.4967, -6.7887, -8.3981, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -7.2995, -8.3981, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -7.4173, -7.4173, -7.2995, -4.2927, -4.9324, -6.2778, -2.2119, -5.4192, -2.4277, -4.9749, -4.922, -4.726, -4.9324, -4.6764, -4.2444, -4.922, -4.922, -3.0833, -4.9324, -3.9753, -4.1984, -4.8333, -2.7598, -3.8619, -3.783, -3.1015, -3.2295, -3.8872, -4.2392, -4.0161, -3.8234, -4.234, -4.0586, -4.0329, -4.0851, -4.2135, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -6.1294, -9.4967, -9.4967, -5.9414, -8.8036, -9.4967, -9.4967, -9.4967, -5.8332, -9.4967, -9.4967, -9.4967, -5.8332, -5.8332, -5.8332, -5.9132, -6.1294, -7.8873, -8.8036, -8.8036, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -5.8332, -5.9132, -5.9414, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -9.4967, -6.501, -6.501, -6.501, -9.4967, -5.8078, -5.8332, -5.8332, -5.8332, -5.9132, -5.9414, -4.4598, -4.4341, -2.9542, -3.659, -4.7092, -4.2497, -3.6678, -4.5622, -4.7345, -5.0541, -4.7176, -4.8523, -4.4278, -4.403, -4.3728, -3.4214, -3.6218, -4.0119, -3.8407, -4.3668, -4.0037, -3.917, -3.803, -4.0329, -4.3787, -4.2818, -4.3262, -4.3908]}, \"token.table\": {\"Topic\": [20, 1, 21, 5, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 1, 8, 16, 11, 18, 1, 3, 4, 7, 8, 10, 11, 14, 15, 19, 20, 1, 4, 10, 11, 14, 15, 20, 21, 24, 25, 1, 2, 3, 5, 7, 8, 13, 14, 15, 16, 17, 18, 20, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 19, 13, 1, 6, 10, 14, 16, 21, 24, 1, 3, 10, 11, 12, 14, 17, 21, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 1, 6, 11, 21, 25, 19, 19, 3, 21, 1, 12, 1, 4, 12, 13, 14, 18, 20, 24, 25, 1, 3, 7, 25, 1, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 22, 4, 10, 3, 20, 1, 3, 4, 5, 7, 10, 11, 16, 17, 18, 21, 22, 23, 24, 25, 1, 21, 2, 1, 3, 4, 7, 8, 10, 14, 19, 20, 24, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 2, 4, 9, 1, 2, 3, 4, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 24, 25, 7, 3, 1, 7, 8, 14, 17, 1, 8, 3, 3, 1, 3, 14, 19, 20, 1, 4, 11, 16, 21, 23, 14, 12, 23, 25, 5, 1, 12, 13, 15, 2, 25, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 1, 19, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 16, 17, 20, 23, 25, 18, 1, 3, 16, 19, 20, 5, 20, 22, 1, 7, 16, 1, 16, 18, 19, 1, 4, 7, 8, 13, 14, 17, 23, 1, 2, 3, 6, 7, 10, 11, 12, 14, 16, 17, 18, 24, 1, 2, 3, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 1, 3, 5, 8, 11, 17, 18, 9, 10, 13, 4, 17, 8, 14, 17, 25, 13, 1, 3, 5, 6, 7, 9, 10, 11, 13, 14, 17, 18, 21, 25, 10, 3, 21, 1, 3, 4, 16, 18, 19, 20, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 21, 20, 16, 14, 1, 10, 14, 21, 1, 13, 17, 20, 5, 5, 4, 11, 15, 7, 1, 18, 20, 1, 14, 18, 20, 8, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 3, 10, 14, 15, 19, 12, 1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 17, 21, 25, 10, 17, 6, 12, 11, 22, 23, 2, 5, 17, 1, 8, 16, 7, 1, 2, 5, 6, 7, 9, 10, 11, 14, 15, 16, 17, 22, 1, 5, 12, 14, 18, 24, 17, 5, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 21, 24, 25, 8, 3, 21, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 21, 22, 24, 1, 3, 15, 23, 11, 1, 2, 3, 7, 8, 9, 14, 15, 20, 24, 25, 1, 3, 4, 7, 10, 11, 14, 15, 16, 18, 19, 20, 21, 24, 15, 8, 14, 1, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 18, 20, 21, 25, 23, 5, 1, 8, 13, 23, 11, 2, 1, 2, 4, 6, 7, 8, 11, 13, 14, 16, 17, 25, 10, 18, 16, 9, 8, 14, 25, 25, 20, 5, 23, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19, 20, 21, 23, 24, 20, 25, 25, 1, 2, 16, 24, 1, 2, 14, 24, 1, 2, 8, 23, 25, 1, 2, 3, 4, 5, 10, 14, 17, 21, 25, 1, 6, 7, 9, 14, 16, 23, 1, 3, 5, 7, 9, 10, 18, 20, 5, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 1, 3, 8, 11, 16, 22, 1, 2, 3, 4, 5, 7, 14, 15, 16, 18, 19, 22, 1, 8, 16, 20, 6, 9, 11, 17, 8, 22, 9, 16, 12, 1, 2, 4, 5, 7, 10, 14, 17, 20, 18, 1, 2, 3, 5, 6, 11, 13, 14, 15, 16, 17, 18, 21, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 2, 4, 21, 14, 25, 9, 10, 5, 11, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 1, 2, 4, 5, 11, 14, 16, 21, 7, 5, 3, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 13, 10, 1, 14, 18, 1, 6, 7, 10, 12, 14, 15, 16, 18, 20, 21, 24, 1, 16, 22, 16, 7, 7, 20, 4, 9, 2, 1, 7, 12, 17, 21, 1, 9, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 3, 4, 10, 11, 13, 16, 19, 22, 3, 20, 10, 16, 1, 10, 1, 18, 15, 21, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 23, 1, 3, 5, 8, 11, 14, 16, 18, 20, 24, 1, 8, 9, 14, 15, 16, 18, 20, 24, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 21, 24, 25, 1, 20, 1, 18, 7, 14, 11, 21, 1, 8, 18, 20, 24, 13, 24, 1, 3, 4, 7, 10, 11, 12, 13, 14, 15, 16, 21, 22, 24, 1, 11, 15, 3, 15, 1, 6, 7, 11, 13, 7, 10, 17, 7, 1, 2, 3, 4, 7, 8, 10, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 25, 10, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 25, 3, 10, 1, 7, 10, 11, 13, 17, 24, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 23, 6, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 20, 21, 23, 24, 25, 2, 1, 4, 21, 4, 1, 4, 1, 4, 5, 7, 8, 10, 12, 14, 19, 20, 21, 23, 25, 13, 8, 1, 19, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 10, 19, 3, 1, 2, 4, 8, 14, 15, 16, 18, 20, 23, 24, 25, 1, 21, 25, 3, 21, 1, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 20, 21, 20, 3, 9, 19, 1, 3, 14, 21, 1, 3, 4, 8, 10, 11, 12, 13, 14, 15, 16, 19, 20, 23, 24, 25, 8, 1, 3, 19, 9, 1, 2, 3, 9, 10, 14, 8, 6, 18, 7, 8, 16, 1, 4, 7, 8, 11, 12, 14, 20, 21, 14, 1, 3, 4, 5, 6, 7, 8, 9, 11, 14, 16, 18, 19, 20, 22, 23, 25, 22, 24, 24, 7, 1, 10, 15, 17, 14, 1, 3, 4, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 25, 25, 1, 7, 15, 1, 1, 3, 11, 16, 19, 9, 17, 4, 7, 16, 8, 1, 4, 8, 15, 16, 17, 18, 19, 20, 21, 24, 5, 1, 3, 7, 12, 13, 14, 18, 19, 21, 24, 20, 23, 1, 2, 3, 4, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 24, 3, 1, 3, 4, 5, 6, 7, 8, 11, 14, 16, 19, 21, 22, 24, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 8, 16, 18, 23, 9, 21, 1, 2, 3, 5, 8, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 23, 24, 25, 13, 19, 11, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 17, 21, 17, 17, 21, 1, 2, 1, 3, 11, 12, 13, 14, 16, 18, 19, 20, 23, 25, 3, 1, 2, 3, 6, 11, 12, 13, 14, 18, 19, 20, 23, 24, 25, 17, 18, 25, 5, 9, 2, 6, 7, 13, 17, 1, 5, 1, 3, 4, 10, 14, 21, 25, 18, 14, 1, 5, 14, 24, 5, 20, 5, 5, 24, 17, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 1, 11, 21, 1, 8, 11, 15, 20, 23, 25, 1, 3, 7, 8, 10, 13, 15, 16, 20, 24, 1, 11, 14, 23, 4, 7, 7, 4, 7, 19, 21, 1, 9, 15, 2, 7, 10, 1, 2, 5, 6, 7, 9, 11, 17, 20, 24, 5, 7, 9, 11, 14, 16, 17, 20, 21, 19, 1, 4, 9, 1, 2, 4, 8, 14, 1, 2, 3, 4, 5, 7, 9, 11, 14, 15, 21, 4, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 20, 24, 1, 8, 19, 13, 1, 18, 19, 11, 9, 23, 1, 3, 6, 14, 9, 9, 20, 1, 5, 7, 9, 17, 1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 15, 16, 21, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 1, 4, 7, 11, 14, 16, 20, 25, 11, 2, 8, 16, 1, 3, 4, 7, 13, 14, 15, 16, 18, 19, 20, 21, 22, 25, 15, 1, 3, 7, 9, 11, 14, 15, 16, 18, 19, 21, 1, 11, 12, 13, 1, 15, 10, 15, 25, 1, 6, 7, 8, 11, 13, 16, 17, 20, 1, 2, 6, 7, 8, 9, 14, 17, 1, 2, 7, 13, 17, 1, 2, 5, 6, 7, 8, 11, 14, 16, 17, 20, 22, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 1, 3, 8, 10, 1, 1, 3, 7, 11, 14, 15, 17, 23, 24, 25, 1, 7, 11, 16, 17, 1, 5, 6, 7, 10, 11, 13, 14, 16, 17, 18, 1, 3, 5, 6, 7, 9, 11, 13, 14, 16, 17, 18, 25, 25, 1, 5, 21, 1, 14, 1, 25, 17, 2, 16, 1, 6, 7, 9, 11, 13, 14, 16, 17, 20, 21, 22, 20, 24, 3, 14, 18, 15, 24, 1, 18, 6, 15, 13, 24, 17, 20, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 4, 1, 3, 7, 10, 21, 1, 8, 21, 25, 14, 24, 1, 5, 8, 16, 18, 14, 1, 3, 4, 7, 9, 10, 11, 25, 25, 4, 12, 25, 5, 21, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 11, 14, 25, 25, 4, 21, 24, 24, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 19, 20, 21, 24, 1, 3, 8, 11, 12, 13, 14, 18, 19, 20, 23, 24, 25, 20, 1, 11, 12, 13, 14, 15, 18, 20, 23, 25, 1, 12, 13, 20, 23, 1, 8, 9, 13, 14, 20, 1, 6, 10, 14, 17, 20, 21, 1, 2, 3, 4, 10, 11, 16, 19, 21, 23, 21, 11, 1, 3, 5, 9, 10, 14, 21, 1, 10, 15, 24, 9, 1, 22, 22, 6, 1, 13, 21, 1, 2, 4, 5, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 21, 25, 7, 1, 6, 9, 11, 14, 21, 5, 19, 11, 6, 1, 5, 21, 1, 4, 6, 7, 12, 16, 18, 19, 20, 23, 20, 6, 15, 25, 3, 5, 1, 2, 5, 7, 1, 13, 16, 11, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 19, 21, 3, 1, 3, 5, 10, 14, 15, 25, 1, 3, 5, 9, 13, 13, 1, 8, 18, 24, 24, 1, 4, 7, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 23, 15, 2, 1, 20, 12, 8, 1, 3, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 11, 1, 17, 22, 11, 1, 2, 4, 5, 17, 4, 1, 13, 20, 24, 4, 17, 12, 1, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 1, 2, 7, 8, 10, 11, 12, 14, 1, 12, 12, 15, 15, 4, 15, 5, 8, 1, 5, 13, 16, 22, 4, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 8, 17, 7, 1, 2, 3, 4, 5, 7, 8, 10, 11, 14, 16, 17, 18, 19, 20, 21, 22, 24, 25, 1, 3, 4, 6, 13, 18, 19, 20, 21, 25, 1, 24, 1, 6, 7, 10, 17, 17, 8, 19, 8, 15, 25, 5, 16, 5, 20, 22, 12, 2, 1, 2, 14, 20, 16, 1, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 1, 2, 20, 1, 2, 3, 7, 10, 11, 13, 14, 17, 18, 10, 1, 21, 11, 10, 3, 3, 1, 3, 13, 1, 10, 14, 25, 25, 4, 1, 2, 3, 6, 9, 14, 20, 1, 14, 21, 19, 15, 21, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 14, 24, 7, 7, 13, 25, 2, 8, 7, 6, 9, 2, 1, 3, 5, 7, 18, 22, 1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 2, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 21, 2, 16, 1, 3, 4, 5, 7, 10, 11, 14, 16, 17, 21, 24, 25, 4, 23, 25, 5, 16, 2, 8, 11, 1, 2, 3, 4, 14, 19, 1, 3, 2, 17, 1, 2, 4, 5, 6, 7, 8, 9, 11, 15, 17, 20, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 17, 18, 18, 1, 14, 23, 1, 3, 5, 6, 7, 9, 10, 12, 13, 15, 17, 21, 22, 14, 1, 2, 7, 8, 9, 16, 25, 15, 6, 7, 2, 5, 13, 2, 10, 2, 1, 2, 3, 4, 7, 8, 11, 12, 14, 20, 23, 24, 25, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 15, 1, 2, 14, 20, 21, 11, 1, 4, 6, 8, 10, 13, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 3, 10, 16, 4, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 20, 21, 22, 23, 25, 2, 21, 1, 11, 13, 23, 6, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 14, 7, 1, 2, 3, 4, 7, 9, 11, 13, 14, 15, 16, 17, 19, 21, 24, 25, 1, 4, 9, 15, 12, 10, 1, 10, 11, 17, 25, 1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 24, 1, 5, 6, 7, 9, 10, 11, 14, 17, 20, 5, 15, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 20, 21, 24, 1, 13, 16, 22, 20, 10, 6, 15, 16, 14, 1, 16, 24, 1, 3, 4, 7, 11, 13, 16, 22, 16, 6, 10, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 5, 19, 20, 12, 20, 22, 21, 1, 11, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 5, 1, 3, 4, 7, 10, 11, 15, 16, 17, 21, 22, 1, 7, 16, 22, 3, 19, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 18, 1, 14, 18, 11, 1, 3, 5, 14, 1, 12, 18, 24, 1, 3, 7, 15, 16, 19, 1, 10, 11, 12, 14, 17, 20, 23, 8, 14, 1, 4, 6, 7, 11, 14, 19, 21, 24, 25, 1, 3, 4, 5, 10, 11, 14, 15, 18, 19, 21, 25, 1, 10, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 9, 13, 6, 14, 15, 1, 2, 3, 1, 3, 4, 5, 14, 16, 18, 19, 20, 21, 24, 25, 5, 11, 1, 21, 25, 16, 1, 12, 13, 20, 23, 1, 3, 8, 11, 14, 15, 16, 18, 19, 20, 23, 7, 22, 14, 4, 18, 1, 8, 14, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 4, 5, 7, 9, 15, 18, 20, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 20, 21, 25, 23, 6, 7, 1, 3, 14, 16, 19, 3, 8, 23, 8, 7, 1, 13, 25, 1, 2, 3, 5, 7, 10, 11, 13, 14, 21, 21, 11, 1, 2, 8, 16, 18, 19, 4, 8, 1, 11, 13, 14, 15, 16, 19, 20, 11, 1, 2, 3, 7, 10, 14, 15, 16, 17, 20, 21, 25, 9, 14, 15, 12, 1, 4, 7, 9, 10, 11, 17, 21, 25, 1, 3, 4, 6, 7, 9, 11, 12, 14, 17, 1, 6, 7, 17, 18, 1, 13, 9, 19, 20, 18, 1, 4, 5, 10, 11, 14, 16, 19, 21, 25, 18, 14, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 1, 4, 11, 14, 3, 7, 10, 21, 4, 1, 3, 8, 10, 11, 14, 16, 18, 20, 22, 1, 3, 5, 7, 9, 10, 11, 17, 21, 1, 3, 4, 5, 6, 9, 10, 11, 14, 18, 21, 25, 1, 3, 5, 6, 14, 15, 16, 20, 1, 3, 4, 5, 9, 11, 21, 1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 1, 2, 4, 5, 7, 14, 16, 25, 19, 1, 3, 4, 5, 6, 7, 9, 11, 13, 14, 15, 16, 20, 21, 24, 25, 1, 3, 5, 8, 11, 12, 14, 15, 16, 18, 19, 20, 21, 24, 25, 1, 11, 15, 19, 20, 25, 14, 1, 6, 5, 10, 21, 1, 5, 19, 24, 11, 1, 11, 20, 24, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 15, 1, 3, 4, 7, 11, 14, 16, 18, 1, 6, 7, 8, 13, 14, 20, 1, 8, 11, 13, 16, 19, 22, 23, 18, 14, 14, 15, 25, 18, 16, 1, 3, 4, 5, 9, 10, 11, 14, 17, 18, 21, 25, 9, 16, 25, 1, 18, 5, 7, 21, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 18, 19, 20, 21, 23, 25, 1, 2, 3, 4, 7, 8, 11, 12, 13, 14, 15, 17, 20, 23, 25, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 11, 12, 5, 23, 1, 3, 8, 15, 18, 19, 20, 21, 24, 3, 18, 7, 11, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 7, 1, 3, 4, 7, 10, 14, 17, 21, 1, 10, 11, 14, 21, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 2, 8, 1, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 17, 18, 19, 21, 25, 9, 13, 13, 24, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 9, 1, 2, 3, 4, 5, 7, 15, 20, 22, 18, 3, 22, 22, 1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 15, 16, 18, 20, 22, 24, 11, 24, 5, 16, 15, 9, 11, 1, 3, 4, 7, 9, 10, 11, 12, 14, 15, 18, 21, 22, 25, 25, 22, 7, 8, 16, 1, 3, 10, 17, 16, 1, 18, 1, 2, 3, 7, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 24, 1, 14, 18, 19, 23, 20, 6, 1, 22, 19, 16, 3, 24, 24, 2, 1, 2, 7, 8, 11, 12, 14, 18, 19, 20, 2, 1, 14, 1, 10, 9, 14, 23, 7, 20, 14, 24, 1, 3, 5, 10, 14, 21, 1, 2, 4, 5, 6, 8, 13, 20, 23, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 16, 18, 1, 3, 15, 18, 1, 22, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 6, 22, 20, 1, 15, 24, 1, 13, 16, 18, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 1, 3, 7, 14, 16, 20, 25, 8, 25, 23, 16, 4, 1, 5, 23, 6, 21, 24, 2, 21, 1, 2, 6, 7, 9, 13, 17, 18, 20, 19, 24, 23, 6, 21, 14, 16, 20, 24, 24, 12, 6, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 19, 21, 22, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 20, 22, 25, 1, 3, 4, 5, 7, 9, 10, 15, 16, 17, 25, 6, 7, 16, 1, 8, 18, 20, 23, 1, 3, 11, 16, 24, 1, 11, 13, 15, 16, 1, 3, 4, 7, 10, 11, 14, 19, 1, 3, 7, 11, 14, 18, 19, 23, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 1, 8, 12, 13, 14, 20, 23, 24, 1, 5, 8, 10, 14, 16, 18, 19, 20, 21, 23, 24, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 22, 3, 13, 22, 21, 11, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 10, 8, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 5, 20, 4, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 21, 6, 4, 11, 14, 22, 1, 7, 1, 10, 11, 21, 1, 3, 7, 13, 14, 16, 12, 14, 20, 23, 23, 9, 23, 1, 10, 14, 22, 18, 7, 10, 17, 9, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 15, 17, 18, 20, 21, 22, 12, 1, 5, 5, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 24, 25, 15, 1, 3, 4, 6, 7, 10, 11, 14, 17, 18, 19, 21, 24, 25, 10, 1, 2, 8, 17, 1, 5, 6, 7, 8, 9, 10, 11, 12, 14, 17, 20, 23, 20, 5, 1, 2, 5, 10, 2, 10, 14, 23, 6, 10, 23, 23, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 24, 1, 1, 3, 13, 20, 24, 1, 20, 23, 11, 19, 16, 16, 22, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 21, 4, 4, 1, 6, 7, 9, 13, 17, 18, 20, 1, 2, 8, 13, 14, 16, 18, 20, 21, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 3, 9, 10, 11, 12, 14, 17, 20, 21, 11, 21, 22, 1, 3, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 22, 25, 11, 1, 8, 16, 18, 20, 25, 17, 1, 3, 11, 14, 15, 16, 1, 23, 1, 3, 4, 5, 9, 10, 14, 16, 18, 2, 1, 2, 9, 22, 23, 25, 1, 2, 5, 6, 7, 8, 11, 12, 15, 17, 20, 23, 25, 16, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 20, 21, 22, 24, 25, 1, 4, 1, 16, 21, 16, 16, 1, 11, 14, 20, 22, 1, 10, 11, 12, 20, 1, 3, 5, 10, 11, 12, 13, 14, 15, 16, 18, 20, 23, 13, 1, 5, 16, 1, 8, 16, 3, 24, 9, 1, 3, 10, 14, 20, 21, 23, 14, 1, 8, 16, 20, 4, 2, 24, 1, 3, 4, 5, 7, 10, 11, 14, 16, 17, 21, 25, 3, 4, 1, 14, 16, 21, 1, 3, 4, 7, 10, 11, 14, 15, 16, 17, 21, 24, 25, 1, 2, 3, 4, 7, 9, 10, 11, 14, 16, 17, 20, 21, 25, 1, 11, 14, 16, 20, 21, 11, 6, 1, 1, 2, 3, 4, 5, 7, 9, 11, 13, 14, 15, 16, 19, 20, 22, 24, 13, 2, 1, 2, 3, 4, 5, 7, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 1, 3, 12, 13, 15, 1, 3, 4, 7, 8, 10, 11, 12, 13, 14, 16, 18, 22, 23, 25, 1, 10, 19, 21, 19, 1, 2, 3, 4, 5, 7, 10, 11, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 1, 2, 3, 4, 8, 10, 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 1, 2, 4, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 11, 11, 21, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 3, 10, 11, 15, 1, 2, 3, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 23, 24, 25, 20, 8, 5, 23, 1, 18, 23, 1, 14, 23, 1, 11, 14, 18, 20, 23, 25, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 3, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 20, 14, 1, 2, 5, 6, 7, 8, 10, 12, 14, 15, 17, 19, 22, 23, 25, 9, 25, 13, 14, 1, 4, 11, 20, 14, 14, 1, 7, 11, 14, 4, 20, 1, 9, 15, 11, 6, 6, 6, 1, 5, 6, 7, 10, 11, 14, 21, 25, 20, 16, 4, 1, 2, 3, 4, 5, 8, 13, 14, 15, 16, 18, 19, 20, 21, 22, 15, 11, 25, 24, 1, 4, 5, 6, 11, 16, 21, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 19, 9, 1, 7, 17, 1, 2, 3, 4, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 23, 24, 25, 1, 3, 4, 5, 7, 8, 9, 10, 16, 18, 20, 23, 24, 16, 1, 11, 16, 20, 1, 3, 5, 7, 10, 11, 14, 15, 16, 18, 19, 20, 21, 22, 13, 12, 1, 15, 11, 12, 15, 25, 19, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 18, 12, 21, 14, 20, 1, 4, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 17, 1, 3, 11, 12, 1, 2, 3, 7, 8, 11, 14, 20, 2, 2, 1, 2, 4, 5, 7, 10, 11, 13, 14, 16, 17, 20, 23, 25, 1, 2, 3, 8, 11, 12, 13, 14, 15, 18, 19, 20, 22, 23, 25, 20, 1, 6, 11, 16, 19, 21, 24, 1, 12, 1, 11, 1, 3, 7, 9, 11, 16, 17, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 25, 1, 5, 9, 15, 5, 11, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 1, 2, 4, 7, 8, 11, 12, 14, 15, 16, 18, 20, 23, 25, 1, 3, 4, 6, 8, 10, 11, 12, 13, 14, 16, 18, 20, 23, 24, 25, 20, 1, 3, 4, 14, 1, 12, 10, 20, 14, 9, 8, 1, 3, 5, 7, 10, 11, 1, 3, 4, 5, 8, 11, 14, 15, 16, 18, 20, 21, 23, 24, 25, 23, 1, 23, 1, 15, 23, 8, 14, 1, 20, 12, 1, 18, 20, 6, 9, 11, 17, 1, 4, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 20, 21, 25, 9, 23, 6, 7, 6, 23, 25, 6, 9, 25, 25, 19, 19, 19, 15, 24, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 1, 3, 7, 9, 10, 19, 25, 21, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 25, 10, 6, 1, 2, 3, 4, 7, 11, 14, 19, 20, 21, 22, 25, 1, 14, 6, 1, 4, 5, 7, 10, 14, 17, 9, 1, 3, 6, 7, 8, 9, 10, 13, 14, 17, 18, 21, 25, 4, 1, 7, 10, 17, 1, 2, 3, 4, 7, 8, 11, 12, 14, 15, 16, 17, 19, 20, 21, 24, 15, 3, 1, 2, 5, 6, 7, 8, 12, 13, 14, 16, 17, 20, 15, 8, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 2, 1, 3, 10, 19, 1, 3, 19, 1, 3, 4, 10, 12, 14, 15, 18, 21, 24, 25, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 18, 19, 20, 21, 24, 25, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 18, 21, 24, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 10, 11, 15, 11, 8, 25, 14, 10, 1, 25, 13, 1, 6, 11, 1, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 19, 25, 22, 1, 2, 7, 10, 11, 17, 1, 2, 5, 7, 9, 11, 12, 13, 15, 17, 20, 21, 22, 5, 1, 5, 13, 15, 22, 19, 7, 1, 14, 20, 23, 25, 17, 16, 21, 9, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 10, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 23, 24, 10, 25, 1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 15, 17, 18, 21, 25, 1, 15, 21, 1, 7, 11, 12, 14, 18, 19, 1, 8, 10, 12, 14, 11, 1, 7, 10, 14, 20, 23, 25, 11, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 14, 11, 13, 17, 9, 7, 7, 14, 6, 7, 9, 11, 14, 17, 8, 3, 21, 10, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 25, 1, 3, 4, 5, 7, 8, 10, 11, 14, 15, 16, 18, 20, 21, 24, 20, 21, 17, 1, 3, 5, 6, 7, 8, 9, 10, 12, 14, 15, 24, 3, 15, 1, 6, 14, 16, 19, 22, 16, 12, 17, 20, 8, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 5, 6, 8, 10, 11, 12, 16, 1, 3, 6, 7, 11, 14, 17, 18, 19, 7, 17, 9, 19, 6, 20, 1, 2, 3, 5, 6, 7, 10, 11, 13, 14, 16, 17, 20, 24, 25, 6, 10, 25, 1, 7, 13, 22, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 23, 10, 1, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 21, 24, 25, 16, 17, 3, 7, 1, 2, 24, 10, 1, 2, 3, 4, 7, 8, 10, 11, 12, 14, 16, 19, 20, 19, 18, 10, 1, 18, 19, 9, 1, 3, 5, 7, 14, 16, 17, 24, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 25, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 13, 18, 8, 12, 1, 3, 6, 7, 8, 9, 12, 24, 3, 13, 1, 19, 17, 9, 7, 23, 14, 8, 8, 18, 16, 9, 17, 6, 3, 9, 5, 1, 11, 12, 10, 10, 1, 5, 7, 8, 11, 14, 16, 17, 18, 19, 20, 24, 14, 24, 24, 24, 1, 7, 11, 12, 13, 14, 15, 16, 22, 13, 1, 13, 22, 1, 4, 11, 15, 16, 21, 25, 1, 4, 9, 12, 13, 11, 1, 8, 18, 1, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 24, 12, 23, 4, 1, 8, 13, 6, 16, 19, 1, 2, 7, 11, 13, 17, 4, 1, 6, 9, 11, 14, 18, 21, 25, 11, 20, 17, 1, 6, 7, 11, 13, 17, 18, 20, 1, 2, 13, 22, 8, 25, 2, 1, 4, 9, 23, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 25, 1, 2, 4, 5, 6, 7, 8, 9, 12, 13, 14, 16, 17, 19, 20, 21, 25, 22, 21, 1, 13, 14, 18, 20, 23, 24, 1, 18, 14, 14, 16, 1, 3, 4, 7, 13, 16, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 25, 5, 12, 1, 2, 6, 8, 11, 14, 17, 18, 20, 23, 25, 25, 1, 5, 10, 14, 4, 1, 2, 3, 4, 5, 7, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 18, 1, 3, 1, 2, 3, 5, 6, 7, 8, 12, 13, 14, 16, 17, 19, 25, 12, 1, 7, 11, 12, 13, 16, 22, 25, 1, 5, 10, 11, 14, 21, 1, 5, 16, 25, 2, 22, 22, 22, 14, 1, 13, 11, 3, 11, 24, 14, 13, 2, 11, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 1, 23, 10, 17, 17, 25, 25, 20, 3, 1, 21, 1, 4, 7, 13, 14, 20, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 14, 1, 11, 17, 1, 2, 6, 7, 8, 9, 11, 14, 23, 25, 25, 1, 11, 12, 13, 15, 16, 17, 22, 1, 4, 11, 13, 15, 16, 17, 22, 22, 25, 16, 22, 8, 5, 1, 14, 20, 22, 23, 9, 25, 20, 10, 18, 14, 21, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 18, 19, 24, 21, 1, 2, 3, 7, 8, 11, 12, 14, 15, 16, 17, 19, 20, 23, 24, 3, 1, 5, 8, 9, 12, 13, 14, 18, 7, 3, 1, 13, 15, 16, 18, 21, 1, 5, 11, 12, 1, 3, 10, 11, 12, 15, 16, 17, 18, 19, 21, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 24, 25, 1, 11, 16, 17, 12, 16, 1, 8, 11, 14, 16, 1, 8, 16, 18, 20, 1, 16, 22, 6, 1, 7, 11, 14, 18, 11, 14, 16, 3, 20, 1, 13, 14, 18, 20, 16, 25, 1, 2, 6, 7, 8, 9, 10, 11, 12, 14, 17, 20, 21, 23, 24, 25, 1, 2, 2, 5, 16, 1, 2, 4, 5, 7, 11, 14, 20, 23, 1, 8, 14, 20, 23, 9, 10, 11, 14, 21, 1, 3, 15, 4, 6, 17, 1, 5, 7, 14, 1, 3, 10, 11, 12, 13, 14, 15, 17, 19, 25, 13, 1, 12, 14, 22, 3, 18, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 24, 1, 10, 1, 3, 4, 5, 9, 10, 11, 14, 16, 17, 18, 19, 21, 25, 17, 17, 1, 11, 14, 21, 25, 6, 6, 13, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 20, 21, 22, 24, 25, 10, 14, 1, 8, 14, 20, 1, 3, 10, 11, 15, 18, 25], \"Freq\": [0.9992231715298521, 0.44039032688255414, 0.5622004172968776, 0.9720062920920811, 0.794809283405686, 0.17465109712073595, 0.00034901477031297885, 0.00020530280606645814, 0.004064995560115871, 0.00328484489706333, 0.0004311358927395621, 0.009895595252403282, 0.00018477252545981234, 0.007473022140819076, 0.0011702259945788115, 6.159084181993745e-05, 0.001211286555792103, 0.00034901477031297885, 0.0008417415048724784, 0.0002668936478863956, 4.106056121329163e-05, 0.00020530280606645814, 4.106056121329163e-05, 0.00020530280606645814, 0.0003079542090996872, 0.19309225956723874, 0.006162518922358683, 0.8011274599066288, 1.0015388578546542, 0.984958368099047, 0.9494509043843152, 0.04673203364556288, 0.0017260044197924336, 0.00010207553020277833, 2.783878096439409e-05, 0.00061245318121667, 0.0004454204954303054, 0.00013919390482197046, 0.00017631227944116257, 0.0004918184637042957, 7.423674923838424e-05, 0.6339694100284949, 0.05757052629361606, 0.26461633471101836, 0.0010404311980773985, 0.0010404311980773985, 0.0006936207987182657, 0.0006936207987182657, 0.03710871273142722, 0.0010404311980773985, 0.00242767279551393, 0.7333455191364553, 0.0730492707379824, 0.0322454177340443, 0.0028528117566312653, 0.07218478232688202, 0.0018154256633108052, 0.0005186930466602301, 0.0012967326166505753, 0.0012102837755405369, 0.008904230634333949, 0.045644988106100244, 0.007607498017683375, 0.01201638891429533, 0.0001728976822200767, 0.0018154256633108052, 0.0054462769899324154, 0.7983240366630572, 0.00020699589793834132, 0.0036667844777649033, 0.008959965296473917, 0.13179724530159817, 0.00032527926818882205, 0.0021291006645086535, 0.005795885142273556, 0.022680836245529683, 0.005618460086897836, 0.0002661375830635817, 0.0070082896873409845, 0.006771722946840023, 0.0008279835917533653, 0.00017742505537572111, 0.0015376838132562496, 0.00014785421281310093, 0.002690946673198437, 0.00029570842562620187, 0.00041399179587668265, 0.00032527926818882205, 1.1618621400615654, 1.0706188085341382, 0.36856007071385466, 0.4784508327583531, 0.13610724603125754, 0.013982124792938174, 0.0008738827995586359, 0.00043694139977931793, 0.0015292948992276128, 0.7395150565782859, 0.00788907527889637, 0.0030870294569594493, 0.2140340423491885, 0.020580196379729663, 0.0034300327299549437, 0.0013720130919819774, 0.009947094916869337, 0.8083837121200634, 0.002135037251068008, 0.013940537345208759, 0.042889130661160284, 0.00014652216428898094, 0.0027839211214906383, 0.02591349134139406, 0.04498230443671715, 0.0036839858449800923, 6.279521326670612e-05, 0.021287577297413374, 0.0019675833490234583, 0.012768360030896911, 0.0012559042653341225, 0.004772436208269665, 4.186347551113741e-05, 0.0015908120694232218, 0.0006070203949114925, 0.006279521326670612, 0.0032653510898687185, 0.0012559042653341225, 0.41660529985424893, 0.09750336805099442, 0.026591827650271207, 0.017727885100180807, 0.4431971275045201, 1.0034263936895338, 0.9910000606407471, 1.0626831326183679, 0.9959402393666524, 0.26054630866216466, 0.740062387370191, 0.2963071533797595, 0.4668890966900688, 0.03411638866206186, 0.12067093026766323, 0.005054279801786942, 0.0012635699504467354, 0.003158924876116839, 0.0006317849752233677, 0.07265527215068729, 0.8487181393182878, 0.02415051615946347, 0.021562960856663815, 0.10522724898051941, 1.0027864181237933, 0.6976841664183262, 0.8378356020656501, 0.0049291121169959705, 0.03672251559286256, 0.008572368899123427, 0.021733476444248216, 0.00037819274554956296, 0.004563525796298059, 8.824497396156468e-05, 0.05161070334266369, 0.001916176577451119, 0.006303212425826049, 3.7819274554956296e-05, 0.00025212849703304196, 0.0028868712910283304, 0.005357730561952142, 0.000642927667434257, 0.0010967589620937326, 0.0004286184449561713, 0.00282383916677007, 0.00027734134673634614, 0.008194176153573865, 0.003075967663803112, 0.00018909637277478148, 7.563854910991259e-05, 0.9953379716770743, 1.007158981354708, 0.9932425784273897, 0.999428184248227, 0.9447200894464055, 0.9585896824210621, 0.016711093969277706, 0.0019240918429445546, 0.00014252532169959666, 0.00014252532169959666, 0.0035987643729148153, 0.0075538420500786225, 0.0005344699563734874, 7.126266084979833e-05, 0.0001781566521244958, 0.0001781566521244958, 7.126266084979833e-05, 7.126266084979833e-05, 0.01022619183194606, 3.5631330424899164e-05, 0.9992304379176805, 1.0302830062413646, 1.0194756258086881, 0.7174396631614004, 0.06743932833717164, 0.002391465543871335, 0.12674767382518073, 0.0014348793263228008, 0.0014348793263228008, 0.0014348793263228008, 0.010522448393033873, 0.0014348793263228008, 0.0693525007722687, 0.9516611631414561, 0.8768840576593393, 0.02580039778180748, 0.016034056876258584, 0.0214231943879952, 0.008362184261297286, 0.0009884007663447073, 0.0026435798274457648, 0.000902111810552709, 0.009899696564500163, 0.010825341726632508, 0.006965872067572223, 0.00021964461474326827, 0.000635400492650169, 0.0033338914737817507, 0.0024631574653352227, 0.002753402134817399, 0.0005804893389643519, 0.00022748906526981358, 0.0004706670315927177, 5.4911153685817067e-05, 0.0029024466948217595, 0.003608447242210836, 1.5688901053090593e-05, 0.00014904456000436062, 0.0018512903242646898, 0.9901577344699422, 0.8424117952743067, 0.003907290330585837, 0.0056122897475687486, 0.015179230920639527, 0.00028416656949715183, 0.0005209720440781117, 0.013497912051114712, 7.104164237428796e-05, 0.0003315276644133438, 0.00021312492712286386, 0.011414023874802266, 0.008809163654411707, 0.08700233136104465, 0.001918124344105775, 0.001633957774608623, 0.0015155550373181432, 0.003386318286507726, 0.0004736109491619197, 7.104164237428796e-05, 0.0005209720440781117, 7.104164237428796e-05, 4.7361094916191974e-05, 7.104164237428796e-05, 0.00028416656949715183, 0.0007577775186590716, 1.0194756258086881, 1.021755488330863, 0.8720917561651725, 0.8118978509992665, 0.12368147335469944, 0.00025983502805609123, 0.0004330583800934854, 0.00978711939011277, 0.0006928934081495766, 0.002641656118570261, 0.017971922773879646, 0.00012991751402804562, 0.000562975894121531, 8.661167601869708e-05, 0.008141497545757525, 0.00017322335203739415, 0.0002165291900467427, 0.004763642181028339, 0.016153077577487004, 0.002425126928523518, 1.1166053689095141, 1.0008992295591606, 0.6313511141214165, 0.003251992493634964, 0.3635263037527656, 0.0011614258905839156, 0.0004645703562335663, 0.19347670859954627, 0.8059805133638852, 1.0013744903519237, 0.9918375904438101, 0.8989885759737979, 0.09292172976872644, 0.0012311805199482582, 0.006641894910247183, 0.000226796411569416, 0.706852218306725, 0.2889190301048053, 0.001635390736442294, 0.0007268403273076862, 0.0003634201636538431, 0.0014536806546153725, 0.9824430642392479, 0.9996944674080446, 0.2925154222958784, 0.7069122705483728, 0.9720062920920811, 0.24449408939020814, 0.5491311098603605, 0.20527043868589667, 0.98733706154973, 1.0194756258086881, 0.6976841664183262, 1.0706188085341382, 0.8695629353679116, 0.015987590973473274, 0.029601232829843904, 0.023008179831634657, 0.011385955007146344, 0.0027114774275911746, 0.00132761135458821, 3.37528310488528e-05, 0.01760772686381821, 0.0019576642008334623, 0.006885577533965971, 0.000675056620977056, 0.0022389377929072354, 0.002542713272346911, 0.0005850490715134485, 0.0019801660881993643, 0.0011025924809291913, 0.0005850490715134485, 0.002148930243443628, 0.0015188773971983758, 0.0014176189040518176, 0.0004837905783668901, 0.00459038502264398, 3.37528310488528e-05, 0.406137385529895, 0.5962442468417607, 0.8992250934290424, 0.00034883185314287863, 0.000158559933246763, 0.0005073917863896416, 0.00022198390654546823, 0.0001268479465974104, 0.00022198390654546823, 0.00028540787984417343, 0.01595112928462436, 0.010084411754494128, 0.03694446444649578, 0.001427039399220867, 0.020327383442235017, 0.000317119866493526, 0.007579164809195272, 0.00621554938327311, 1.0041958362259815, 0.8488034248072395, 0.020125748068932768, 0.0020125748068932766, 0.1262890691325531, 0.002515718508616596, 0.9720062920920811, 0.8856750838560051, 1.0048718602946707, 0.14895059536603414, 0.8525044713502805, 0.9987725705887106, 0.7913326362094286, 0.07521881508101261, 0.1327842347858692, 1.045675926055409, 0.6584584813328684, 0.0031933001034571695, 0.2861196892697624, 0.000957990031037151, 0.000957990031037151, 0.04726084153116611, 0.0028739700931114526, 0.0006386600206914339, 0.8822096023260693, 0.018157928561932147, 0.012400536578880492, 0.000885752612777178, 0.000885752612777178, 0.0006643144595828835, 0.0006643144595828835, 0.0024358196851372396, 0.00442876306388589, 0.006643144595828835, 0.000885752612777178, 0.06908870379661988, 0.0002214381531942945, 0.8935977475495424, 0.06795625203925662, 0.0002966344335046916, 0.0003236012001869363, 0.00037753473355142566, 0.00018876736677571283, 0.0006741691670561173, 0.0037483805688320123, 8.090030004673407e-05, 8.090030004673407e-05, 0.004934918302850778, 5.393353336448938e-05, 0.0159912926425711, 0.004287715902476906, 0.001564072467570192, 0.0002696676668224469, 5.393353336448938e-05, 0.005528187169860162, 0.2697981380709956, 0.0034515753271342725, 0.00460210043617903, 0.48034423302618623, 0.2387339601267872, 0.0011505251090447575, 0.002301050218089515, 0.9125193977574423, 0.09776993547401167, 1.0009335606413836, 0.9962116011225916, 0.9397650195232854, 0.8587415144010541, 0.9824430642392479, 0.9397650195232854, 1.0104391375713688, 1.0009335606413836, 0.8075578750197302, 0.00330434319750876, 0.00578260059564033, 0.021006181755591404, 0.00047204902821553716, 0.002006208369916033, 0.11506195062753719, 0.00932296830725686, 0.0007080735423233058, 0.0005900612852694215, 0.005546576081532562, 0.00082608579937719, 0.012981348275927273, 0.014869544388789421, 0.9480951884988719, 0.9741262049001707, 1.2363396074896373, 0.6914168700020557, 0.044258547866418925, 0.06786310672850902, 0.0019670465718408412, 0.004917616429602103, 0.1858859010389595, 0.0019670465718408412, 0.0009835232859204206, 0.902354205654559, 0.07489442547943173, 0.002678599429984701, 0.0014497489889837784, 0.0030304008212166562, 0.0003223482515009078, 0.0014006604227653659, 0.0015495624069612167, 0.0012206690132978539, 0.000269987114201268, 0.0015708341189891954, 0.0006086982211083133, 0.001875183229543352, 0.001374479854115546, 0.0009277739015279935, 0.0005808813669178795, 0.00043852452488448373, 0.0003076216816353841, 0.00023071626122653807, 4.417970959657112e-05, 0.0004336156682626425, 4.7452280677798615e-05, 0.00023235254676715183, 0.0020600834956327053, 9.654084689621098e-05, 1.2363396074896373, 1.180900111808007, 0.9343356305507293, 1.0217407868088177, 0.6216378961613999, 0.019839507324299996, 0.019839507324299996, 0.34388479362119995, 1.0001738612376696, 0.9516611631414561, 0.9397650195232854, 1.180900111808007, 1.0023814887199587, 1.0051428702315839, 1.021755488330863, 0.9973327905168258, 0.9974119295247273, 0.9986540975458331, 0.5925938006943259, 0.40265989021537524, 0.0050649042794386825, 0.6158399216661748, 0.3287401717079225, 0.043832022894389665, 0.010958005723597416, 0.6423535184736465, 0.35735025089148253, 0.8846937957959805, 0.008404102449454288, 0.022887549510447726, 0.005739888821047115, 0.007406308156189826, 0.00812636589359717, 0.01238499308340632, 0.010677427591840333, 0.0044540714328197145, 0.002736219402147908, 0.0015532674049786998, 0.0020161616647405636, 0.007756050485787679, 0.004999258005428133, 0.0046700887540419185, 0.0012549577709099428, 0.0021190270557987557, 0.0020573078211638405, 0.0002983096340687569, 0.00022630386032802246, 0.0016458462569310724, 0.0023350443770209593, 8.229231284655363e-05, 0.0009875077541586434, 0.00048346733797350255, 0.6627933238358097, 0.016027719068575766, 0.002828421012101606, 0.004714035020169343, 0.00659964902823708, 0.3064122763110073, 1.0169036053446463, 0.8899406152810111, 0.0005348660004264684, 0.004087904431830865, 0.0007640942863235263, 0.00015281885726470525, 0.0025597158591838132, 0.03148068459652928, 0.02116541173116168, 0.00011461414294852895, 0.004393542146360276, 0.0011843461438014657, 0.04351516960612482, 7.640942863235263e-05, 0.00011461414294852895, 1.0055555029533487, 0.9397650195232854, 1.023913879277189, 0.9998442568098139, 0.9901577344699422, 1.253388556926686, 0.9710928413353701, 0.9224675238275054, 0.06825432351190062, 0.008273251334775833, 0.30618192992660437, 0.009771763721061841, 0.6840234604743289, 1.0049448320185628, 0.5637070675591872, 0.07052176238727198, 0.0029189471186784758, 0.2648068826065113, 0.02171696656296786, 0.0028021892339313366, 0.0003502736542414171, 0.008873599240782567, 0.00361949442716131, 0.0010508209627242513, 0.0028021892339313366, 0.05487620583115534, 0.0021016419254485026, 0.8902051915501344, 0.004467780133250361, 0.0016754175499688853, 0.0016754175499688853, 0.003909307616594066, 0.09829116293150794, 0.9824816113197984, 0.9720062920920811, 0.6976841664183262, 0.8257594455814616, 0.11831388480252349, 0.00047092859790280947, 0.009086151771301265, 0.00044322691567323246, 0.00041552523344365544, 0.009917202238188576, 0.0065930003706393325, 8.310504668873109e-05, 0.0008864538313464649, 0.001856012709381661, 0.00016621009337746217, 0.004155252334436555, 0.003656622054304168, 5.540336445915406e-05, 0.00016621009337746217, 0.010886761116223772, 0.00044322691567323246, 0.00662070205286891, 0.8587415144010541, 1.0626831326183679, 1.0302830062413646, 0.8587415144010541, 1.0073437855558436, 0.9141205136912388, 0.002821444155410314, 0.008820437068370109, 0.006711202117238126, 0.0066564167938321, 0.00019174863192108932, 0.002848836817113327, 8.217798510903827e-05, 0.00043828258724820413, 0.0007396018659813445, 8.217798510903827e-05, 0.002164020274538008, 0.00024653395532711484, 0.004875893783136271, 0.00016435597021807654, 0.0001369633085150638, 0.0008217798510903828, 0.048074121288787394, 0.4941610841764547, 0.4918690568843561, 0.01421056921101122, 1.2947904551138267, 0.9901577344699422, 0.9768363583625274, 0.02247350719176457, 3.438706066343167e-05, 1.2504385695793333e-05, 2.1882674967638335e-05, 8.753069987055334e-05, 4.6891446359225e-05, 0.000178187496165055, 0.00021257455682848668, 9.690898914239833e-05, 0.6976841664183262, 0.8894153637167017, 0.04004719826057422, 0.004402200022240283, 0.0007693165087410203, 0.0006838368966586846, 0.0019232912718525506, 0.006838368966586846, 0.05432229347832426, 0.0008975359268645236, 8.547961208233558e-05, 8.547961208233558e-05, 0.00029917864228817456, 0.00012821941812350338, 4.273980604116779e-05, 0.9993411595624927, 1.001865100134563, 1.1789316770870975, 0.6100976423178122, 0.0022025185643242315, 0.28832970296608124, 0.0008009158415724478, 0.07248288366230653, 0.0034038923266829033, 0.0014016027227517836, 0.0006006868811793359, 0.0012013737623586718, 0.0010011448019655598, 0.0034038923266829033, 0.003804350247469127, 0.0004004579207862239, 0.0006006868811793359, 0.0016018316831448956, 0.008609845296903814, 1.2947904551138267, 0.9720062920920811, 0.020093041387953994, 0.6660629464347303, 0.31379345486719645, 1.078992045928189, 1.0004718775373374, 1.0194756258086881, 0.7218139873184546, 0.002360706079066741, 0.002697949804647704, 0.2515838192833984, 0.002023462353485778, 0.012140774120914669, 0.000674487451161926, 0.000337243725580963, 0.0011241457519365434, 0.004046924706971556, 0.001011731176742889, 0.00011241457519365434, 1.0007671434154757, 1.108078164111428, 1.0192752333280681, 0.8720917561651725, 0.8587415144010541, 1.0479392685218645, 0.9966916663118945, 1.0465262496274894, 0.9840834265066726, 0.9720062920920811, 1.078992045928189, 0.7636287109730547, 0.001194236143166082, 0.005288760062592649, 0.0017060516330944027, 0.0010236309798566418, 0.00034121032661888054, 0.06329451558780234, 0.033097401682031416, 0.006738903950722891, 0.0034974058478435257, 0.0010236309798566418, 0.01816944989245539, 0.001194236143166082, 0.04213947533743175, 0.00017060516330944027, 0.00017060516330944027, 0.054934862585639774, 0.001279538724820802, 0.00025590774496416044, 0.0010236309798566418, 0.8856750838560051, 0.6976841664183262, 0.6976841664183262, 0.312784577226412, 0.6872919776921693, 0.9343356305507293, 0.6696818180969425, 0.1674932087580571, 0.8312986581964811, 0.0009737977253375412, 0.0003245992417791804, 0.7227317316062642, 0.2658422999474288, 0.011433044341794011, 0.2925154222958784, 0.7069122705483728, 0.32283096332364014, 0.12499857421372652, 0.0014763611127605494, 0.3503897040951704, 0.19438754651347234, 0.0014763611127605494, 0.002460601854600916, 0.0009842407418403662, 0.0004921203709201831, 0.00024606018546009155, 0.2052585248216707, 0.004390556680677448, 0.004390556680677448, 0.7782261716500777, 0.008781113361354896, 0.9343356305507293, 0.9999944139941609, 0.05965217269659986, 0.010788158891938272, 0.8592451258637894, 0.0025383903275148873, 0.04378723314963181, 0.0019037927456361657, 0.0012691951637574437, 0.021576317783876545, 1.000158913356943, 0.585636699124323, 0.0014950608657440779, 0.004805552782748822, 0.0025629614841327047, 0.0026697515459715676, 0.0004271602473554508, 0.16712644677782013, 0.0007475304328720389, 0.0009611105565497643, 0.12441042204227505, 0.08404377866718495, 0.0016018509275829405, 0.02018332168754505, 0.0009611105565497643, 0.0004271602473554508, 0.0016018509275829405, 0.0002135801236777254, 0.0002135801236777254, 0.694084581083215, 0.04199088212958952, 0.01729036322983098, 0.0037050778349637815, 0.24083005927264578, 0.0024700518899758543, 0.845009196051982, 0.007709030334788535, 0.0049735679579280875, 0.00907676152321876, 0.004103193565290672, 0.008952422324270556, 0.011439206303234601, 0.0008703743926374152, 0.01840220144433392, 0.03183083493073976, 0.00024867839789640436, 0.057569049113017606, 0.6468546772835085, 0.00229924648323522, 0.3494854654517534, 0.00153283098882348, 0.7418254493964119, 0.0010111205580141916, 0.0010111205580141916, 0.2561505413635952, 1.001865100134563, 1.253388556926686, 0.8720917561651725, 0.9343356305507293, 1.0057288404507492, 0.6789969023085267, 0.0033432438331721125, 0.0007960104364695506, 0.002547233396702562, 0.0074824981028137755, 0.2997775303744328, 0.003661648007759933, 0.001432818785645191, 0.002228829222114742, 1.108078164111428, 0.7929688889318202, 0.0006436435786784254, 0.0015631344053618904, 0.17635834055788857, 0.0013792362400251975, 0.0008275417440151184, 0.000551694496010079, 0.00045974541334173243, 0.009378806432171342, 0.0008275417440151184, 0.00018389816533669298, 0.00018389816533669298, 0.0014711853226935438, 0.013332616986910241, 0.9364646751436606, 0.013941106661177177, 0.007988905088547901, 0.006590282737426566, 0.00499830245757878, 0.0002739237323624734, 0.00723803179866018, 0.0007669864506149256, 0.0019077982301009913, 0.0005188437754159791, 0.002107601423118325, 2.9003689308967775e-05, 0.004966076136124371, 0.0004930627182524521, 0.009161943189488375, 0.00044150060392539835, 0.0007540959220331622, 1.2890528581763454e-05, 0.0005994095790520007, 4.8339482181612955e-05, 0.00021913898588997875, 7.0897907199699e-05, 0.0003125953181077638, 9.345633221778505e-05, 1.0194756258086881, 1.021755488330863, 1.0045259310853305, 1.0034954156158031, 0.6976841664183262, 1.006259718652122, 0.9480951884988719, 0.01596202701120406, 0.9796694078126491, 0.003990506752801015, 0.9841178155547174, 0.007154550952611674, 0.0018975113396057048, 6.221348654444934e-05, 3.7328091926669604e-05, 0.0007496725128606145, 0.0010265225279834141, 0.0007714472331511718, 9.332022981667401e-06, 8.709888116222908e-05, 0.00116028152405398, 0.00041060901119336566, 0.0008243286967139537, 4.666011490833701e-05, 5.910281221722687e-05, 0.0006345775627533833, 3.110674327222467e-05, 1.5553371636112334e-05, 9.332022981667401e-06, 0.00046660114908337, 0.00022396855156001764, 0.0001990831569422379, 0.3626548120525528, 0.6078969664483701, 0.015327634649738586, 0.004315547619829311, 0.00044643596067199764, 0.0029762397378133177, 0.006101291462517301, 0.0002976239737813318, 1.1166053689095141, 0.9720062920920811, 0.14832130936327237, 0.8652076379524222, 0.8717543014273543, 0.0006336507236302815, 0.012840745546507762, 0.005926497944542045, 0.05015159109673786, 0.0010436600153910518, 0.0130830237643664, 0.0077529029714763845, 0.006671969384107081, 0.005255573648933511, 0.003783267555792563, 0.0005218300076955259, 0.011442986597323318, 0.004174640061564207, 0.00035409893379339256, 0.002478692536553748, 0.0006709242956085334, 0.00026091500384776295, 0.0003913725057716444, 9.318392994562962e-05, 0.0003354621478042667, 5.591035796737778e-05, 0.00020500464588038518, 0.00011182071593475555, 1.8636785989125926e-05, 0.9814005744896266, 1.0113015343987968, 0.7764457161225675, 0.004144728022006588, 0.21967058516634919, 0.766883336913882, 0.005188385833921658, 0.0007982132052187166, 0.0017959797117421124, 0.001197319807828075, 0.0005986599039140375, 0.20334481402946805, 0.0003991066026093583, 0.0003991066026093583, 0.0013968731091327541, 0.01616381740567901, 0.0019955330130467914, 0.515765936181166, 0.07494034970153693, 0.4077636674936568, 1.0010738898757814, 0.9770296977958249, 1.1166053689095141, 0.994442199417269, 1.021755488330863, 1.0174403821927014, 1.0194756258086881, 0.2528983517330315, 0.018832855980119367, 0.7183389352416959, 0.005380815994319819, 0.005380815994319819, 0.999941633958903, 0.8720917561651725, 1.253388556926686, 0.9451541915551411, 7.721941433565164e-05, 0.014774647942888013, 0.01430275152194792, 0.000600595444832846, 0.00010581919742293001, 0.0021507036881633344, 0.0010181522779071103, 0.0003746571584433468, 0.011691591326079403, 0.003240355423788641, 5.719956617455677e-05, 1.715986985236703e-05, 0.0011068116054776735, 0.0004518765727789984, 0.00018303861175858165, 7.435943602692379e-05, 0.001255530477531521, 0.0004490165944702706, 5.7199566174556766e-06, 0.00014871887205384759, 0.00010867917573165786, 0.00039181702829571384, 0.0007979339481350669, 0.0014585889374511974, 0.9944335401760606, 0.001380909492002502, 0.002225701181227562, 0.00025993590437694154, 9.747596414135308e-05, 9.747596414135308e-05, 0.0002761818984005004, 0.00019495192828270617, 0.0010397436175077661, 0.9741262049001707, 1.180900111808007, 1.000767143415476, 0.9343356305507293, 0.3794426361240627, 0.6216400634372942, 0.49161932118736207, 0.5125392923017179, 0.8462889098997686, 1.2363396074896373, 0.7380800130264751, 0.029723985055873512, 0.0009842379157574011, 0.0010826617073331412, 0.015600170964754806, 0.002829684007802528, 0.0013287211862724913, 0.11276905919790423, 0.0031249553825297483, 0.0008612081762877259, 0.002903501851484333, 0.038016189496129615, 0.02765708543278297, 0.004871977682999135, 0.001870052039939062, 0.00014763568736361014, 0.0002706654268332853, 0.0017224163525754517, 0.0004183011141968954, 0.00895656503339235, 0.00014763568736361014, 7.381784368180507e-05, 0.004527494412484045, 9.84237915757401e-05, 0.001870052039939062, 1.2947904551138267, 0.9962364348402072, 0.00010243725337676931, 6.829150225117954e-05, 0.0005292591424466414, 0.0009390081559537187, 5.1218626688384654e-05, 6.829150225117954e-05, 0.0004609676401954619, 0.0001195101289395642, 0.0014341215472747704, 0.9922437933518069, 0.00363645919737234, 0.00016213512344972217, 0.0003011080864066269, 0.0009264864197126981, 0.0018761349999182138, 0.0002084594444353571, 0.00018529728394253963, 0.0004400810493635316, 0.9741262049001707, 0.9550575213685499, 0.00013997911745351443, 0.002939561466523803, 0.0030795405839773174, 0.0037894346796344264, 0.0002199671845698084, 0.0006099090117617415, 2.9995525168610236e-05, 0.002239665879256231, 0.022556634926794897, 0.00017997315101166142, 7.998806711629396e-05, 0.0025396211309423335, 5.999105033722047e-05, 8.998657550583071e-05, 1.999701677907349e-05, 0.005789136357541775, 5.999105033722047e-05, 0.0005199224362559108, 0.39829974203381124, 0.6016868443489489, 0.9985192418764579, 1.108078164111428, 1.0049448320185628, 0.9824430642392479, 0.9845683873169961, 0.018576762024848984, 0.7009222952957339, 0.05612367133150894, 0.22698907071854726, 0.012471926962557542, 0.0012471926962557543, 1.0706188085341382, 0.6696818180969425, 0.896715397535854, 0.009913131345070885, 0.00858993438216208, 0.06535725326629886, 6.507526047092485e-05, 0.0025596269118563775, 0.0005639855907480153, 0.011540012856844006, 0.0005422938372577071, 0.0011713546884766473, 0.0017570320327149709, 4.338350698061657e-05, 0.00030368454886431595, 0.0008459783861220231, 0.34580227572207956, 0.647459580075383, 0.007357495228129352, 1.0626831326183679, 0.8462889098997686, 0.057652278470509785, 0.8966769268498437, 0.040888140759226796, 0.0012266442227768038, 0.003271051260738144, 0.9264143119667627, 0.022233943487202305, 0.04446788697440461, 1.1166053689095141, 0.3295686275440513, 0.1061839176937804, 0.003984826933320677, 0.003516023764694715, 0.5449836835276809, 0.000703204752938943, 0.007500850698015393, 0.003516023764694715, 0.3555156572017772, 0.09034302820061364, 0.0016321269706805865, 0.0004800373443178196, 0.00038402987545425567, 0.006048470538404527, 0.5103757044787057, 0.00028802240659069175, 0.009984776761810647, 0.009312724479765699, 0.001056082157499203, 0.003456268879088301, 0.0006720522820449474, 0.00883268713544788, 0.00038402987545425567, 0.001152089626362767, 9.600746886356392e-05, 0.9480951884988719, 0.7036566026189169, 0.01517626717151189, 0.02717041380706161, 0.012728482143848682, 0.006690612408946102, 0.029047048994936736, 0.016808123856620696, 0.11537226763719255, 0.012320517972571481, 0.002774156364684969, 0.00293734203319585, 0.008485654762565789, 0.0009791140110652834, 0.001223892513831604, 0.04202030964155174, 0.0010607068453207236, 0.0005711498397880819, 0.00016318566851088054, 0.0004895570055326417, 8.159283425544027e-05, 1.0036451808062363, 0.9480951884988719, 0.13959864230744257, 0.7336354180837938, 0.09504588412421622, 0.01782110327329054, 0.00891055163664527, 0.005940367757763514, 1.0045227271454138, 0.7867832194575496, 0.007430271747238139, 0.0027519524989770886, 0.002201561999181671, 0.01623651974396482, 0.0030271477488747972, 0.001926366749283962, 0.0008255857496931266, 0.0008255857496931266, 0.0024767572490793795, 0.009907028996317518, 0.0024767572490793795, 0.004678319248261051, 0.014034957744783153, 0.0005503904997954177, 0.14365192044660402, 0.0005503904997954177, 0.9879870764955332, 0.8813422150874961, 0.0365808681715483, 0.000641769617044707, 0.025349899873265927, 0.02554243075837934, 0.006738580978969424, 0.00038506177022682423, 0.001540247080907297, 0.0007059465787491778, 0.0008343005021581192, 0.00038506177022682423, 0.0001283539234089414, 0.0008984774638625898, 0.0001283539234089414, 0.0014118931574983555, 0.0019894858128385916, 0.015466647770777438, 1.0003604578247751, 0.11681124074532867, 0.852473522886122, 0.032309492121048354, 0.9984010771690148, 0.26499211652674476, 0.7348362947656539, 0.6650980191857022, 0.11666892269966864, 0.0022709279357599737, 0.0019870619437899768, 0.09225644739024892, 0.003690257895609957, 0.00170319595181998, 0.030941393124729637, 0.0005677319839399934, 0.06812783807279921, 0.0014193299598499833, 0.0005677319839399934, 0.014761031582439828, 1.0706188085341382, 1.001865100134563, 0.2549928627599786, 0.005448565443589287, 0.7388254741507073, 0.8271707135205449, 0.01468475640710764, 0.016478569594925795, 0.02534736026264786, 0.029937739351971342, 0.0019052301560056194, 0.02287390356888618, 0.0008133438677684808, 0.006740726575341519, 0.0059942328884855164, 0.01006095222732792, 0.008612531640890899, 0.007431511778103791, 0.0021503474860180383, 0.0011587364691496166, 0.0010027527136871682, 0.000924760835955944, 2.2283393637492624e-05, 0.009325600237290664, 0.0013035785277933185, 0.00157097925144323, 0.003453926013811357, 0.0007576353836747493, 0.00020055054273743363, 7.799187773122419e-05, 0.9480951884988719, 1.1618621400615654, 0.9918375904438101, 0.9671691784452876, 0.00012283073132401417, 8.773623666001013e-05, 0.0061239893188687064, 0.0015617050125481802, 0.00012283073132401417, 0.0015090632705521741, 0.00028075595731203237, 0.022846516026266635, 8.773623666001013e-05, 5.264174199600607e-05, 1.7547247332002023e-05, 0.44337958617465734, 0.02830082464944621, 0.528282060122996, 0.99626543682972, 0.996641112160014, 0.9253671398702946, 0.00030290250077587386, 0.00027536590979624893, 0.06278342743354476, 0.0021753906873903666, 8.260977293887468e-05, 8.260977293887468e-05, 0.0008811709113479967, 0.00016521954587774937, 8.260977293887468e-05, 0.005121805922210231, 0.0011014636391849957, 5.507318195924979e-05, 5.507318195924979e-05, 0.000523195228612873, 0.0009362440933072465, 1.180900111808007, 0.999428184248227, 1.0174403821927014, 0.9682184500513046, 0.7253738317877384, 0.010313372015939409, 0.2629909864064549, 0.003437790671979803, 0.6263604978926498, 0.0011968671934254455, 0.06443135057940315, 0.0033911237147054287, 0.061838138326981346, 0.0035906015802763362, 0.0005984335967127227, 0.018351963632523498, 0.01974830869151985, 0.00897650395069084, 0.015758751380101698, 0.039895573114181515, 0.048273643468159634, 0.08358122567421027, 0.0035906015802763362, 0.00019947786557090758, 1.0000685697697074, 0.6041347645909304, 0.03654907828486056, 0.3590409455042184, 1.0174403821927014, 0.707543335943016, 0.009057604857155493, 0.019296636434809528, 0.2600451481452903, 0.0036755497971065767, 0.00039380890683284747, 0.9999396707300763, 0.9879870764955332, 1.0157383171021421, 1.0014554402407205, 0.9054979524271319, 0.08048870688241173, 0.4756696416654399, 0.04290715487379817, 0.0710505575329561, 0.00322957079695255, 0.01799332301159278, 0.07981653541039874, 0.23022226109704608, 0.0775096991268612, 0.0013841017701225215, 1.0034954156158031, 0.9135746207080714, 0.0012893954796211883, 0.0007584679291889343, 0.00030338717167557373, 0.00030338717167557373, 0.005157581918484753, 0.028897628102098397, 0.0012893954796211883, 0.015396898962535367, 0.0002275403787566803, 0.007432985706051556, 0.0009860083079456146, 0.0009101615150267212, 0.0005309275504322541, 0.02275403787566803, 0.00015169358583778686, 7.584679291889343e-05, 1.000044061377675, 1.0045227271454138, 0.6696818180969425, 1.0002923096481064, 0.4694086332841626, 0.007530619785307421, 0.5171025585911095, 0.005020413190204948, 1.0217407868088177, 0.8319500935556982, 0.058835697290426016, 0.01650066297946792, 0.0012083818848600244, 0.0002916783860006955, 0.0005416884311441488, 0.003416803950293862, 0.003416803950293862, 0.00012500502257172666, 0.0006250251128586333, 0.0046251858351538866, 0.0010000401805738133, 0.00016667336342896888, 0.008375336512305686, 0.011500462076598853, 0.04075163735838289, 0.01520894441289341, 0.0015000602708607198, 0.6976841664183262, 0.37110703710576276, 0.01579178881301118, 0.6158797637074361, 1.0001194329692087, 0.558089626675048, 0.022839966927982396, 0.057596438340129515, 0.01489563060520591, 0.34657167208112416, 0.968990840183525, 1.012054636409692, 0.07544789395338974, 0.0603583151627118, 0.8751955698593211, 1.001865100134563, 0.462459309728133, 0.001972949273584185, 0.009470156513204087, 0.300282879439513, 0.017756543462257666, 0.001578359418867348, 0.19374361866596695, 0.001972949273584185, 0.004735078256602044, 0.000789179709433674, 0.005129668111318881, 0.9720062920920811, 0.6575095792166533, 0.022889159972730208, 0.005168519993842305, 0.019935719976248892, 0.07051337991599145, 0.006645239992082964, 0.0025842599969211526, 0.20415653975677106, 0.010706219987244775, 0.6696818180969425, 0.02061923928044288, 0.9759773259409631, 0.8842251745991377, 7.142203298093703e-05, 0.09862362439910533, 0.004489384930230328, 0.00032650072219856925, 7.142203298093703e-05, 0.0007142203298093702, 0.0014182375120500351, 6.121888541223174e-05, 0.002938506499787123, 0.00012243777082446348, 0.0019488011856227104, 9.18283281183476e-05, 4.0812590274821157e-05, 0.0021936767272716373, 5.101573784352645e-05, 0.0026324120727259648, 1.0036451808062363, 0.8724425028597498, 0.008113524370139905, 0.007158992091299916, 0.005727193673039933, 0.003340862975939961, 0.0019090645576799777, 0.003340862975939961, 0.0028635968365199665, 0.011931653485499861, 0.009068056648979894, 0.0009545322788399889, 0.0028635968365199665, 0.0009545322788399889, 0.0692035902158992, 0.7974943879720715, 0.03681322722802093, 0.006025694482335907, 0.013950110403116202, 0.01592729140513267, 0.006930594782200587, 0.004440811298179848, 0.04092973899676951, 0.003222072744026839, 0.0025159366718781, 0.009807445446510266, 0.01297198117725091, 0.011068029101235052, 0.0032743791197415604, 0.004869723579040564, 0.004514040224180458, 0.0016162670095848917, 0.004587269150181068, 0.004168818144463297, 0.004315275996464516, 0.0006329071461481291, 0.001485501070298088, 0.005131255457614171, 0.0015378074460128096, 0.0017679554991575838, 0.2012098836712106, 0.09632388048089868, 0.4131224207291877, 0.28897164144269605, 1.2947904551138267, 0.8720917561651725, 0.9970480705561594, 0.98805904575301, 2.9721552511403053e-05, 0.0012483052054789283, 0.00038638018264823966, 0.00044582328767104576, 3.821342465751821e-05, 0.004543151598171609, 4.670529680363337e-05, 3.396748858446063e-05, 8.491872146115158e-06, 8.491872146115158e-06, 0.002925449954336672, 0.0017450797260266649, 8.491872146115158e-06, 8.491872146115158e-06, 1.2737808219172737e-05, 0.0001825752511414759, 0.00026749397260262745, 0.9516611631414561, 1.1618621400615654, 0.9901577344699422, 0.3344302685955794, 0.0047549327288471, 0.05547421516988284, 0.0031699551525647333, 0.005547421516988283, 0.519080156232475, 0.02139719727981195, 0.00237746636442355, 0.010302354245835383, 0.0015849775762823667, 0.03883195061891798, 0.003962443940705916, 1.0050264792124024, 0.9892263363403005, 0.9959402393666524, 0.09910171131630664, 0.900732280077748, 0.784669847753458, 0.005929495071184822, 0.034007398202383535, 0.010056888699166414, 0.10475441292426518, 0.0004650584369556723, 0.0012207783970086398, 0.0023252921847783615, 0.029821872269782487, 0.009475565652971822, 0.017265294471979335, 5.813230461945904e-05, 0.9741262049001707, 0.9334268643962057, 0.000657585432329844, 0.001064662128534033, 0.00012525436806282744, 0.009300136828664936, 0.0017848747448952907, 0.025270068756675434, 0.0005636446562827235, 0.0016283067848167567, 0.010364798957198969, 0.001064662128534033, 0.013402217382722535, 0.0013464844566753948, 3.131359201570686e-05, 1.018078771150226, 1.108078164111428, 0.6976841664183262, 1.0067208025239411, 1.0174403821927014, 0.0030552617490765275, 0.9654627127081827, 0.0017458638566151586, 0.001309397892461369, 0.02880675363415012, 0.260323000676781, 0.7392059537934262, 0.3137865609991777, 0.005261664894803284, 0.5826098038063999, 0.013393328823135632, 0.001434999516764532, 0.0009566663445096879, 0.08227330562783317, 1.0073437855558436, 1.1789316770870975, 0.49486373707631626, 0.08423212545979851, 0.03158704704742444, 0.38957358025156813, 0.9993229895526947, 0.0009869856686940195, 1.000158913356943, 1.000158913356943, 1.0045227271454138, 0.9397650195232854, 1.0560152824732867, 0.8870474412970153, 0.0007581602062367652, 0.00982800267343955, 0.009069842467202783, 0.002302560626348694, 0.011765523200489061, 0.0028080007638398713, 0.0008704802367903601, 0.034089129273016036, 0.0023868006492638906, 0.0018813605117727137, 0.0006458401756831703, 0.0007862402138751639, 0.010080722742185138, 0.0011232003055359485, 0.015640564254588082, 0.002920320794393466, 0.004464721214505395, 8.424002291519614e-05, 0.00014040003819199356, 0.0005054401374911768, 0.0005054401374911768, 0.0002527200687455884, 0.6371827449252873, 0.01355707967926143, 0.3524840716607972, 0.749205071755986, 0.0025225759991784045, 0.0025225759991784045, 0.027748335990962446, 0.006726869331142412, 0.19844264526870115, 0.01177202132949922, 0.8415673293783437, 0.052858774407234806, 0.0005058255924137302, 0.00746092748810252, 0.001138107582930893, 0.0007587383886205954, 0.09357773459654009, 0.001138107582930893, 0.0008851947867240279, 0.00012645639810343254, 0.5108548844425129, 0.00819553290549486, 0.00819553290549486, 0.4726090642168702, 1.000244846471266, 1.0119236155742473, 0.9969690793834948, 0.9631365088600571, 0.04142522618752934, 0.9682184500513046, 0.98907168599171, 0.5861075108690147, 0.3728692091504097, 0.04109900228654676, 1.0194756258086881, 0.9986540975458331, 0.9480951884988719, 0.10351541019681786, 0.1256071135924802, 0.0012623830511807055, 0.6933638908610025, 0.0012623830511807055, 0.05649164154033657, 0.0009467872883855291, 0.0006311915255903527, 0.01136144746062635, 0.005680723730313175, 0.04255471867944834, 0.0372353788445173, 0.7659849362300702, 0.06383207801917253, 0.01595801950479313, 0.010638679669862086, 0.03191603900958626, 0.010638679669862086, 0.01595801950479313, 0.9958818343384848, 0.22977191303717773, 0.769182981611087, 0.968990840183525, 0.7795916471580383, 0.20860210118803146, 0.00012230423381099406, 0.011618902212044436, 7.338254028659644e-05, 0.715876695767589, 0.0024298384695521855, 0.005206796720468969, 0.25710005139737885, 0.001851305500611189, 0.00833087475275035, 0.004743970345316172, 0.0003471197813645979, 0.0005785329689409965, 0.003008371438493182, 0.0005785329689409965, 0.9945086753087068, 0.7523533670089135, 0.0022852635981156803, 0.002508216144273308, 0.0008360720480911026, 0.017223084190676714, 0.0021737873250368667, 0.021236230021514008, 0.001003286457709323, 0.09486630839007044, 0.057187328089431416, 0.006688576384728821, 0.0003901669557758479, 0.003455764465443224, 0.0015606678231033916, 0.013098462086760607, 0.00033442881923644106, 0.00011147627307881369, 0.013544367179075862, 0.008082029798213992, 0.0011147627307881369, 0.9840834265066726, 0.6696818180969425, 0.1077011101546181, 0.8925443064941223, 0.9968249042573658, 1.0009335606413836, 0.6031815768035645, 0.02146553654105212, 0.3745736126413595, 0.9901577344699422, 1.0174403821927014, 0.9710928413353701, 0.45003162171046474, 0.049140070425469744, 0.5005430429385057, 0.0006856754012856244, 0.968990840183525, 0.08040207051278558, 0.91122346581157, 0.3808007240380943, 0.0012495511863432134, 0.0034362657624438368, 0.6147791836808609, 1.018078771150226, 0.5229992536850736, 0.004183994029480588, 0.0009297764509956863, 0.003099254836652288, 0.0006198509673304575, 0.3393684046134255, 0.04664378529161693, 0.00883287628445902, 0.002789329352987059, 0.027428405304372745, 0.001239701934660915, 0.018285603536248498, 0.00030992548366522876, 0.00030992548366522876, 0.023244411274892157, 0.8535621663398961, 0.031400780718263833, 0.0030906633954457105, 0.05042992336813015, 0.013306024676322956, 0.01987368439164509, 0.001096107366989467, 0.0012218901795948158, 0.010628647665151963, 0.0003144570315133717, 0.0029648805828403615, 5.390691968800657e-05, 0.0035668411860231017, 0.003926220650609812, 0.00013476729922001643, 0.0026953459844003286, 2.6953459844003286e-05, 0.00036836395120137827, 0.00011679832599068092, 0.00016172075906401972, 2.6953459844003286e-05, 0.0010332159606867928, 0.8914564118700303, 0.01808189942661698, 0.0006882383864802312, 0.06713452624484437, 0.006194145478322081, 0.013952469107735595, 0.00018770137813097212, 0.002314983663615323, 1.008493988811978, 0.9994502117303031, 0.03449256615098687, 0.9542943301773035, 0.8903964777605352, 0.008725904801399668, 0.010078259051063085, 0.003574079088396174, 0.00025759128565017473, 9.659673211881552e-05, 0.005023030070178407, 0.015101289121241493, 0.002608111767208019, 0.0001609945535313592, 6.439782141254368e-05, 0.00025759128565017473, 0.06359284864488689, 3.219891070627184e-05, 1.0155466918797222, 0.91737796767574, 0.07457444879282007, 0.00019292543196637365, 5.261602689992009e-05, 5.261602689992009e-05, 0.0003507735126661339, 0.0004910829177325875, 0.00029815748576621383, 0.000403389539566054, 0.00610345912039073, 8.769337816653348e-05, 0.049732058395186275, 0.0015871933530378598, 0.6523364680985604, 0.29627609256706716, 1.0027864181237933, 1.0074867974997246, 0.018851403777864355, 0.9802729964489465, 1.0018029056263147, 0.45870433599937144, 0.5001356953799598, 0.0015935138223303227, 0.013431045073927006, 0.001365868990568848, 0.000682934495284424, 0.012748110578642582, 0.007739924279890138, 0.00341467247642212, 0.19401822150873335, 0.011607927782573791, 0.08291376987552708, 0.017411891673860685, 0.09535083535685614, 0.5903460415137528, 0.002487413096265812, 0.004974826192531624, 0.12483059480331135, 0.0185917907153868, 0.05577537214616039, 0.7888231203528399, 0.010623880408792455, 0.6978849928675503, 0.00784268151593827, 0.0009092964076450168, 0.03875875937586884, 0.12912008988559237, 0.030916077859930568, 0.007956343566893896, 0.0017049307643344064, 0.0010229584586006438, 0.0662649757071306, 0.0005683102547781355, 0.017049307643344065, 0.8451999255041621, 0.0008387367190222846, 0.10032771283128328, 0.021017755429617247, 0.0023681977948864503, 0.0015047923488340988, 0.0019734981624053754, 0.0002466872703006719, 0.0006167181757516799, 0.0003700309054510079, 7.400618109020157e-05, 0.006981249749509016, 7.400618109020157e-05, 0.0014307861677438972, 0.0003206934513908735, 0.0005427119946614783, 7.400618109020157e-05, 7.400618109020157e-05, 0.00012334363515033596, 0.003700309054510079, 9.867490812026877e-05, 0.012013670063642724, 0.05652010609030763, 0.0072153326923796975, 0.9367906945606307, 1.000767143415476, 1.0001194329692087, 0.9807955814266055, 0.015291716049649236, 0.0001600030079933403, 0.0019771800273462765, 0.00020571815313429466, 0.0009714468342452803, 0.0001257166491376245, 2.2857572570477184e-05, 3.4286358855715776e-05, 0.0004228650925538279, 0.1395062529792356, 0.40359830407361746, 0.0022380682296134057, 0.044761364592268114, 0.4095664860192532, 0.6452522947978429, 0.0015299402366279616, 0.002677395414098933, 0.2971908909649816, 0.0022949103549419424, 0.008032186242296799, 0.0030598804732559232, 0.0011474551774709712, 0.0065022460056688375, 0.030981289791716226, 0.0007649701183139808, 0.18391243777104505, 0.0011118461742915242, 0.0007848325936175465, 0.15049164982616453, 0.21203560570900712, 0.02269474249877405, 0.011903294336532788, 0.01759333064026, 0.004185773832626915, 0.009352588407275762, 0.38515659531781093, 0.0004578190129435688, 0.00026161086453918217, 0.6976841664183262, 0.1556230669158117, 0.8443379162453615, 1.2363396074896373, 0.17520559241597064, 0.8238390622112662, 0.4510472882095719, 0.5470147963392681, 0.9892263363403005, 0.9940444542141591, 0.0049951982623827095, 0.2324826407401919, 0.5190694732786602, 0.06001076295529344, 0.0016538399239647797, 0.004252731233052291, 0.0007087885388420485, 0.005434045464455705, 0.001417577077684097, 0.17247187778489848, 0.00047252569256136563, 0.001417577077684097, 0.00047252569256136563, 1.180900111808007, 0.8929090907959233, 0.9741262049001707, 0.982443064239248, 1.108078164111428, 1.0155466918797222, 0.6696818180969425, 0.9985192418764579, 1.108078164111428, 1.0778040834496725, 1.0155466918797222, 0.9516611631414561, 1.0045227271454138, 0.9824816113197984, 0.9840834265066724, 0.8315731614548821, 0.011214751496732508, 0.08941347917052495, 0.0008209145133381529, 0.0029526441366840013, 0.0012843339966742068, 0.0012975745533409513, 0.0002780516900016324, 0.027897852896830454, 0.0016021073566760725, 0.009519960243389225, 0.00018536779333442162, 0.0035352286300207553, 0.00015888668000093282, 0.0006487872766704757, 0.0009798011933390856, 0.0005296222666697761, 0.00015888668000093282, 0.0009003578533386192, 0.008460715710049672, 0.001959602386678171, 3.9721670000233206e-05, 1.3240556666744401e-05, 0.0045679920500268185, 0.8616299394225052, 0.017595254544021378, 0.040171650394802375, 0.0036910615438578453, 0.006378727716569868, 0.000501697685572911, 0.00010750664690848094, 0.02429650220131669, 0.02515655537658454, 0.00043002658763392375, 0.00021501329381696187, 0.00021501329381696187, 0.0018992840953831632, 7.167109793898728e-05, 0.00046586213660341737, 0.00046586213660341737, 0.000501697685572911, 7.167109793898728e-05, 0.00028668439175594913, 0.006952096500081767, 0.00017917774484746822, 0.008672202850617462, 1.021755488330863, 0.5905233806438774, 0.006932505002222681, 0.002520910909899157, 0.39893415149154154, 0.0012604554549495784, 0.4467785821788585, 0.028517781841203734, 0.028517781841203734, 0.49430821858086477, 1.1789316770870975, 0.6696818180969425, 0.43845079609550935, 0.0013864056793533891, 0.07036008822718451, 0.4422634117137312, 0.04748439451785358, 1.0217407868088177, 0.5290815519602466, 0.005398791346533129, 0.3793877918972826, 0.001963196853284774, 0.0034355944932483546, 0.020122767746168935, 0.0014723976399635805, 0.05889590559854322, 0.9767578329856567, 1.021755488330863, 1.0560152824732867, 0.6976841664183262, 0.1971221673103756, 0.7884886692415024, 0.715944290443662, 0.05010753826626522, 0.004611839444312565, 0.0193230234945248, 0.02482998789427356, 0.04491192167710296, 0.00690802954738802, 0.0015567390529325116, 5.837771448496918e-05, 0.0003113478105865023, 0.022767308649137983, 0.06627816517860168, 0.02202785759899504, 0.004611839444312565, 0.00404752153762453, 0.008075583837087404, 0.0018680868635190138, 7.783695264662557e-05, 3.8918476323312785e-05, 0.00019459238161656395, 0.0003113478105865023, 0.00011675542896993836, 3.8918476323312785e-05, 1.9459238161656393e-05, 0.0009535026699211633, 1.0039099252264694, 0.982443064239248, 0.6976841664183262, 0.6976841664183262, 1.021755488330863, 1.2363396074896373, 1.0045227271454138, 0.6696818180969425, 0.9305261672391676, 0.000774946443211553, 0.009151748472212624, 0.006863811354159469, 0.00044282653897803023, 0.0026569592338681813, 0.0008856530779560605, 0.00025831548107051763, 0.006199571545692424, 0.003764025581313257, 0.0002952176926520202, 0.030702640035810098, 0.0001845110579075126, 0.00022141326948901512, 0.006088864910947916, 7.380442316300504e-05, 0.000774946443211553, 0.00011070663474450756, 0.8356312581998453, 0.008029519761593802, 0.0013382532935989672, 0.0006475419162575647, 0.021196205392164286, 0.12627067367022513, 0.0014245922157666423, 0.00021584730541918823, 0.00012950838325151293, 0.004662301797054466, 8.63389221676753e-05, 4.316946108383765e-05, 0.0001726778443353506, 0.9936842404238108, 0.830494544731511, 0.0006994619972472018, 0.0006994619972472018, 0.009792467961460825, 0.017719703930262447, 0.016087625936685643, 0.0004663079981648012, 0.04220087383391451, 0.06481681174490737, 0.017020241933015243, 0.4589010330598112, 0.0024496496426680316, 0.42133973853890144, 0.0016330997617786877, 0.11595008308628682, 0.4038385149160376, 0.06784487050589431, 0.003230708119328301, 0.522297812624742, 0.003230708119328301, 1.180900111808007, 0.6691906845891561, 0.005707383237434167, 0.022829532949736667, 0.21117317978506417, 0.08846444018022959, 0.0028536916187170834, 0.0028536916187170834, 0.8094209905340607, 0.0032675587853162776, 0.005134735234068436, 0.0023339705609401983, 0.001400382336564119, 0.01400382336564119, 0.0009335882243760793, 0.0009335882243760793, 0.1615107628170617, 0.0009335882243760793, 1.0085928376889148, 0.9984090489238583, 0.6668949389711454, 0.0014721742582144489, 0.0029443485164288978, 0.0017175366345835237, 0.31749891502158284, 0.0007360871291072244, 0.008833045549286694, 0.8346209371925865, 0.0461429616100654, 0.0016190512845636982, 0.11738121813086812, 1.0174403821927014, 0.2387449614238504, 0.7619520045442034, 1.000044061377675, 0.9879870764955332, 0.3242642272973782, 0.6761254101094268, 1.2363396074896373, 0.8238820778155043, 0.0012817842372296333, 0.005371286327438463, 0.005798547739848341, 0.09338713728387328, 0.0008545228248197555, 0.0008545228248197555, 0.0003662240677798952, 0.0471818673989765, 0.011658132824326664, 0.00012207468925996509, 0.001586970960379546, 0.00482195022576862, 0.0013428215818596157, 0.0008545228248197555, 0.0003662240677798952, 0.0003662240677798952, 0.9897183951697965, 0.9434151066104015, 0.003309914559509279, 0.004651771813364392, 0.004651771813364392, 0.0002683714507710226, 0.04383400362593369, 1.0008369871965073, 1.1618621400615654, 1.0095725920085685, 0.9879870764955332, 0.8114771948894537, 0.006920914242127537, 0.18167399885584784, 0.9945973477229589, 0.0006836112132811448, 0.00031332180608719133, 0.00019938660387366724, 0.0002563542049804293, 0.0013387386260089085, 0.0002563542049804293, 0.0006266436121743827, 0.00048422460940747756, 0.0012248034237953844, 0.8856750838560051, 1.0778040834496725, 0.9711831205770792, 0.021581847123935096, 0.999428184248227, 1.0023814887199587, 0.20038966797513275, 0.7052860556135455, 0.037795916023779484, 0.056337308790161876, 0.9992304379176805, 0.9814005744896266, 1.0080989698047342, 0.9901577344699422, 0.8234453760429932, 0.1700565219899264, 7.393177384748993e-05, 2.688428139908725e-05, 2.688428139908725e-05, 7.393177384748993e-05, 0.004812286370436618, 0.0009342287786182819, 2.0163211049315438e-05, 2.0163211049315438e-05, 8.737391454703357e-05, 1.3442140699543626e-05, 0.00030244816573973154, 2.0163211049315438e-05, 8.737391454703357e-05, 1.0626831326183679, 0.6258181131987002, 0.3668989309291081, 0.0023221451324627095, 0.0017416088493470321, 0.0017416088493470321, 0.0011610725662313547, 0.6976841664183262, 0.4099379240521973, 0.5061366902297796, 0.07652174582307683, 0.007652174582307682, 0.9516611631414561, 0.999244221298529, 0.8043256803977773, 0.04288466305438386, 0.1429488768479462, 0.009529925123196413, 0.6696818180969425, 0.16481135571344327, 0.8065236556189777, 0.014026498358590916, 0.017533122948238646, 0.8640239756503832, 0.008234942582411382, 0.024134831721493468, 0.0013199907964520977, 0.03475475767476716, 5.999958165691353e-05, 0.00445496893802583, 0.005759959839063699, 0.00046499675784107984, 0.0026099818020757387, 0.001454989855180153, 0.013214907859935204, 0.005924958688620211, 0.005534961407850273, 0.01279491078833681, 2.9999790828456766e-05, 0.00013499905872805545, 0.011174922083600144, 0.003254977304887559, 0.0005399962349122218, 0.00011999916331382706, 0.98733706154973, 1.0194756258086881, 0.5945735986711855, 0.4048160671803816, 0.9973477667803261, 1.0018651001345629, 0.22021382082060137, 0.7801191737580879, 1.108078164111428, 0.9199022123760496, 0.014450139715070132, 0.030984238225437756, 0.00862626464654927, 0.0010903843085419635, 0.0005502874080492152, 0.004086393530143246, 0.0009069551725255584, 0.00010700032934290295, 0.005564017125830953, 0.006715544479711719, 0.0002751437040246076, 5.604779156056821e-05, 0.0017782435686034823, 0.0011922893841066328, 0.00060123994583155, 0.00033628674936340925, 0.0015540524023612094, 5.095253778233474e-05, 1.0190507556466947e-05, 0.00022419116624227285, 0.0001732386284599381, 2.547626889116737e-05, 0.0007133355289526864, 3.566677644763432e-05, 0.9973327905168258, 0.43283282688141744, 0.5709709631201677, 1.002710845541349, 1.0095725920085685, 0.3890398733436212, 0.5460390755640693, 0.0008645330518747138, 0.053428142605857314, 0.010720209843246451, 1.021755488330863, 0.24405501855306827, 0.7555320255206688, 0.9840834265066726, 0.9821999998755155, 0.9564593183389258, 0.041138035197373156, 1.0560152824732865, 0.43283282688141744, 0.5709709631201677, 0.8567917490843143, 0.1276890403477867, 0.001591833881011282, 0.0002481891534910063, 0.0014805766742739344, 0.00016260668676996965, 0.0011382468073897877, 0.003825536262430339, 5.9907726704725666e-05, 7.7024220048933e-05, 0.0012152710274387205, 9.414071339314033e-05, 0.00011981545340945133, 0.0009328488872592997, 0.00020539792013048798, 0.00051349480032622, 0.0005306112936704273, 9.414071339314033e-05, 0.00011981545340945133, 1.7116493344207334e-05, 0.0015747173876670747, 0.0009670818739477143, 0.000539169540342531, 0.39867027623706336, 0.00047630857375993235, 0.0007484849016227509, 0.05062479698248424, 0.021093665409368433, 0.007416804934261803, 0.518087640086875, 0.0029258955245252986, 0.18281277340204768, 0.8168230300942556, 0.9999552119222355, 0.8462889098997686, 1.0155466918797222, 1.021755488330863, 1.027636533449719, 1.003361333772471, 1.001865100134563, 0.7998464994804035, 0.0007111326956927348, 0.020445065001166128, 0.0007111326956927348, 0.17813874027103008, 0.9977141827230781, 0.9892263363403005, 0.6476488064425783, 0.019871230149779474, 0.00024355509195836414, 0.007851070023128444, 0.0029513146437307653, 0.23947912586059034, 0.0035960192989146706, 0.00020057478161277046, 0.0122207349082638, 0.0005659074195503166, 0.0031017457299403433, 0.00010028739080638523, 0.0012679191551950133, 0.0005300904942623219, 0.00010028739080638523, 6.44704655183905e-05, 0.053983269794065654, 9.312400574878629e-05, 1.432677011519789e-05, 0.004462788890884143, 2.865354023039578e-05, 0.0016332517931325595, 0.9732403829878611, 1.000280191235012, 1.0119236155742473, 0.931598302945337, 0.024971465242757826, 0.017963190035738628, 0.005142591022215453, 0.0007893279243400463, 0.00033486639214426207, 0.00023919028010304432, 0.0012916275125564394, 0.0003587854201545665, 0.0009806801484224818, 0.0015308177926594837, 4.7838056020608865e-05, 0.0006936518122988286, 0.0002152712520927399, 0.00011959514005152216, 0.0001435141680618266, 0.0022244696049583124, 0.009998153708307252, 0.0013394655685770483, 0.7960647275477101, 0.019555211583499335, 0.09408850373317966, 0.019108235318733634, 0.0012291847281056725, 0.0007822084633399733, 0.04056309602748719, 0.0003352321985742743, 0.011397894751525327, 0.016761609928713714, 0.7235095968197117, 0.27589832625391675, 0.11663966932447661, 0.0019938405012731044, 0.03738450939887071, 0.004486141127864485, 0.8389083909106587, 1.0045764001800637, 0.9541572382233934, 1.1618621400615654, 0.9999396707300763, 1.0155466918797222, 1.0018029056263147, 0.9720062920920811, 0.9343356305507293, 0.9720062920920811, 0.8856750838560051, 1.002710845541349, 1.0560152824732867, 1.0007505632938347, 0.9998436099040114, 0.00011675349930484237, 5.003721398778959e-05, 1.033287597832006, 0.9343356305507293, 0.8204149222671998, 0.06705638902481513, 0.0014543601027845264, 0.04061820001348213, 0.001298535806057613, 0.015582429672691356, 0.0019737744252075716, 0.0003116485934538271, 0.0009349457803614813, 0.0448254560251088, 0.001714067263996049, 0.0003635900256961316, 0.0006752386191499587, 0.0009868872126037858, 0.00046747289018074067, 0.0006232971869076542, 0.0006752386191499587, 0.14083124294632857, 0.8546654340889749, 0.004672126543243127, 0.7351724267382346, 0.001568487347506139, 0.0013444177264338333, 0.24401181734774077, 0.003585113937156889, 0.0006722088632169167, 0.0006722088632169167, 0.0011203481053615278, 0.004705462042518417, 0.007170227874313778, 0.948095188498872, 0.6813798806289151, 0.31894377391140705, 0.9901577344699422, 0.948095188498872, 1.0036451808062363, 0.9945624189889853, 0.4960159009647732, 0.4966772554993929, 0.0072748998808166735, 0.6134543750477773, 0.00786479968009971, 0.37488878475141946, 0.0026215998933665696, 0.6976841664183262, 1.001320378564246, 0.9945663710429762, 0.0016730350129334822, 0.00011647712115359686, 0.003462547147020561, 7.412180437047072e-05, 0.00010588829195781532, 1.180900111808007, 0.9275054476852905, 0.0025811839917030347, 0.06986404670876215, 0.9958818343384848, 0.9846585810758041, 0.020302238785068125, 0.6409717119054419, 0.07826734837643996, 0.07721536788750932, 0.029350255641164988, 0.05799919095637621, 0.0002454621140838171, 0.06017328396683288, 0.0002454621140838171, 0.0021039609778612895, 0.018058998393309402, 0.007363863422514513, 0.0016831687822890316, 0.0009818484563352684, 0.0022442250430520423, 0.009748352530757308, 0.0008065183748468276, 0.002910479352708117, 0.0022442250430520423, 0.002594885206028924, 0.0007714523585491394, 0.003822195776448009, 0.00014026406519075264, 0.20703007390505782, 0.8281202956202313, 1.0049448320185628, 0.9481243425972516, 0.04990128118932904, 1.0077660181598045, 1.0194756258086881, 0.8587415144010541, 1.1166053689095141, 0.9879870764955332, 0.8720917561651725, 1.0194756258086881, 0.7898054446004791, 0.019099135929172322, 0.00449391433627584, 0.007864350088482722, 0.1786330948669647, 1.253388556926686, 0.5507941369388246, 0.058758187150245667, 0.010857491103849743, 0.004215261252082841, 0.005748083525567511, 0.30796954178096153, 0.0016605574629417253, 0.0038320556837116737, 0.008302787314708626, 0.0014050870840276138, 0.0016605574629417253, 0.0015328222734846695, 0.0005109407578282232, 0.00242696859968406, 0.0005109407578282232, 0.025036097133582937, 0.00038320556837116737, 0.00038320556837116737, 0.004470731630996953, 0.0001277351894570558, 0.009324668830365073, 1.0194756258086881, 0.7384724194694755, 0.00014499278500006062, 0.0018849062050007883, 0.016505012025840236, 9.666185666670708e-05, 0.23090101011259656, 0.002005733525834172, 7.249639250003031e-05, 0.003286503126668041, 7.249639250003031e-05, 7.249639250003031e-05, 0.0004349783550001819, 0.0001691582491667374, 0.00231988456000097, 0.0006766329966669496, 9.666185666670708e-05, 4.833092833335354e-05, 0.0020782299183342025, 0.0005074747475002122, 0.00019332371333341417, 1.0302830062413646, 0.8376917382185464, 0.16194040762697437, 0.6710916301465412, 0.014843091447750863, 0.13174885594773553, 0.0027584506230333462, 0.003809288955617478, 0.10179996346908778, 0.0007881287494380988, 0.0010508383325841318, 0.0007881287494380988, 0.025482829565165198, 0.009982964159549253, 0.00013135479157301647, 0.03572850330786048, 1.021755488330863, 1.2947904551138267, 0.6976841664183262, 0.9720062920920811, 0.9343356305507293, 1.0194756258086881, 1.001865100134563, 0.9901577344699422, 0.6298971988277294, 0.0012714187980951861, 0.36707677013576734, 0.0009081562843537045, 0.0005448937706122226, 0.0003632625137414818, 0.3190039489105412, 0.6808011104798135, 1.0194756258086881, 0.9824816113197984, 0.5577925064860373, 0.1587143071096157, 0.0009755028095243743, 0.030923439061922665, 0.21792732764774522, 0.00039020112380974974, 0.0027314078666682484, 0.0002926508428573123, 0.0002926508428573123, 0.0034142598333353103, 0.009169726409529119, 0.017363950009533863, 0.8962778996136314, 0.07009026947799435, 0.006909366196275232, 0.0008561460533622747, 9.36409745864988e-05, 9.36409745864988e-05, 0.00494959437100065, 0.0022674493132016495, 0.0017056034656826567, 0.001137068977121771, 0.00013377282083785542, 0.0006153549758541349, 4.68204872932494e-05, 0.0003277434110527458, 1.3377282083785542e-05, 0.006641820554599521, 0.006595000067306273, 0.0006487981810635988, 8.695233354460603e-05, 0.0001404614618797482, 5.350912833514217e-05, 6.688641041892771e-06, 0.0003277434110527458, 0.9824816113197984, 1.0157383171021421, 1.108078164111428, 0.4459853962393668, 0.009489050983816315, 0.5472019400667408, 0.5944614365308389, 0.015432320365132021, 0.02092876323490507, 0.0014798115418619747, 0.004439434625585924, 0.005919246167447899, 0.21414987027231147, 0.0054964428697730485, 0.005285041220935624, 0.0019026148395368246, 0.12726379260012982, 0.0021140164883742493, 0.0010570082441871246, 0.982443064239248, 0.6077721576840577, 0.0037816934255896924, 0.0021609676717655383, 0.0016207257538241539, 0.3830315198204417, 0.0010804838358827692, 0.0005402419179413846, 0.8462889098997686, 0.9936630508065967, 0.006352183886434865, 0.9301887491399623, 0.07089198319080545, 1.0111399858377972, 0.999387436137581, 0.9480951884988719, 1.0194756258086881, 0.8747251055317911, 0.0005755311343850491, 0.008797404482742894, 0.022939026641918388, 0.0009044060683193629, 0.0005755311343850491, 0.0002466562004507353, 0.07892998414423531, 0.0002466562004507353, 0.010606216619381619, 0.00041109366741789224, 0.0009866248018029413, 8.221873348357844e-05, 1.0560152824732867, 0.929558107338038, 8.003312828648014e-05, 0.02214249882592617, 0.017774976682292543, 0.002320960720307924, 2.6677709428826715e-05, 0.009066610104454108, 1.1433304040925734e-05, 0.004878209724128313, 0.0011585748094804745, 0.00046114326298400465, 2.2866608081851468e-05, 0.0007050537491904203, 0.0010289973636833161, 0.0020732391327545332, 0.0018941173694466966, 0.00029345480371709387, 0.0016159069711175038, 0.0003163214117989453, 0.0017302400115267612, 0.00014101074983808405, 0.0017340511128737363, 0.00016387735791993551, 0.0001943661686957375, 0.0006173984182099897, 0.9999777686307434, 1.0090367771881856, 0.9964364939028446, 9.46681613121773e-05, 0.003408053807238383, 4.0572069133790276e-05, 2.7048046089193516e-05, 0.9901577344699422, 0.18138326562442875, 0.009648046043852594, 0.007718436835082074, 0.02701452892278726, 0.5866011994662377, 0.14665029986655942, 0.038592184175410375, 0.003859218417541037, 0.9414575783139641, 0.040231261078506185, 0.005427513124564978, 0.003908673244879023, 4.3189759611922905e-05, 2.519402644028836e-05, 0.0005146779687087479, 0.0009321789782906694, 0.0001223709855671149, 0.0016412108652530705, 0.0010041619109772077, 0.00022314709132826834, 2.879317307461527e-05, 0.0007054327403280741, 0.0005866609013952861, 0.0006010574879325937, 6.838378605221126e-05, 0.00011517269229846109, 0.0005218762619774018, 1.7995733171634545e-05, 0.0004714882090968251, 2.879317307461527e-05, 0.0012021149758651875, 0.00011517269229846109, 1.0036451808062363, 0.9480951884988719, 0.9343356305507293, 1.021755488330863, 1.0036451808062363, 0.90626989474, 0.0002002237489957076, 0.002259668024380129, 0.0414177126493978, 0.00011441357085469006, 0.0023454782025211464, 0.001115532315833228, 0.0034038037329270293, 0.001658996777393006, 0.0020880476680980938, 0.003289390162072339, 0.007236658356559147, 0.00022882714170938012, 0.0008581017814101755, 0.0005148610688461053, 0.00014301696356836257, 0.021881595425959473, 5.720678542734503e-05, 5.720678542734503e-05, 0.004891180154038, 1.0194756258086881, 1.2363396074896373, 0.5376500547829784, 0.004301200438263828, 0.06881920701222125, 0.38997550640258705, 0.9879870764955332, 0.9400414176950145, 0.9183940102600382, 0.00701998683301653, 0.005880378580903457, 0.01086860670158125, 0.00557431236462166, 0.014450232636793766, 0.0027741320880009662, 0.0029369332668742624, 0.0026438911449023295, 0.0007033010927326393, 0.0036923307368463567, 0.005053348592227112, 7.16325187042503e-05, 0.006993938644396802, 0.010679757334088227, 0.0007098131398875711, 7.16325187042503e-05, 0.00014977708456343245, 5.860842439438661e-05, 0.00036467464067618333, 0.00023443369757754644, 0.0003190903105916604, 0.00018233732033809166, 0.00017582527318315983, 1.1789316770870975, 1.1166053689095141, 0.8862797828392451, 0.008159772116230361, 0.0008763478406452655, 0.0016163749060790452, 0.006971833932244557, 0.069679390529528, 0.00023369275750540413, 0.002239555592760123, 0.019922307577335704, 0.0021616580069249883, 3.894879291756735e-05, 0.0006621294795986451, 0.00023369275750540413, 0.0001557951716702694, 7.78975858351347e-05, 0.0006621294795986451, 0.22311208363940546, 0.7454918421338002, 0.001784896669115244, 0.029748277818587396, 1.0057288404507492, 0.9480951884988719, 0.9335130612455894, 0.0017837829195775593, 0.0017837829195775593, 0.011891886130517062, 0.05083781320796044, 0.9298620788100684, 0.00022544843709784663, 0.012367457120796158, 0.0006280349319154299, 0.015233872963897352, 0.02671563979609483, 0.0008856902885986832, 0.00020934497730514331, 0.002045139393673323, 0.0033012092575041827, 0.0003703795752321766, 0.007085522308789466, 0.00014493113813432998, 3.2206919585406666e-05, 3.2206919585406666e-05, 3.2206919585406666e-05, 3.2206919585406666e-05, 0.0008373799092205733, 0.32781014882612597, 0.004409320183653828, 0.0006081820942970798, 0.0010643186650198895, 0.6600296178359057, 0.00045613657072280983, 0.0027368194243368588, 0.001976591806465509, 0.0006081820942970798, 0.0003040910471485399, 1.0067208025239411, 0.8462889098997686, 0.9386055806760296, 0.037888921704425836, 0.0032504461683201414, 0.002558490722828018, 0.0004768096347088579, 0.00033144084363908417, 0.0016048714534103023, 8.14065229990733e-05, 0.00104084054405958, 0.0015874271984819294, 1.7444254928372853e-05, 0.007751063939840337, 0.00046518013142327606, 5.2332764785118555e-05, 1.16295032855819e-05, 0.0035528132537452706, 5.814751642790951e-05, 0.0006570669356353774, 0.8711021888878503, 0.0009614814446885766, 0.0019229628893771532, 0.12595406925420352, 1.180900111808007, 1.000767143415476, 1.0778040834496725, 0.8462889098997686, 0.9343356305507293, 1.0217407868088177, 0.6889821600334829, 0.09562385850998517, 0.21576665509945372, 0.976991900485127, 0.0007930129062379277, 0.00033986267410196903, 0.006641483089742645, 0.0008213347957464252, 0.00048147212164445616, 0.0002973798398392229, 0.01362282885358726, 1.0080989698047342, 0.9879870764955332, 0.9480951884988719, 1.180900111808007, 0.9126382729814613, 0.007568357548350856, 0.010746885568055368, 0.01947189944449354, 0.0058470343514335135, 0.0009107530142419804, 0.007276916583793423, 0.009890777734667906, 0.001438989762502329, 0.004781453324770397, 0.0020947319327565546, 2.732259042725941e-05, 0.0009653981950964992, 0.0017850759079142814, 0.001575602714638626, 0.002459033138453347, 0.0007012798209663248, 0.00042805391669373076, 0.003561044285686143, 0.0003734087358392119, 0.0008105701826753625, 0.00184882861891122, 0.002267775005462531, 0.00040983885640889117, 0.00012750542199387724, 1.0027864181237933, 0.904823037244368, 0.06924748697153052, 0.0008256275477610887, 0.00828055864078033, 0.0010360816285629349, 0.0007770612214222011, 0.004840443858442461, 0.0020964464202953134, 0.00046947448794257984, 0.00038043622298795265, 0.00026711479486388163, 0.0015622168305675502, 4.856632633888757e-05, 0.0031729999874739877, 7.284948950833135e-05, 0.0005018520388351715, 0.00030758673347962127, 5.6660714062035496e-05, 7.284948950833135e-05, 1.6188775446295858e-05, 8.094387723147928e-05, 0.0010360816285629349, 2.4283163169443785e-05, 0.9720062920920811, 1.1618621400615654, 1.180900111808007, 0.030901201091988784, 0.020600800727992523, 0.9579372338516523, 1.0302830062413646, 0.376313339300168, 0.02402000038086179, 0.6005000095215447, 0.9072668825911527, 0.015715259547065666, 0.026980862953963805, 0.011476511963830933, 0.001949618123842189, 0.000267493779524522, 0.0008642106723099942, 0.005550495925133831, 0.00040638478043148536, 0.001203722007860349, 0.007170890935715071, 0.0036523189127386658, 0.0030247373530849797, 0.0026955142398240295, 0.004850896809454312, 0.0013426130087673123, 0.00023148500151160556, 0.00042696122501029475, 0.0017335654557646906, 0.000802481338573566, 0.0008642106723099942, 0.0004938346698914252, 0.00022119677922220087, 0.0007356078936924355, 5.658522259172581e-05, 1.0067208025239411, 0.8762846554156851, 0.008344562171870675, 0.0069714063714362605, 0.02381897176907389, 0.0370752066117292, 0.00015844105389627866, 0.00036969579242465017, 0.00010562736926418577, 0.046634483530138014, 0.00010562736926418577, 0.00010562736926418577, 0.22996741488630937, 0.02691108046541918, 0.009785847441970611, 0.7339385581477958, 0.999671472511189, 0.9958818343384848, 0.9998442568098139, 0.8752882685072624, 0.024074163514343425, 0.011197154698736627, 0.04110305257198051, 0.0025225902959020298, 0.0005842970841287552, 0.00017978371819346315, 0.009989232842124296, 0.005157545415674974, 0.000977573967676956, 0.006281193654384119, 0.0023484248189021124, 0.0002191114065482832, 0.0021293134123538293, 0.0010112834148382301, 0.006039609283061653, 1.1236482387091447e-05, 0.002634955119772944, 0.0012303948213865134, 0.0016068169813540768, 0.00012921954745155164, 5.6182411935457233e-05, 0.0009551010029027729, 0.0019776209001280947, 0.0023034788893537468, 0.49161932118736207, 0.5125392923017179, 0.9996080847647212, 0.0001225710886247921, 0.00028599920679118156, 1.0015388578546542, 0.5190276591532612, 0.026900823797577564, 0.4531997609191891, 0.0009494408399145023, 0.26054630866216466, 0.740062387370191, 0.1454450417847977, 0.8726702507087861, 0.806017775599751, 0.1697536840863838, 0.0034584791324899925, 0.019982323876608844, 0.0008646197831224981, 0.9958818343384848, 0.9224330879384607, 0.04512537977843804, 0.008741821407294815, 0.00014651097330661703, 0.006837178754308794, 9.767398220441135e-05, 0.016555739983647722, 9.767398220441135e-05, 0.985249853707834, 0.014838100206443284, 0.8100922266142161, 0.025600740655884042, 0.035058339114745665, 0.04141775876811813, 0.0004891861271824977, 0.001304496339153327, 0.05185372948134475, 0.004239613102248313, 0.005054923314219142, 0.024785430443913212, 0.7905204399740361, 0.001855809912250033, 0.1244484294097081, 0.001146235534036785, 0.010861946251110487, 0.006277004114963347, 0.005567429736750099, 0.0001091652889558843, 0.0001091652889558843, 0.0001091652889558843, 0.05376390481077301, 0.005239933869882446, 0.13104388650374632, 0.8643320173651352, 0.005576335595904099, 0.987018462646803, 0.0005161494218737739, 0.0005818411664758906, 0.0016516781499960765, 0.0003847659326695405, 6.569174460211668e-05, 0.0010416833786907073, 2.8153604829478578e-05, 2.8153604829478578e-05, 2.8153604829478578e-05, 5.6307209658957155e-05, 8.446081448843572e-05, 0.0007883009352254002, 0.0013513730318149716, 0.0023273646659035625, 5.6307209658957155e-05, 1.8769069886319052e-05, 6.569174460211668e-05, 0.000178306163920031, 0.002787206878118379, 0.0003378432579537429, 0.0005912257014190501, 1.0174403821927014, 0.999244221298529, 0.15030056266657305, 0.864228235332795, 1.00679197901869, 0.09945438644554618, 0.9003796049485084, 1.0036451808062363, 0.8388638687472543, 0.03893849098351655, 0.00019162643200549485, 0.10819228351030238, 0.0015713367424450577, 7.665057280219793e-05, 0.006438648115384626, 0.0037558780673076987, 0.0007281804416208804, 0.00019162643200549485, 0.0006132045824175835, 0.00042157815041208864, 1.000158913356943, 0.9901577344699422, 0.40618771071853854, 0.11234979232640427, 0.48396833617527996, 0.9343356305507293, 0.4499414453204071, 0.0031986358672066854, 0.47073257845725053, 0.0010662119557355617, 0.07570104885722488, 0.996811291946513, 0.00010651589940657307, 0.0011184169437690173, 0.00026628974851643266, 0.00026628974851643266, 3.550529980219102e-05, 0.00010651589940657307, 8.876324950547756e-05, 0.0011361695936701127, 3.550529980219102e-05, 3.550529980219102e-05, 1.1166053689095141, 1.253388556926686, 0.982443064239248, 1.021755488330863, 1.108078164111428, 0.1527381249292522, 0.8481840554581878, 1.1789316770870975, 0.8769945711680289, 0.0002412165814607545, 0.049225412373812547, 0.04038654763885775, 0.0007753390118381395, 0.0002412165814607545, 0.0008442580351126407, 0.0012405424189410232, 0.0012060829073037725, 0.0003618248721911318, 0.005530751617778728, 0.0026878419077055503, 0.0003618248721911318, 0.011543936398478966, 0.0003618248721911318, 0.004996629187401343, 0.00013783804654900257, 0.00027567609309800514, 0.00010337853491175194, 0.0023949360587889198, 0.00010337853491175194, 0.5545181562421464, 0.15851825693108826, 0.09552499438198042, 0.030461530716235245, 0.0011829720666499124, 0.0008872290499874343, 0.0005914860333249562, 0.15703954184777588, 0.0014787150833123904, 0.5725835873584102, 0.08452799689496145, 0.0005911048733913388, 0.007290293438493179, 0.05300240364742338, 0.1873802448650544, 0.007191775959594623, 0.0033495942825509197, 0.00502439142382638, 0.00807843326968163, 0.0312300408108424, 0.0032510768036523633, 0.00039406991559422585, 0.03182114568423374, 0.0013792447045797905, 0.00019703495779711293, 0.0002955524366956694, 0.00019703495779711293, 0.002068867056869686, 1.2947904551138267, 1.0778040834496725, 0.9925381056973458, 0.6215654723821874, 0.013250426736829576, 0.006022921244013444, 0.0024091684976053776, 0.3565569376455959, 0.9741262049001707, 0.8587415144010541, 1.2947904551138267, 1.001865100134563, 1.1166053689095141, 0.24765856077837584, 0.7535143444959095, 1.0018029056263147, 0.923902235280115, 0.0008770430766152434, 0.002589365273816433, 0.00016705582411718922, 0.003299352526314487, 0.0002505837361757838, 0.0027981850539629195, 0.0001252918680878919, 0.05951363734174866, 0.006473413184541082, 0.9272547056172281, 1.0045078465637094, 0.6415773029010472, 0.031926832608819886, 0.06841464130461404, 0.003040650724649513, 0.25237401014590954, 0.003040650724649513, 1.0217554883308633, 0.8587415144010541, 0.9938251290938865, 0.0014506945495671609, 0.0004371956176777745, 0.00029808792114393716, 0.001967380279549985, 0.00029808792114393716, 5.9617584228787434e-05, 0.0016494198303297857, 1.008493988811978, 0.8628372482720217, 0.0007810501406833249, 0.0006694715491571357, 0.05991770364956364, 0.0010042073237357036, 0.0014505216898404606, 0.004463143661047571, 0.0014505216898404606, 0.06293032562077075, 0.00022315718305237857, 0.003570514928838057, 0.0006694715491571357, 0.8720917561651725, 0.07022458417908586, 0.9363277890544782, 0.9973477667803261, 0.7854456140519859, 0.0064451226535994464, 0.00601544781002615, 0.003007723905013075, 0.07347439825103369, 0.0038670735921596676, 0.018476018273651744, 0.0064451226535994464, 0.09710651464756499, 0.7453131401425482, 0.0007283190294552588, 0.006554871265097329, 0.001820797573638147, 0.007768736314189427, 0.20538596630638298, 0.0007283190294552588, 0.02512700651620643, 0.0033988221374578746, 0.0031560491276394547, 0.2345688520633121, 0.009981653279289876, 0.7161836227890487, 0.037431199797337035, 0.004990826639644938, 0.3242642272973782, 0.6761254101094268, 0.8720917561651725, 1.1618621400615654, 0.8856750838560051, 1.108078164111428, 0.8337511212340772, 0.04352584089515026, 0.0014231882581520522, 0.0007115941290760261, 0.007590337376810945, 0.004506762817481498, 0.0007115941290760261, 0.00023719804302534204, 0.10128356437182105, 0.006167149118658893, 1.108078164111428, 1.010512866074655, 1.180900111808007, 0.8879401049193874, 0.00040513497160968006, 0.0064242831212392125, 0.0016012477449334974, 0.0002315056980626743, 7.716856602089144e-05, 0.00021221355655745146, 0.0004630113961253486, 0.005864811017587749, 0.00034725854709401145, 0.009472441479064423, 0.06719452886269121, 0.0002893821225783429, 0.0020063827165431774, 0.0012732813393447088, 7.716856602089144e-05, 9.64607075261143e-05, 5.7876424515668575e-05, 0.0010803599242924801, 3.858428301044572e-05, 0.005421091762967623, 0.008720047960360732, 0.0006559328111775772, 0.11872633027888005, 0.8411886804865332, 0.015156552801559156, 0.025260921335931927, 0.05119033796291171, 0.8004307390564377, 0.1489173468011977, 1.2363396074896373, 1.021755488330863, 0.8131113396810117, 0.0011159357126002657, 0.00030434610343643606, 0.005173883758419413, 0.16688311338431244, 0.005985473367583242, 0.0002028974022909574, 0.0004057948045819148, 0.0066956142756015935, 0.0002028974022909574, 0.6721192952772774, 0.008407673303689269, 0.0009891380357281493, 0.0009891380357281493, 0.000741853526796112, 0.2660781316108722, 0.00370926763398056, 0.045253065134562835, 0.001483707053592224, 0.8182963648560984, 0.003094165863061547, 0.07028176746096942, 0.03724049628041933, 0.01889651294941159, 0.0007735414657653867, 0.0024311303209769296, 0.0003315177710423086, 0.0003315177710423086, 0.00022101184736153905, 0.022874726201919292, 0.025195350599215453, 0.2835135408289756, 0.00514378889444246, 0.024811217020251866, 0.6626410399311169, 0.01089272942352521, 0.005748940529082749, 0.0006051516346402894, 0.006656667981043184, 0.2017913953163877, 0.0128803018287056, 0.704123166635906, 0.017173735771607464, 0.0515212073148224, 0.0064401509143528, 0.0064401509143528, 0.9686361914152753, 0.002367909802239128, 0.001336983085618011, 6.443291978881981e-05, 6.443291978881981e-05, 0.000338272828891304, 4.8324689841614855e-05, 0.003269970679282605, 0.0005476798182049683, 0.00037048928878571387, 0.003624351738121114, 0.0019007711337701843, 3.2216459894409906e-05, 0.0007893032674130427, 0.001030926716621117, 0.000322164598944099, 0.0005476798182049683, 4.8324689841614855e-05, 0.01467459748190371, 0.5227967298343351, 0.0019517744580481845, 0.07500390417356595, 0.3937007906805766, 0.0011152996903132483, 0.0036247239935180567, 0.0005576498451566242, 0.0016729495354698724, 0.9987937695266088, 0.3204560635723186, 0.001019605667364667, 0.016433644285759927, 0.6491289492875172, 0.0008996520594394121, 0.0004198376277383923, 0.0026989561783182362, 0.0008996520594394121, 0.0004798144317010198, 0.0005997680396262747, 0.001139559275289922, 0.0005397912356636472, 0.00011995360792525494, 0.0023390953545424716, 0.0004198376277383923, 0.0023990721585050987, 0.8656816289012956, 0.001474164849376142, 0.002514751801876948, 0.004249063389378292, 0.0015608804287512092, 0.00026014673812520153, 0.0013007336906260077, 0.010059007207507792, 0.00034686231750026867, 0.0956472840506991, 0.00017343115875013434, 0.015608804287512091, 0.00043357789687533587, 0.0005202934762504031, 0.00026014673812520153, 0.9589421677379268, 0.0018488602205744091, 0.0014790881764595273, 0.0003697720441148818, 0.036730689715411595, 0.0004930293921531758, 1.1789316770870975, 1.0000127535630254, 1.0778040834496725, 0.9720062920920811, 0.948095188498872, 1.2363396074896373, 0.3332847723837524, 0.014182330739734145, 0.6523872140277707, 0.6696818180969425, 1.0001593277474163, 0.8504637665172389, 0.048837131793442755, 0.0013953466226697931, 0.0997672835208902, 0.8803732752919935, 0.03630713108748294, 0.009701323692783806, 0.01739246319697277, 0.013874640866931794, 0.006270900675290433, 0.004275283038786858, 0.004195167002284889, 0.0042315833825130565, 0.0019373514281385079, 0.0034668393977215404, 0.0017552695269976706, 0.0008157269171109507, 0.0025418633399260874, 0.005251242028901745, 0.0010269419224343218, 0.0013037064121683944, 0.0016314538342219014, 5.098293231943442e-05, 0.00010924914068450232, 0.0005753788076050455, 0.0004297132866923758, 0.00010196586463886883, 0.00044427983878364276, 0.001922784876047241, 0.08795322837835895, 0.9132164989072163, 0.9055560585171423, 0.010488843801318646, 0.0015416295147542517, 0.01213132758339327, 0.006699604900567542, 0.0001008542673203716, 0.0006195333563965684, 0.029593523582291895, 0.0018297845642410277, 0.0008212418910373116, 0.001959454336510077, 0.004250286979929946, 0.016914701404873753, 0.0009509116633063608, 0.0001008542673203716, 0.0012390667127931368, 0.0001873007821664044, 0.0007780186336142953, 0.0006195333563965684, 0.0020026775939330933, 0.0011670279504214429, 2.8815504948677602e-05, 0.000216116287115082, 5.7631009897355204e-05, 0.0001296697722690492, 0.8462889098997686, 0.7702367512520701, 0.2075821244484297, 0.0008299964991940411, 0.00033199859967761644, 0.015105936285331549, 0.002323990197743315, 0.002157990897904507, 0.001493993698549274, 0.6783750043386604, 0.005958124253915461, 0.0034046424308088346, 0.08937186380873191, 0.005106963646213252, 0.04511151220821706, 0.17278560336354837, 0.05690648582569961, 0.943194733153617, 0.022575157025344593, 0.08277557575959683, 0.045150314050689186, 0.6245793443678671, 0.06020041873425225, 0.16555115151919367, 1.108078164111428, 1.1789316770870975, 0.9824430642392479, 0.8462889098997686, 0.6976841664183262, 1.108078164111428, 1.0121969330966234, 0.5375170831108427, 0.000955585925530387, 0.0007963216046086559, 0.005255722590417128, 0.43112851673512625, 0.01608569641309485, 0.002866757776591161, 0.002866757776591161, 0.000955585925530387, 0.0006370572836869247, 0.0007963216046086559, 0.00015926432092173116, 0.9966762927601972, 0.9343356305507293, 0.6976841664183262, 0.37217056601211895, 0.6295225531481586, 0.9720062920920811, 1.0049448320185628, 1.2363396074896373, 0.5077461975496681, 0.0036832452990588254, 0.0036832452990588254, 0.11710553436125265, 0.1529630106550312, 0.00238327636997924, 0.0015166304172595164, 0.08926453313013154, 0.00032499223226989637, 0.00032499223226989637, 0.0019499533936193781, 0.02480774039660209, 0.00974976696809689, 0.032499223226989636, 0.025132732628871984, 0.002599937858159171, 0.00032499223226989637, 0.011374728129446373, 0.012458035570346027, 0.9118947253643978, 0.001413468003756076, 0.0004572984718034363, 0.003866250716156325, 0.00029100811842036855, 0.0001247177650373008, 0.0057785897800616045, 0.009935848614638297, 0.0002494355300746016, 0.008356090257499154, 8.314517669153387e-05, 0.0003741532951119024, 0.0009145969436068726, 0.05433537296791739, 0.0019123390639052792, 1.0194756258086881, 0.8408135688547416, 0.03327707055294193, 0.009689662806597067, 0.012319714139816272, 0.00033221701051189945, 0.0713989725091824, 0.0028792140911031287, 0.001162759536791648, 0.0017995088069394554, 0.0006921187718997905, 0.003349854855994986, 0.0027407903367231705, 0.0008582272771557402, 0.0078070997470296374, 0.0007751730245277654, 0.00047064076489185757, 0.001827193557815447, 0.004706407648918575, 0.0005260102666438408, 0.00047064076489185757, 0.0006367492701478073, 5.536950175198324e-05, 0.00044295601401586593, 0.0009135967789077235, 0.9901577344699422, 0.9998442568098139, 1.0067208025239411, 0.9999944139941609, 0.8500950324002778, 0.031229960117842494, 0.004364435420195379, 0.0001939749075642391, 0.11134159694187323, 0.0002909623613463586, 0.001939749075642391, 0.0002909623613463586, 9.698745378211954e-05, 0.09671630101456338, 0.904581874195034, 1.1166053689095141, 0.9984090489238583, 0.8170630688740581, 0.00474165041036364, 0.012621157709938513, 0.05121679744723667, 0.00024405553582754032, 0.04159403632032223, 0.00780977714648129, 0.0007670316840294124, 0.011819260949362309, 0.0478348850221979, 0.0003835158420147062, 0.0006275713778422465, 0.0003835158420147062, 0.00031378568892112324, 0.00031378568892112324, 0.00010459522964037442, 0.00017432538273395737, 6.973015309358295e-05, 3.4865076546791474e-05, 0.0018827141335267395, 1.0002923096481064, 0.39647462539681005, 0.1289030801782732, 0.006510256574660264, 0.4290259082701114, 0.02669205195610708, 0.0019530769723980791, 0.009765384861990396, 0.0013020513149320527, 0.7371970853250324, 0.012858088697529635, 0.06857647305349139, 0.007143382609738686, 0.1728698591556762, 0.9118457073409469, 0.03237082608709818, 0.012074029105254703, 0.0042956375242812215, 0.0010115883152218182, 0.001849761490691325, 0.002355555648302234, 0.007597750810398156, 0.010553033817010468, 0.0016582822738814807, 0.003468302795046234, 0.00044076348020379225, 0.000870688514173065, 0.0013800954871954806, 0.0028107703901520524, 0.0009429448224031948, 0.00023844581715942858, 0.0002673483404514805, 0.001213905978266182, 0.00025650989421696104, 0.00037573280279667537, 0.000849011621704026, 0.00019147921680984418, 0.0007623040518278702, 0.0003251533870355844, 1.0194756258086881, 0.8587415144010541, 0.386546577968382, 0.0010355247017905373, 0.025703202419443693, 0.0018121682281334402, 0.0005547453759592164, 0.000924575626598694, 0.5497156845505196, 0.003735285531458724, 0.0077294522383650815, 0.0020710494035810745, 0.005066674433760843, 0.014571311875195418, 0.0003328472255755298, 7.396605012789552e-05, 7.396605012789552e-05, 3.698302506394776e-05, 1.0007610316649522, 1.019636960508703, 1.019636960508703, 0.8929090907959233, 0.9412641835851413, 0.000913519706060748, 0.004869649400856084, 0.007787018784727505, 0.015581404663858725, 0.011426363420163066, 0.000633570118719551, 2.2101283211147128e-05, 0.003860357467547032, 0.007175549949219101, 0.0001473418880743142, 0.0005451649858749625, 0.003624610446628129, 0.0013260769926688276, 2.9468377614862837e-05, 5.156966082600997e-05, 5.8936755229725674e-05, 0.000405190192204364, 4.4202566422294255e-05, 0.000228379926515187, 0.8720917561651725, 0.9950181724612404, 0.0008781015356420736, 0.0013171523034631104, 0.0007489689568711804, 0.0004132242520668582, 0.0006456628938544659, 0.0008006219883795377, 5.165303150835727e-05, 0.00012913257877089317, 0.9695683935974994, 0.9741262049001707, 1.253388556926686, 1.0444904641055717, 0.9290793077820779, 0.00024174088965819965, 0.05830560029137054, 0.002762753024665139, 0.00033383265714703763, 0.0015655600473102455, 0.003050539798067758, 0.0016000944601185596, 0.00020720647684988543, 0.0006101079596135515, 0.00019569500591378068, 4.6045883744418984e-05, 0.001623117401990769, 0.0003453441280831424, 2.3022941872209492e-05, 1.1511470936104746e-05, 0.9901577344699422, 0.6696818180969425, 0.9963064493943832, 0.9343356305507293, 1.0108450868247234, 0.912036565777905, 0.08826160313979727, 0.25818760826222514, 0.014071836469268195, 0.45519331883197983, 0.0024472759076988163, 0.004282732838472928, 0.009789103630795265, 0.0018354569307741124, 0.036709138615482244, 0.014071836469268195, 0.0030590948846235203, 0.0012236379538494082, 0.009177284653870561, 0.05689916485399748, 0.1352119939003596, 0.6976841664183262, 1.0183782025029324, 1.1166053689095141, 0.8587415144010541, 0.9343356305507293, 0.3816179378581024, 0.009785075329694932, 0.4484826192776844, 0.1598228970516839, 0.9343356305507293, 0.7791850692620802, 0.22044559788731452, 0.8738745547427959, 0.0012371568173120784, 0.0005302100645623193, 0.002209208602342997, 0.0007953150968434789, 0.00751130924796619, 0.08615913549137688, 0.018027142195118855, 0.0010604201291246386, 0.0005302100645623193, 0.00035347337637487954, 0.0007953150968434789, 0.0004418417204685994, 0.006185784086560391, 0.00017673668818743977, 8.836834409371989e-05, 0.9939576865154898, 6.117415598938267e-05, 0.00018352246796814805, 6.117415598938267e-05, 0.005729979277672177, 0.9840834265066726, 0.9430785730184634, 0.5019112400388958, 0.4965432053860733, 0.9958818343384848, 1.0035456772581908, 1.0626831326183679, 0.8929090907959233, 0.6696818180969425, 1.0194756258086881, 0.7505983378446274, 0.23142771501852374, 0.0005258634301185212, 0.002151259486848496, 0.0002868345982464661, 0.005306440067559623, 0.00803136875090105, 0.0007648922619905762, 0.0004780576637441102, 0.0003824461309952881, 1.0194756258086881, 0.8013270783251352, 0.198757894848322, 0.33902623237834567, 0.6636258165703787, 1.0174403821927014, 0.028710421251218272, 0.9761543225414213, 0.9770296977958249, 1.033287597832006, 1.0003056654072342, 0.6696818180969425, 0.07556149638116894, 0.00964614847419178, 0.8665456712648949, 0.040192285309132415, 0.008038457061826484, 1.2363396074896373, 0.9363061133530299, 0.00980143560423024, 0.00011696223871396466, 9.356979097117172e-05, 0.00025731692517072226, 0.03398922657027813, 0.017170056643210013, 0.0021053202968513637, 0.0001403546864567576, 0.937920289474428, 0.007154674720234567, 0.0029331425098279643, 0.0009320265919079512, 0.006990199439309635, 0.0010142642323704176, 0.0030427926971112527, 0.00019188782774575466, 0.005372859176881131, 0.0026864295884405655, 0.0033169181653194737, 0.00024671292138739884, 0.0013158022473994605, 0.00509873370867291, 0.0021930037456657676, 0.0029879676034696083, 0.001452864981503571, 0.013651448316769404, 0.00019188782774575466, 5.4825093641644194e-05, 0.0008772014982663071, 0.00016447528092493257, 0.00019188782774575466, 0.17912812468296221, 0.80607656107333, 0.7376310918650374, 0.006295571196572154, 0.2360839198714558, 0.020985237321907182, 0.5019112400388958, 0.4965432053860733, 0.9879870764955332, 0.9233984700928566, 0.8045953528448033, 0.08906370633339153, 0.00811964227888892, 0.025992949641820008, 0.007116516309702178, 0.012737807118163738, 0.009924007229753125, 0.006984027974149211, 0.008466635538670499, 0.000498408500413539, 0.0042459357060545795, 0.006144935182313759, 0.005394167947513619, 0.0028705806036475982, 0.0019053084446188453, 0.00041639191173789336, 0.0031418662431131955, 0.00017034214571095638, 0.00018296008243028647, 6.308968359665051e-05, 0.0008390927918354517, 1.8926905078995154e-05, 0.0008454017601951168, 0.00025235873438660204, 1.0778040834496725, 1.253388556926686, 0.994442199417269, 0.9343429049154598, 0.0022151325389176382, 0.06335279061304445, 0.14127460283258336, 0.859670987449337, 1.0277691936058022, 1.108078164111428, 0.9973477667803261, 0.8307011226868547, 0.004880433312013061, 0.005073081995381997, 0.0021833517448479486, 0.005522595589909516, 0.001412757011372202, 0.1042229377025947, 0.002247567972637594, 0.0008990271890550375, 0.017659462642152523, 0.0017338381503204296, 0.001669621922530784, 0.0010916758724239743, 0.008669190751602147, 0.00044951359452751876, 0.00038529736673787325, 0.001669621922530784, 0.0021833517448479486, 0.001541189466951493, 0.0012201083280032653, 0.003660324984009796, 0.0005137298223171643, 6.421622778964554e-05, 0.00038529736673787325, 0.6727487345472488, 0.05215106469358518, 0.014341542790735923, 0.0039113298520188884, 0.256843993615907, 0.002607553234679259, 0.6976841664183262, 0.05590813914125863, 0.9318023190209772, 1.2947904551138267, 0.9343356305507293, 1.0002448464712659, 0.21800378216229047, 0.7815667509435307, 1.2947904551138267, 0.11091141019857587, 0.8872912815886069, 0.6696818180969425, 1.0194756258086881, 0.9272547056172281, 0.10160194520543114, 0.0060787488584445985, 0.6591100547942071, 0.03907767123285813, 0.013460086757984468, 0.03169633333331826, 0.14328479452047982, 0.002170981735158785, 0.0034735707762540563, 1.0166293725538698, 0.6696818180969425, 1.2947904551138267, 1.0778040834496725, 0.9272547056172281, 0.16409659994165846, 0.02524563076025515, 0.8078601843281648, 1.0045227271454138, 0.6696818180969425, 1.0560152824732867, 1.0778040834496725, 0.8663544969821726, 0.0003839494446897884, 0.0006033491273696675, 0.0015906476994291233, 0.00948903627590477, 0.0003839494446897884, 0.0022488467474687606, 0.00937933643456483, 0.00016454976200990933, 0.00016454976200990933, 0.0005484992066996978, 0.09631646069646692, 0.00021939968267987908, 0.00010969984133993954, 0.00032909952401981865, 0.011628183182033592, 0.7599595781718095, 0.038797822068777015, 0.0012305279387485246, 0.08678841167996948, 0.00890323155682756, 0.00028953598558788816, 0.020991358955121893, 0.05132025344545318, 0.0013752959315424687, 0.00021715198919091612, 0.00043430397838183223, 0.0007238399639697203, 0.009916607506385169, 0.0006514559675727484, 0.00028953598558788816, 0.00021715198919091612, 0.0010133759495576085, 0.016937855156891456, 0.363027567140311, 0.003320374089697966, 0.20309621515319226, 0.006640748179395932, 0.0038737697713142937, 0.3862701857681967, 0.017708661811722485, 0.004980561134546949, 0.0022135827264653106, 0.003320374089697966, 0.004980561134546949, 1.0778040834496725, 1.0119236155742473, 0.9343356305507293, 0.19103870134934808, 0.0853577176241768, 0.00812930644039779, 0.012193959660596686, 0.7031850070944089, 0.35405189196822806, 0.015066037956094812, 0.6076635308958241, 0.005022012652031604, 0.017577044282110613, 0.2393994050848756, 0.1706357461775177, 0.015280813090523974, 0.573030490894649, 0.005093604363507991, 0.9283230138099942, 0.01311345045994106, 0.0020489766343657905, 0.0005463937691642108, 0.0004097953268731581, 0.0004097953268731581, 0.002731968845821054, 0.05245380183976424, 0.8177932328825965, 0.015759263950937855, 0.0011256617107812752, 0.014633602240156578, 0.00703538569238297, 0.0005628308553906376, 0.103279461964182, 0.03996099073273527, 0.8497752678747775, 0.0029975291701195934, 0.028917910861250833, 0.017616546837984404, 0.02179756648951044, 0.009176901601725357, 0.013687746469381055, 0.0017267320138552996, 0.005471218291092073, 0.01390116278570025, 0.005442116066139455, 0.0005820444990523482, 0.002308776512907648, 0.00490857527534147, 0.0038317929520946255, 0.0019692505551271115, 0.001076782323246844, 0.0014357097643291257, 0.0008342637819750324, 0.0008827674902293947, 0.003055733620024828, 0.0034825662526632166, 0.0007178548821645628, 0.0033273543862492572, 0.0010573808399450993, 0.781820962882996, 0.006914242220971549, 0.0030695514792653963, 0.005612008260071078, 0.0012092172494075804, 0.00017053063773696646, 0.0050539079911137335, 0.15792687332967975, 0.0013797478871445468, 9.30167114928908e-05, 0.006340639166765389, 4.65083557464454e-05, 0.007952928832642163, 0.0013487423166469166, 0.00029455291972748754, 0.006898739435722734, 6.201114099526054e-05, 0.0070537672882108856, 0.0003255584902251178, 0.0012557256051540257, 9.30167114928908e-05, 0.0022479038610781943, 0.0012247200346563955, 0.0015812840953791435, 0.7746678114938972, 0.0011270627713296274, 0.027800881692797475, 0.06536964073711839, 0.0011270627713296274, 0.007138064218420973, 0.0533476378429357, 0.06950220423199369, 0.7823189393809253, 0.00031944423821189276, 0.193583208356407, 0.00023958317865891955, 0.0006388884764237855, 0.004791663573178391, 0.002874998143907035, 0.0003993052977648659, 0.0015972211910594636, 0.0006388884764237855, 0.011340270456522193, 0.0011979158932945977, 0.9397650195232854, 0.8501779201346493, 0.01036112166480857, 0.014743556878775219, 0.006109288824768078, 0.03111238774418708, 0.001770387735443481, 0.0012479782397388473, 0.00020315924832957978, 0.055259315545645706, 0.000914216617483109, 0.007603960437478558, 0.0002466933729716326, 0.0005224094957046337, 0.005020935708716758, 0.00397611671730749, 0.001712342235920744, 0.0007691028686762664, 0.0004498526213012124, 0.0004498526213012124, 0.00031925024737505396, 0.0033521275974380664, 0.003265059348153961, 0.0003918071217784753, 1.0444904641055717, 1.0626831326183679, 0.0791411517954235, 0.9233134376132741, 1.2363396074896373, 0.9901577344699422, 0.9770296977958249, 0.9045645715167638, 0.011596981686112357, 0.035678027612685216, 0.0010601718332453461, 0.0008870825543481467, 0.0025747030235958404, 0.007442838992579573, 0.00036781471765654866, 0.007075024274923024, 0.005755218523331879, 0.004846499809121582, 0.0008654463944859968, 0.00012981695917289952, 0.0015361673502126442, 0.0006058124761401978, 0.00023799775848364912, 0.0008654463944859968, 0.009714635778105314, 0.0036132386969790365, 0.00023799775848364912, 0.00017308927889719936, 0.00019472543875934928, 0.9480951884988719, 0.9999396707300763, 0.7272303393307906, 0.024237798879100696, 0.041488558319892045, 0.002553883380899278, 0.001204661972122301, 0.002023832113165466, 0.004818647888489204, 0.04818647888489204, 0.10976879889978407, 0.013974078876618692, 0.008336260847086323, 0.0021683915498201417, 9.637295776978407e-05, 0.003565799437482011, 0.008432633804856107, 9.637295776978407e-05, 9.637295776978407e-05, 0.0017347132398561134, 0.9720062920920811, 1.180900111808007, 1.021755488330863, 0.8349860817882285, 0.01869388218152068, 0.004085854389850583, 0.03106128014649852, 0.01610178100946493, 0.020780743294616405, 0.0012960505860278731, 0.018210609081645877, 0.0015376871359652731, 0.027085260552074025, 0.0026140681311409646, 0.009050387143109894, 0.0005491739771304547, 0.00046130614078958196, 0.0016914558495618006, 0.005140268425941056, 0.00024163654993740008, 0.0003295043862782728, 0.0007908105270678548, 0.0012081827496870003, 0.000351471345363491, 0.0035806143308905647, 0.00013180175451130914, 1.2363396074896373, 1.0104413282340678, 0.9977141827230781, 0.25484572877446965, 0.014702638198527095, 0.7351319099263548, 0.9992304379176805, 1.0049448320185628, 0.43037717636790684, 0.562094034615736, 0.004594774124924273, 0.003063182749949515, 0.8994242679413824, 0.07970578872515557, 0.019860827706487724, 8.749263306822785e-05, 0.0004374631653411393, 0.0004957915873866246, 0.9973477667803261, 0.2733403752048762, 0.7175184849128, 0.009762156257317007, 0.9999944139941609, 0.8720917561651725, 1.2947904551138267, 0.9995860359382918, 1.0055555029533487, 0.05120932505938838, 0.9524934461046239, 1.108078164111428, 0.9264143119667627, 0.022233943487202305, 0.04446788697440461, 0.9883706569871955, 0.13133915421450795, 0.003949091930795098, 0.0007006453425604206, 0.0007643403737022771, 0.7517287575361895, 0.025350622394458858, 0.0010828155294115593, 0.006369503114185642, 0.0010828155294115593, 0.0089173043598599, 0.00012739006228371284, 0.06465045660898427, 0.0017197658408301235, 0.0020382409965394054, 0.00012739006228371284, 0.9984620707721059, 1.0004355307641661, 0.3108138625104431, 0.6893692078757263, 1.003361333772471, 0.9119980235000029, 0.03631552176102888, 0.01026424561415464, 0.0007064027221420295, 7.492150083324555e-05, 0.0015733515174981565, 0.030171958692702745, 0.001519836159760124, 3.210921464281952e-05, 0.0003853105757138343, 0.0008990580099989467, 0.002579440242973168, 9.632764392845857e-05, 0.0009525733677369792, 0.0008134334376180946, 5.3515357738032534e-05, 0.0001391399301188846, 2.1406143095213014e-05, 1.0703071547606507e-05, 0.0013806962296412395, 0.9974119295247273, 0.7010050632344476, 0.03187501161961462, 0.0171634677951771, 0.00032692319609861143, 0.005884617529775006, 0.2314616228378169, 0.0009807695882958344, 0.008745195495637856, 0.0008990387892711815, 0.00032692319609861143, 0.00016346159804930571, 0.0010625003873204872, 8.173079902465286e-05, 8.173079902465286e-05, 0.9480951884988719, 0.10660252123405503, 0.00793848562381261, 0.8834400429928604, 0.0022681387496607456, 0.8916914982324573, 0.0058844326190378715, 0.000399912896439467, 0.0006284345515477339, 0.09140866204330675, 0.0017710428270890683, 0.001428260344426668, 0.0006855649653248006, 0.00017139124133120015, 0.001599651585757868, 0.0014853907582037347, 0.0006855649653248006, 0.002228086137305602, 1.180900111808007, 0.9720062920920811, 0.3584827661938132, 0.007650546839502111, 0.026776913938257388, 0.6071255384776318, 1.0194756258086881, 1.0271031208737778, 0.02914120199087148, 0.971373399695716, 1.0778040834496725, 1.0055555029533487, 0.9999944139941609, 1.0005198971334115, 0.9307072466750487, 0.0653528916980051, 4.682353993864756e-05, 6.38502817345194e-05, 0.0001915508452035582, 0.00022134764334633394, 7.662033808142328e-05, 0.0001915508452035582, 1.2770056346903881e-05, 1.2770056346903881e-05, 0.0007874868080590727, 0.0004980321975292513, 3.831016904071164e-05, 0.0001830374743056223, 0.0007066097845286814, 8.513370897935921e-06, 2.979679814277572e-05, 0.0008726205170384319, 0.9999416339589031, 0.20955204489070806, 0.07579542049238376, 0.7074239245955818, 0.007430923577684682, 0.6696818180969425, 0.11860941862011591, 0.007570813954475484, 0.8731672094161724, 0.01782724149779811, 0.980498282378896, 0.99273160746015, 0.9343356305507293, 1.0048718602946707, 0.9984752766154078, 0.8461911529449619, 0.02492513137993563, 0.021065893758234734, 0.003859237621700898, 0.0061619871418318204, 0.02977050016187778, 0.01199348708401522, 0.0005010612381766359, 0.021822816054203695, 0.002110853726786679, 0.00326222848685214, 0.0017110708239861715, 0.0025106366295871863, 0.006241943722391921, 0.0027611672486755044, 0.002942402164611734, 0.0044828989500696895, 0.0023667147845790036, 0.0021215146041946922, 0.00043176553502454796, 0.00017057403852821648, 0.000613000450960778, 0.0015138445919379213, 0.00034114807705643295, 0.00012793052889616236, 1.2363396074896373, 0.9808852687976286, 1.021755488330863, 0.15612095169707516, 0.6353371349811454, 0.024211270584038394, 0.008348713994495998, 0.025881013382937593, 0.14610249490367996, 0.0016697427988991997, 0.0025046141983487992, 0.8333503889746413, 0.0009648449756570443, 0.00041350498956730465, 0.00041350498956730465, 0.10213573242312425, 0.0012405149687019141, 0.021915764447067148, 0.03942080900541638, 0.0002756699930448698, 1.0706188085341382, 0.8731195365197245, 0.009768684679301247, 0.01734927964463416, 0.007425156898220409, 0.009254543380390655, 0.009493678868256047, 0.006516442044331921, 0.004172914263251083, 0.006337090428432877, 0.0009804555002481056, 0.0024272252018337245, 0.017803637071578404, 0.007903427873951192, 0.0034674645740481783, 0.008871926599806028, 0.0024272252018337245, 0.0027739716592385423, 0.0024630955250135333, 0.004615314915802058, 0.0003467464574048178, 0.0006337090428432877, 0.00019130839029231328, 9.565419514615664e-05, 0.001482640024765428, 8.369742075288706e-05, 0.7356476601973105, 0.020926183180680662, 0.0004616069819267793, 0.0467761741685803, 0.02985058483126506, 0.14648328226476462, 0.01138630555419389, 0.0003077379879511862, 0.008155056680706435, 0.0003077379879511862, 0.019399784897431053, 0.0129331899316207, 0.9699892448715526, 0.7412416911873829, 0.0006499269541318571, 0.0004332846360879047, 0.0004332846360879047, 0.00032496347706592854, 0.003791240565769166, 0.029246712935933568, 0.004874452155988928, 0.0010832115902197617, 0.10387999150207515, 0.0006499269541318571, 0.10604641468251468, 0.00021664231804395236, 0.007149196495450427, 0.9984090489238583, 0.8017501662382678, 0.015398530721605656, 0.003079706144321131, 0.135849259921721, 0.0006843791431824736, 0.04311588602049583, 0.9967204752519694, 0.6837868898128424, 0.02397423546599905, 0.01250829676486907, 0.005211790318695446, 0.21472576113025235, 0.06045676769686717, 0.9985192418764579, 0.9710928413353701, 0.3029264392597837, 0.016912149318280206, 0.00497416156420006, 0.661066071882188, 0.008456074659140103, 0.002984496938520036, 0.001492248469260018, 0.000994832312840012, 1.108078164111428, 1.0194756258086881, 0.22356310260844475, 0.7626514351394463, 0.004756661757626485, 0.0031711078384176563, 0.0031711078384176563, 0.004756661757626485, 0.8167927792488384, 0.0064464791112886985, 0.003820135769652562, 0.002626343341636136, 0.05563072714556543, 0.0016713093992229958, 0.0028651018272394216, 0.0007162754568098554, 0.005730203654478843, 0.006685237596891983, 0.0028651018272394216, 0.0465579046926406, 0.047512938635053736, 1.0192752333280681, 0.8587415144010541, 0.9998442568098139, 0.982087316697459, 0.00010729844259219936, 0.001563491592057762, 0.009457591297055286, 6.131339576697106e-05, 0.0007357607492036527, 0.00032189532777659807, 0.00015328348941742764, 0.0002145968851843987, 4.598504682522829e-05, 0.00036788037460182635, 0.0008737158896793375, 0.0005058355150775112, 0.000260581932009627, 0.0020080137113683023, 7.664174470871382e-05, 0.00022992523412614148, 0.0003525520256600836, 4.598504682522829e-05, 0.0005058355150775112, 1.5328348941742766e-05, 1.0027864181237933, 1.000244846471266, 0.7205820166817696, 0.27790739362879224, 0.002196896392322468, 0.9343356305507293, 1.0010738898757814, 0.714068482621629, 0.007035157464252503, 0.27437114110584765, 0.0035175787321262515, 1.253388556926686, 0.6939254464652467, 0.011516069524079485, 0.2931662270272806, 0.0009870916734925274, 0.0006580611156616849, 0.5979130742656245, 0.0016301565562007304, 0.0052448515286458285, 0.021546417090653133, 0.022538686298775316, 0.0398325210689048, 0.30703644354180715, 0.000708763720087274, 0.0001417527440174548, 0.00042525823205236444, 0.0004961346040610918, 0.00191366204423564, 0.00042525823205236444, 1.0111399858377972, 0.24166391312150998, 0.010283570771128084, 0.7481297735995681, 0.542951202951986, 0.011552153254297575, 0.4466832591661729, 1.0626831326183679, 0.6696818180969425, 0.8720917561651725, 0.7824152892112737, 0.014862429381322659, 0.20033740426330818, 0.001628759384254538, 0.0004071898460636345, 0.0004071898460636345, 0.9710928413353701, 1.0003056654072342, 0.6834921859844495, 0.03401264432624038, 0.2769601037993859, 0.004858949189462911, 0.9984010771690148, 0.9994502117303031, 1.0045227271454138, 0.812957535604598, 0.16273434604534812, 0.003519959209131354, 0.00020405560632645532, 0.013875781230198963, 0.002907792390151988, 0.0001530417047448415, 0.0006631807205609798, 0.0017344726537748703, 0.001173319736377118, 0.00010202780316322766, 1.0465262496274894, 1.0036451808062363, 0.9876969720531678, 0.39532223031229863, 0.03364444513296159, 0.008411111283240397, 0.5635444559771066, 0.9512279371601593, 0.000974531962346711, 0.007457288059696572, 0.00016948381953855844, 0.000550822413500315, 0.007838626653658328, 0.008177594292735445, 0.005889562728964906, 8.474190976927922e-05, 0.00016948381953855844, 0.012457060736084047, 0.0011440157818852696, 0.003813385939617565, 0.7611090657479574, 0.038440778513548, 0.0025688348410008205, 0.050275767602444635, 0.0003669764058572601, 0.10064327930635358, 0.0011926733190360953, 0.010000107059610337, 0.008899177842038558, 0.010183595262538968, 0.00018348820292863005, 0.004220228667358491, 0.006789063508359312, 0.005137669682001641, 0.44833682281605564, 0.4259997569106294, 0.012764037660243577, 0.10530331069700952, 0.0031910094150608944, 0.004786514122591341, 0.9901577344699422, 1.0104413282340678, 1.0002002507011658, 0.7438848413733884, 0.2433049283004415, 0.00046842398427038567, 0.0001377717600795252, 0.00011021740806362016, 0.001295054544747537, 0.000661304448381721, 0.0009092936165248664, 8.266305604771513e-05, 0.0002755435201590504, 0.000661304448381721, 0.0036647288181153705, 0.0009919566725725814, 0.00019288046411133528, 0.002782989553606409, 0.0006061957443499109, 0.9997890654759, 1.0194756258086881, 0.9201793954464236, 0.0006854222684889561, 0.0016645969377588935, 0.020122039453497213, 0.00039166986770797495, 0.00034271113424447805, 0.001860431871612881, 0.016156382042953967, 0.003329193875517787, 0.00024479366731748435, 0.0005875048015619624, 0.003671905009762265, 0.0006364635350254592, 0.0006854222684889561, 0.0009791746692699374, 0.026486674803751803, 9.791746692699374e-05, 0.0006364635350254592, 0.0012729270700509185, 0.5218990471892839, 0.042048738399136615, 0.0018550913999619096, 0.35865100399263583, 0.07605874739843829, 0.8906272181727507, 0.016908808792561174, 0.011981098801586203, 0.00045090156780163126, 0.002125678819636262, 0.0057006841072063386, 0.00038648705811568395, 0.04006582502465924, 0.01742412487004875, 0.00048310882264460494, 0.007504290378412864, 0.0016425699969916567, 0.0029952747003965507, 0.0002576580387437893, 0.001417119213090841, 0.6180995983456637, 0.0014658488498316138, 0.37916623582311076, 0.000977232566554409, 1.1618621400615654, 0.8812521296726806, 0.00035191767400928544, 0.08657174780628421, 0.011940063939600756, 0.005178217203279486, 0.0009803420918830094, 0.0007038353480185709, 0.0010557530220278563, 0.0012819858124623969, 0.0013071227891773458, 0.0004776025575840302, 0.005479860923858873, 0.0004776025575840302, 0.00017595883700464272, 0.0007289723247335198, 0.0001256848835747448, 0.0003770546507242344, 0.0015082186028969376, 0.9530261313161486, 0.007104619127517488, 0.015842484031475777, 0.00013610381470340017, 0.0012249343323306014, 0.0005988567846949607, 0.0022321025611357626, 0.002422647901720523, 5.444152588136006e-05, 0.0027492970570086833, 5.444152588136006e-05, 0.0040286729152206446, 5.444152588136006e-05, 0.002041557220551002, 0.0004083114441102005, 5.444152588136006e-05, 0.00783957972691585, 0.0001633245776440802, 0.7409672307009042, 0.0358658975184973, 0.0028744981617739186, 0.003462463694864038, 0.1483633028497402, 0.028287675092002425, 0.0001959885110300399, 0.0001959885110300399, 0.0043770767463375574, 0.010060743566208714, 0.0001959885110300399, 0.004638394761044278, 0.015548421875049833, 0.002025214613977079, 0.00032664751838339985, 0.0001959885110300399, 0.0001959885110300399, 0.00013065900735335993, 0.0019598851103003988, 1.0095725920085685, 0.027323250147297216, 0.9745292552536007, 0.872683850909676, 0.020905363216760228, 0.011463238338503308, 0.013927672953777082, 0.009032668533683015, 0.01083673934511391, 0.0068376130924710215, 0.003989890395246485, 0.012311397909406399, 0.008977253389304591, 0.0023689974221776005, 0.002458277377009505, 0.0016993977609383176, 0.0034280424036319144, 0.0015685564478225959, 0.0014592654686318162, 0.008110622103608692, 0.0009805401935848808, 0.0011052242684363334, 0.0008450809517709569, 0.0013391993224785657, 0.0009774615744527462, 0.0005202866333307531, 0.0012114366284949783, 0.0009589898596599383, 0.15718570194406717, 0.8126835228171982, 0.02006625982264687, 0.010033129911323435, 0.98733706154973, 0.934648606501009, 0.00012997219288623035, 0.001986717805546664, 0.00044561894703850404, 0.005495967013474884, 0.009469402624568211, 5.5702368379813005e-05, 0.0016339361391411815, 0.007798331573173821, 0.009060918589782916, 0.00835535525697195, 0.00044561894703850404, 0.001596801226887973, 3.713491225320867e-05, 0.003045062804763111, 0.009747914466467276, 0.005644506662487718, 5.5702368379813005e-05, 0.0003527816664054824, 0.994442199417269, 1.001865100134563, 1.000158913356943, 1.2947904551138267, 0.30024434440706604, 0.01445026256504596, 0.6839790947455088, 0.8568321147895029, 0.0025395142702712, 0.14018118771897026, 0.32152509965428605, 0.024028566166334545, 0.003432652309476364, 0.004576869745968485, 0.0022884348729842424, 0.6430501993085721, 0.0011442174364921212, 1.108078164111428, 0.8685597007039756, 0.034173707046904415, 0.018197964672841356, 0.015984406008756155, 0.012354343072350284, 4.7649990812010214e-05, 0.006982889562632769, 0.0034221357037716427, 0.007346762219742666, 0.005743989801520504, 0.003439462973157828, 0.0009096816427747404, 0.0027550358324034997, 0.004396794606744579, 0.0034697856945836527, 0.0013428633774293787, 0.0003595408397633498, 0.002148581403887006, 0.0023435131844815934, 0.000667099871368143, 0.0012562270304984512, 0.00081438166115072, 0.0003075590316047932, 0.0018843405457476766, 0.0010916179713296886, 0.8336563081973515, 0.014731822580866269, 0.01953994407151312, 0.026663813871940903, 0.014620614328701648, 0.01403186475841836, 0.007849994270443838, 0.008275202293426213, 0.00801353581774475, 0.00803316080342086, 0.0034278308314271426, 0.0027147896851951606, 0.005279121146873481, 0.004991288023623874, 0.006260370430678961, 0.003486705788455471, 0.0034082058457510327, 0.001910165272474667, 0.0019232485962587403, 0.0020409985103153976, 0.0010074159313736258, 0.0018382069916622653, 0.002191456733832238, 0.0018251236678781923, 0.002276498338428713, 1.0626831326183679, 0.6976841664183262, 0.7345962876083428, 0.013562291650318388, 0.004206892258833364, 0.020806651244049488, 0.1353039824330196, 0.006986174870264791, 0.006970987533590303, 0.029174873751692747, 0.0002581847234663075, 0.0005771187936305697, 0.0031285913549446674, 0.010874133058933892, 0.0005923061303050584, 0.0032804647216895543, 0.0012149869339590942, 0.0022781005011733016, 0.0004556201002346603, 0.00024299738679181882, 0.0011997995972846055, 0.003963894872041545, 0.000516369446932615, 0.006090122006469959, 0.010251452255279857, 0.002111039797753926, 0.0013516729640294922, 0.9840834265066724, 0.982443064239248, 0.9091576118524473, 0.022932408142100992, 0.0031420235703734944, 0.05286891049315957, 0.0030547451378631196, 0.00021819608127593713, 0.0006109490275726239, 0.003665694165435744, 0.002552894150928464, 0.0001963764731483434, 0.001069160798252092, 4.363921625518742e-05, 0.0003927529462966868, 4.363921625518742e-05, 6.545882438278114e-05, 0.968990840183525, 0.6976841664183262, 0.9814005744896266, 1.0217407868088177, 0.48796229515288075, 0.5093173190107749, 0.0008008133946710296, 0.001868564587565736, 1.0217407868088177, 1.0217407868088177, 0.7726298717760669, 0.015608684278304382, 0.002601447379717397, 0.2098500886305367, 0.9962116011225916, 0.8856750838560051, 0.062209597668480714, 0.9384383988713367, 0.8462889098997686, 0.9901577344699422, 1.0778040834496725, 0.9430785730184634, 1.0778040834496725, 0.8077627025880632, 0.08453075305691882, 0.0007684613914265346, 0.0007684613914265346, 0.04138713493825765, 0.00867263570324232, 0.0010978019877521924, 0.05038911123782563, 0.004610768348559208, 1.180900111808007, 0.9343356305507293, 0.9945086753087068, 0.8929206931832742, 0.00047969645834865075, 0.00041116839287027207, 0.0003426403273918934, 0.0002741122619135147, 0.009593929166973015, 0.0028781787500919047, 0.0003426403273918934, 0.041596535745375855, 0.006441638154967596, 0.024464519375781188, 0.007195446875229761, 0.0026725945536567684, 0.00013705613095675736, 0.010279209821756802, 1.0001596207906356, 0.9984090489238583, 0.6976841664183262, 1.0045227271454138, 0.31558742054141, 0.0018695937235865521, 0.6756711717041799, 0.0014956749788692417, 0.0022435124683038623, 0.0007478374894346209, 0.0007478374894346209, 0.0022435124683038623, 0.882955654787678, 0.0012321058948035226, 0.022981453429161355, 0.06133744563261014, 0.0004464151792766386, 0.0013213889306588503, 0.0019106569673040133, 0.0034998950055288467, 5.3569821513196637e-05, 0.0016963776812512267, 0.01049968501658654, 0.00014285285736852436, 0.005035563222240484, 0.001607094645395899, 0.001374958752172047, 0.0006071246438162285, 0.0004821283936187697, 0.0001607094645395899, 0.0011249662517771293, 0.00014285285736852436, 0.0003392755362502453, 0.0001607094645395899, 0.0008749737513822117, 0.871396605046174, 1.0174403821927014, 0.1672203921248516, 0.8040810344726906, 0.032020926151567326, 0.8591543986865431, 0.022351199965829963, 0.01700459997400373, 0.03147659995187924, 0.013466999979411937, 0.0006833999989552327, 0.012220799981317101, 0.002813999995698017, 0.0019295999970500688, 0.006833999989552327, 0.0005627999991396034, 0.004904399992502258, 0.002090399996804241, 0.015195599976769291, 0.0019295999970500688, 0.0002813999995698017, 0.007034999989245042, 0.6039162932640055, 0.006440763478976219, 0.0056830265990966645, 0.0045464212792773314, 0.0015154737597591105, 0.35992501794278875, 0.0026520790795784436, 0.003409815959457999, 0.004167552839337554, 0.0007577368798795552, 0.003788684399397776, 0.0011366053198193329, 0.0022732106396386657, 0.9343356305507293, 0.5540033740543232, 0.005914626769263237, 0.4258531273869531, 0.013800795794947553, 0.882315628099415, 0.010104964049459883, 0.0016610899807331316, 0.0005536966602443772, 0.0012458174855498486, 0.00290690746628298, 0.0004152724951832829, 0.007198056583176903, 0.08623825483306174, 0.0015226658156720372, 0.0026300591361607915, 0.0002768483301221886, 0.0026300591361607915, 0.0002768483301221886, 0.9997890654759, 0.9900143273187062, 0.99980931841635, 1.0155466918797222, 0.0402781921247465, 0.0402781921247465, 0.8189899065365123, 0.09398244829107517, 1.1618621400615654, 0.8912645169555165, 0.000388084823257565, 0.036147329251990344, 0.014109655359864328, 0.00820522197744566, 0.005848992693381873, 8.31610335551925e-05, 0.0023007885950269927, 0.00044352551229436, 0.013278045024312403, 0.000388084823257565, 0.0019404241162878251, 0.0024671106621373777, 0.00654200130634181, 0.00066528826844154, 0.000166322067110385, 0.01230783296616849, 0.0009424917136255151, 8.31610335551925e-05, 5.5440689036795e-05, 5.5440689036795e-05, 0.000498966201331155, 0.00177410204917744, 0.9695683935974994, 0.9973477667803261, 1.0302830062413646, 0.37167715794732525, 0.6284026175604263, 0.37867801762981457, 0.013854073815724923, 0.0034635184539312308, 0.0785064182891079, 0.020781110723587383, 0.07100212830559023, 0.0023090123026208204, 0.004040771529586436, 0.015008579967035333, 0.020781110723587383, 0.38964582606726345, 0.0017317592269656154, 0.9397650195232854, 0.1890744771223773, 0.006066560763284832, 0.7441647869629394, 0.060665607632848326, 0.711571986673448, 0.2831368251682938, 0.00022492002528925762, 0.0010871134555647452, 0.00026240669617080055, 0.0003373800379338864, 0.0033363137084573215, 7.497334176308588e-05, 1.0194756258086881, 1.0194756258086881, 0.8608047070538135, 0.002851457525314659, 0.0016773279560674465, 0.0003354655912134893, 0.021972996224483548, 0.000251599193410117, 0.0012579959670505848, 0.016437813969460976, 0.046294251587461525, 0.00016773279560674466, 0.0009225303758370956, 0.0004193319890168616, 0.04402985884677047, 0.0025159919341011697, 0.8880847425425351, 0.0010653972918248063, 0.024504137711970547, 0.0005326986459124032, 0.006011884718154265, 0.015752659957695352, 0.01346966576092791, 0.00852317833459845, 0.0005326986459124032, 0.00030439922623565896, 0.00015219961311782948, 0.025873934230031013, 0.01156717059695504, 0.0012936967115015506, 0.0024351938098852717, 0.9840834265066726, 0.9477594453241938, 0.00110816655401835, 0.001662249831027525, 0.004155624577568812, 0.0008311249155137625, 0.000554083277009175, 0.04377257888372482, 1.0006528300001256, 0.9996944674080446, 0.1695919811614201, 0.8317223756959007, 0.061915709293522386, 0.00790413310130073, 0.8299339756365767, 0.0908975306649584, 0.003952066550650365, 0.00263471103376691, 0.00263471103376691, 0.40076980666327, 0.003519935566678657, 0.01458259020481158, 0.029668028347720112, 0.003519935566678657, 0.004525631442872559, 0.006034175257163412, 0.49580806696359375, 0.001508543814290853, 0.01910822164768414, 0.006034175257163412, 0.0010056958761939022, 0.013576894328617679, 0.3531232178712387, 0.15456994945965252, 0.48884317349434825, 0.0025133325115390655, 0.9906987207861595, 0.9901577344699422, 0.8848913835518671, 0.00013666879255263485, 0.014447843784135685, 0.0505479291312531, 0.013823072161037927, 7.809645288721992e-05, 0.0007028680759849793, 0.01470165725601915, 0.0012885914726391287, 0.0011323985668646888, 0.0008200127553158092, 0.0023819418130602075, 0.00023428935866165977, 0.0009176333214248341, 0.008141555213492677, 0.002850520530383527, 0.0020109836618459128, 0.0002733375851052697, 0.0004490546041015145, 3.904822644360996e-05, 1.952411322180498e-05, 0.00013666879255263485, 0.5698442673693194, 0.005299426994134809, 0.0007793274991374718, 0.0006234619993099775, 0.052214942442210616, 0.020262514977574267, 0.29224781217655194, 0.009196064489822168, 0.01075471948809711, 0.008416736990684695, 0.00031173099965498875, 0.024782614472571605, 0.001246923998619955, 0.0042083684953423475, 0.7377815925537248, 0.016218474663896535, 0.001590046535676131, 0.03720708893482146, 0.001590046535676131, 0.003975116339190327, 0.02019359100308686, 0.00047701396070283926, 0.07568621509818382, 0.003180093071352262, 0.02273766546016867, 0.00031800930713522617, 0.003975116339190327, 0.07266512668039918, 0.001908055842811357, 0.00015900465356761309, 1.180900111808007, 0.7475513757875938, 0.017533187918259127, 0.007969630871935968, 0.22793144293736867, 0.18485541374324538, 0.8141504392521659, 0.9480951884988719, 1.033287597832006, 1.010512866074655, 0.8720917561651725, 0.9999396707300763, 0.7395220077384863, 0.002926532377492289, 0.255499000608892, 0.0008906837670628707, 0.000763443228911032, 0.000381721614455516, 0.9155336756427154, 0.008650931629939549, 0.0010464836649120423, 0.0002790623106432113, 0.0024417952181280986, 0.01583678612900224, 0.00020929673298240845, 0.015697254973680633, 0.009418352984208381, 0.0064184331447938595, 0.00013953115532160565, 0.0011162492425728452, 0.00020929673298240845, 0.020859907720580044, 0.0022324984851456904, 0.9710928413353701, 0.29572827457553735, 0.7037384074123749, 0.47680945093703614, 0.005099566320182204, 0.5150561983384027, 1.001865100134563, 0.982443064239248, 0.5945735986711855, 0.4048160671803816, 0.9998442568098139, 0.6499715831187881, 0.009219455079699122, 0.3457295654887171, 0.04215117367949451, 0.9092610322290958, 0.01806478871978336, 0.024086384959711146, 0.24267387884858496, 0.7590012806540849, 0.8724554026427543, 0.00020982573416131658, 0.004915917200350845, 0.0005995020976037617, 0.005185693144272538, 0.00041965146832263317, 0.007643651744447961, 0.0008393029366452663, 0.058061778152924313, 0.0016486307684103446, 0.025388913833519305, 0.0001798506292811285, 0.00983183440070169, 0.00014987552440094042, 0.000359701258562257, 0.010461311603185641, 0.0001798506292811285, 0.0015587054537697803, 1.0174403821927014, 0.9999944139941609, 1.0778040834496725, 1.0014554402407205, 1.0778040834496725, 0.2925154222958784, 0.7069122705483728, 0.9286802561915934, 0.06771626868063703, 0.6976841664183262, 0.6976841664183262, 0.9958818343384848, 0.9958818343384848, 0.9958818343384848, 0.9956340116467866, 0.6696818180969425, 0.7866356141443271, 0.0005608176142850234, 0.005402998966892299, 0.14806952864964337, 0.0010669213149812641, 0.0023390198059204635, 0.006620383544242716, 0.003105014596163422, 0.005799674840410974, 0.0027767311146307256, 0.0034606550344905103, 0.0012584200125420038, 0.0005608176142850234, 9.574934878036985e-05, 8.207087038317416e-05, 0.001162670663761634, 0.0002051771759579354, 4.103543519158708e-05, 0.014977933844929283, 0.0021338426299625283, 1.3678478397195693e-05, 0.013610086005209715, 0.094561323531469, 0.022131373592471467, 0.014083601377027298, 0.03420303191563772, 0.8269085951368884, 0.004023886107722085, 0.0020119430538610423, 1.2363396074896373, 0.8763424787336841, 0.008320131746437918, 0.0039364064176695525, 0.0020129350999446576, 0.0001789275644395251, 0.005457290715405516, 0.0004025870199889315, 0.024781467674874227, 0.035830244779014905, 0.01579035756178809, 0.0036232831799003834, 0.0009393697133075068, 0.020979256930534318, 8.946378221976255e-05, 0.00022365945554940638, 0.00013419567332964382, 8.946378221976255e-05, 0.0006262464755383379, 0.00013419567332964382, 1.0271031208737778, 1.0778040834496725, 0.9040146829808646, 0.0050078778088804565, 0.010386709529529836, 0.009088370838338607, 0.0007419078235378454, 0.002225723470613536, 0.06473145760367702, 0.0018547695588446136, 0.0003709539117689227, 0.0009273847794223068, 0.0003709539117689227, 0.00018547695588446136, 0.5610787003930366, 0.4417002535009012, 1.0778040834496725, 0.2639361374557858, 0.001126007412354035, 0.003603223719532912, 0.008107253368949052, 0.721095146871524, 0.001126007412354035, 0.000900805929883228, 1.0005065616846396, 0.8951374070288418, 0.0013170241398168345, 0.006585120699084172, 0.0024145442563308635, 0.0006585120699084173, 0.006804624722386978, 0.007682640815598201, 0.0006585120699084173, 0.001756032186422446, 0.0004390080466056115, 0.000878016093211223, 0.06563170296753892, 0.01031668909523187, 0.9984010771690148, 0.3225301672835543, 0.6664175510314518, 0.005791787515754062, 0.005429800796019433, 0.8749138956905075, 0.0006987332880585912, 0.016869417954557417, 0.0009981904115122732, 0.0020961998641757735, 0.0009981904115122732, 0.06927441455895175, 0.005989142469073639, 0.011179732608937459, 0.0008983713703610459, 0.00409258068720032, 0.0027949331522343648, 0.00259529506993191, 0.00029945712345368195, 0.004392037810654002, 0.001896561781873319, 1.027636533449719, 1.002091550495391, 0.1582122324430276, 0.3911006385991642, 0.01561027360104539, 0.001687597146058961, 0.4172583943630781, 0.0012656978595442208, 0.004640892151662143, 0.0012656978595442208, 0.0021094964325737015, 0.0008437985730294805, 0.0008437985730294805, 0.005062791438176883, 1.0578611373747107, 0.8587415144010541, 1.001865100134563, 0.6707061113134818, 0.024009440711283428, 0.0034026624584203003, 0.02146539401339909, 0.08191830367187564, 0.003879671214273613, 0.0013674251001128308, 0.0003180058372355421, 0.1663806540416356, 0.0005088093395768673, 0.007886544763441443, 0.0007950145930888552, 0.0034662636258674085, 0.007822943595994334, 0.0011448210140479515, 0.00015900291861777104, 0.00022260408606487945, 0.0003816070046826505, 0.0005724105070239757, 0.0008268151768124094, 0.0008586157605359636, 0.0018126332722425897, 1.0194756258086881, 0.5852581504840252, 0.019281760771760522, 0.0034026636656047976, 0.39244054276642, 0.44218131763670737, 0.034496414851090645, 0.5237182981938308, 0.6238900067277651, 0.025708491815124978, 0.25616675772928105, 0.00596804274279687, 0.0013772406329531238, 0.002295401054921873, 0.012854245907562489, 0.0018363208439374985, 0.0009181604219687492, 0.0004590802109843746, 0.06840295143667181, 0.9918375904438101, 0.7442726049170737, 0.034348387842879795, 0.0009493273021901451, 0.0008630248201728591, 0.037282672231467515, 0.00034520992806914364, 0.06489946647699901, 0.009665877985936022, 0.00025890744605185773, 0.0024164694964840055, 0.03633334492927737, 0.01691528647538804, 0.00025890744605185773, 0.04522250057705782, 0.00017260496403457182, 0.00025890744605185773, 0.0044014265828815815, 0.0008630248201728591, 8.630248201728591e-05, 8.630248201728591e-05, 0.6881854720116996, 0.0013890710219382632, 0.010120374588407345, 0.06608009290077738, 0.026987665569086255, 0.0013890710219382632, 0.0013890710219382632, 0.19526369794103585, 0.0005953161522592556, 0.00416721306581479, 0.0005953161522592556, 0.0003968774348395038, 0.0011906323045185112, 0.0003968774348395038, 0.0003968774348395038, 0.0013890710219382632, 0.894222081192438, 0.015409710365141266, 0.01487983382039093, 0.020116260850864827, 0.01211443237605667, 0.004768888902753011, 0.0037645477395007432, 0.0019290276825224598, 0.003579264111107652, 0.0015238279718310275, 0.004670186409123047, 0.006065874301504647, 0.0030130234897568046, 0.0020969950839629255, 0.004071044956562211, 0.0006926490781050125, 0.0009402711235275545, 7.445977589628884e-05, 0.0008762010838028408, 0.0011792350554737838, 0.000602604697951361, 0.0003653723887003941, 0.0007567191178297262, 0.001548070689564703, 0.0007376712681818384, 0.129706007387475, 0.855507708300367, 0.00827910685451968, 0.005519404569679787, 1.008493988811978, 0.05445361272211907, 0.9438626205167305, 1.1789316770870975, 1.0055555029533487, 0.4573380418720333, 0.54491341159221, 1.0706188085341382, 0.010602575905204858, 0.9887465998406999, 0.0006767601641620122, 0.931564234769241, 0.02006735477119873, 0.00012193705156110339, 0.005434908583866323, 5.2258736383330026e-05, 0.0012542096731999206, 0.00918011802467164, 0.00015677620914999007, 5.2258736383330026e-05, 0.019997676456020956, 0.007978167087855051, 0.003780048598394205, 3.4839157588886686e-05, 0.0003309719970944235, 0.9400414176950145, 0.2859915560164958, 0.007124344811798826, 0.6890259196554008, 0.0030532906336280686, 0.012213162534512274, 0.002035527089085379, 0.49101778352219877, 0.07780029938284576, 0.0027479134439857226, 0.38522311592874847, 0.03125751542533759, 0.002060935082989292, 0.0018891904927401842, 0.0013739567219928613, 0.0008587229512455382, 0.0018891904927401842, 0.0032631472147330452, 0.0003434891804982153, 0.0003434891804982153, 0.9720062920920811, 0.8871704172940068, 0.0010663105977091428, 0.0015994658965637141, 0.005598130637973, 0.10476501622492328, 1.1618621400615654, 1.0002923096481064, 0.742021036244937, 0.00226225925684432, 0.005278604932636747, 0.23979948122549793, 0.010557209865273493, 0.9397650195232854, 0.14854086920128928, 0.816974780607091, 0.8720917561651725, 1.0005393791662445, 0.7982650128842894, 0.00019738793635204442, 0.0012689224479774284, 0.002058474193385606, 0.038518845865270386, 0.0031300087050109902, 0.00039477587270408883, 0.008374888156651028, 0.13115018456762265, 0.0013253190012208697, 0.002143069023250768, 0.00031018104283892694, 0.0042297414932580945, 5.6396553243441267e-05, 0.005555060494478964, 0.0004229741493258095, 0.001212525894733987, 0.00019738793635204442, 5.6396553243441267e-05, 0.0008177500220298983, 5.6396553243441267e-05, 0.00014099138310860317, 8.45948298651619e-05, 0.9480951884988719, 0.7948551107514119, 0.02358011152607752, 0.01441006815482515, 0.011613027898728869, 0.07764442128631832, 0.001380817341617152, 0.006691653270913891, 0.00010621671858593478, 0.00010621671858593478, 0.0003186501557578043, 0.06649166583479517, 0.00021243343717186955, 0.0005310835929296738, 0.0007435170301015434, 7.081114572395651e-05, 0.0003186501557578043, 0.00017702786430989127, 0.00010621671858593478, 0.00010621671858593478, 0.00046027244720571735, 0.9480951884988719, 1.0018029056263147, 0.9323501415261802, 0.00014325901597302856, 0.005075462280187297, 0.002210281960726726, 0.00032744917936692236, 0.00022512131081475913, 6.139672113129795e-05, 0.02402658353604793, 0.01581988847816444, 0.007142485224940994, 0.00018419016339389383, 0.00026605245823562443, 4.0931147420865295e-05, 0.01043744259232065, 0.0016986426179659098, 0.6964129176655361, 0.303276593176927, 0.0007246752525135651, 0.3360777531606784, 0.0047840249560238916, 0.003588018717017919, 0.6554114189752732, 0.9397117582476081, 0.06712226844625772, 0.9958818343384848, 0.5151026967798268, 0.4740091606730874, 0.008362056765906279, 0.0007167477227919668, 0.0019113272607785782, 0.9901577344699422, 0.6550328984411611, 0.007689820579351944, 0.011185193569966464, 0.0069907459812290395, 0.0034953729906145197, 0.30339837558534033, 0.011884268168089367, 1.0095725920085685, 0.857294763663653, 0.0003356205556693365, 0.01908242587948513, 0.015486491354456526, 0.015007033417786047, 0.0002637018651687644, 0.002660991548521168, 0.03718196298879578, 0.03315451632076374, 0.0021096149213501152, 0.0002637018651687644, 0.0029966121041905044, 0.006113088692548629, 0.00035959345250286055, 0.0017260485720137304, 0.0010068616670080095, 7.191869050057211e-05, 7.191869050057211e-05, 0.003452097144027461, 9.589158733409613e-05, 0.00124659063534325, 0.9824430642392479, 0.010849817905602362, 0.9113847040705984, 0.07594872533921652, 0.8720917561651725, 1.1166053689095141, 1.1166053689095141, 1.1789316770870975, 0.006322151676882583, 0.006322151676882583, 0.9690134297476396, 0.003448446369208682, 0.0028737053076739014, 0.012069562292230386, 1.0000685697697074, 0.999428184248227, 0.9272547056172281, 0.9480951884988719, 0.9985003332434907, 0.7333219882585794, 0.015182502284124943, 0.0019958218965046874, 0.12313508307899455, 0.035924794137084375, 0.0009266315948057477, 0.0003920364439562779, 0.004490599267135547, 0.007341773404999386, 0.007341773404999386, 0.014790465840168665, 0.03410717062419617, 0.005595429245557784, 0.0038134454093928846, 0.003884724762839481, 0.00014255870689319194, 0.0009266315948057477, 0.0005345951508494699, 0.00042767612067957586, 0.0006415141810193638, 0.0009622712715290457, 0.004134202499902566, 0.7534382612688277, 0.006625346148490921, 0.18550969215774576, 0.04569540211238591, 0.0031178099522310215, 0.0006820209270505359, 0.00029229468302165824, 0.001169178732086633, 0.0009743156100721942, 0.00019486312201443884, 0.0008768840490649748, 0.00019486312201443884, 0.00019486312201443884, 0.00019486312201443884, 0.0008768840490649748, 0.8856750838560051, 0.9272547056172281, 0.9397650195232854, 0.6906147416265123, 0.09104116101197864, 0.0014033319616489962, 0.0007016659808244981, 0.0024558309328857435, 0.0005262494856183735, 0.15682234671427533, 0.0015787484568551208, 0.0005262494856183735, 0.0031574969137102417, 0.0008770824760306226, 0.04999370113374549, 1.0001723601114052, 1.0578611373747107, 0.7741013875922322, 0.012531442624745481, 0.004556888227180175, 0.037594327874236444, 0.0011392220567950438, 0.1697440864624615, 0.9343356305507293, 1.0560152824732867, 0.9397650195232854, 0.8856750838560051, 1.001865100134563, 0.8462889098997686, 0.9801125332923616, 0.002079738031558128, 0.00159827123188954, 0.00024321518746145174, 0.0005509568532290029, 0.0008636620942508694, 0.0013004567166306194, 0.004735250792616836, 0.0004417581976340654, 4.467217728883807e-05, 0.00013401653186651422, 0.0006204469067894177, 0.001543671904092071, 0.00040204959559954264, 4.467217728883807e-05, 0.0015635262051093325, 4.467217728883807e-05, 0.0011267315827295824, 0.00015387083288377558, 0.00013401653186651422, 0.00020847016068124434, 9.927150508630683e-06, 0.0007048276861127785, 0.001176367335272736, 0.00015883440813809093, 0.5418515307333523, 0.09789237822599829, 0.0041813327382964095, 0.013035919713512334, 0.0017217252451808744, 0.022382428187351366, 0.002213646743803981, 0.0007378822479346605, 0.3150757198681, 0.000491921498623107, 0.9098124937782737, 0.020911779522672296, 0.023413188556484773, 0.0007003945294674932, 0.003902198092747462, 0.037921360952597134, 0.00020011272270499807, 0.00040022544540999614, 0.0028015781178699728, 1.023554921500388, 0.9397650195232854, 0.8720917561651725, 0.9987937695266088, 1.0778040834496725, 0.8856750838560051, 0.815105697505552, 0.04243248889916063, 0.006569693181108659, 0.013989581950360793, 0.0003091620320521722, 0.10326011870542551, 0.0021641342243652055, 0.0009274860961565166, 0.00023187152403912915, 0.00177768168429999, 0.0008501955881434736, 0.004946592512834755, 0.006646983689121702, 0.0006956145721173874, 7.729050801304305e-05, 0.996968777190947, 0.05079282673516799, 0.9481327657231358, 0.32149281215857234, 0.037621499295152086, 0.01026040889867784, 0.6327252154184669, 1.0080989698047342, 0.84927813057921, 0.0007289941035014678, 0.0017704142513607075, 0.0010414201478592398, 0.002603550369648099, 0.005831952828011742, 0.005936094842797666, 0.0014579882070029355, 0.0003124260443577719, 0.0009372781330733158, 0.0003124260443577719, 0.0017704142513607075, 0.0006248520887155438, 0.0008331361182873918, 0.0014579882070029355, 0.0004165680591436959, 0.00020828402957184794, 0.0005207100739296199, 0.00020828402957184794, 0.004269822606222883, 0.0008331361182873918, 0.11538935238280376, 0.003332544473149567, 0.9999944139941609, 1.0055555029533487, 0.5219796576843446, 0.012760920623464365, 0.3973866690516108, 0.000696050215825329, 0.0008700627697816613, 0.003538255263778756, 0.0005800418465211076, 0.008236594220599728, 0.0019141380935196548, 0.001160083693042215, 0.0002900209232605538, 0.0018561339088675442, 0.0006380460311732183, 0.01867734745797966, 0.0008700627697816613, 0.02853805884883849, 0.9862431655813254, 0.9397650195232854, 0.02307795221013571, 0.9769666435624117, 0.8469489975666714, 0.007438698849393601, 0.14558596319527475, 0.948095188498872, 0.9239772943032387, 0.00024532851843888146, 0.0667819274121841, 0.0022254801315527107, 0.00019275812163054972, 0.0011039783329749666, 0.00015771119042499524, 0.0031367003428971274, 5.2570396808331744e-05, 0.00043808664006943123, 0.0008936967457416397, 0.0006658916929055354, 0.00012266425921944073, 1.1618621400615654, 1.108078164111428, 0.9480951884988719, 0.99606007595214, 0.000383348837351989, 0.003545976745505898, 1.001290534856309, 0.8797420501727024, 0.0009156031745075826, 0.0006104021163383884, 0.0006104021163383884, 0.0004578015872537913, 0.008850830686906633, 0.10880417723731774, 0.0001526005290845971, 0.73220428617069, 0.05520728305588576, 0.0008594540402473058, 0.01359959628391325, 0.002932254960843749, 0.013700708523942345, 0.04762386505370365, 0.002831142720814654, 0.0033367039209601284, 0.01071789744308405, 0.03270980964941217, 0.002173913160625538, 0.0031344794409019386, 0.06941355277997358, 0.0017189080804946115, 0.0007077856802036635, 0.0012133468803491375, 0.0009100101602618532, 0.0006066734401745687, 0.004398382441265624, 0.6976841664183262, 0.931386412584751, 0.00192273869876311, 0.03762232388729196, 0.007101609600029264, 0.00012155244647352995, 0.0016501665460648914, 0.00018048696597584748, 0.0001657533361002681, 0.004722128375123194, 0.0030240775319626692, 1.105022240668454e-05, 0.0010129370539460828, 0.0009650527568504498, 0.0003388734871383259, 0.00027625556016711353, 5.5251112033422704e-05, 0.0033040164995986774, 0.00336663442656989, 2.578385228226393e-05, 0.0002615219302915341, 7.366814937789694e-06, 0.0010534545361039261, 3.315066722005362e-05, 0.0013996948381800418, 0.9954876640756021, 1.108078164111428, 0.8587415144010541, 0.9973477667803261, 0.6465450296307302, 0.0781740078500883, 0.003678776840004155, 0.012875718940014543, 0.0027590826300031165, 0.0027590826300031165, 0.0027590826300031165, 0.25015682512028253, 0.19267506744254892, 0.8082122298032582, 0.19333121740218, 0.8062323108686656, 0.9892263363403005, 0.8720917561651725, 0.9770296977958249, 1.0024184168623174, 0.9824430642392479, 0.8587415144010541, 0.8587415144010541, 1.0073437855558436, 0.9343356305507293, 1.0174403821927014, 1.018078771150226, 1.0104413282340678, 0.14982719065004035, 0.8490207470168953, 0.9720062920920811, 0.26530937405999194, 0.7338344388893394, 0.9973477667803261, 0.9480951884988719, 0.9480951884988719, 0.9862881451120641, 4.752852300373776e-05, 4.752852300373776e-05, 0.00339828939476725, 0.00024952474576962324, 0.003814163971049955, 0.0001782319612640166, 0.00040399244553177097, 2.376426150186888e-05, 0.00048716736078831203, 0.0008079848910635419, 0.00425380280883453, 0.2698535065430245, 0.7016191170118636, 0.9673181816955835, 0.6696818180969425, 0.23929710496725826, 0.0034063644835196903, 0.005109546725279536, 0.7306651817149735, 0.0068127289670393805, 0.004257955604399613, 0.0017031822417598451, 0.005109546725279536, 0.002554773362639768, 1.0706188085341382, 0.2724030549727433, 0.0173874290408134, 0.7128845906733494, 0.47178014290742964, 0.5170576210774555, 0.005030830907780648, 0.002794906059878138, 0.001117962423951255, 0.001117962423951255, 0.0016769436359268827, 0.3147018109253552, 0.68540038536056, 1.0174403821927014, 0.20932926982028885, 0.7902179935715904, 0.9901577344699422, 0.0532993336254425, 0.9469136931328614, 0.9695683935974994, 0.9393055425821358, 0.006598026215695981, 0.0002632628913993409, 0.0004278021985239289, 0.0005265257827986818, 4.9361792137376415e-05, 0.0013985841105589984, 0.026276927347796714, 0.0007897886741980226, 0.0015466694869711278, 0.001085959427022281, 0.0027807142904055383, 6.581572284983522e-05, 0.0025832671218560324, 0.00016453930712458805, 0.0151376162554621, 0.0009872358427475284, 0.9973477667803261, 1.078992045928189, 1.021755488330863, 0.13485030045897362, 0.7985815665478224, 0.06694695767466775, 0.9430785730184634, 1.0121969330966234, 1.1618621400615654, 0.04879560945207841, 0.23878702497825607, 0.6955969858062242, 0.007786533423204002, 0.0015573066846408005, 0.007786533423204002, 1.0002448464712659, 0.7796862239159734, 0.002893084318797675, 0.0021698132390982564, 0.0021698132390982564, 0.00578616863759535, 0.20613225771433435, 0.0014465421593988375, 0.6976841664183262, 1.0095725920085685, 0.9447200894464055, 0.9397650195232854, 0.41995766296903125, 0.1366262263525915, 0.035836387240024005, 0.0033596613037522502, 0.16686317808636175, 0.2306967428576545, 0.004479548405003001, 0.0022397742025015003, 0.08795322837835895, 0.9132164989072163, 0.9814005744896266, 1.0048718602946707, 0.8587415144010541, 0.6976841664183262, 1.0194756258086881, 0.36067280081341097, 0.01278981563168124, 0.6164691134470358, 0.01278981563168124, 0.5322776208541853, 0.04527839913116126, 0.00036633009005793897, 0.03194398385305228, 0.004102897008648916, 0.0005128621260811145, 0.25723698923868477, 0.0002197980540347634, 0.0004395961080695268, 0.020001622917163467, 0.07348581606562256, 0.0048355571887647945, 0.0017583844322781072, 0.0001465320360231756, 0.0008059261981274657, 0.0009524582341506414, 0.011282966773784521, 0.0002197980540347634, 0.011795828899865635, 0.0024177785943823972, 0.726377958848306, 0.17494107159406053, 0.0010757023304576712, 0.020239140143425816, 0.004362570562411667, 0.0022111659014963244, 0.04571734904445103, 0.0002788857893779148, 0.013306836236031934, 0.007988085824324559, 0.00039840827053987826, 0.0016135534956865068, 0.0007968165410797565, 0.0002788857893779148, 0.0002988062029049087, 5.976124058098174e-05, 1.9920413526993914e-05, 1.000044061377675, 1.0302830062413646, 0.92680324696427, 0.04625418802103685, 0.00017194865435329684, 0.008253535408958249, 0.00028658109058882805, 0.01805460870709617, 0.00017194865435329684, 0.49161932118736207, 0.5125392923017179, 1.1789316770870975, 1.0003056654072342, 1.0511275843695704, 0.8272923355696312, 0.06365231542399115, 0.001877649422536612, 0.002065414364790273, 0.0015021195380292894, 0.05783160221412764, 0.04581464590989333, 0.7497252247792177, 0.11946314203241516, 0.0011425651598741887, 0.04833484511771568, 0.06910349789720092, 5.785140049995892e-05, 0.0007809939067494454, 0.0034421583297475555, 0.0006508282556245378, 0.0005061997543746406, 0.0026322387227481307, 4.338855037496919e-05, 0.0005495883047496097, 0.0009545481082493222, 5.785140049995892e-05, 0.00018801705162486648, 0.00023140560199983568, 0.00027479415237480486, 0.00018801705162486648, 0.001706616314748788, 1.003361333772471, 0.9973477667803261, 0.8598167195880456, 0.0373685654502904, 0.0013588569254651057, 0.012909140791918502, 0.003057428082296488, 0.003397142313662764, 0.003057428082296488, 0.010870855403720845, 0.0010191426940988292, 0.009851712709622016, 0.057071990869534434, 0.6976841664183262, 0.4571744099643028, 0.15604886526781536, 0.37793084557049034, 0.00975305407923846, 1.021755488330863, 0.9013335707834064, 0.0059118451083025, 0.057029004989470854, 0.005089930294250394, 0.004852268179343761, 0.009328238010085352, 0.0018913943311319559, 0.001713147744951981, 0.004020450777170545, 0.00035649317235994976, 0.0006535708159932412, 0.004723534533769335, 1.980517624221943e-05, 0.0002475647030277429, 0.0023172056203396734, 0.0001980517624221943, 1.980517624221943e-05, 0.00012873364557442632, 0.00014853882181664575, 1.108078164111428, 0.1638612442374746, 0.836738268446679, 0.768885217177406, 0.2113564567580426, 0.0001449632762400841, 0.00019328436832011212, 0.0007972980193204625, 0.0006040136510003503, 0.01510034127500876, 0.00041072928268023824, 0.0001449632762400841, 0.00024160546040014015, 0.0019570042292411352, 9.664218416005606e-05, 4.832109208002803e-05, 0.6976841664183262, 0.9998442568098139, 0.07008500473907744, 0.001988227084796523, 0.0014911703135973924, 0.9190579699471929, 0.002982340627194785, 0.002982340627194785, 0.0014911703135973924, 1.0465262496274894, 0.5487153587277732, 0.005201093447656618, 0.05331120783848034, 0.027305740600197245, 0.0039008200857424636, 0.361475994612135, 0.16027823965414126, 0.8286726007650282, 0.006820350623580479, 0.0034101753117902396, 1.0194756258086881, 1.253388556926686, 1.253388556926686, 1.253388556926686, 1.0217407868088177, 0.24765856077837584, 0.7535143444959095, 1.0045078465637094, 0.07964747764263798, 0.9292205724974432, 0.6696818180969425, 1.1789316770870975, 0.9814005744896266, 1.0003604578247751, 1.0015388578546542, 0.6541362208433504, 0.001236552402350379, 0.007949265443681007, 0.001766503431929113, 0.021551341869535175, 0.005652810982173161, 0.008655866816452654, 0.0005299510295787339, 0.0005299510295787339, 0.00971576887561012, 0.2351216067897649, 0.00406295789343696, 0.0008832517159645565, 0.036743271384125545, 0.0022964544615078466, 0.003886307550244048, 0.00035330068638582255, 0.001236552402350379, 0.0033563565206653143, 0.00035330068638582255, 0.00017665034319291128, 0.4987334585697441, 0.5022705752971891, 0.948095188498872, 0.9824816113197984, 0.9397650195232854, 0.6976841664183262, 0.6976841664183262, 1.180900111808007, 1.0036451808062363, 0.48444900299250393, 0.5153712797792595, 0.4754791276952204, 0.014496314868756719, 0.005073710204064851, 0.49939804722866893, 0.0021744472303135078, 0.0014496314868756718, 0.0021744472303135078, 0.9069124050134788, 0.00122288911975973, 0.03647012031116778, 0.007974256135099906, 0.00587241546051287, 5.095371332332208e-05, 0.015782912701899014, 0.0001273842833083052, 3.821528499249156e-05, 0.005159063473986361, 0.0013120581180755435, 0.0008279978415039838, 0.001566826684692154, 0.0009681205531431195, 0.00035667599326325456, 0.008458316411671465, 0.000343937564932424, 0.004076297065865766, 0.0008407362698348143, 0.0010955048364514248, 0.00010190742664664416, 2.547685666166104e-05, 0.00040762970658657664, 0.982443064239248, 0.4578522742682449, 0.014612306625582284, 0.5309138073961563, 0.7877143229200764, 0.19518095244370035, 0.008417742912435367, 0.0006116699002115665, 0.00693225886906442, 8.738141431593807e-05, 0.0002621442429478142, 0.0002912713810531269, 5.825427621062538e-05, 0.00040777993347437764, 0.6976841664183262, 0.9782058822382432, 0.00014732755894948188, 0.001375057216861831, 0.00014732755894948188, 0.004174280836901987, 0.00044198267684844567, 0.00019643674526597586, 0.015272956944429622, 0.9473725592738014, 0.000257158675155755, 0.002983040631806758, 0.002005837666214889, 0.002777313691682154, 0.000102863470062302, 0.000102863470062302, 0.04438558733188331, 1.000044061377675, 0.6976841664183262, 0.1394920336110437, 0.8648506083884709, 0.8587415144010541, 1.0067208025239411, 0.13175287289479087, 0.014016263073913923, 0.005606505229565569, 0.8409757844348354, 0.008409757844348354, 0.8720917561651725, 1.0104391375713688, 0.9992231715298521, 0.983209825109941, 0.9972703477002851, 1.1789316770870975, 0.9714096915990009, 1.108078164111428, 0.8808229029812937, 0.002453879120896449, 0.03127199611386328, 0.0013167156258468752, 0.0012269395604482245, 0.0008977606539865058, 0.012538723800678197, 0.00029925355132883526, 0.00050873103725902, 0.00017955213079730116, 0.0003291789064617188, 0.0022144762798333812, 0.000568581747524787, 0.00014962677566441763, 5.985071026576706e-05, 0.06514749812428744, 0.9714096915990009, 0.9551348462430256, 0.00014691153424964138, 0.010661579914116832, 8.394944814265222e-05, 6.296208610698916e-05, 0.02575149321775857, 6.296208610698916e-05, 0.0006925829471768808, 4.197472407132611e-05, 0.00012592417221397832, 0.00012592417221397832, 0.004155497683061285, 6.296208610698916e-05, 0.0028542812368501755, 0.6696818180969425, 1.0626831326183679, 0.19017574851497487, 0.010137300027450686, 0.6333785057151189, 0.0012164760032940824, 0.011353776030744769, 0.15003204040627016, 0.0032439360087842197, 0.0008109840021960549, 1.1166053689095141, 1.0626831326183679, 0.6662359362912292, 0.04978987424240504, 0.27147336194073224, 0.007112839177486434, 0.002370946392495478, 0.002370946392495478, 1.0006528300001256, 0.9720062920920811, 1.0095725920085685, 0.9998442568098139, 0.7995693030485002, 0.04166815818102566, 0.016076690951734307, 0.11778636840148196, 0.009842872011265902, 0.0003280957337088634, 0.0009842872011265901, 0.010170967744974765, 0.0014764308016898854, 0.001640478668544317, 0.0003280957337088634, 0.69317248826539, 0.0007164573522122895, 0.007522802198229039, 0.0007676328773703102, 0.0046569727893798814, 0.001125861553476455, 0.001279388128950517, 0.0008699839276863515, 0.0035311112359034265, 0.0038893399120095715, 0.25040184459819514, 0.014840902295825995, 0.00015352657547406203, 0.002865829408849158, 0.0007164573522122895, 0.00030705315094812407, 0.010337456081920176, 0.0002558776257901034, 0.0018423189056887444, 0.0006652818270542688, 5.117552515802068e-05, 0.16361464519627092, 0.21235092248877716, 0.6196469541475792, 0.00696232532750089, 0.9918934136549474, 0.0074299132108984825, 0.5541494047069675, 0.013788077605268149, 0.0019697253721811642, 0.0019697253721811642, 0.4287435560114334, 0.6656524543045907, 0.009319134360264271, 0.32217578788342194, 0.0017750732114789089, 0.0013313049086091816, 0.5346523311021347, 0.4655039629462586, 1.0048718602946707, 0.9979667439348818, 0.7109349651096528, 0.006738720048432728, 0.010108080072649092, 0.00842340006054091, 0.2644947619009846, 0.9901577344699422, 1.0003056654072342, 0.9343356305507293, 0.9791688831245721, 0.02879908479778153, 0.3554969049447471, 0.28238052023979915, 0.04538258360996772, 0.3101143213347794, 0.00756376393499462, 0.9343356305507293, 0.6976841664183262, 0.7479194973522911, 0.23828229057893985, 0.00020871995511772084, 7.589816549735303e-05, 0.0007210325722248538, 0.0007210325722248538, 0.0011953961065833104, 0.00028461812061507386, 5.6923624123014775e-05, 0.00337746836463221, 0.0013661669789523545, 0.002409766754540959, 3.7949082748676514e-05, 0.00026564357924073565, 0.002409766754540959, 0.0006451344067275008, 0.2981576181552346, 0.7019215619444001, 1.0194756258086881, 0.9720062920920811, 1.0277691936058022, 0.6066192543169386, 0.000984771516748277, 0.3759013561073423, 0.0005627265809990154, 0.0054865841647404, 0.0008440898714985231, 0.008300217069735478, 0.0002813632904995077, 0.0011254531619980309, 0.10069697961159756, 0.014997422495344317, 0.11997937996275454, 0.7541561026230285, 0.010712444639531655, 0.917165059780897, 0.04393605076794716, 0.03295203807596037, 0.008238009518990093, 1.0302830062413646, 0.43078900929257186, 0.5445173077458109, 0.024124184520384024, 0.9984010771690148, 1.0104413282340678, 0.9824816113197984, 0.5135388972825347, 0.029136958711065794, 0.014568479355532897, 0.4443386203437534, 0.8475922376620338, 0.013678196411974725, 0.0013678196411974724, 0.11322507029912411, 0.009422757528249255, 0.0004559398803991575, 0.006231178365455153, 0.00182375952159663, 0.000911879760798315, 0.0013678196411974724, 0.00364751904319326, 1.0706188085341382, 0.11846111612049708, 0.521733000786019, 0.36042424691981023, 0.9400414176950145, 1.0626831326183679, 0.984958368099047, 0.9032208522939059, 0.0016037485778745107, 0.006130458273488049, 0.008225678189743459, 0.007242735512981662, 0.011872912858780652, 7.760073763908923e-05, 7.760073763908923e-05, 0.0014744140151426953, 0.023357822029365857, 0.00807047671446528, 0.0022504213915335875, 0.004862979558716258, 0.0050440479465408, 0.0019917522660699567, 0.0052509832469117045, 0.003776569231769009, 0.0009312088516690708, 0.004009371444686277, 0.00043973751328817227, 2.5866912546363076e-05, 7.760073763908923e-05, 1.0045227271454138, 0.33902623237834567, 0.6636258165703787, 0.7886812372258694, 0.013672297751615284, 0.04217377998767484, 0.0016827443386603427, 0.0007362006481638999, 0.13114888689434046, 0.001262058253995257, 0.006941320396973914, 0.0004206860846650857, 0.004943061494814756, 0.00021034304233254284, 0.002524116507990514, 0.0010517152116627142, 0.004522375410149671, 0.9397650195232854, 1.057235646963696, 0.9503411996269804, 0.001390404096016065, 0.00915349363210576, 0.02827154995232665, 0.010775631744124502, 1.0104413282340678, 1.0778040834496725, 1.0706188085341382, 0.8068297729464387, 0.042892152495149286, 0.02546721554399489, 0.00746407555675392, 0.000551921079900818, 0.009540350095428425, 0.00044679325515780506, 0.08073816940263395, 0.009067274884084868, 0.0033640903917764144, 0.000657048904643831, 0.0003942293427862986, 0.0003942293427862986, 0.006044849922723245, 5.2563912371506475e-05, 0.0023916580129035446, 0.002312812144346285, 0.00010512782474301295, 0.0012352519407304021, 1.0271031208737778, 1.1789316770870975, 0.09089407787925606, 0.002900874825933704, 0.21176386229316038, 0.6942760416734665, 0.7451642072188929, 0.0043716300156841715, 0.12558500772329073, 0.002384525463100457, 0.11922627315502285, 0.0007948418210334857, 0.002384525463100457], \"Term\": [\"abatementbrush\", \"abe\", \"abe\", \"abington\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"able\", \"absentee\", \"absentee\", \"absentee\", \"absorbed\", \"abstract\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"abuse\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"academic\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"access\", \"accreditation\", \"ache\", \"acquire\", \"acquire\", \"acquire\", \"acquire\", \"acquire\", \"acquire\", \"acquire\", \"actively\", \"actively\", \"actively\", \"actively\", \"actively\", \"actively\", \"actively\", \"actively\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"activity\", \"add\", \"add\", \"add\", \"add\", \"add\", \"addictionsdependencies\", \"addictionssubstance\", \"adhaadd\", \"adjunct\", \"administering\", \"administering\", \"administers\", \"administers\", \"administers\", \"administers\", \"administers\", \"administers\", \"administers\", \"administers\", \"administers\", \"adopt\", \"adopt\", \"adopt\", \"adopt\", \"adoptablock\", \"adoptionsurrender\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adultadolescent\", \"adultaging\", \"adventurethemed\", \"advisability\", \"advises\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocacy\", \"advocatesrepresentatives\", \"aed\", \"aeroplex\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"affair\", \"afterhours\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"age\", \"agenciesorganizes\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agi\", \"agrability\", \"ahepa\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"aid\", \"alabaster\", \"alanon\", \"alarm\", \"alarm\", \"alarm\", \"alarm\", \"alarm\", \"alaska\", \"alaska\", \"alateen\", \"alatot\", \"alcohol\", \"alcohol\", \"alcohol\", \"alcohol\", \"alcohol\", \"alert\", \"alert\", \"alert\", \"alert\", \"alert\", \"alert\", \"alopecia\", \"alter\", \"altering\", \"altering\", \"ambia\", \"ambulance\", \"ambulance\", \"ambulance\", \"ambulation\", \"amo\", \"ample\", \"andf\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"andor\", \"anesthetist\", \"anesthetist\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"annulment\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anson\", \"anticrime\", \"anus\", \"apparel\", \"apparel\", \"appealscomplaints\", \"appear\", \"appear\", \"appear\", \"appears\", \"appliance\", \"appliance\", \"appliance\", \"appliance\", \"appliance\", \"appliance\", \"appliance\", \"appliance\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"applicant\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"appointed\", \"appointed\", \"appointed\", \"appointed\", \"appointed\", \"appointed\", \"appointed\", \"appreciated\", \"appreciated\", \"apprehending\", \"aquaculture\", \"aquinas\", \"arboretum\", \"areata\", \"aremuch\", \"arithmetic\", \"arresting\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"art\", \"artscrafts\", \"asotp\", \"asq\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assylum\", \"astronomical\", \"asymptomatic\", \"atom\", \"attended\", \"attended\", \"attended\", \"attended\", \"attends\", \"attica\", \"auctioned\", \"auctioneer\", \"audiocassette\", \"audiovisual\", \"aug\", \"augment\", \"augustes\", \"auspex\", \"authorization\", \"authorization\", \"authorization\", \"authorize\", \"authorize\", \"authorize\", \"authorize\", \"authorizes\", \"authorizes\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"awaiting\", \"awaiting\", \"awaiting\", \"awaiting\", \"awaiting\", \"awaiting\", \"awarenesspersons\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"baby\", \"babyproofing\", \"babytoddler\", \"baccalaureate\", \"bacillus\", \"backsacks\", \"bacteria\", \"baiting\", \"baked\", \"baked\", \"baked\", \"ballot\", \"ballot\", \"ballot\", \"bandage\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bankruptcy\", \"bankruptcy\", \"bankruptcy\", \"bankruptcy\", \"bankruptcy\", \"bankruptcy\", \"banksfood\", \"baron\", \"barrel\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"basic\", \"beam\", \"behavorial\", \"behindthewheel\", \"bellmont\", \"bench\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"bereavement\", \"bereavement\", \"bereavement\", \"bestway\", \"bette\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"binder\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birth\", \"birthsdeaths\", \"blanton\", \"boater\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"booklet\", \"boostinsure\", \"borough\", \"borough\", \"borough\", \"botanical\", \"boule\", \"bowman\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"box\", \"boysgirls\", \"bph\", \"bracelet\", \"brandywine\", \"brass\", \"breathalyzer\", \"broaden\", \"brushlimb\", \"brutality\", \"btaccess\", \"bug\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"buildingzoning\", \"bulky\", \"bundle\", \"bundled\", \"bundled\", \"bunion\", \"burdensome\", \"burial\", \"burial\", \"burial\", \"burial\", \"burialcremation\", \"burialcremation\", \"burialcremation\", \"burlap\", \"burlap\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"bvtrichomoniasis\", \"byway\", \"cafe\", \"cafe\", \"cafe\", \"cafe\", \"cafe\", \"cafe\", \"cafe\", \"cafe\", \"caf\\u00e9s\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"canned\", \"canned\", \"canned\", \"canned\", \"cansbottles\", \"capamericas\", \"capri\", \"capsule\", \"capturing\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"carcinoidneuroendocrine\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"careassistance\", \"carecoordinated\", \"carerelated\", \"carport\", \"carr\", \"carryout\", \"carson\", \"casa\", \"casa\", \"casa\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"catheterization\", \"ccplgo\", \"celebration\", \"celebration\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"center\", \"centrally\", \"ceramic\", \"ceremony\", \"ceremony\", \"ceremony\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"certificate\", \"cervical\", \"cervical\", \"cervical\", \"cervix\", \"chafia\", \"chairlift\", \"chaparral\", \"checklist\", \"chef\", \"cherriespeaches\", \"chest\", \"chest\", \"chest\", \"chest\", \"chest\", \"chewing\", \"chi\", \"chickenpoxshingles\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childhood\", \"childrearing\", \"chiropractor\", \"choking\", \"cholinesterase\", \"cirbs\", \"cirbs\", \"cited\", \"cited\", \"citiy\", \"citizenshiplegal\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"city\", \"citywide\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"clare\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"classify\", \"classify\", \"classroombased\", \"cleaninghygiene\", \"cleanout\", \"cleft\", \"clerical\", \"clerical\", \"clerk\", \"clerk\", \"clerk\", \"clerk\", \"clerk\", \"clermont\", \"clientbusiness\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinic\", \"clinicbased\", \"clinicbased\", \"clinicbased\", \"clinicprenatal\", \"clip\", \"closet\", \"closet\", \"closet\", \"closet\", \"closet\", \"cloth\", \"cloth\", \"cloth\", \"clothed\", \"clothes\", \"clothes\", \"clothes\", \"clothes\", \"clothes\", \"clothes\", \"clothes\", \"clothes\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clothing\", \"clover\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"club\", \"cmhc\", \"cnap\", \"coat\", \"coat\", \"coat\", \"coat\", \"coat\", \"coat\", \"cobra\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"cogic\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collection\", \"collectionprocessing\", \"collegeuniversity\", \"collegeuniversity\", \"collegeuniversity\", \"collegeuniversitybound\", \"combining\", \"combining\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commercial\", \"commissary\", \"commonwealth\", \"communicable\", \"communicable\", \"communicable\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"communitybuilding\", \"comorbidity\", \"compile\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"complaint\", \"comprehending\", \"comprehending\", \"comprehending\", \"compulsion\", \"computation\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"comsumer\", \"conceiving\", \"concentrated\", \"conditionally\", \"conditioning\", \"conditioning\", \"conditioning\", \"conditioning\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conduct\", \"conferred\", \"confinement\", \"confinement\", \"confinement\", \"congregant\", \"congregate\", \"congregate\", \"congregate\", \"congregate\", \"congregate\", \"congregate\", \"connecticut\", \"connectionsdisconnections\", \"conservatorship\", \"consignment\", \"constituent\", \"constituent\", \"construction\", \"construction\", \"construction\", \"construction\", \"construction\", \"construction\", \"construction\", \"construction\", \"construction\", \"constructiondevelopment\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contagious\", \"contention\", \"contested\", \"continence\", \"continuous\", \"continuous\", \"continuous\", \"continuous\", \"contrast\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"controlshelter\", \"convalescent\", \"convalescent\", \"convalescent\", \"converted\", \"convicted\", \"convicted\", \"convicted\", \"convicted\", \"convicted\", \"cookout\", \"cookware\", \"cooperation\", \"cooperation\", \"cooperation\", \"copper\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"cordy\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctional\", \"correctness\", \"corruption\", \"corruption\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counseling\", \"counselingtreatment\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"countylevel\", \"countylevel\", \"countylevel\", \"countylevel\", \"countywaste\", \"courier\", \"coursework\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"covington\", \"coworking\", \"cprfirst\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"craft\", \"crate\", \"creature\", \"creditgranting\", \"cremation\", \"cremation\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crimefree\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"crockery\", \"crohn\", \"crossage\", \"crosstown\", \"cup\", \"cupboard\", \"cupboard\", \"cupboard\", \"cupboard\", \"cupboard\", \"curbtocurb\", \"curbtocurb\", \"curriculum\", \"curriculum\", \"curriculum\", \"curriculum\", \"curriculum\", \"curriculum\", \"curriculum\", \"custodyvisitation\", \"custommade\", \"cvso\", \"cvso\", \"cvso\", \"cvso\", \"cyber\", \"cyber\", \"cybercafe\", \"cybercaf\\u00e9s\", \"dame\", \"david\", \"davidson\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"daytoday\", \"daytoday\", \"daytoday\", \"dead\", \"dead\", \"dead\", \"dead\", \"dead\", \"dead\", \"dead\", \"death\", \"death\", \"death\", \"death\", \"death\", \"death\", \"death\", \"death\", \"death\", \"death\", \"debris\", \"debris\", \"debris\", \"debris\", \"decking\", \"deconstruction\", \"decor\", \"decorative\", \"decorative\", \"deedstitles\", \"defibrillator\", \"deficit\", \"deficit\", \"deficit\", \"define\", \"defines\", \"delevlopment\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"deliver\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delivers\", \"delousingbody\", \"demonstrating\", \"demonstrating\", \"den\", \"denial\", \"denial\", \"denial\", \"denial\", \"denial\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"dental\", \"denture\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"department\", \"departmentsoffices\", \"dependentssurvivors\", \"designation\", \"designation\", \"detain\", \"detaining\", \"detention\", \"detention\", \"detention\", \"develpomental\", \"devotional\", \"dialatrailer\", \"difficult\", \"difficult\", \"difficult\", \"difficult\", \"dinein\", \"diner\", \"diner\", \"dining\", \"dining\", \"dining\", \"dining\", \"dire\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"direct\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disability\", \"disaster\", \"disaster\", \"disaster\", \"disaster\", \"disaster\", \"disaster\", \"disaster\", \"disaster\", \"disasteremergency\", \"discretionary\", \"discriminated\", \"discriminated\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"dislike\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"disorder\", \"dispatch\", \"dispatch\", \"dispatch\", \"dispatch\", \"dispenser\", \"disrupted\", \"distinct\", \"distinct\", \"distinguishing\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distributed\", \"distributed\", \"distributed\", \"distributed\", \"distributed\", \"distributed\", \"distributed\", \"distributed\", \"distributes\", \"distributes\", \"distributes\", \"distributes\", \"distributes\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"divided\", \"divided\", \"divided\", \"divorceddivorcing\", \"dogcatcher\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"domestic\", \"donate\", \"donate\", \"donate\", \"donate\", \"donate\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donated\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donation\", \"donnan\", \"doortodoor\", \"doortodoor\", \"dor\", \"dormitorystyle\", \"dormitorystyle\", \"drama\", \"drama\", \"dried\", \"drink\", \"drink\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drivingaccident\", \"drugstore\", \"drugtreatment\", \"drying\", \"dtprovides\", \"dumped\", \"dunn\", \"duo\", \"dwarfed\", \"earlham\", \"earmite\", \"eastwest\", \"ebsa\", \"edible\", \"editorial\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"education\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"educational\", \"eduction\", \"effective\", \"effective\", \"effective\", \"effective\", \"effective\", \"eighth\", \"eighth\", \"eighth\", \"eighth\", \"eighty\", \"elderlaw\", \"election\", \"election\", \"election\", \"election\", \"election\", \"electromagnetic\", \"elementary\", \"elementary\", \"elementary\", \"elementary\", \"elementary\", \"elementary\", \"elementary\", \"elementary\", \"elementarysecondary\", \"eligbile\", \"elkhartttownship\", \"elklhart\", \"ell\", \"ell\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergency\", \"emergencyrelated\", \"emitted\", \"emma\", \"emmerich\", \"emphasized\", \"employability\", \"employeebenefit\", \"employeremployee\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"employment\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcementappeals\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforces\", \"enforcing\", \"enforcing\", \"enforcing\", \"enforcing\", \"enforcing\", \"engaging\", \"engaging\", \"engaging\", \"engaging\", \"engaging\", \"engineer\", \"engineering\", \"engineering\", \"engineering\", \"engineering\", \"engineering\", \"engineering\", \"engineering\", \"english\", \"english\", \"english\", \"english\", \"english\", \"english\", \"english\", \"english\", \"english\", \"english\", \"englishspeakers\", \"enlistment\", \"enrichment\", \"enrichment\", \"enrichment\", \"enrichment\", \"enrichment\", \"enrichment\", \"enrichment\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entree\", \"epidemic\", \"epidemic\", \"epidemiology\", \"episcopal\", \"episodic\", \"episodic\", \"equation\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipmentassistive\", \"equivalency\", \"equivalency\", \"equivalency\", \"equivalency\", \"equivalency\", \"equivalency\", \"er\", \"ero\", \"eruption\", \"esaint\", \"esl\", \"esl\", \"esl\", \"established\", \"established\", \"established\", \"established\", \"established\", \"established\", \"established\", \"established\", \"established\", \"established\", \"ethical\", \"etonkel\", \"euthanize\", \"euthanize\", \"evaluationplacement\", \"evergreen\", \"exchanged\", \"exchanged\", \"exchanged\", \"exchanged\", \"exclusively\", \"executed\", \"expanders\", \"expeditemonitor\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"experancing\", \"explore\", \"explore\", \"explore\", \"explore\", \"explore\", \"explore\", \"export\", \"express\", \"express\", \"express\", \"express\", \"expresscare\", \"expressway\", \"expungement\", \"expungement\", \"expungement\", \"expungement\", \"expungements\", \"extraction\", \"extraction\", \"extraction\", \"extraction\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facility\", \"facilitybased\", \"fagen\", \"fail\", \"fail\", \"fallopian\", \"familiarize\", \"familiesfriends\", \"familiesfriends\", \"familiessupport\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"familychildolder\", \"familyconsumer\", \"familyconsumer\", \"familywize\", \"famine\", \"farmer\", \"farmer\", \"farmer\", \"farmer\", \"farmer\", \"farmersagricultural\", \"federated\", \"federated\", \"feedback\", \"feegenerating\", \"fencing\", \"fencing\", \"ferals\", \"ffa\", \"ffa\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"firefighting\", \"firefighting\", \"firehouse\", \"fiv\", \"fivfelv\", \"flattened\", \"flea\", \"flexibly\", \"florescent\", \"flu\", \"flu\", \"flu\", \"flu\", \"flu\", \"fluoride\", \"fodder\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"foodbeverage\", \"foodsupplies\", \"footwear\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formal\", \"formalized\", \"formalized\", \"formula\", \"formula\", \"formula\", \"formula\", \"formula\", \"formulababy\", \"formulating\", \"forprofit\", \"fortyeight\", \"fosterbased\", \"foundationlevel\", \"fowler\", \"fplus\", \"framed\", \"framework\", \"freeat\", \"freeroaminguntouchable\", \"freshly\", \"fuel\", \"fuel\", \"fuel\", \"fugitive\", \"fullblown\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"funeral\", \"funeral\", \"funeral\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"furniture\", \"fuua\", \"gained\", \"gained\", \"gal\", \"galleriesexhibits\", \"gamble\", \"gambler\", \"gambling\", \"gambling\", \"gambling\", \"garage\", \"garage\", \"garage\", \"garage\", \"garbagesanitation\", \"gardeninglandscaping\", \"gas\", \"gas\", \"gas\", \"gas\", \"gas\", \"gas\", \"gazetteer\", \"ged\", \"ged\", \"ged\", \"genderspecific\", \"genealogical\", \"genealogical\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"generate\", \"generate\", \"gennesaret\", \"gentlyused\", \"gentlyused\", \"geography\", \"george\", \"gill\", \"glassware\", \"gleaner\", \"gluten\", \"gns\", \"going\", \"going\", \"going\", \"going\", \"going\", \"gone\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"got\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"governmentsubsidized\", \"gr\", \"gr\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"grade\", \"gradespecific\", \"grading\", \"gradual\", \"grandview\", \"gravis\", \"greenhousegrown\", \"greenway\", \"greeting\", \"grief\", \"grief\", \"grief\", \"grief\", \"grief\", \"grief\", \"grieving\", \"grieving\", \"grissom\", \"grocer\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"grocery\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"grower\", \"guardianshipconservatorship\", \"guilty\", \"gutter\", \"gutter\", \"gutter\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"hairpiece\", \"hall\", \"hall\", \"hall\", \"hall\", \"hall\", \"hall\", \"hall\", \"hammilton\", \"hamper\", \"hamper\", \"handcrafted\", \"handcrafted\", \"harmony\", \"hauler\", \"hawthorne\", \"hayden\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"hazardous\", \"headquarterstation\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"heap\", \"heartworm\", \"heating\", \"heating\", \"heating\", \"heating\", \"heating\", \"heavier\", \"height\", \"height\", \"height\", \"height\", \"height\", \"height\", \"height\", \"height\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"helplessness\", \"helpsports\", \"hepatic\", \"heth\", \"hiding\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"highrise\", \"highschool\", \"highway\", \"highway\", \"highway\", \"highway\", \"hilltop\", \"hn\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"homeaccess\", \"homegoods\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homeless\", \"homemaking\", \"homemaking\", \"homemaking\", \"homemaking\", \"hopewell\", \"hopson\", \"horse\", \"horse\", \"horse\", \"horse\", \"horse\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hospital\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hotspot\", \"housecall\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"housing\", \"hpv\", \"hpv\", \"hpv\", \"hpv\", \"huntingfishing\", \"hurrah\", \"hyatt\", \"hygene\", \"ideological\", \"imagingradiology\", \"immigrationnaturalization\", \"immigrationnaturalization\", \"immigrationnaturalization\", \"immunization\", \"immunization\", \"immunization\", \"immunization\", \"immunization\", \"immunization\", \"immunization\", \"immunization\", \"immunoglobin\", \"impa\", \"incentivebased\", \"incidentvehicle\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"including\", \"incoherence\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"incounty\", \"incubator\", \"indianastrives\", \"indicate\", \"indicate\", \"indicate\", \"indigenous\", \"indirect\", \"indirect\", \"indirect\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"indygo\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infectious\", \"infectious\", \"infectious\", \"infectious\", \"infertility\", \"infested\", \"inflammatory\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"informationadvice\", \"informationadvice\", \"infraction\", \"infraction\", \"infraction\", \"ingested\", \"inhouse\", \"inhouse\", \"inhouse\", \"inhouse\", \"injected\", \"injected\", \"innocent\", \"innocent\", \"inpatient\", \"inpatient\", \"inpatient\", \"inpatient\", \"inpatient\", \"inservice\", \"inspection\", \"inspection\", \"inspection\", \"inspection\", \"inspection\", \"inspection\", \"inspection\", \"inspection\", \"installed\", \"installed\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"institution\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instruction\", \"instructs\", \"instructs\", \"instructs\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurancemedicare\", \"intelligence\", \"interfaith\", \"interfaith\", \"intermediatestay\", \"interment\", \"interment\", \"internalize\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internetenabled\", \"intersts\", \"introduction\", \"introduction\", \"introduction\", \"inurned\", \"investigating\", \"investigating\", \"investigating\", \"investigating\", \"investigating\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"involving\", \"iota\", \"ipv\", \"ironing\", \"iroquois\", \"irritable\", \"island\", \"island\", \"isotope\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"item\", \"itemheavy\", \"iuk\", \"jacket\", \"jail\", \"jail\", \"jail\", \"jail\", \"jail\", \"jailed\", \"jan\", \"japser\", \"jarsbottles\", \"jc\", \"jewish\", \"jewish\", \"jk\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"jobtraining\", \"judged\", \"judgment\", \"judgment\", \"judgment\", \"judgment\", \"judgment\", \"judgment\", \"judsonsan\", \"jug\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"justicelegal\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"keep\", \"kenmar\", \"kill\", \"kill\", \"killing\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kindergarten\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchenware\", \"kitchenware\", \"kitchenware\", \"kitchenware\", \"kitchenware\", \"laceration\", \"laceration\", \"lafontaine\", \"lalke\", \"landuse\", \"langfuhs\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"laryngectomy\", \"laundromat\", \"laurellwood\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"layette\", \"layette\", \"layette\", \"lcore\", \"lcsc\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"leadership\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"leave\", \"leave\", \"leave\", \"leave\", \"leave\", \"leave\", \"leave\", \"leave\", \"lecture\", \"lecture\", \"lecture\", \"lecture\", \"lecture\", \"lecture\", \"lecture\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"lending\", \"lending\", \"lending\", \"lending\", \"lending\", \"lending\", \"lending\", \"lending\", \"lesser\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"library\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"license\", \"licensing\", \"licensing\", \"licensing\", \"licensing\", \"licensing\", \"licensing\", \"lie\", \"lieap\", \"lifehouse\", \"liftequipped\", \"lifting\", \"limitedenglishspeaking\", \"linking\", \"linking\", \"linking\", \"litc\", \"litem\", \"litigation\", \"litigation\", \"litigation\", \"litigation\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"loaninsurance\", \"loaninsurance\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"local\", \"lois\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"lot\", \"lot\", \"lot\", \"lot\", \"lot\", \"lot\", \"lot\", \"louisiana\", \"louisiana\", \"louse\", \"louse\", \"louse\", \"louse\", \"louse\", \"louse\", \"lowcostnocost\", \"lowincomefinancially\", \"lowrise\", \"lpn\", \"lscs\", \"lumbar\", \"lump\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunch\", \"lunchesdinners\", \"lupus\", \"macbeth\", \"magistrate\", \"magistrate\", \"magizines\", \"magnifier\", \"mainly\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintains\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"majority\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"managementreliefresponse\", \"mantoux\", \"marketsrestaurants\", \"marking\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marry\", \"marry\", \"marsdale\", \"matchingreferral\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"material\", \"materialssupplies\", \"maternity\", \"maternity\", \"maternity\", \"maternity\", \"maternity\", \"maternity\", \"maternity\", \"maternity\", \"math\", \"math\", \"math\", \"math\", \"math\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"mccormic\", \"meadowood\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"meal\", \"mealsnutrition\", \"med\", \"medcheck\", \"mediator\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medicallytailored\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"mended\", \"mending\", \"menegitus\", \"meningitis\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mental\", \"mentees\", \"merriville\", \"messenger\", \"metabolic\", \"microchip\", \"midday\", \"midday\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middle\", \"middlehigh\", \"midoctober\", \"midwife\", \"milligan\", \"milroys\", \"mini\", \"mini\", \"mini\", \"mini\", \"miniphysical\", \"minister\", \"minister\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"minor\", \"misdemeanor\", \"misdemeanor\", \"misdemeanor\", \"misdemeanor\", \"misdemeanor\", \"misrepresentation\", \"missional\", \"mist\", \"mist\", \"mite\", \"mitigate\", \"momtime\", \"moneygenerating\", \"montgomerytippecanoe\", \"morrisett\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgage\", \"mortgate\", \"motel\", \"motel\", \"motivating\", \"motivating\", \"mow\", \"mowing\", \"mowing\", \"msd\", \"multifamily\", \"multilevel\", \"multipartygroup\", \"multipurpose\", \"multipurpose\", \"multipurpose\", \"multipurpose\", \"multipurpose\", \"multisensory\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"municipal\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"myeloma\", \"myeloma\", \"named\", \"named\", \"named\", \"named\", \"nasal\", \"nasal\", \"ncounty\", \"neck\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"needclients\", \"needymeds\", \"negligent\", \"negotiate\", \"negotiate\", \"negotiate\", \"negro\", \"negro\", \"neurofibromatosis\", \"neuropathy\", \"neuteringspaying\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"next\", \"next\", \"next\", \"next\", \"next\", \"next\", \"nightline\", \"ninth\", \"ninth\", \"nit\", \"nmdp\", \"noah\", \"nonbook\", \"nonbook\", \"noncity\", \"noncredit\", \"noncredit\", \"nonfeegenerating\", \"nonlocal\", \"nonnative\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonperishable\", \"nonspecific\", \"nonsupport\", \"nontoxic\", \"northwood\", \"notarized\", \"notifying\", \"notifying\", \"notifying\", \"notre\", \"nott\", \"nrockville\", \"ntrier\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nursing\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutrition\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nutritional\", \"nwestern\", \"obsolete\", \"obstetricgynecological\", \"obstruction\", \"obstruction\", \"obstruction\", \"obstruction\", \"obstruction\", \"occurrence\", \"occurrence\", \"occurrence\", \"occurrence\", \"occurrence\", \"occurring\", \"occurring\", \"occurring\", \"occurring\", \"occurring\", \"offender\", \"offender\", \"offender\", \"offender\", \"offender\", \"offender\", \"offender\", \"offender\", \"offense\", \"offense\", \"offense\", \"offense\", \"offense\", \"offense\", \"offense\", \"offense\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"oftroy\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"older\", \"olderhpv\", \"olderinpatient\", \"olderother\", \"olderother\", \"olderto\", \"oldie\", \"oldstyle\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"onemain\", \"operational\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"opportunity\", \"orangeville\", \"ordinancesthis\", \"oregondavis\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"organization\", \"osher\", \"ossian\", \"osteopath\", \"outbreak\", \"outbreak\", \"outbreak\", \"outdoors\", \"outerwear\", \"outofschool\", \"outofschool\", \"outofschool\", \"outofschool\", \"outpatient\", \"outpatient\", \"outpatient\", \"outpatient\", \"outpatient\", \"outpatient\", \"ovary\", \"overgrown\", \"overgrown\", \"overgrown\", \"overpass\", \"oversouth\", \"pact\", \"padd\", \"pageant\", \"palate\", \"palate\", \"palmar\", \"pampers\", \"pampers\", \"pampers\", \"pancake\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"pantry\", \"papillomavirus\", \"paramedicsemts\", \"paratransit\", \"paratransit\", \"paratransitcommunity\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parent\", \"parentage\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parenting\", \"parentlead\", \"parish\", \"parish\", \"parish\", \"parish\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"park\", \"parkingrelated\", \"parksmith\", \"passenger\", \"passenger\", \"passenger\", \"passenger\", \"pastured\", \"pat\", \"patching\", \"patching\", \"patrick\", \"patriotic\", \"pavement\", \"paving\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"pda\", \"peace\", \"peace\", \"peace\", \"peace\", \"peaceful\", \"pedestrian\", \"pedestrian\", \"pedestrian\", \"penal\", \"penal\", \"pendant\", \"pendent\", \"penis\", \"penitentiary\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"perfecting\", \"periodontal\", \"periodontist\", \"perishable\", \"perishable\", \"perishable\", \"perishable\", \"perishable\", \"perishable\", \"perishable\", \"perishable\", \"permit\", \"permit\", \"permit\", \"permit\", \"permit\", \"permit\", \"permit\", \"permit\", \"permit\", \"perrysville\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"personnel\", \"persontoperson\", \"persontoperson\", \"persontoperson\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"pet\", \"petanque\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petrelated\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phased\", \"phenomenon\", \"phonebased\", \"phonebased\", \"phonebased\", \"phonebased\", \"phonebased\", \"phonebased\", \"phonebased\", \"phonebased\", \"physique\", \"piankeshaw\", \"picked\", \"picked\", \"picked\", \"picked\", \"picked\", \"picked\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"pickup\", \"piercings\", \"pioneer\", \"pirquet\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"planted\", \"planter\", \"plasma\", \"plasma\", \"plasma\", \"plasmacare\", \"platelet\", \"plumbing\", \"plumbing\", \"plumbing\", \"plumbing\", \"pneumovax\", \"poisoning\", \"poisoning\", \"poisoning\", \"poisoning\", \"poisoning\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"policecommunity\", \"poll\", \"poll\", \"poll\", \"polling\", \"polling\", \"polling\", \"postdischarge\", \"postfiling\", \"postsurgery\", \"potential\", \"potential\", \"potential\", \"potential\", \"potential\", \"potential\", \"pothole\", \"preceded\", \"precinct\", \"precinct\", \"precinct\", \"precinct\", \"precollegiate\", \"preestablished\", \"prefiling\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"pregnancy\", \"preknd\", \"premarital\", \"prenatalage\", \"prep\", \"prep\", \"prep\", \"prep\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"preparation\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"prepare\", \"preparedness\", \"preparedness\", \"preparedness\", \"preparedness\", \"preparedness\", \"preparedness\", \"preparednessmobilization\", \"preprofessional\", \"preschoolage\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"prescription\", \"presenting\", \"presidential\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"prevent\", \"preventing\", \"preventing\", \"preventing\", \"preventing\", \"preventing\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"probation\", \"probation\", \"probation\", \"probation\", \"probationer\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"process\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"product\", \"productionpreparationdelivery\", \"proficiency\", \"proficiency\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"prolife\", \"prolife\", \"prolife\", \"prolife\", \"prompting\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"proportion\", \"proposes\", \"proprietary\", \"prosector\", \"prosecuting\", \"prosecuting\", \"prosecuting\", \"prosecution\", \"prosecution\", \"prosecution\", \"prosecutor\", \"prosecutor\", \"prosecutor\", \"prosecutor\", \"prosecutor\", \"prosecutor\", \"prosecutor\", \"protonotary\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"provides\", \"psychiatricmental\", \"ptsc\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"publishingdistribution\", \"purchasable\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"pureed\", \"quarantine\", \"racketeering\", \"radiant\", \"radio\", \"radio\", \"radio\", \"radio\", \"radionuclides\", \"radiopaque\", \"ramp\", \"ramp\", \"ramp\", \"ramp\", \"ranch\", \"ranger\", \"rarely\", \"rarely\", \"ratio\", \"razoo\", \"rdclinton\", \"rdgar\", \"rdlincoln\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"realtor\", \"recklinghausens\", \"reclamation\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"record\", \"recordspermits\", \"recruitmentplacement\", \"recyclintg\", \"reestablishing\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"referral\", \"reformer\", \"refrigerated\", \"refurbish\", \"refurbish\", \"refurbish\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regarding\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regional\", \"regionalaffiliated\", \"registering\", \"registering\", \"registering\", \"registering\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"regulating\", \"rehabilitates\", \"reheat\", \"rehome\", \"rehomes\", \"rehomes\", \"rehomes\", \"rehomes\", \"reincarcerated\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"related\", \"relaxed\", \"remainder\", \"remedial\", \"remodeling\", \"remodeling\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"removal\", \"remover\", \"remuneration\", \"remuneration\", \"remuneration\", \"remuneration\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rentmortgage\", \"rentutility\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"repair\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"reportingremoval\", \"representation\", \"representation\", \"representation\", \"representation\", \"representation\", \"representation\", \"representation\", \"reproduce\", \"reproducing\", \"requisite\", \"requisite\", \"resale\", \"resale\", \"resale\", \"resale\", \"resale\", \"resale\", \"resale\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"rescue\", \"reservation\", \"reservation\", \"reservation\", \"reservation\", \"reservationsbased\", \"resettled\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"resource\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responds\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"restricting\", \"retaining\", \"retaining\", \"retaining\", \"retaining\", \"retardant\", \"retardant\", \"reveal\", \"rezoning\", \"rgi\", \"rhisp\", \"rhode\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"rightofways\", \"roadside\", \"roadside\", \"roadway\", \"roadway\", \"roadway\", \"rolloff\", \"roofing\", \"rooming\", \"rooming\", \"rubbed\", \"ruling\", \"ruling\", \"ruling\", \"sack\", \"sack\", \"sack\", \"sack\", \"sacrificing\", \"sacrificing\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"salad\", \"salting\", \"salto\", \"salvaged\", \"sampson\", \"sandbagswater\", \"sandbagswater\", \"sandwich\", \"sandwich\", \"sanitationtrashcompost\", \"sanitationtrashrecycling\", \"sarcoptes\", \"scabei\", \"scabies\", \"scannable\", \"schneck\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"school\", \"schoolage\", \"schoolage\", \"schoolage\", \"schoolage\", \"schoolage\", \"schoolage\", \"schoolage\", \"schoolor\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"screening\", \"sculpture\", \"sdupont\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"search\", \"searchplacement\", \"searchplacement\", \"seastern\", \"seat\", \"seat\", \"seat\", \"seat\", \"seat\", \"seat\", \"seat\", \"seated\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"secondaryhigh\", \"secondhand\", \"secondhand\", \"secondhand\", \"secondhand\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"seeking\", \"selffeeding\", \"selfneglect\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"semidependent\", \"seminary\", \"senator\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"seniorsdisabilities\", \"sentence\", \"sentence\", \"sentence\", \"sentence\", \"sentenced\", \"sentenced\", \"sentenced\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separationdivorce\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"served\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"setup\", \"setup\", \"setup\", \"setup\", \"setupcleanup\", \"seventh\", \"seventh\", \"sevenyear\", \"shaken\", \"shape\", \"shape\", \"shed\", \"shelf\", \"shelf\", \"shelf\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shelter\", \"shingle\", \"shoe\", \"shoe\", \"shoe\", \"shoe\", \"shoe\", \"shoe\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shop\", \"shopoing\", \"shot\", \"shot\", \"shot\", \"shot\", \"shot\", \"siags\", \"sickroom\", \"sidewalk\", \"sidewalk\", \"sidewalk\", \"sidewalk\", \"sidewalk\", \"sieoc\", \"signature\", \"signature\", \"sitdow\", \"sitdown\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"sitter\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"situation\", \"sixhour\", \"sk\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skill\", \"skilled\", \"skilled\", \"skilled\", \"skin\", \"skin\", \"skin\", \"skin\", \"sloping\", \"sloping\", \"smaller\", \"smoke\", \"smoke\", \"smoke\", \"smoke\", \"smoke\", \"smoothly\", \"snow\", \"snow\", \"snow\", \"snow\", \"snow\", \"snow\", \"snow\", \"snowstorm\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"soldier\", \"solicits\", \"solicits\", \"solicits\", \"somethings\", \"sonshine\", \"sorority\", \"sounded\", \"soup\", \"soup\", \"soup\", \"soup\", \"soup\", \"soup\", \"sovereign\", \"spacing\", \"spanishspeakers\", \"spark\", \"spayed\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specialized\", \"specificarea\", \"spelling\", \"spettit\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spousespartners\", \"spouseswidows\", \"spread\", \"spread\", \"spread\", \"spread\", \"spread\", \"spread\", \"spur\", \"sr\", \"sst\", \"stachybotrys\", \"staggered\", \"standardform\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"station\", \"station\", \"station\", \"station\", \"station\", \"station\", \"station\", \"station\", \"station\", \"station\", \"stay\", \"stay\", \"stay\", \"stay\", \"stay\", \"stay\", \"stay\", \"stay\", \"stay\", \"steeltoe\", \"stii\", \"stin\", \"stipulation\", \"stjoseph\", \"stopper\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"store\", \"storehouse\", \"storytelling\", \"storytelling\", \"strain\", \"strain\", \"strain\", \"strain\", \"strawcolored\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"street\", \"streetrelated\", \"strollercarrier\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"student\", \"studied\", \"stuff\", \"subacute\", \"subacute\", \"submission\", \"submission\", \"submission\", \"subsidize\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substance\", \"substancerelated\", \"summoned\", \"sumy\", \"superior\", \"superior\", \"superior\", \"supper\", \"supplement\", \"supplement\", \"supplement\", \"supplement\", \"supplement\", \"supplement\", \"supplement\", \"supplement\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supply\", \"supporor\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"suppressing\", \"supvervised\", \"surfing\", \"surgically\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"suspect\", \"suspect\", \"suspended\", \"suspended\", \"sustenance\", \"swat\", \"sweater\", \"sweeping\", \"swift\", \"swimwear\", \"swinford\", \"sworn\", \"symptomatic\", \"tab\", \"tableware\", \"tailgate\", \"takehome\", \"takehome\", \"talbot\", \"talent\", \"talent\", \"tamed\", \"tannadoonah\", \"tao\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"taxation\", \"taxation\", \"taxationtaxes\", \"taxrelated\", \"tb\", \"tb\", \"tb\", \"tb\", \"tb\", \"tb\", \"tb\", \"tb\", \"tb\", \"tcsd\", \"tdap\", \"tdap\", \"tdap\", \"teaching\", \"teaching\", \"teaching\", \"teaching\", \"teaching\", \"teaching\", \"teaching\", \"teeth\", \"teeth\", \"telephoning\", \"tendigit\", \"tendigit\", \"tending\", \"tenure\", \"tenure\", \"terminating\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"testis\", \"theme\", \"theraputic\", \"thereby\", \"thereby\", \"thereby\", \"theresa\", \"thickening\", \"think\", \"thrift\", \"thrift\", \"thrift\", \"thrift\", \"thrift\", \"thrift\", \"thunderstorm\", \"ticket\", \"ticket\", \"ticket\", \"ticket\", \"ticket\", \"ticket\", \"ticket\", \"tied\", \"tillingplantingcultivatingharvesting\", \"tiplines\", \"toilestries\", \"toiletry\", \"toiletry\", \"toiletry\", \"toiletry\", \"toiletry\", \"toiletry\", \"toiletry\", \"toiletry\", \"token\", \"token\", \"toll\", \"tonsil\", \"torner\", \"toter\", \"touched\", \"tourist\", \"tourist\", \"tourist\", \"tourist\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"township\", \"tracingnotification\", \"tractor\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"trafficparking\", \"trafficparking\", \"trainingcoaching\", \"transcend\", \"transfusion\", \"transmitted\", \"transmitted\", \"transmitted\", \"transmitted\", \"transmitted\", \"transmitted\", \"transmitted\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportation\", \"transportationcommunity\", \"trapneuterrelease\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trash\", \"trashyard\", \"traveling\", \"traveling\", \"traveling\", \"traveling\", \"treament\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"trisomy\", \"troubling\", \"troubling\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"tso\", \"tuberculin\", \"tuberculosis\", \"tuberculosis\", \"tuberculosis\", \"tuberculosis\", \"tuberculosis\", \"tuberculosis\", \"tuberculosis\", \"turnaround\", \"tutoring\", \"tutoring\", \"tutoring\", \"tutoring\", \"tutoring\", \"tutoring\", \"twenty\", \"twenty\", \"twenty\", \"twenty\", \"twilight\", \"twinrix\", \"typhoid\", \"typhoidtetanus\", \"ultrasonic\", \"umbrella\", \"umbrella\", \"unascertained\", \"unborn\", \"unborn\", \"uncompensated\", \"underpayment\", \"underworld\", \"undesignated\", \"undue\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"unlawful\", \"unlawful\", \"unlike\", \"unmarketable\", \"unopened\", \"unstaffed\", \"unstructured\", \"unusual\", \"unwed\", \"upgrading\", \"upgrading\", \"urgent\", \"urgent\", \"urgent\", \"urgent\", \"urgent\", \"urgent\", \"urgent\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"uso\", \"utensil\", \"utensil\", \"utensil\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utility\", \"utilties\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccination\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccine\", \"vaccinepreventable\", \"vacuuming\", \"vagina\", \"vagina\", \"validation\", \"varied\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vegetarian\", \"vegetarianism\", \"vegetation\", \"venturing\", \"verdict\", \"verifiably\", \"versa\", \"vertebra\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"veteran\", \"vice\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victim\", \"victimoffender\", \"victimssurvivors\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"vintage\", \"visitspap\", \"vital\", \"vital\", \"vital\", \"vital\", \"vital\", \"vital\", \"voadcoad\", \"vogel\", \"volcanic\", \"vollmer\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"voluntary\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteer\", \"volunteering\", \"volunteering\", \"volunteering\", \"volunteering\", \"von\", \"von\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voting\", \"voting\", \"vulva\", \"wagon\", \"waiting\", \"waiting\", \"waiting\", \"waiting\", \"waiting\", \"wake\", \"walkway\", \"wanderer\", \"wanted\", \"wanted\", \"warrant\", \"warrant\", \"warrant\", \"warrant\", \"warrant\", \"wart\", \"wasteaway\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"watersewer\", \"watersewer\", \"waterworks\", \"waynetown\", \"wearer\", \"weather\", \"weather\", \"weather\", \"weather\", \"weather\", \"weather\", \"weather\", \"weather\", \"weather\", \"weed\", \"weed\", \"weed\", \"weed\", \"weed\", \"weekday\", \"weekday\", \"weekday\", \"weekday\", \"welding\", \"whatever\", \"whatever\", \"whatever\", \"whereas\", \"whitely\", \"wholesaler\", \"wig\", \"wig\", \"wig\", \"wig\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"willing\", \"winslow\", \"wiring\", \"wiring\", \"wiring\", \"wize\", \"womenservices\", \"wordforword\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"workplacerelated\", \"workscope\", \"workscope\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"workshop\", \"wrange\", \"writeoff\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"wsaint\", \"wschwartz\", \"yeast\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youth\", \"youthled\", \"zeroentry\", \"zoning\", \"zoning\", \"zoning\", \"zoning\", \"\\u2019\", \"\\u2019\", \"\\u2019\", \"\\u2019\", \"\\u2019\", \"\\u2019\", \"\\u2019\"]}, \"R\": 20, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [25, 16, 13, 5, 21, 9, 7, 12, 18, 3, 4, 23, 10, 1, 14, 11, 17, 19, 8, 15, 6, 2, 24, 22, 20]};\n",
"\n",
"function LDAvis_load_lib(url, callback){\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = callback;\n",
" s.onerror = function(){console.warn(\"failed to load library \" + url);};\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
"}\n",
"\n",
"if(typeof(LDAvis) !== \"undefined\"){\n",
" // already loaded: just create the visualization\n",
" !function(LDAvis){\n",
" new LDAvis(\"#\" + \"ldavis_el8371405438089155206449921432\", ldavis_el8371405438089155206449921432_data);\n",
" }(LDAvis);\n",
"}else if(typeof define === \"function\" && define.amd){\n",
" // require.js is available: use it to load d3/LDAvis\n",
" require.config({paths: {d3: \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el8371405438089155206449921432\", ldavis_el8371405438089155206449921432_data);\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & LDAvis\n",
" LDAvis_load_lib(\"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js\", function(){\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el8371405438089155206449921432\", ldavis_el8371405438089155206449921432_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {
"tags": []
},
"execution_count": 4
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment