Skip to content

Instantly share code, notes, and snippets.

@petermchale
Last active August 29, 2021 03:20
Show Gist options
  • Save petermchale/29014b456089a871555d8c5cecd16dcf to your computer and use it in GitHub Desktop.
Save petermchale/29014b456089a871555d8c5cecd16dcf to your computer and use it in GitHub Desktop.
Topic Modeling using Latent Dirichlet Allocation. Best viewed here: https://nbviewer.jupyter.org/gist/petermchale/29014b456089a871555d8c5cecd16dcf#topic=1&lambda=0.11&term=
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Based on https://towardsdatascience.com/end-to-end-topic-modeling-in-python-latent-dirichlet-allocation-lda-35ce4ed6b3e0"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Import data \n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>id</th>\n",
" <th>year</th>\n",
" <th>title</th>\n",
" <th>event_type</th>\n",
" <th>pdf_name</th>\n",
" <th>abstract</th>\n",
" <th>paper_text</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>1987</td>\n",
" <td>Self-Organization of Associative Database and ...</td>\n",
" <td>NaN</td>\n",
" <td>1-self-organization-of-associative-database-an...</td>\n",
" <td>Abstract Missing</td>\n",
" <td>767\\n\\nSELF-ORGANIZATION OF ASSOCIATIVE DATABA...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>10</td>\n",
" <td>1987</td>\n",
" <td>A Mean Field Theory of Layer IV of Visual Cort...</td>\n",
" <td>NaN</td>\n",
" <td>10-a-mean-field-theory-of-layer-iv-of-visual-c...</td>\n",
" <td>Abstract Missing</td>\n",
" <td>683\\n\\nA MEAN FIELD THEORY OF LAYER IV OF VISU...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>100</td>\n",
" <td>1988</td>\n",
" <td>Storing Covariance by the Associative Long-Ter...</td>\n",
" <td>NaN</td>\n",
" <td>100-storing-covariance-by-the-associative-long...</td>\n",
" <td>Abstract Missing</td>\n",
" <td>394\\n\\nSTORING COVARIANCE BY THE ASSOCIATIVE\\n...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1000</td>\n",
" <td>1994</td>\n",
" <td>Bayesian Query Construction for Neural Network...</td>\n",
" <td>NaN</td>\n",
" <td>1000-bayesian-query-construction-for-neural-ne...</td>\n",
" <td>Abstract Missing</td>\n",
" <td>Bayesian Query Construction for Neural\\nNetwor...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1001</td>\n",
" <td>1994</td>\n",
" <td>Neural Network Ensembles, Cross Validation, an...</td>\n",
" <td>NaN</td>\n",
" <td>1001-neural-network-ensembles-cross-validation...</td>\n",
" <td>Abstract Missing</td>\n",
" <td>Neural Network Ensembles, Cross\\nValidation, a...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" id year title event_type \\\n",
"0 1 1987 Self-Organization of Associative Database and ... NaN \n",
"1 10 1987 A Mean Field Theory of Layer IV of Visual Cort... NaN \n",
"2 100 1988 Storing Covariance by the Associative Long-Ter... NaN \n",
"3 1000 1994 Bayesian Query Construction for Neural Network... NaN \n",
"4 1001 1994 Neural Network Ensembles, Cross Validation, an... NaN \n",
"\n",
" pdf_name abstract \\\n",
"0 1-self-organization-of-associative-database-an... Abstract Missing \n",
"1 10-a-mean-field-theory-of-layer-iv-of-visual-c... Abstract Missing \n",
"2 100-storing-covariance-by-the-associative-long... Abstract Missing \n",
"3 1000-bayesian-query-construction-for-neural-ne... Abstract Missing \n",
"4 1001-neural-network-ensembles-cross-validation... Abstract Missing \n",
"\n",
" paper_text \n",
"0 767\\n\\nSELF-ORGANIZATION OF ASSOCIATIVE DATABA... \n",
"1 683\\n\\nA MEAN FIELD THEORY OF LAYER IV OF VISU... \n",
"2 394\\n\\nSTORING COVARIANCE BY THE ASSOCIATIVE\\n... \n",
"3 Bayesian Query Construction for Neural\\nNetwor... \n",
"4 Neural Network Ensembles, Cross\\nValidation, a... "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import pandas as pd\n",
"from IPython.display import display\n",
"\n",
"def import_papers():\n",
" return pd.read_csv('NIPS Papers/papers.csv')\n",
" \n",
"display(import_papers().head())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Clean data"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>paper_text</th>\n",
" <th>paper_text_processed</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>767\\n\\nSELF-ORGANIZATION OF ASSOCIATIVE DATABA...</td>\n",
" <td>767\\n\\nself-organization of associative databa...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>683\\n\\nA MEAN FIELD THEORY OF LAYER IV OF VISU...</td>\n",
" <td>683\\n\\na mean field theory of layer iv of visu...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>394\\n\\nSTORING COVARIANCE BY THE ASSOCIATIVE\\n...</td>\n",
" <td>394\\n\\nstoring covariance by the associative\\n...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Bayesian Query Construction for Neural\\nNetwor...</td>\n",
" <td>bayesian query construction for neural\\nnetwor...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Neural Network Ensembles, Cross\\nValidation, a...</td>\n",
" <td>neural network ensembles cross\\nvalidation and...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" paper_text \\\n",
"0 767\\n\\nSELF-ORGANIZATION OF ASSOCIATIVE DATABA... \n",
"1 683\\n\\nA MEAN FIELD THEORY OF LAYER IV OF VISU... \n",
"2 394\\n\\nSTORING COVARIANCE BY THE ASSOCIATIVE\\n... \n",
"3 Bayesian Query Construction for Neural\\nNetwor... \n",
"4 Neural Network Ensembles, Cross\\nValidation, a... \n",
"\n",
" paper_text_processed \n",
"0 767\\n\\nself-organization of associative databa... \n",
"1 683\\n\\na mean field theory of layer iv of visu... \n",
"2 394\\n\\nstoring covariance by the associative\\n... \n",
"3 bayesian query construction for neural\\nnetwor... \n",
"4 neural network ensembles cross\\nvalidation and... "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import re\n",
"\n",
"def clean():\n",
" papers = import_papers()\n",
" # remove punctuation\n",
" papers['paper_text_processed'] = papers['paper_text'].map(lambda text: re.sub('[,.!?]', '', text))\n",
" # make lower-case\n",
" papers['paper_text_processed'] = papers['paper_text_processed'].map(lambda text: text.lower())\n",
" display(papers[['paper_text', 'paper_text_processed']].head())\n",
" return papers['paper_text_processed'].values.tolist()\n",
" \n",
"texts = clean()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Prepare documents for LDA training"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/gensim/similarities/__init__.py:15: UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levenshtein package <https://pypi.org/project/python-Levenshtein/> is unavailable. Install Levenhstein (e.g. `pip install python-Levenshtein`) to suppress this warning.\n",
" warnings.warn(msg)\n"
]
},
{
"data": {
"text/plain": [
"['mean',\n",
" 'field',\n",
" 'theory',\n",
" 'of',\n",
" 'layer',\n",
" 'iv',\n",
" 'of',\n",
" 'visual',\n",
" 'cortex',\n",
" 'and']"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from gensim.utils import simple_preprocess\n",
"\n",
"# tokenize texts\n",
"# \"deacc=True\" removes accent marks from tokens\n",
"tokenized_texts = [simple_preprocess(text, deacc=True, min_len=2, max_len=15) for text in texts]\n",
"tokenized_texts[1][:10] "
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[nltk_data] Downloading package stopwords to\n",
"[nltk_data] /Users/petermchale/nltk_data...\n",
"[nltk_data] Package stopwords is already up-to-date!\n"
]
},
{
"data": {
"text/plain": [
"['mean',\n",
" 'field',\n",
" 'theory',\n",
" 'layer',\n",
" 'iv',\n",
" 'visual',\n",
" 'cortex',\n",
" 'application',\n",
" 'artificial',\n",
" 'neural']"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import nltk\n",
"nltk.download('stopwords')\n",
"from nltk.corpus import stopwords\n",
"\n",
"# create stop words\n",
"stop_words = stopwords.words('english')\n",
"stop_words.extend(['from', 'subject', 're', 'edu', 'use'])\n",
"\n",
"# remove stopwords from documents\n",
"texts_without_stops = []\n",
"for tokenized_text in tokenized_texts: \n",
" text_without_stops = [word for word in tokenized_text if word not in stop_words]\n",
" texts_without_stops.append(text_without_stops)\n",
" \n",
"texts_without_stops[1][:10]"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'catches'"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from gensim.corpora import Dictionary\n",
"\n",
"# map words to unique IDs\n",
"id2word = Dictionary(texts_without_stops)\n",
"id2word[100]"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"(100, 1)\n"
]
}
],
"source": [
"# Convert document (a list of words) into the bag-of-words format: a list of (token_id, token_count) tuples\n",
"id2counts = [id2word.doc2bow(text_without_stops) for text_without_stops in texts_without_stops]\n",
"\n",
"print(id2counts[0][100])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Specify the LDA model \n",
"\n",
"https://cran.r-project.org/web/packages/LDAvis/vignettes/details.pdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Train the LDA model"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/gensim/similarities/__init__.py:15: UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levenshtein package <https://pypi.org/project/python-Levenshtein/> is unavailable. Install Levenhstein (e.g. `pip install python-Levenshtein`) to suppress this warning.\n",
" warnings.warn(msg)\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/gensim/similarities/__init__.py:15: UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levenshtein package <https://pypi.org/project/python-Levenshtein/> is unavailable. Install Levenhstein (e.g. `pip install python-Levenshtein`) to suppress this warning.\n",
" warnings.warn(msg)\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/gensim/similarities/__init__.py:15: UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levenshtein package <https://pypi.org/project/python-Levenshtein/> is unavailable. Install Levenhstein (e.g. `pip install python-Levenshtein`) to suppress this warning.\n",
" warnings.warn(msg)\n"
]
}
],
"source": [
"from pprint import pprint\n",
"from gensim.models import LdaMulticore\n",
"\n",
"# number of topics\n",
"num_topics = 10\n",
"\n",
"# build and train the LDA model\n",
"lda_model = LdaMulticore(corpus=id2counts,\n",
" id2word=id2word,\n",
" num_topics=num_topics)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Infer the top ten most probable words from each of the topics"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[(0,\n",
" '0.006*\"learning\" + 0.005*\"data\" + 0.005*\"network\" + 0.005*\"algorithm\" + '\n",
" '0.005*\"set\" + 0.005*\"using\" + 0.004*\"function\" + 0.004*\"model\" + '\n",
" '0.004*\"problem\" + 0.004*\"training\"'),\n",
" (1,\n",
" '0.006*\"model\" + 0.006*\"learning\" + 0.005*\"data\" + 0.005*\"one\" + '\n",
" '0.005*\"network\" + 0.004*\"time\" + 0.004*\"algorithm\" + 0.004*\"neural\" + '\n",
" '0.004*\"figure\" + 0.004*\"two\"'),\n",
" (2,\n",
" '0.006*\"learning\" + 0.006*\"model\" + 0.006*\"function\" + 0.005*\"algorithm\" + '\n",
" '0.005*\"set\" + 0.004*\"data\" + 0.004*\"one\" + 0.004*\"using\" + 0.003*\"models\" + '\n",
" '0.003*\"training\"'),\n",
" (3,\n",
" '0.008*\"data\" + 0.006*\"model\" + 0.006*\"learning\" + 0.004*\"one\" + '\n",
" '0.004*\"network\" + 0.004*\"set\" + 0.004*\"two\" + 0.004*\"algorithm\" + '\n",
" '0.004*\"using\" + 0.004*\"figure\"'),\n",
" (4,\n",
" '0.007*\"learning\" + 0.007*\"model\" + 0.005*\"algorithm\" + 0.005*\"set\" + '\n",
" '0.004*\"network\" + 0.004*\"data\" + 0.004*\"using\" + 0.004*\"function\" + '\n",
" '0.004*\"time\" + 0.004*\"neural\"'),\n",
" (5,\n",
" '0.006*\"model\" + 0.005*\"data\" + 0.005*\"learning\" + 0.004*\"algorithm\" + '\n",
" '0.004*\"neural\" + 0.004*\"one\" + 0.004*\"function\" + 0.003*\"results\" + '\n",
" '0.003*\"using\" + 0.003*\"number\"'),\n",
" (6,\n",
" '0.007*\"learning\" + 0.006*\"model\" + 0.005*\"data\" + 0.005*\"time\" + '\n",
" '0.005*\"algorithm\" + 0.004*\"figure\" + 0.004*\"network\" + 0.004*\"using\" + '\n",
" '0.004*\"neural\" + 0.004*\"training\"'),\n",
" (7,\n",
" '0.006*\"model\" + 0.005*\"data\" + 0.005*\"learning\" + 0.005*\"set\" + '\n",
" '0.004*\"algorithm\" + 0.004*\"function\" + 0.004*\"network\" + 0.004*\"one\" + '\n",
" '0.003*\"error\" + 0.003*\"figure\"'),\n",
" (8,\n",
" '0.007*\"learning\" + 0.006*\"function\" + 0.005*\"set\" + 0.005*\"model\" + '\n",
" '0.004*\"data\" + 0.004*\"algorithm\" + 0.004*\"number\" + 0.004*\"two\" + '\n",
" '0.004*\"one\" + 0.004*\"network\"'),\n",
" (9,\n",
" '0.006*\"learning\" + 0.005*\"model\" + 0.005*\"set\" + 0.004*\"using\" + '\n",
" '0.004*\"algorithm\" + 0.004*\"two\" + 0.004*\"data\" + 0.004*\"time\" + '\n",
" '0.004*\"function\" + 0.003*\"one\"')]\n"
]
}
],
"source": [
"pprint(lda_model.show_topics())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Use pyLDAvis to interpret the inferred topics \n",
"\n",
"The chart on the left plots each topic along their first two principal components (each topic is characterized by a probability vector over the available words), thereby gauging how different or similar the inferred topics are. The areas of the circles (in their default mode) are proportional to the estimated number of tokens that were generated by the corresponding topic across the entire corpus. \n",
"\n",
"In the chart on the right, the\n",
"widths of the blue bars represent the corpus-wide\n",
"frequencies of each term, and the widths of the\n",
"red bars represent the topic-specific frequencies of\n",
"each term. \n",
"\n",
"We interpret the topics by ranking words according to their \"relevance\", which represents a balance between (i) how often the word appears, conditioned upon being chosen from the topic in question and (ii) the enrichment of the word in the chosen topic relatative to the entire corpus. The balance can be tuned by the user by varying the $\\lambda$ slider. \n",
"\n",
"Hovering over a term in the chart on the right alters the circles in the chart on the left to reflect the \n",
"the conditional probability of the term given the chosen topic. \n",
"\n",
"More info:\n",
"<br>\n",
"https://nlp.stanford.edu/events/illvi2014/papers/sievert-illvi2014.pdf\n",
"<br>\n",
"https://cran.r-project.org/web/packages/LDAvis/vignettes/details.pdf\n"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/pyLDAvis/_prepare.py:246: FutureWarning: In a future version of pandas all arguments of DataFrame.drop except for the argument 'labels' will be keyword-only\n",
" default_term_info = default_term_info.sort_values(\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/past/builtins/misc.py:45: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses\n",
" from imp import reload\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/past/builtins/misc.py:45: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses\n",
" from imp import reload\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/past/builtins/misc.py:45: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses\n",
" from imp import reload\n",
"/Users/petermchale/anaconda/envs/LDA/lib/python3.9/site-packages/past/builtins/misc.py:45: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses\n",
" from imp import reload\n"
]
},
{
"data": {
"text/html": [
"\n",
"<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.jsdelivr.net/gh/bmabey/pyLDAvis@3.3.1/pyLDAvis/js/ldavis.v1.0.0.css\">\n",
"\n",
"\n",
"<div id=\"ldavis_el2837869631454082563143802\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el2837869631454082563143802_data = {\"mdsDat\": {\"x\": [-0.005384929510983177, -0.002649487703424649, -0.002354856451468704, 0.003697714567869851, -0.0019113254119575238, 0.0027314109016684748, 0.004146445882727483, 0.00045861884910399907, 0.0002169753441990218, 0.0010494335322652267], \"y\": [0.0018428401675805056, -0.0007690930324556226, -0.00391423986750574, 0.0017417771068190294, 0.0015954858930238138, 0.002923517223375512, -0.003182299386455747, -0.002539944196893514, 0.0009173929105222628, 0.0013845631819894941], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [15.988369043927314, 11.213841517152888, 11.07217745556713, 10.889077128240247, 10.81670396481291, 10.192499082699312, 7.7653603665575, 7.572525606331958, 7.319893449573304, 7.1695523851374325]}, \"tinfo\": {\"Term\": [\"model\", \"data\", \"network\", \"learning\", \"set\", \"time\", \"figure\", \"problem\", \"two\", \"input\", \"used\", \"neural\", \"networks\", \"based\", \"one\", \"distribution\", \"information\", \"layer\", \"error\", \"number\", \"function\", \"matrix\", \"also\", \"algorithm\", \"training\", \"kernel\", \"using\", \"different\", \"first\", \"given\", \"cqms\", \"rmxd\", \"obseivation\", \"cdmlp\", \"biphone\", \"cqm\", \"ztrn\", \"deciphertm\", \"obsexvation\", \"iytca\", \"importances\", \"idv\", \"sqale\", \"alburquerque\", \"kleinbergs\", \"cdidv\", \"resomce\", \"pwid\", \"krasner\", \"mackayi\", \"jols\", \"fips\", \"discriminatioo\", \"cdnn\", \"uoms\", \"idct\", \"awj\", \"wordspecific\", \"sfiicnls\", \"efyn\", \"bouchards\", \"parws\", \"cimlp\", \"cggm\", \"icu\", \"iyt\", \"supermodular\", \"conv_\", \"hme\", \"graph\", \"dataset\", \"reward\", \"phone\", \"decipher\", \"function\", \"programming\", \"hmm\", \"ove\", \"models\", \"functions\", \"decision\", \"inference\", \"tasks\", \"wk\", \"context\", \"section\", \"log\", \"phase\", \"terms\", \"one\", \"model\", \"linear\", \"given\", \"algorithm\", \"learning\", \"et\", \"bound\", \"following\", \"set\", \"state\", \"value\", \"action\", \"using\", \"parameters\", \"method\", \"space\", \"see\", \"training\", \"paper\", \"used\", \"also\", \"order\", \"data\", \"results\", \"two\", \"distribution\", \"input\", \"networks\", \"time\", \"network\", \"neural\", \"figure\", \"error\", \"number\", \"problem\", \"wotff\", \"syslems\", \"aup\", \"aulomatica\", \"mlow\", \"lenns\", \"levied\", \"olk\", \"sciencetech\", \"capactiy\", \"ormoregenerally\", \"wishful\", \"tennino\", \"bpwd\", \"ranvgg\", \"soua\", \"seber\", \"overfilting\", \"exempt\", \"monkl\", \"increasel\", \"dermed\", \"unintelligible\", \"allliwll\", \"nonnally\", \"rrst\", \"hdnn\", \"deletes\", \"alow\", \"owq\", \"recalculates\", \"multibatch\", \"surgeon\", \"thn\", \"obs\", \"isb\", \"metabolic\", \"contending\", \"strawman\", \"optimal\", \"cplst\", \"obd\", \"weights\", \"network\", \"problem\", \"order\", \"regression\", \"xi\", \"kernel\", \"random\", \"using\", \"without\", \"bounds\", \"consider\", \"training\", \"output\", \"probability\", \"thus\", \"hidden\", \"set\", \"data\", \"information\", \"trained\", \"algorithm\", \"function\", \"method\", \"let\", \"learning\", \"approach\", \"results\", \"linear\", \"distribution\", \"two\", \"methods\", \"time\", \"figure\", \"neural\", \"number\", \"model\", \"given\", \"also\", \"based\", \"input\", \"one\", \"matrix\", \"models\", \"lakota\", \"aggregative\", \"garawa\", \"ultiresolution\", \"paiute\", \"warao\", \"latvian\", \"maranungku\", \"structboost\", \"weri\", \"mayan\", \"cuong\", \"vcrf\", \"lutlo\", \"dasal\", \"altemation\", \"pattei\", \"efn\", \"yyf\", \"blc\", \"javdani\", \"ototypes\", \"lilolololololo\", \"reiterated\", \"tangdist\", \"ution\", \"xoi\", \"swahili\", \"mongolian\", \"alkis\", \"closecall\", \"localknn\", \"guillory\", \"huffman\", \"alc\", \"sensitively\", \"vrsnvr\", \"fworst\", \"viet\", \"lms\", \"case\", \"dropout\", \"cost\", \"function\", \"prediction\", \"tangent\", \"loss\", \"syllable\", \"number\", \"problems\", \"classification\", \"learning\", \"algorithms\", \"problem\", \"classifier\", \"set\", \"also\", \"hypothesis\", \"compression\", \"point\", \"input\", \"best\", \"feature\", \"two\", \"average\", \"complexity\", \"constant\", \"methods\", \"analysis\", \"error\", \"shown\", \"distance\", \"algorithm\", \"theorem\", \"information\", \"data\", \"one\", \"network\", \"log\", \"time\", \"model\", \"figure\", \"neural\", \"using\", \"training\", \"based\", \"image\", \"first\", \"matrix\", \"given\", \"results\", \"used\", \"okm\", \"vvada\", \"phonemespecific\", \"g_lot_ta_\", \"waited\", \"videband\", \"musculo\", \"afeasurement\", \"baudet\", \"musclo\", \"asynchronized\", \"asynchronizable\", \"coarticulated\", \"mermelstein\", \"kims\", \"socj\", \"ajectories\", \"coetticients\", \"biomedi\", \"fdm\", \"nasality\", \"dyllamics\", \"s_o_u_rc_e\", \"ljcj\", \"secoild\", \"aphic\", \"dynamicb\", \"izlt\", \"furthe\", \"cwada\", \"hirayama\", \"voiceless\", \"vatikiotis\", \"mlcm\", \"articulatory\", \"willshaw\", \"ucn\", \"parcor\", \"articulator\", \"controllers\", \"emg\", \"time\", \"noise\", \"system\", \"speech\", \"state\", \"dynamics\", \"figure\", \"twinn\", \"training\", \"layer\", \"al\", \"networks\", \"control\", \"learning\", \"neural\", \"classification\", \"performance\", \"output\", \"used\", \"model\", \"input\", \"algorithm\", \"network\", \"using\", \"number\", \"gradient\", \"vector\", \"data\", \"different\", \"several\", \"case\", \"error\", \"results\", \"matrix\", \"models\", \"one\", \"two\", \"information\", \"based\", \"set\", \"also\", \"function\", \"given\", \"problem\", \"wroot\", \"cthr\", \"janitor\", \"mime\", \"hrr\", \"href\", \"daquar\", \"contextualized\", \"mdgps\", \"ctyp\", \"gourley\", \"flopstime\", \"selc\", \"wyatt\", \"aems\", \"itivr\", \"yas\", \"hyogo\", \"jane\", \"businger\", \"qrp\", \"elfadel\", \"paii\", \"flee\", \"amagasaki\", \"neuralog\", \"lazarro\", \"wisniewski\", \"mort\", \"wrootll\", \"kohling\", \"ancm\", \"hrrs\", \"gentner\", \"pirr\", \"fido\", \"correlogram\", \"ours_full\", \"znk\", \"circuit\", \"policy\", \"xj\", \"xt\", \"bootstrap\", \"results\", \"max\", \"neural\", \"sampling\", \"shape\", \"class\", \"posterior\", \"mle\", \"ie\", \"et\", \"image\", \"work\", \"number\", \"model\", \"data\", \"one\", \"large\", \"information\", \"distribution\", \"show\", \"step\", \"matrix\", \"classification\", \"functions\", \"parameters\", \"log\", \"algorithm\", \"error\", \"function\", \"problem\", \"algorithms\", \"xi\", \"using\", \"time\", \"figure\", \"learning\", \"models\", \"two\", \"networks\", \"set\", \"linear\", \"different\", \"network\", \"first\", \"also\", \"training\", \"used\", \"bxpca\", \"colgibbs\", \"dpmg\", \"sck\", \"epca\", \"mhi\", \"hetdbn\", \"vba\", \"hetdbnbino\", \"shcnn\", \"virt\", \"ibna\", \"vbna\", \"vana\", \"sergejew\", \"psychiatrically\", \"subselect\", \"pvars\", \"bino\", \"tana\", \"pupa\", \"gmmp\", \"qna\", \"roher\", \"rids\", \"csiupuiedu\", \"bilayers\", \"vbnasbna\", \"subselection\", \"hetdbnexp\", \"sana\", \"pvar\", \"ocd\", \"virtualization\", \"hmdm\", \"schiz\", \"lisp\", \"kay\", \"collicular\", \"nmbatch\", \"marple\", \"data\", \"dcrf\", \"interconnect\", \"ionic\", \"units\", \"cluster\", \"mlp\", \"planar\", \"attack\", \"activation\", \"db\", \"model\", \"clusters\", \"network\", \"one\", \"parameters\", \"different\", \"two\", \"matrix\", \"information\", \"mean\", \"approach\", \"learning\", \"figure\", \"used\", \"component\", \"setting\", \"target\", \"better\", \"set\", \"neural\", \"probability\", \"may\", \"xi\", \"prior\", \"values\", \"using\", \"state\", \"time\", \"results\", \"output\", \"linear\", \"algorithm\", \"method\", \"based\", \"input\", \"training\", \"models\", \"given\", \"number\", \"function\", \"problem\", \"also\", \"rcrit\", \"metamorphosis\", \"mrbf\", \"hildebrand\", \"ahd\", \"lazysvd\", \"unxr\", \"appxpca\", \"knnz\", \"asst\", \"rpcca\", \"pavgi\", \"lcbd\", \"tcrit\", \"rmhc\", \"pslx\", \"maxkj\", \"agrin\", \"combinatorical\", \"avhd\", \"eduard\", \"pssx\", \"moth\", \"psets\", \"prado\", \"breadboard\", \"powerlaws\", \"spinx\", \"psax\", \"nlmp\", \"moc\", \"apnn\", \"consonant\", \"knd\", \"pheromone\", \"rox\", \"camot\", \"reekie\", \"eejj\", \"musco\", \"schemas\", \"dfa\", \"puffs\", \"riemannian\", \"interneurons\", \"svd\", \"neuron\", \"direction\", \"models\", \"one\", \"network\", \"norm\", \"non\", \"layer\", \"training\", \"model\", \"neural\", \"networks\", \"time\", \"figure\", \"also\", \"neurons\", \"matrix\", \"large\", \"two\", \"algorithms\", \"number\", \"learning\", \"fig\", \"given\", \"input\", \"data\", \"following\", \"based\", \"small\", \"problem\", \"first\", \"used\", \"algorithm\", \"set\", \"distribution\", \"performance\", \"function\", \"using\", \"error\", \"different\", \"posg\", \"kgr\", \"vability\", \"reformation\", \"bumping\", \"edleman\", \"imem\", \"kvh\", \"ween\", \"duwp\", \"cma\", \"npv\", \"fornl\", \"targetpoint\", \"freyd\", \"ymb\", \"mihama\", \"suttorp\", \"nqd\", \"yiningwa\", \"hadassa\", \"posgs\", \"firstnearest\", \"nonlinc\", \"nexpnp\", \"optimallll\", \"iifn\", \"neighboured\", \"supku\", \"alidation\", \"akimoto\", \"humbert\", \"cigar\", \"igel\", \"wada\", \"heidrich\", \"lnn\", \"loshchilov\", \"submodule\", \"bregman\", \"rja\", \"wormhole\", \"viapoint\", \"vkr\", \"direction\", \"kernels\", \"error\", \"clstm\", \"rank\", \"distribution\", \"word\", \"ii\", \"standard\", \"bdc\", \"size\", \"view\", \"set\", \"input\", \"data\", \"method\", \"power\", \"fig\", \"smaller\", \"layer\", \"model\", \"based\", \"complexity\", \"accuracy\", \"new\", \"function\", \"different\", \"also\", \"figure\", \"results\", \"algorithm\", \"step\", \"matrix\", \"network\", \"learning\", \"one\", \"problem\", \"number\", \"networks\", \"two\", \"models\", \"using\", \"given\", \"log\", \"first\", \"time\", \"training\", \"used\", \"neural\", \"dlda\", \"tapplied\", \"impared\", \"malach\", \"neuroscl\", \"kalanit\", \"jaqueline\", \"kiorpes\", \"patchy\", \"malacht\", \"macaques\", \"mouncastle\", \"klingenstein\", \"yoshita\", \"wonders\", \"betiijmn\", \"piing\", \"shlttlng\", \"spector\", \"fourieranalysis\", \"bubel\", \"tso\", \"obennayer\", \"blasdel\", \"macilwain\", \"ersue\", \"kalanitedelman\", \"nunber\", \"edelmant\", \"orientatiqn\", \"wavelengths\", \"ocular\", \"grill\", \"immature\", \"dominance\", \"pdmm\", \"skills\", \"mtb\", \"orientation\", \"stb\", \"density\", \"space\", \"eq\", \"matching\", \"distributions\", \"language\", \"nonlinear\", \"two\", \"mixture\", \"cell\", \"set\", \"given\", \"vector\", \"based\", \"tasks\", \"using\", \"used\", \"obtained\", \"however\", \"systems\", \"mean\", \"gaussian\", \"problem\", \"learning\", \"time\", \"test\", \"optimal\", \"model\", \"algorithm\", \"first\", \"error\", \"information\", \"random\", \"probability\", \"results\", \"function\", \"et\", \"input\", \"one\", \"neural\", \"training\", \"methods\", \"data\", \"matrix\", \"number\", \"network\", \"models\", \"distribution\", \"figure\", \"linear\", \"ohem\", \"trous\", \"googlenets\", \"daijifeng\", \"shepherds\", \"cocos\", \"mvcm\", \"ggap\", \"fcn\", \"lhtml\", \"lcls\", \"redmon\", \"gidaris\", \"grafts\", \"vibert\", \"sppnet\", \"txywh\", \"zijc\", \"sumida\", \"jqk\", \"tfllr\", \"clda\", \"jifeng\", \"djamgoz\", \"algorithme\", \"backbones\", \"retroact\", \"lnhibition\", \"witkovsky\", \"adaptivestream\", \"resnet\", \"roi\", \"hrns\", \"reddit\", \"secretary\", \"trainval\", \"lowrankhawkes\", \"coevolving\", \"iptv\", \"dude\", \"coco\", \"routing\", \"object\", \"kernel\", \"retina\", \"velocity\", \"dnn\", \"model\", \"strategy\", \"pattern\", \"learning\", \"networks\", \"used\", \"image\", \"space\", \"weights\", \"information\", \"layer\", \"kernels\", \"first\", \"algorithm\", \"network\", \"set\", \"temporal\", \"deep\", \"also\", \"based\", \"distribution\", \"neural\", \"state\", \"figure\", \"system\", \"using\", \"time\", \"input\", \"problem\", \"different\", \"number\", \"two\", \"function\", \"one\", \"data\", \"method\", \"given\", \"training\"], \"Freq\": [86484.0, 77512.0, 56943.0, 91816.0, 63787.0, 53417.0, 49269.0, 43201.0, 50803.0, 39120.0, 40455.0, 49859.0, 36020.0, 34842.0, 57456.0, 34393.0, 36445.0, 18521.0, 36480.0, 45420.0, 62298.0, 33187.0, 38995.0, 68337.0, 44796.0, 16098.0, 57307.0, 31464.0, 34082.0, 37976.0, 4.454879433533642, 2.7936946113147423, 3.870876549407093, 29.523466163771026, 23.04090040313847, 2.6701380048610526, 8.982234579253408, 12.999227063345252, 3.657369976729644, 3.6097644651869305, 16.242809817157113, 6.828766564839223, 1.6456382658308073, 6.456823895835512, 9.221205294079581, 3.4865820968761736, 3.474397771856713, 6.553422432270857, 3.450238926155086, 3.4896912156727486, 4.924958562509378, 4.962209143863586, 3.3716161943618665, 3.3404070430138093, 6.627643122601763, 9.252340477712394, 19.72380308945202, 3.3261942427699447, 3.3816832279040447, 3.3855152505050063, 47.22695082549215, 7.986475147216833, 14.156284509850368, 10.40229702355396, 22.207030727292395, 24.244804435929506, 67.91914694217749, 127.50688720792618, 184.4085248161022, 3755.5838954730953, 3033.136185368064, 1973.0862810171202, 205.61609057629985, 23.27754649690634, 13467.97443687972, 1428.5017195534797, 853.4944006933035, 48.51725574903977, 8345.526117867168, 5383.132994126355, 2252.7109148177615, 3376.833433738925, 2246.917143020843, 591.0796047714822, 2205.9994832210496, 5056.860564061838, 6574.125688898242, 1742.559122222278, 2682.9067419243434, 10661.731720172644, 15128.41962374205, 6271.402273994877, 7312.022424696734, 12203.623718816647, 15708.847067997933, 4560.1972094494695, 4284.32818657524, 4487.921549961036, 11188.996067427943, 6320.994471477637, 4969.461094850854, 2359.9008317546604, 9999.485005936516, 5091.858870832656, 5804.247411620996, 5360.6888685494905, 4509.970911216501, 7628.6521308306865, 3716.7145331454994, 6855.366829096283, 6580.425023704484, 4530.297894901351, 10666.20871925271, 6540.178772980566, 7435.618572256194, 5783.335039188507, 6199.345677731872, 5886.183815665221, 7339.648606315709, 7509.4513263932295, 6729.139107109005, 6653.756579202367, 5658.577124446382, 5943.082813533373, 5546.843616587754, 3.2948186555252663, 3.302790679986931, 6.714619276125356, 3.204464930631903, 4.470783293124052, 3.4072481921088977, 3.162925776850692, 3.830065577363231, 3.089215600898136, 3.0147409314056617, 2.9611116324367868, 2.9166174912644007, 2.862392064764778, 14.98430018470898, 71.61863734281174, 3.280290578239191, 6.409314422343169, 4.967337276029975, 2.8549280312173773, 2.6631034104884157, 2.6569425259948054, 3.045789513515877, 3.024979436210695, 2.5681004308607442, 3.140212565778631, 2.5400610295535904, 4.119424839349152, 23.07579855506607, 7.158329475246078, 2.507037377225843, 3.431023864056692, 4.651770002912243, 70.07726407904399, 34.87272382693988, 192.9467151865542, 69.4363238038621, 110.34328539943934, 11.929081596102256, 26.327596127354845, 4350.550152088478, 16.759779730587482, 87.97409642034125, 3035.7733783585286, 8331.67342590428, 6479.189881727895, 3755.903915131955, 2030.0578016620523, 3585.613400319594, 2563.6560372520403, 3813.165089163729, 7665.348225273137, 1778.8490569414623, 1785.060046233678, 2676.5192908467843, 5966.199293885234, 3873.497197487839, 3901.4717302452605, 2709.9918821700335, 2671.804271153568, 7721.537435874764, 9080.49320355114, 4780.818262068264, 1748.8834528312866, 8111.779521505136, 7435.528587270598, 4036.7148865287722, 3190.64661809695, 9974.355083958493, 3422.274848784326, 5055.065926052124, 4104.712283831835, 4285.548643738131, 5658.234943736624, 3557.456388894255, 5706.898291700802, 5278.783587992632, 5200.938662229569, 4890.243451669743, 7234.569806983937, 4294.920621730226, 4334.539426368336, 4062.8207903296616, 4157.5386732675515, 4728.5085005495075, 3842.3873494361974, 3859.4633240034696, 3.3992880313520883, 2.419167743942901, 3.3175052752714516, 5.482550071359433, 1.890381709536512, 1.8755135024144667, 6.00751927247235, 1.9958446752081973, 10.46822781610464, 1.9865554733661426, 1.2985619415038492, 13.903857645520613, 29.584511743581977, 2.6027988613459567, 2.5885390548611413, 1.0194914255473688, 2.5612743277129026, 9.354765912978992, 11.808115299483825, 29.189559758083874, 2.9567269345804226, 2.4842226244748282, 0.9786218509101688, 5.007031369364213, 2.4663739207099256, 3.0342091836215572, 11.129224736029093, 1.1634102624831046, 0.757961795005217, 3.1312788864177508, 20.818559585346346, 30.636943160249945, 14.92923684681222, 36.16476585592869, 35.48516082637352, 27.137396797409828, 6.30875051980868, 39.98334494503185, 11.210127739075611, 115.38581820558557, 5217.883511136212, 439.83700662609783, 2290.440384903856, 9557.460591586136, 2232.4652967291745, 585.733945789163, 2888.00445124372, 62.98662456510191, 6417.677043469737, 2782.2459677684287, 2609.8178585792452, 11493.265670172244, 4006.1224857678226, 5871.354961148171, 1291.503461259066, 8044.971016620329, 5207.987622461539, 903.7190728028479, 557.0032560733832, 3007.6156189205103, 5053.270911581897, 1944.826424192685, 2810.2186714103045, 6195.071221402874, 1942.1093933987363, 2022.7722931808173, 1837.5971094213733, 3614.4613463621363, 3081.291143830311, 4528.828200386052, 2800.0726068702206, 1916.1640307332264, 7402.745585986164, 2837.6514397666597, 4384.285048042614, 7536.592598874223, 5997.044251896454, 5940.197587520006, 3829.104829155274, 5503.941576392198, 7781.297744035774, 5146.842925017759, 4942.219346371157, 5330.131552660405, 4421.767749449071, 3845.9229650802104, 3259.87381330006, 3653.096065705341, 3522.955477485818, 3691.9363075443703, 3698.0157955660247, 3622.3222893381117, 3.997146277897095, 2.817774678823987, 5.046934201960424, 2.699827443590617, 3.1450463638823156, 2.6904600121882734, 18.086892742092953, 2.675357135881327, 9.975900194030999, 2.6445693365501524, 13.93203502575332, 33.30345767991233, 5.543120413852953, 5.167440719831626, 2.7491894248759565, 2.566322444187921, 2.562989533818718, 2.5858230692277986, 2.5602716303412647, 3.931953674634488, 2.5172258297617804, 2.5322365673991953, 2.5203611663579033, 2.5349215107021825, 2.4775535779484263, 2.4798669701937914, 2.456055304152675, 4.550418013775793, 2.4510734486915564, 2.4757282210136276, 43.376650316209336, 21.816114750890648, 45.219282876998044, 12.543396657160569, 65.50950934734321, 54.97118872173444, 28.01213914072799, 49.1847214670584, 88.25612278359662, 179.29253816034242, 58.92833932610623, 8207.148068062676, 3373.1385977334967, 3789.1534341024776, 1271.4637318343946, 5156.952252968088, 1669.448609668104, 7005.74429130591, 49.38923036048432, 6240.2302162662245, 2847.117608979834, 3084.24734288695, 5006.449815942785, 1943.4975743434163, 11031.97012059745, 6429.066366950573, 2508.552039238324, 3737.970478087354, 3700.9101058593333, 5172.574464765825, 9821.39291602525, 5016.192028499849, 8001.783408652424, 6820.736986255874, 6728.3552983619, 5453.404547866206, 2536.3946851764276, 3186.958629603534, 8250.297466965078, 3922.878063627731, 1667.4034008786648, 3617.3236787172423, 4334.435054378399, 4597.758226948497, 3910.1227877326774, 4421.490569846881, 5461.800930579455, 4769.833062205547, 3897.6532465864525, 3793.571008380351, 4944.512877884139, 3936.306829749556, 4424.305728311857, 3877.056181866481, 3754.29341120873, 5.071650827188529, 1.5739731424633014, 9.061630694262899, 5.948989741341629, 43.488754657849846, 15.069100891174337, 4.57149989435127, 24.97452425802172, 5.140193220527088, 8.48573320816191, 1.449974567373648, 1.6306961818575927, 6.282492527304792, 16.341993315860147, 8.288988169854317, 13.706304360496782, 1.5972580231510494, 6.155231933305676, 37.94068462022384, 1.3958736070514342, 5.250526661711271, 13.1007218512181, 2.804925510056467, 45.82267179761715, 5.996154423531066, 14.744493641008875, 3.8026315267510813, 4.567652814166058, 19.973823039722845, 1.0009687797201667, 2.1657322071383676, 10.78125395768609, 42.696765115101705, 33.11774975935754, 7.347367299035856, 17.850370206614155, 71.2216368969008, 9.506400042987085, 30.35620398499881, 744.9260692763338, 1925.5648027222403, 1093.2760279715305, 1826.2598555078007, 262.41269390864966, 5726.002696075302, 1940.7528669409523, 6699.504845734575, 2008.2034544582511, 823.2017481184118, 2604.808066193926, 1509.1143871872546, 219.14023593937168, 2661.619389009365, 3058.369039368544, 3545.6294944028814, 2826.228631008729, 5584.5546329048875, 9622.259882571889, 8689.794651842152, 6695.689637529728, 3208.6571540645264, 4491.319180095511, 4238.492868291896, 2796.8617382947555, 2449.131646161301, 4054.281632110046, 2277.3221225698276, 3179.240732983604, 3302.5343637424835, 3945.63049155856, 7123.220786960439, 4247.430452601611, 6500.033538708216, 4661.573322471058, 3294.7907940636846, 2902.4272615853015, 5591.442885785216, 5269.041410015898, 4939.470131649517, 7487.113318685473, 4229.317928808264, 4955.005275424312, 3898.9850565531774, 5472.394217061327, 3550.7812065404814, 3471.2001694887113, 4454.075372099414, 3508.4870290653107, 3407.496783918563, 3398.564152445543, 3325.5890565824916, 8.348679849700064, 4.121400860631454, 8.835124924568284, 4.295847945546131, 10.16469228680037, 10.271231623276654, 6.66884541695929, 2.7020576788874986, 2.4503065744524197, 3.393124730146353, 8.725726196380908, 4.5202709290660765, 4.54940475093854, 6.616520932641343, 10.676453986759498, 2.408260439385326, 2.326481696213069, 37.2249327933353, 1.684774736602576, 6.351506927504144, 1.666586256713967, 1.106019971012098, 3.0851083625153795, 6.054715670688003, 2.454749920522355, 0.7282335341029409, 2.5215349124680104, 2.3158471500546054, 8.321824145451274, 1.0857227949128103, 6.330014510944944, 50.69365781170351, 47.73408221447022, 20.185840024533817, 5.502553668715697, 30.436411525994053, 30.40650500925508, 35.57838033385561, 30.40872072230242, 38.60143751224523, 16.71097090879094, 12850.528602854438, 91.07360892124785, 60.007275785295114, 46.08822251590534, 2695.8545419955144, 1183.5262542820208, 457.6534095748676, 198.30537535772544, 99.56525905767758, 1063.7684337361159, 264.84845491146234, 10014.999638873087, 847.8070676243584, 6749.610765905896, 6794.8643545591685, 3459.908150057625, 4018.5164466006604, 5951.597221265409, 4115.396261444962, 4432.429504173786, 2347.7945853237834, 3240.751310635994, 9524.232235133119, 5640.188456723955, 4712.017802217775, 1267.6414079639967, 1670.9871634649453, 1387.0298158556088, 1632.2670450696644, 6636.029837271164, 5402.06735737714, 3337.9632019673904, 2693.187160050524, 2813.5546550766553, 1699.263925093097, 2577.0187273285087, 5764.967004503531, 3694.4029741653617, 5324.008201814955, 4316.114419295038, 3143.435667839981, 3471.4525647554788, 5939.8485346527905, 3320.980989918154, 3619.1767002893025, 3862.4336766354486, 4139.729749414462, 3835.1003712322545, 3605.366985447049, 3897.2851937064743, 4350.791820586343, 3460.0829838405602, 3403.1532268994183, 0.9471588855775535, 3.484790028533846, 3.121665735112807, 11.83367406066408, 3.893502514217475, 31.098475871654436, 1.8766194496858088, 21.452744432464378, 19.9950868453999, 3.2970508776911664, 3.0682648052014367, 2.347682256094182, 3.3256807549684226, 0.8236181351789995, 32.15212757987663, 0.9564255269598962, 1.685399156628547, 3.00920157698523, 1.7392428083400144, 1.3922916831583751, 10.074845987773749, 0.9442922786158059, 4.6836926827943, 2.012914594459299, 3.2289721508814804, 1.4448469676886841, 1.7058424868095203, 1.6281580992239628, 0.7958718317869454, 1.9940534438155064, 4.40486582533753, 43.11320031132527, 68.7024274054163, 12.986484768022438, 20.45573760966619, 12.193249100824367, 2.967467935731513, 11.487357970824663, 6.837578712775328, 38.8746312110879, 48.78259071223231, 53.4873278385778, 21.702106718450644, 206.27171029476477, 100.55510997930335, 248.24864527380572, 1248.7474546335334, 931.4428284648366, 4085.2642318635126, 5617.915843694866, 5386.19597469961, 1003.7097104481009, 2360.223314920023, 1954.4353818709963, 4203.138860122966, 7403.111205808013, 4588.779035015953, 3445.1069133284864, 4832.478482082649, 4458.740754709807, 3624.639758995247, 1619.2324334912355, 3086.6134103400295, 2377.0574680089276, 4366.84189094321, 2572.666289856124, 3881.244077236322, 6831.238494276785, 1314.8855348055624, 3225.8425343169115, 3294.0535664331273, 5642.35200580036, 2063.4261843456293, 2957.628153517868, 1662.0810531049412, 3461.7285471324417, 2852.7812035871593, 3252.9632225250825, 4631.766188758136, 4361.930698818943, 2728.560262626693, 2336.4372922486673, 3840.7395973030034, 3605.23540806764, 2562.150824696313, 2361.26895356399, 7.633476758570053, 6.880385060536793, 2.0020851242472375, 3.3646910820440037, 4.298135354778228, 3.2007629186098807, 2.5642538833371664, 2.7159618701216686, 6.514240791670344, 0.6617475315572616, 126.79759479357632, 2.9079501284122795, 1.6951082751778286, 1.6365185762395342, 4.637609132386657, 1.7736006921222227, 1.635955181191083, 17.926639697389795, 1.6606811390537208, 1.829361955170027, 3.0026979120620516, 1.8362447256082124, 1.6259771240870318, 1.6508847592711189, 2.2218052861039763, 1.6408740132726707, 1.629541906626607, 1.1580754525942094, 1.6540623542288528, 0.6214653716488872, 6.224670843984632, 7.003256754016178, 7.379309274220157, 23.272759127114945, 17.691961045363154, 6.196523491919993, 11.284858560900057, 5.918744988452209, 13.916197348679555, 191.32912932182333, 25.91330706668965, 3.1594108160245415, 5.397900201265589, 4.452996322173688, 958.5458137514275, 664.1005396467039, 3970.723100940276, 15.382812335776913, 1156.6072195719569, 3535.2306038029387, 914.6467467124904, 1299.7804053546486, 1548.751360906843, 51.88061670786162, 2072.2064253354188, 659.1402710704849, 5380.796183977195, 3493.996408366639, 6290.692504498892, 2798.7071690094085, 706.8666445087259, 1278.138033877906, 583.7109686686076, 1785.621472246346, 6707.842896770294, 3070.729313934518, 1366.0559254785712, 1038.786688028063, 2064.6771711909573, 4872.150510852494, 2740.5943643141973, 3277.3526491531065, 3958.8641722580323, 3386.7928879871824, 5130.408008831795, 1715.635736040503, 2787.6470683466723, 4283.366517499071, 6051.723702584601, 4183.247628122668, 3343.745793035494, 3469.7859181634117, 2900.6149530525345, 3722.00512982097, 2996.2009268391143, 3861.1777742131494, 2818.992599735152, 2547.1766297880326, 2582.406412411264, 3316.59737607605, 2971.8938838001404, 2805.9299612525633, 2811.6540507773175, 17.962670720907578, 2.1531661459559253, 2.14265711781491, 40.99388607449454, 2.1411884874896376, 9.696824459883855, 2.031701001499384, 12.333235697326339, 18.888963789412948, 1.9920379115335893, 14.415432731369952, 3.6738685180912247, 1.9722647794146493, 1.9304922800771538, 2.137476752832486, 1.9317627598682259, 1.916657243604774, 1.9133253184531382, 15.725303942234659, 1.8843311366654836, 3.4063592542109875, 2.0187052722770122, 6.114491417409648, 25.59977199259624, 3.3937148834009108, 0.8529717687555308, 1.8103100785011927, 1.815528084531727, 1.8114766992130305, 1.8286541096898659, 15.711848841157588, 168.05332618847348, 13.934912398563334, 7.101946782951732, 148.1452069765198, 14.66392004752615, 137.1169871725213, 39.484348616321846, 448.8919504062853, 28.433402179770564, 987.9549929241134, 2715.9255913939564, 1113.1317783758004, 561.8721943192529, 1204.7123205244802, 517.9764014765647, 838.7350537063526, 4308.965471306527, 870.1699082456836, 798.5820026803938, 5144.502561707784, 3282.1461521034485, 2239.6295802253735, 3015.965772821294, 1017.3689718511359, 4563.672242768192, 3384.6604221846105, 1230.0113911503706, 2094.452939166006, 1805.9154994786165, 1629.713167863809, 1827.2884521796852, 3408.251935743513, 6161.642458448845, 3966.303139179174, 1680.2111451535602, 2054.8094094526905, 5379.96753956784, 4452.8968306757915, 2623.3838877254625, 2742.914687170701, 2732.17793547243, 2078.643147058767, 2213.4840790014273, 2922.250719883305, 3893.1148661664947, 1878.521223013286, 2784.807974239677, 3610.254157794361, 3231.9329395397262, 2997.44459253725, 2175.53031661667, 4159.808827462456, 2335.8021952896693, 2711.762019134438, 3000.8045326998636, 2451.562343654627, 2310.1457829614014, 2448.0278577975623, 2232.1633043529732, 7.284910141512454, 14.033036739988999, 1.932425958365706, 3.4618248033539105, 4.831074575292462, 1.756664479848655, 1.7465833766302599, 4.653749846370523, 151.59053084289638, 1.6951813161486087, 3.4010782588302955, 1.7752561609338873, 1.592952285884817, 4.37909964784906, 8.076974275907578, 1.6490211630034923, 1.510644402384243, 2.81218291644773, 1.6143958693690592, 3.781959448109401, 1.0711225806863558, 5.075734730946218, 1.577018549722109, 2.7123531389350273, 1.4512973603133397, 3.386839831850172, 1.4467122943482227, 1.4379622597621642, 2.6463698658504735, 1.0316036523742145, 165.06502233157863, 175.02893133788794, 20.173049313238096, 15.724664552949529, 6.16690225579337, 17.305483337525608, 14.985284349300233, 15.1623106821045, 11.5268861691323, 110.12054518735793, 43.52597732292741, 118.80429243222197, 1367.2361515334385, 1782.8331574715276, 189.1020537738564, 309.4692040104543, 102.14477306449598, 7390.68438596407, 612.8355889207728, 1191.7406450666604, 7552.005175241323, 3306.5355199571877, 3590.060672037118, 2468.2606520555287, 2558.7736386588545, 1759.5946162843343, 3150.796081602731, 1755.4555731072426, 560.4914213656439, 2940.3108180173135, 5339.321506229914, 4467.108024690573, 4891.521504466666, 768.1097463470214, 813.3544971449331, 3152.5584672732675, 2867.549719289282, 2814.7157756905935, 3824.1582167140696, 2711.3739143438115, 3739.4240571181303, 1991.9978313071147, 4197.538270133331, 3951.5901401652313, 2975.1585287196076, 3213.9639335564398, 2453.6984322422118, 3171.689657417149, 3440.2331423992287, 3956.651285545499, 3705.8528702107296, 4345.754677751157, 2375.681994899833, 2639.026959834104, 2828.8855686043526], \"Total\": [86484.0, 77512.0, 56943.0, 91816.0, 63787.0, 53417.0, 49269.0, 43201.0, 50803.0, 39120.0, 40455.0, 49859.0, 36020.0, 34842.0, 57456.0, 34393.0, 36445.0, 18521.0, 36480.0, 45420.0, 62298.0, 33187.0, 38995.0, 68337.0, 44796.0, 16098.0, 57307.0, 31464.0, 34082.0, 37976.0, 8.551018804896895, 5.827802400120126, 8.084907527400237, 62.555136819668625, 49.62168191478209, 5.781596079888205, 19.488165124319423, 28.42285879622778, 8.01046452450634, 8.001315266598876, 36.48633064952044, 15.429618190325987, 3.7262216480900854, 14.659831501626432, 21.018366931559658, 7.965380264185243, 7.9985587837901395, 15.104359142403666, 7.967418893619715, 8.071365456612432, 11.415271521997967, 11.547914831459668, 7.909537339643958, 7.877475771497072, 15.723602463144648, 21.964700610675603, 46.938796093324505, 7.920476021514946, 8.060028519674614, 8.085332891695975, 116.27171841565374, 19.308298468217302, 34.78309203282848, 25.39545656328427, 56.557235877850985, 62.60195913721931, 185.8728579797755, 369.81667868534396, 556.8903266627549, 14400.786510164578, 11822.067522012307, 7424.768886768989, 648.7281446539736, 61.118202779217285, 62298.75096321036, 5428.835171089286, 3159.223979234678, 136.02802382583394, 39778.56186087111, 24973.62433136605, 9501.840246435597, 15001.521124579009, 9583.494664583395, 2177.0570256978986, 9458.406844562456, 24049.829869636884, 32511.68867225974, 7334.476100232905, 12157.595869390592, 57456.90989510958, 86484.5456403422, 31822.77745250446, 37976.426565776, 68337.39409106923, 91816.39332709626, 22247.257410860824, 20912.91023221935, 22115.643864629965, 63787.19240111025, 33071.379292247875, 25048.16700919812, 10649.318004482577, 57307.35366770301, 26218.813487655418, 30760.47065850219, 28068.16752937579, 22924.580503451954, 44796.50619735593, 18444.374337181613, 40455.48843015342, 38995.4311753399, 24011.084371339475, 77512.52325885261, 40842.60646069203, 50803.40593076089, 34393.66483361595, 39120.35195105119, 36020.28087285886, 53417.65529180533, 56943.22051366781, 49859.45992781909, 49269.842813775664, 36480.74469846731, 45420.729355101736, 43201.02838645206, 7.299754187927424, 7.361229360210079, 15.168139650046685, 7.321729964940617, 10.378799430340711, 7.914907785979416, 7.402274694212643, 9.065629648429157, 7.3362230142993905, 7.365747087014671, 7.255049768594902, 7.292802798806183, 7.245863571348889, 38.53793877514819, 184.26831060430547, 8.655467211796845, 17.207006141970734, 13.560474347141046, 7.79496320121862, 7.290001583569739, 7.384229776157047, 8.471898111352038, 8.538319580045815, 7.28913994968521, 8.981085113848692, 7.282374665530004, 11.823400646570548, 66.79400171267163, 20.953086648033842, 7.356898569209053, 10.085745494202612, 13.791728400102565, 231.72220354452088, 112.51050676914849, 694.3938681044386, 236.04071450176582, 390.357836967541, 36.85094427674284, 86.8402082484829, 23876.495918321903, 54.1434215027549, 344.24360335325616, 18253.296358074866, 56943.22051366781, 43201.02838645206, 24011.084371339475, 11996.241065844695, 23152.14914074863, 16098.561380159474, 25409.94558708998, 57307.35366770301, 10758.218361444107, 10890.107065195716, 17571.71176693493, 44796.50619735593, 27245.643476962177, 27838.210525240964, 18339.846924329493, 18142.182277570475, 63787.19240111025, 77512.52325885261, 36445.5757112674, 11178.735547559518, 68337.39409106923, 62298.75096321036, 30760.47065850219, 23236.0855482273, 91816.39332709626, 25344.188337450014, 40842.60646069203, 31822.77745250446, 34393.66483361595, 50803.40593076089, 27649.02040053442, 53417.65529180533, 49269.842813775664, 49859.45992781909, 45420.729355101736, 86484.5456403422, 37976.426565776, 38995.4311753399, 34842.28046983934, 39120.35195105119, 57456.90989510958, 33187.375418043855, 39778.56186087111, 7.150806670130307, 5.328211563179183, 7.670211284743205, 13.59433187490941, 4.704362067550305, 4.679134979819361, 15.346564359027273, 5.258084784053253, 27.689637216807302, 5.3070484232244475, 3.519980740495199, 37.719998070727335, 80.79927860620633, 7.3101169140159605, 7.295974256569387, 2.877236823923242, 7.271381362477112, 27.039099581548083, 34.596505167024745, 85.56570666141215, 8.667887184846888, 7.300043596060173, 2.8930873192759226, 14.81289350380493, 7.299106239534728, 9.064810603929502, 33.264483807734045, 3.481310258526802, 2.2756878952693937, 9.404929974766668, 63.279944749688134, 95.30400600798048, 45.89792207251534, 114.0854280440766, 113.88935568339173, 87.93991488695374, 19.649036334363544, 140.94007047689547, 36.43982460634645, 453.5132324885225, 28996.31588779091, 1998.3355785449517, 12513.51528063877, 62298.75096321036, 12673.723677200123, 2893.418445217991, 17702.189417804057, 249.27063195189623, 45420.729355101736, 17854.662603339166, 16710.75919986291, 91816.39332709626, 27391.093483597037, 43201.02838645206, 7621.015307327646, 63787.19240111025, 38995.4311753399, 5105.934478579299, 2957.9565993690176, 21209.12236585397, 39120.35195105119, 12855.848873602721, 19836.14216317481, 50803.40593076089, 13007.145246677535, 13705.019961543052, 12323.29103008518, 27649.02040053442, 22868.712731738397, 36480.74469846731, 20503.71642124014, 13040.200639085415, 68337.39409106923, 21131.26340325877, 36445.5757112674, 77512.52325885261, 57456.90989510958, 56943.22051366781, 32511.68867225974, 53417.65529180533, 86484.5456403422, 49269.842813775664, 49859.45992781909, 57307.35366770301, 44796.50619735593, 34842.28046983934, 26412.11569959713, 34082.19105946853, 33187.375418043855, 37976.426565776, 40842.60646069203, 40455.48843015342, 6.828699202064603, 6.8114069631537015, 12.585969779519356, 6.7971255324906386, 7.948262900508194, 6.844745519638647, 46.18084515811211, 6.834593332801925, 25.62512442445907, 6.818624405439518, 36.14029688349126, 86.60343028471289, 14.46409261516856, 13.62142817644933, 7.251666869404695, 6.787639437789711, 6.820450531524403, 6.889150841099122, 6.834192554324081, 10.52535346368054, 6.796048577449824, 6.867587802116671, 6.8679540986752485, 6.924190341064824, 6.840002697852608, 6.860585641308588, 6.806237421687405, 12.626685332322516, 6.809174088094037, 6.890885392766931, 123.96213077768498, 63.81805831414936, 137.26827073195804, 36.83086153258177, 213.98651471558114, 184.74555402934482, 91.72372401832594, 169.32724230319624, 320.0632432671939, 702.7409100331746, 213.77163812573164, 53417.65529180533, 20135.50095709442, 22955.802514243464, 6827.330290535039, 33071.379292247875, 9577.860558370225, 49269.842813775664, 182.4464370979089, 44796.50619735593, 18521.34904814196, 20602.231453811888, 36020.28087285886, 12399.871595024128, 91816.39332709626, 49859.45992781909, 16710.75919986291, 27192.45573223999, 27245.643476962177, 40455.48843015342, 86484.5456403422, 39120.35195105119, 68337.39409106923, 56943.22051366781, 57307.35366770301, 45420.729355101736, 17946.93105624442, 24141.966852420403, 77512.52325885261, 31464.891254113987, 10961.375519208386, 28996.31588779091, 36480.74469846731, 40842.60646069203, 33187.375418043855, 39778.56186087111, 57456.90989510958, 50803.40593076089, 36445.5757112674, 34842.28046983934, 63787.19240111025, 38995.4311753399, 62298.75096321036, 37976.426565776, 43201.02838645206, 11.915281485438477, 4.034579782430924, 24.250692701283295, 16.241096544001486, 125.70778999527936, 43.68886912921438, 13.658513979884912, 75.95826633338315, 15.707986377375818, 26.763734317829517, 4.675398327353569, 5.258363116847903, 20.267720828631433, 53.047330707355165, 26.942419316392183, 44.63977657607765, 5.254769064107618, 20.336463312362113, 126.62601663280682, 4.694735728635673, 17.687106998886964, 44.58529558483566, 9.559161093598117, 156.17776268484204, 20.438295802983703, 50.4227643768484, 13.055633466459323, 15.683488798650428, 68.68385010043338, 3.443182984755942, 7.463926037182359, 37.97458860057822, 155.73895315818183, 119.90786888053537, 25.69465525594287, 64.73436999407373, 277.8064995847738, 33.80672234078552, 120.09593328932246, 3830.406577432156, 11381.227555756412, 6265.76787445158, 11281.902842199392, 1315.9333322817076, 40842.60646069203, 12342.520622302276, 49859.45992781909, 13141.838379064928, 4813.090756602176, 18065.72407615635, 9767.127731800989, 1100.822524481592, 18937.471857513992, 22247.257410860824, 26412.11569959713, 20595.988236823527, 45420.729355101736, 86484.5456403422, 77512.52325885261, 57456.90989510958, 24505.85087986484, 36445.5757112674, 34393.66483361595, 21189.805902857046, 18139.085647049968, 33187.375418043855, 16710.75919986291, 24973.62433136605, 26218.813487655418, 32511.68867225974, 68337.39409106923, 36480.74469846731, 62298.75096321036, 43201.02838645206, 27391.093483597037, 23152.14914074863, 57307.35366770301, 53417.65529180533, 49269.842813775664, 91816.39332709626, 39778.56186087111, 50803.40593076089, 36020.28087285886, 63787.19240111025, 31822.77745250446, 31464.891254113987, 56943.22051366781, 34082.19105946853, 38995.4311753399, 44796.50619735593, 40455.48843015342, 18.83644217078217, 9.361316180278996, 21.09677472703799, 10.473263098510925, 24.80119763485349, 25.629695507243774, 17.957791419181383, 7.352756823051295, 6.854417632945094, 9.583201216002797, 25.01337296779817, 13.465389286078107, 13.5537097608197, 19.735259139520632, 32.24768553837883, 7.280825444696206, 7.096701511604591, 114.07442240657033, 5.170052651296688, 19.508482386284378, 5.131325343351875, 3.4207320756998136, 9.553908602090674, 18.786083482179578, 7.633290476197147, 2.2659829812750356, 7.87527250562808, 7.288760061666864, 26.266746496579522, 3.4273141629801405, 20.225456034287298, 169.2381693671877, 161.79969955855316, 66.92847085385168, 17.70162848543902, 105.2673726512269, 105.94947143160273, 126.78692019538302, 108.11564620216265, 140.11326623156387, 58.038328738458674, 77512.52325885261, 362.5896897745156, 232.94157469741262, 176.99395800163646, 17855.634390157713, 7166.479293549749, 2436.4448145198494, 952.3303529988225, 435.8098767598165, 6439.465036123087, 1337.2937967956382, 86484.5456403422, 5072.995385635611, 56943.22051366781, 57456.90989510958, 26218.813487655418, 31464.891254113987, 50803.40593076089, 33187.375418043855, 36445.5757112674, 17261.691342608407, 25344.188337450014, 91816.39332709626, 49269.842813775664, 40455.48843015342, 8517.380946142364, 11963.23590540422, 9612.48870723243, 11712.639220163814, 63787.19240111025, 49859.45992781909, 27838.210525240964, 21716.68918646364, 23152.14914074863, 12550.763503729519, 21158.812344483358, 57307.35366770301, 33071.379292247875, 53417.65529180533, 40842.60646069203, 27245.643476962177, 31822.77745250446, 68337.39409106923, 30760.47065850219, 34842.28046983934, 39120.35195105119, 44796.50619735593, 39778.56186087111, 37976.426565776, 45420.729355101736, 62298.75096321036, 43201.02838645206, 38995.4311753399, 3.215906622579481, 11.947019830542365, 10.980599739548511, 42.34179500497173, 14.487765313969874, 115.90802883473842, 7.061038380456245, 81.07655405921197, 75.90842522628915, 12.579567690862373, 11.788592856698116, 9.178849701213148, 13.017399902206582, 3.230501016584954, 126.16025283344754, 3.7795635100659126, 6.690795605943657, 11.947662266547242, 6.945473811172966, 5.563986779157488, 40.403546387729534, 3.790611031109324, 18.890678714903167, 8.146402710139856, 13.102174434419942, 5.866834680631215, 6.950344181967405, 6.642732242396631, 3.256626932163164, 8.221941620432213, 18.33147232717245, 184.82565713410716, 298.26966008497385, 55.45513784459179, 90.50705859473702, 54.57622883932907, 12.376664794603132, 52.189626481130055, 30.221318337226084, 192.71232802987734, 246.27404627314846, 276.25590917248974, 105.10825114561253, 1267.0655833017636, 582.4582779150863, 1656.315341874426, 10291.673167529158, 7407.76651648647, 39778.56186087111, 57456.90989510958, 56943.22051366781, 8470.03361782912, 22514.860837382254, 18521.34904814196, 44796.50619735593, 86484.5456403422, 49859.45992781909, 36020.28087285886, 53417.65529180533, 49269.842813775664, 38995.4311753399, 15219.121068437307, 33187.375418043855, 24505.85087986484, 50803.40593076089, 27391.093483597037, 45420.729355101736, 91816.39332709626, 12489.949559448052, 37976.426565776, 39120.35195105119, 77512.52325885261, 22115.643864629965, 34842.28046983934, 17028.287354632368, 43201.02838645206, 34082.19105946853, 40455.48843015342, 68337.39409106923, 63787.19240111025, 34393.66483361595, 27192.45573223999, 62298.75096321036, 57307.35366770301, 36480.74469846731, 31464.891254113987, 22.891037013330767, 23.46007474085848, 6.853938594028681, 12.457698392967048, 16.422766954988308, 12.31089414838178, 9.862860012694558, 10.898791614647646, 26.190454918856304, 2.689311556938241, 519.465679453136, 11.916344174574194, 6.947838285756001, 6.712475175681485, 19.081282605954936, 7.317463415070512, 6.760482596722027, 74.36065793518435, 6.907997404062327, 7.639820250557201, 12.586059930328975, 7.704926307162429, 6.830707985155303, 6.949583838274307, 9.358953420592668, 6.931170478239047, 6.888698076244533, 4.898405620897402, 6.999095153126002, 2.6364619798273514, 26.411114811718583, 30.184228038665857, 31.888925100053076, 103.49198995890062, 79.09977159752745, 27.263736846571952, 52.93427526534289, 26.702413506720063, 66.59722109142825, 1122.4764476389084, 130.91141928494037, 13.763424338114437, 24.709314529726274, 20.108716354154584, 7407.76651648647, 4959.103292211493, 36480.74469846731, 79.12202358527698, 9643.239018422095, 34393.66483361595, 7545.06603182923, 11260.342678527304, 14284.235868658227, 306.3640894363111, 20559.932933669774, 5574.318133830392, 63787.19240111025, 39120.35195105119, 77512.52325885261, 30760.47065850219, 6270.500377298256, 12489.949559448052, 5043.7803034615135, 18521.34904814196, 86484.5456403422, 34842.28046983934, 13705.019961543052, 9948.115456150881, 22332.113460281817, 62298.75096321036, 31464.891254113987, 38995.4311753399, 49269.842813775664, 40842.60646069203, 68337.39409106923, 18139.085647049968, 33187.375418043855, 56943.22051366781, 91816.39332709626, 57456.90989510958, 43201.02838645206, 45420.729355101736, 36020.28087285886, 50803.40593076089, 39778.56186087111, 57307.35366770301, 37976.426565776, 32511.68867225974, 34082.19105946853, 53417.65529180533, 44796.50619735593, 40455.48843015342, 49859.45992781909, 52.89767151956992, 6.768486298159223, 6.790929164682348, 130.55529120882764, 6.831935273598896, 31.08579851070498, 6.839261327182626, 41.60341692413202, 64.38070346940874, 6.817197203146844, 49.49141448103257, 12.625195326782652, 6.869414083356125, 6.748504549137784, 7.473907859088536, 6.7782924329914085, 6.779328312599663, 6.768535742773941, 56.38057599025859, 6.815757395162639, 12.534225173253493, 7.428160022943863, 22.542847965142567, 94.76757867983721, 12.606444588011703, 3.1782566522737277, 6.75274505756881, 6.7944096631773565, 6.814638170016397, 6.884988113066608, 59.854467438541924, 716.9204033454938, 58.93466923657154, 28.930195793917754, 736.3487710239449, 64.76101641555948, 802.2182801976907, 201.57170204076075, 3259.814109275507, 145.03594530786938, 8704.238774789457, 28068.16752937579, 10087.843211190444, 4573.985359893849, 11247.46755185359, 4242.520543067878, 7493.499302520186, 50803.40593076089, 7830.649291844618, 7084.533140441732, 63787.19240111025, 37976.426565776, 24141.966852420403, 34842.28046983934, 9583.494664583395, 57307.35366770301, 40455.48843015342, 12157.514339765154, 23386.291581642326, 19504.167269837904, 17261.691342608407, 19890.636438429585, 43201.02838645206, 91816.39332709626, 53417.65529180533, 18463.15793498074, 23876.495918321903, 86484.5456403422, 68337.39409106923, 34082.19105946853, 36480.74469846731, 36445.5757112674, 25409.94558708998, 27838.210525240964, 40842.60646069203, 62298.75096321036, 22247.257410860824, 39120.35195105119, 57456.90989510958, 49859.45992781909, 44796.50619735593, 27649.02040053442, 77512.52325885261, 33187.375418043855, 45420.729355101736, 56943.22051366781, 39778.56186087111, 34393.66483361595, 49269.842813775664, 31822.77745250446, 23.89275676640782, 46.25799986481142, 6.75724528999645, 12.398437887512824, 18.21484904582927, 6.703665397017243, 6.788900777440376, 18.15366430165524, 597.0995435633765, 6.845514909010579, 13.735590627285518, 7.317897340495807, 6.812232174480188, 18.817326298853168, 36.03141041013319, 7.358000004911743, 6.788441772882933, 12.737500672496337, 7.334376217247497, 17.18405541214083, 4.893008627004636, 23.636647360978735, 7.356636755521652, 12.666787793597337, 6.790314473047567, 15.973424270754865, 6.861329518840046, 6.8244803389236965, 12.694332771598585, 4.983906994720184, 822.0715991787149, 879.8842224325049, 98.95520760904951, 78.20442268266588, 30.311172056894822, 89.36937325948648, 77.0622504206867, 79.20710846414418, 59.810011435386684, 680.2342525563245, 258.5925891189894, 783.3266585509359, 11895.554986755209, 16098.561380159474, 1378.115800515585, 2397.2596047252564, 694.3034209616463, 86484.5456403422, 5262.307337014221, 11232.647517805766, 91816.39332709626, 36020.28087285886, 40455.48843015342, 26412.11569959713, 28068.16752937579, 18253.296358074866, 36445.5757112674, 18521.34904814196, 4959.103292211493, 34082.19105946853, 68337.39409106923, 56943.22051366781, 63787.19240111025, 7232.1838769308615, 7770.505691887796, 38995.4311753399, 34842.28046983934, 34393.66483361595, 49859.45992781909, 33071.379292247875, 49269.842813775664, 22955.802514243464, 57307.35366770301, 53417.65529180533, 39120.35195105119, 43201.02838645206, 31464.891254113987, 45420.729355101736, 50803.40593076089, 62298.75096321036, 57456.90989510958, 77512.52325885261, 30760.47065850219, 37976.426565776, 44796.50619735593], \"Category\": [\"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\"], \"logprob\": [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 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, -13.2047, -13.6714, -13.3453, -11.3136, -11.5615, -13.7166, -12.5035, -12.1338, -13.402, -13.4151, -11.9111, -12.7776, -14.2006, -12.8336, -12.4772, -13.4498, -13.4533, -12.8187, -13.4603, -13.4489, -13.1044, -13.0969, -13.4833, -13.4926, -12.8075, -12.4739, -11.7169, -13.4969, -13.4804, -13.4792, -10.8438, -12.621, -12.0486, -12.3567, -11.5983, -11.5105, -10.4804, -9.8506, -9.4816, -6.4677, -6.6814, -7.1114, -9.3727, -11.5512, -5.1907, -7.4344, -7.9494, -10.8168, -5.6693, -6.1077, -6.9788, -6.574, -6.9814, -8.3168, -6.9998, -6.1702, -5.9078, -7.2356, -6.8041, -5.4243, -5.0744, -5.955, -5.8015, -5.2892, -5.0368, -6.2736, -6.336, -6.2896, -5.376, -5.9471, -6.1877, -6.9324, -5.4884, -6.1633, -6.0324, -6.1119, -6.2847, -5.7591, -6.4781, -5.8659, -5.9069, -6.2802, -5.4239, -5.913, -5.7847, -6.036, -5.9665, -6.0184, -5.7977, -5.7748, -5.8845, -5.8958, -6.0578, -6.0088, -6.0778, -13.1517, -13.1493, -12.4397, -13.1795, -12.8465, -13.1181, -13.1925, -13.0011, -13.2161, -13.2405, -13.2585, -13.2736, -13.2924, -11.637, -10.0727, -13.1561, -12.4863, -12.7411, -13.295, -13.3645, -13.3668, -13.2303, -13.2371, -13.4009, -13.1997, -13.4118, -12.9283, -11.2052, -12.3757, -13.4249, -13.1112, -12.8068, -10.0944, -10.7923, -9.0816, -10.1036, -9.6404, -11.865, -11.0734, -5.966, -11.525, -9.867, -6.3258, -5.3162, -5.5677, -6.1129, -6.7282, -6.1593, -6.4948, -6.0978, -5.3996, -6.8603, -6.8568, -6.4518, -5.6502, -6.0821, -6.0749, -6.4393, -6.4535, -5.3923, -5.2301, -5.8717, -6.8773, -5.343, -5.43, -6.0408, -6.276, -5.1363, -6.206, -5.8159, -6.0241, -5.981, -5.7032, -6.1672, -5.6946, -5.7726, -5.7874, -5.849, -5.4574, -5.9788, -5.9697, -6.0344, -6.0113, -5.8827, -6.0902, -6.0857, -13.1077, -13.4479, -13.1321, -12.6297, -13.6945, -13.7024, -12.5383, -13.6402, -11.983, -13.6449, -14.0701, -11.6991, -10.9441, -13.3747, -13.3802, -14.312, -13.3908, -12.0954, -11.8625, -10.9575, -13.2472, -13.4213, -14.3529, -12.7205, -13.4286, -13.2214, -11.9217, -14.18, -14.6084, -13.1899, -11.2955, -10.9091, -11.628, -10.7432, -10.7622, -11.0304, -12.4894, -10.6428, -11.9145, -9.583, -5.7715, -8.2449, -6.5948, -5.1662, -6.6204, -7.9584, -6.363, -10.1884, -5.5645, -6.4003, -6.4643, -4.9818, -6.0357, -5.6535, -7.1677, -5.3385, -5.7734, -7.5248, -8.0087, -6.3224, -5.8035, -6.7584, -6.3903, -5.5998, -6.7598, -6.7191, -6.8151, -6.1386, -6.2982, -5.9131, -6.3939, -6.7732, -5.4217, -6.3806, -5.9455, -5.4038, -5.6323, -5.6418, -6.0809, -5.7181, -5.3718, -5.7852, -5.8257, -5.7502, -5.937, -6.0765, -6.2419, -6.128, -6.1643, -6.1174, -6.1158, -6.1364, -12.9291, -13.2787, -12.6959, -13.3214, -13.1688, -13.3249, -11.4194, -13.3306, -12.0145, -13.3421, -11.6804, -10.809, -12.6021, -12.6723, -13.3033, -13.3722, -13.3735, -13.3646, -13.3745, -12.9455, -13.3915, -13.3855, -13.3902, -13.3845, -13.4074, -13.4064, -13.4161, -12.7994, -13.4181, -13.4081, -10.5447, -11.232, -10.5031, -11.7854, -10.1324, -10.3078, -10.982, -10.4191, -9.8344, -9.1256, -10.2383, -5.3019, -6.191, -6.0747, -7.1667, -5.7665, -6.8944, -5.4601, -10.4149, -5.5759, -6.3606, -6.2806, -5.7962, -6.7424, -5.0061, -5.546, -6.4872, -6.0883, -6.0983, -5.7635, -5.1223, -5.7942, -5.3272, -5.4869, -5.5005, -5.7106, -6.4761, -6.2478, -5.2966, -6.0401, -6.8956, -6.1211, -5.9403, -5.8813, -6.0433, -5.9204, -5.7091, -5.8446, -6.0465, -6.0736, -5.8086, -6.0366, -5.9198, -6.0518, -6.084, -12.6843, -13.8544, -12.1039, -12.5247, -10.5355, -11.5953, -12.7881, -11.0901, -12.6709, -12.1696, -13.9364, -13.819, -12.4702, -11.5142, -12.193, -11.6901, -13.8397, -12.4907, -10.6719, -13.9744, -12.6496, -11.7353, -13.2766, -10.4832, -12.5168, -11.6171, -12.9723, -12.789, -11.3135, -14.307, -13.5352, -11.9302, -10.5538, -10.8079, -12.3136, -11.4259, -10.0422, -12.056, -10.895, -7.6947, -6.745, -7.311, -6.7979, -8.738, -5.6552, -6.7371, -5.4982, -6.703, -7.5948, -6.4429, -6.9887, -8.9183, -6.4213, -6.2823, -6.1345, -6.3613, -5.6802, -5.1361, -5.2381, -5.4987, -6.2344, -5.8981, -5.956, -6.3717, -6.5045, -6.0004, -6.5772, -6.2436, -6.2055, -6.0276, -5.4369, -5.9539, -5.5284, -5.8609, -6.2079, -6.3347, -5.679, -5.7384, -5.803, -5.387, -5.9582, -5.7998, -6.0395, -5.7005, -6.133, -6.1557, -5.9064, -6.145, -6.1742, -6.1769, -6.1986, -12.1264, -12.8323, -12.0698, -12.7909, -11.9296, -11.9192, -12.3511, -13.2545, -13.3523, -13.0268, -12.0823, -12.74, -12.7335, -12.359, -11.8805, -13.3696, -13.4042, -10.6315, -13.7269, -12.3998, -13.7377, -14.1478, -13.1219, -12.4477, -13.3505, -14.5657, -13.3237, -13.4088, -12.1296, -14.1663, -12.4032, -10.3227, -10.3829, -11.2435, -12.5433, -10.8329, -10.8339, -10.6768, -10.8338, -10.5952, -11.4325, -4.7874, -9.7369, -10.1541, -10.418, -6.3491, -7.1723, -8.1224, -8.9587, -9.6477, -7.279, -8.6694, -5.0367, -7.5059, -5.4313, -5.4246, -6.0995, -5.9499, -5.5571, -5.926, -5.8518, -6.4873, -6.165, -5.0869, -5.6109, -5.7907, -7.1036, -6.8274, -7.0136, -6.8508, -5.4483, -5.654, -6.1354, -6.35, -6.3063, -6.8106, -6.3941, -5.589, -6.034, -5.6685, -5.8784, -6.1955, -6.0962, -5.5591, -6.1405, -6.0545, -5.9895, -5.9201, -5.9966, -6.0583, -5.9805, -5.8704, -6.0995, -6.1161, -14.0308, -12.7281, -12.8382, -11.5056, -12.6172, -10.5394, -13.3471, -10.9107, -10.9811, -12.7835, -12.8554, -13.1231, -12.7749, -14.1706, -10.5061, -14.0211, -13.4545, -12.8749, -13.4231, -13.6456, -11.6665, -14.0339, -12.4325, -13.277, -12.8044, -13.6085, -13.4425, -13.4891, -14.2049, -13.2864, -12.4938, -10.2127, -9.7468, -11.4126, -10.9583, -11.4757, -12.8888, -11.5353, -12.0541, -10.3162, -10.0892, -9.9971, -10.8991, -8.6474, -9.3658, -8.4621, -6.8467, -7.1398, -5.6614, -5.3428, -5.385, -7.0651, -6.21, -6.3987, -5.633, -5.0669, -5.5452, -5.8318, -5.4934, -5.5739, -5.781, -6.5868, -5.9417, -6.2029, -5.5948, -6.1238, -5.7126, -5.1473, -6.795, -5.8976, -5.8767, -5.3385, -6.3444, -5.9844, -6.5607, -5.827, -6.0205, -5.8892, -5.5359, -5.5959, -6.065, -6.2202, -5.7231, -5.7864, -6.1279, -6.2096, -11.9189, -12.0227, -13.2572, -12.7381, -12.4932, -12.788, -13.0097, -12.9523, -12.0774, -14.3643, -9.1088, -12.884, -13.4237, -13.4588, -12.4172, -13.3784, -13.4592, -11.0651, -13.4442, -13.3474, -12.8519, -13.3437, -13.4653, -13.4501, -13.1531, -13.4562, -13.4631, -13.8046, -13.4482, -14.4271, -12.1229, -12.005, -11.9527, -10.8041, -11.0783, -12.1274, -11.5279, -12.1733, -11.3183, -8.6974, -10.6966, -12.801, -12.2654, -12.4578, -7.086, -7.453, -5.6647, -11.2181, -6.8982, -5.7809, -7.1329, -6.7815, -6.6062, -10.0025, -6.315, -7.4605, -5.3608, -5.7926, -5.2046, -6.0145, -7.3906, -6.7982, -7.582, -6.4639, -5.1404, -5.9217, -6.7317, -7.0056, -6.3187, -5.4601, -6.0355, -5.8566, -5.6677, -5.8238, -5.4085, -6.5039, -6.0184, -5.5889, -5.2433, -5.6126, -5.8366, -5.7996, -5.9787, -5.7294, -5.9463, -5.6927, -6.0073, -6.1087, -6.0949, -5.8447, -5.9544, -6.0119, -6.0099, -11.0292, -13.1505, -13.1554, -10.204, -13.1561, -11.6457, -13.2086, -11.4052, -10.9789, -13.2283, -11.2492, -12.6162, -13.2383, -13.2597, -13.1578, -13.259, -13.2669, -13.2686, -11.1622, -13.2839, -12.6918, -13.215, -12.1068, -10.6749, -12.6955, -14.0765, -13.324, -13.3211, -13.3233, -13.3139, -11.1631, -8.7932, -11.2831, -11.9571, -8.9193, -11.2321, -8.9966, -10.2416, -7.8107, -10.5699, -7.0218, -6.0106, -6.9025, -7.5862, -6.8235, -7.6675, -7.1856, -5.549, -7.1488, -7.2346, -5.3718, -5.8212, -6.2034, -5.9058, -6.9925, -5.4916, -5.7905, -6.8027, -6.2704, -6.4186, -6.5213, -6.4069, -5.7835, -5.1914, -5.6319, -6.4908, -6.2895, -5.327, -5.5162, -6.0452, -6.0007, -6.0046, -6.278, -6.2151, -5.9374, -5.6505, -6.3792, -5.9855, -5.7259, -5.8366, -5.912, -6.2324, -5.5842, -6.1614, -6.0121, -5.9108, -6.113, -6.1724, -6.1144, -6.2067, -11.9109, -11.2553, -13.2379, -12.6549, -12.3216, -13.3333, -13.3391, -12.359, -8.8755, -13.3689, -12.6726, -13.3228, -13.4311, -12.4199, -11.8077, -13.3965, -13.4842, -12.8628, -13.4178, -12.5665, -13.828, -12.2722, -13.4412, -12.8989, -13.5243, -12.6768, -13.5274, -13.5335, -12.9235, -13.8656, -8.7904, -8.7318, -10.8924, -11.1415, -12.0775, -11.0457, -11.1896, -11.1779, -11.452, -9.1951, -10.1234, -9.1192, -6.6762, -6.4108, -8.6544, -8.1619, -9.2703, -4.9887, -7.4786, -6.8135, -4.9671, -5.7931, -5.7108, -6.0854, -6.0494, -6.4239, -5.8413, -6.4262, -7.5679, -5.9104, -5.3139, -5.4922, -5.4015, -7.2528, -7.1956, -5.8407, -5.9355, -5.9541, -5.6476, -5.9915, -5.67, -6.2998, -5.5545, -5.6148, -5.8987, -5.8215, -6.0914, -5.8347, -5.7534, -5.6136, -5.679, -5.5198, -6.1237, -6.0186, -5.9491], \"loglift\": [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 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, 1.1813, 1.098, 1.0968, 1.0824, 1.0662, 1.0608, 1.0588, 1.051, 1.0493, 1.0373, 1.024, 1.0182, 1.016, 1.0133, 1.0094, 1.0071, 0.9995, 0.9983, 0.9964, 0.9948, 0.9927, 0.9887, 0.9806, 0.9754, 0.9694, 0.9687, 0.9663, 0.9657, 0.9648, 0.9628, 0.9323, 0.9505, 0.9343, 0.9408, 0.8985, 0.8847, 0.8266, 0.7685, 0.7281, 0.4893, 0.4729, 0.5081, 0.6843, 0.868, 0.3017, 0.4982, 0.5246, 0.8024, 0.2717, 0.2988, 0.394, 0.3421, 0.3828, 0.5295, 0.3776, 0.2739, 0.2349, 0.3961, 0.3223, 0.1489, 0.0899, 0.2091, 0.1859, 0.1106, 0.0677, 0.2485, 0.2479, 0.2384, 0.0927, 0.1785, 0.2158, 0.3264, 0.0874, 0.1945, 0.1657, 0.1778, 0.2074, 0.0631, 0.2314, 0.0581, 0.054, 0.1656, -0.1501, 0.0015, -0.0884, 0.0504, -0.0089, 0.0218, -0.1515, -0.1926, -0.1695, -0.1688, -0.0303, -0.2004, -0.2193, 1.3925, 1.3866, 1.3731, 1.3617, 1.3458, 1.3452, 1.3377, 1.3264, 1.3231, 1.2947, 1.2919, 1.2716, 1.2592, 1.2434, 1.243, 1.2178, 1.2005, 1.1837, 1.1836, 1.181, 1.1659, 1.165, 1.1504, 1.1448, 1.1372, 1.1348, 1.1337, 1.1252, 1.114, 1.1115, 1.1098, 1.1012, 0.9921, 1.0167, 0.9074, 0.9644, 0.9246, 1.0601, 0.9946, 0.4854, 1.0154, 0.8237, 0.3941, 0.266, 0.2908, 0.3328, 0.4115, 0.3229, 0.3507, 0.2913, 0.1763, 0.3883, 0.3796, 0.3062, 0.172, 0.2373, 0.223, 0.2759, 0.2725, 0.0765, 0.0437, 0.1568, 0.333, 0.0569, 0.0623, 0.1572, 0.2025, -0.0318, 0.1858, 0.0987, 0.14, 0.1054, -0.0068, 0.1375, -0.0484, -0.0456, -0.0723, -0.0407, -0.2931, 0.0085, -0.0088, 0.0391, -0.0537, -0.3094, 0.0319, -0.1448, 1.4571, 1.4111, 1.3626, 1.2927, 1.289, 1.2865, 1.2629, 1.232, 1.228, 1.2181, 1.2035, 1.2027, 1.196, 1.1681, 1.1645, 1.1632, 1.1573, 1.1393, 1.1258, 1.1253, 1.1252, 1.1228, 1.1168, 1.1161, 1.1157, 1.1063, 1.1058, 1.1047, 1.1013, 1.1009, 1.089, 1.0659, 1.0776, 1.0519, 1.0346, 1.025, 1.0646, 0.9409, 1.0219, 0.832, 0.4857, 0.6871, 0.5027, 0.3261, 0.4643, 0.6034, 0.3876, 0.8251, 0.2438, 0.3417, 0.344, 0.1227, 0.2783, 0.205, 0.4256, 0.1302, 0.1875, 0.4691, 0.5311, 0.2475, 0.1541, 0.3121, 0.2465, 0.0965, 0.299, 0.2874, 0.2977, 0.1661, 0.1963, 0.1144, 0.2098, 0.283, -0.0219, 0.193, 0.0829, -0.1299, -0.059, -0.0596, 0.0618, -0.0719, -0.2075, -0.0582, -0.1107, -0.1743, -0.1149, -0.0031, 0.1086, -0.0325, -0.0421, -0.1301, -0.2012, -0.2124, 1.6819, 1.3348, 1.3036, 1.2941, 1.2903, 1.2836, 1.28, 1.2795, 1.274, 1.2703, 1.2642, 1.2617, 1.2583, 1.2481, 1.2475, 1.2448, 1.2387, 1.2375, 1.2356, 1.2328, 1.2242, 1.2197, 1.2149, 1.2126, 1.2019, 1.1998, 1.1981, 1.1968, 1.1957, 1.1937, 1.1674, 1.144, 1.107, 1.1403, 1.0337, 1.0052, 1.0313, 0.9812, 0.9291, 0.8514, 0.9288, 0.3443, 0.4308, 0.416, 0.5366, 0.3591, 0.4704, 0.2668, 0.9107, 0.2463, 0.3448, 0.3183, 0.2441, 0.3642, 0.0984, 0.169, 0.3211, 0.233, 0.2211, 0.1606, 0.042, 0.1634, 0.0726, 0.0953, 0.0753, 0.0977, 0.2607, 0.1925, -0.0228, 0.1354, 0.3343, 0.136, 0.0872, 0.0333, 0.0788, 0.0206, -0.1358, -0.1482, -0.018, -0.0001, -0.3399, -0.0758, -0.4274, -0.0645, -0.2256, 1.3699, 1.2828, 1.2397, 1.2198, 1.1626, 1.1596, 1.1296, 1.1118, 1.107, 1.0754, 1.0533, 1.0533, 1.0528, 1.0466, 1.0453, 1.0433, 1.0332, 1.029, 1.0189, 1.0112, 1.0096, 0.9993, 0.998, 0.9979, 0.9978, 0.9945, 0.9906, 0.9905, 0.989, 0.9887, 0.9868, 0.965, 0.93, 0.9374, 0.9721, 0.9358, 0.863, 0.9554, 0.8488, 0.5866, 0.4473, 0.4782, 0.4031, 0.6117, 0.2594, 0.3741, 0.2169, 0.3455, 0.4582, 0.2874, 0.3566, 0.61, 0.2619, 0.2397, 0.216, 0.2379, 0.1281, 0.0282, 0.0358, 0.0745, 0.191, 0.1304, 0.1304, 0.1991, 0.2217, 0.1217, 0.231, 0.1629, 0.1523, 0.1151, -0.037, 0.0736, -0.0361, -0.0024, 0.1062, 0.1475, -0.1031, -0.0922, -0.076, -0.2825, -0.0172, -0.1035, 0.0007, -0.2318, 0.0311, 0.0197, -0.3242, -0.0495, -0.2134, -0.3547, -0.2745, 1.4698, 1.4631, 1.4131, 1.3923, 1.3915, 1.3691, 1.2929, 1.2825, 1.2548, 1.2453, 1.2304, 1.192, 1.1919, 1.1907, 1.1781, 1.1772, 1.1682, 1.1636, 1.1623, 1.1614, 1.1589, 1.1544, 1.1532, 1.1512, 1.149, 1.1484, 1.1447, 1.137, 1.1341, 1.134, 1.1219, 1.078, 1.0628, 1.0849, 1.1151, 1.0427, 1.0352, 1.0127, 1.015, 0.9944, 1.0385, 0.4865, 0.9019, 0.9272, 0.938, 0.3929, 0.4826, 0.6113, 0.7144, 0.8071, 0.4829, 0.6643, 0.1276, 0.4945, 0.1509, 0.1486, 0.2583, 0.2256, 0.1392, 0.1961, 0.1766, 0.2885, 0.2268, 0.0176, 0.1161, 0.1334, 0.3786, 0.3151, 0.3476, 0.3128, 0.0205, 0.0611, 0.1625, 0.1962, 0.1759, 0.2839, 0.1781, -0.0131, 0.0917, -0.0224, 0.0361, 0.1239, 0.0679, -0.1593, 0.0575, 0.0189, -0.0318, -0.098, -0.0556, -0.071, -0.1722, -0.3781, -0.2411, -0.1552, 1.3331, 1.3234, 1.2977, 1.2807, 1.2415, 1.2399, 1.2304, 1.226, 1.2215, 1.2165, 1.2095, 1.192, 1.1909, 1.1888, 1.1884, 1.1813, 1.1768, 1.1766, 1.1709, 1.1701, 1.1666, 1.1657, 1.1609, 1.1575, 1.1549, 1.1542, 1.1508, 1.1494, 1.1465, 1.1389, 1.1296, 1.0999, 1.0873, 1.1038, 1.0683, 1.0568, 1.1274, 1.0419, 1.0694, 0.9546, 0.9364, 0.9136, 0.9779, 0.7402, 0.7989, 0.6576, 0.4463, 0.4819, 0.2796, 0.2304, 0.1973, 0.4227, 0.3001, 0.3067, 0.1892, 0.0974, 0.1699, 0.2084, 0.1527, 0.1531, 0.1798, 0.3149, 0.1804, 0.2224, 0.1016, 0.1902, 0.0957, -0.0428, 0.3043, 0.0897, 0.081, -0.0646, 0.1836, 0.0891, 0.2287, 0.0314, 0.075, 0.0349, -0.136, -0.1271, 0.0214, 0.1012, -0.2308, -0.2105, -0.1004, -0.0342, 1.4824, 1.354, 1.35, 1.2716, 1.2402, 1.2335, 1.2335, 1.1911, 1.1892, 1.1785, 1.1704, 1.1702, 1.17, 1.1692, 1.1661, 1.1634, 1.1618, 1.158, 1.1552, 1.1512, 1.1476, 1.1465, 1.1453, 1.1433, 1.1426, 1.1398, 1.1391, 1.1385, 1.1381, 1.1355, 1.1354, 1.1197, 1.1171, 1.0884, 1.083, 1.0991, 1.0351, 1.074, 1.015, 0.8113, 0.9609, 1.109, 1.0595, 1.0731, 0.5358, 0.5701, 0.3628, 0.9429, 0.4599, 0.3055, 0.4705, 0.4216, 0.3589, 0.8048, 0.2859, 0.4457, 0.1079, 0.165, 0.0693, 0.1836, 0.3979, 0.3011, 0.4241, 0.2415, 0.024, 0.1517, 0.2748, 0.3213, 0.1996, 0.0322, 0.1399, 0.1042, 0.0593, 0.0908, -0.0086, 0.2224, 0.1037, -0.0067, -0.1388, -0.0393, 0.0219, 0.0088, 0.0615, -0.0331, -0.0053, -0.1168, -0.0199, 0.034, 0.0006, -0.1986, -0.1323, -0.0878, -0.2948, 1.5345, 1.4692, 1.461, 1.4562, 1.4543, 1.4496, 1.4008, 1.3987, 1.3883, 1.3843, 1.3811, 1.3801, 1.3667, 1.363, 1.3628, 1.3593, 1.3513, 1.3511, 1.3377, 1.3289, 1.3118, 1.3118, 1.3098, 1.3057, 1.3023, 1.2992, 1.2981, 1.2949, 1.2896, 1.2888, 1.2771, 1.1639, 1.1725, 1.2101, 1.0111, 1.1293, 0.848, 0.9843, 0.6319, 0.9852, 0.4386, 0.2791, 0.4104, 0.5177, 0.3807, 0.5116, 0.4247, 0.1473, 0.4175, 0.4317, 0.097, 0.1661, 0.2369, 0.1677, 0.3718, 0.0843, 0.1336, 0.3237, 0.2017, 0.235, 0.2545, 0.2272, 0.0749, -0.0869, 0.0143, 0.2177, 0.1619, -0.1627, -0.1163, 0.0503, 0.0268, 0.0239, 0.1111, 0.0827, -0.0228, -0.1582, 0.1428, -0.0279, -0.1527, -0.1216, -0.0898, 0.0723, -0.3104, -0.0392, -0.2038, -0.3286, -0.172, -0.086, -0.3875, -0.0426, 1.4476, 1.4425, 1.3835, 1.3596, 1.3082, 1.2961, 1.2777, 1.2741, 1.2644, 1.2395, 1.2394, 1.2189, 1.1822, 1.1774, 1.14, 1.1397, 1.1326, 1.1247, 1.1217, 1.1216, 1.1162, 1.097, 1.0953, 1.0942, 1.0923, 1.0843, 1.0787, 1.078, 1.0674, 1.0602, 1.0298, 1.0205, 1.045, 1.0312, 1.043, 0.9936, 0.9978, 0.9821, 0.9888, 0.8145, 0.8534, 0.7493, 0.472, 0.4348, 0.6491, 0.5881, 0.7188, 0.1756, 0.4851, 0.3919, 0.1373, 0.2471, 0.2133, 0.265, 0.2402, 0.2961, 0.1872, 0.2791, 0.4552, 0.1851, 0.086, 0.09, 0.0673, 0.393, 0.3784, 0.1201, 0.138, 0.1323, 0.0675, 0.1341, 0.0569, 0.1909, 0.0214, 0.0313, 0.059, 0.037, 0.0841, -0.0264, -0.0571, -0.1212, -0.1058, -0.2459, 0.0744, -0.0312, -0.1269]}, \"token.table\": {\"Topic\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 5, 6, 7, 8, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 8, 1, 2, 3, 5, 10, 1, 2, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 9, 1, 6, 1, 4, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 4, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 5, 1, 2, 3, 4, 5, 6, 7, 10, 1, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 9, 10, 1, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 1, 3, 6, 6, 2, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 1, 2, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 3, 4, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 8, 1, 4, 5, 6, 7, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 7, 8, 9, 10, 1, 2, 4, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 7, 8, 1, 3, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 2, 3, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 6, 1, 2, 3, 4, 10, 2, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 6, 8, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 7, 8, 9, 1, 2, 3, 10, 1, 2, 3, 4, 5, 7, 10, 1, 2, 3, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 10, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 6, 1, 2, 3, 4, 5, 7, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 9, 10, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 1, 2, 3, 4, 5, 6, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 6, 8, 10, 2, 5, 6, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 1, 2, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 7, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 7, 10, 1, 4, 5, 6, 7, 3, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 1, 2, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 7, 8, 9, 1, 2, 4, 5, 7, 1, 3, 4, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 10, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 3, 4, 5, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 7, 1, 3, 4, 6, 7, 8, 10, 1, 7, 7, 1, 3, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 7, 8, 9, 1, 2, 5, 6, 7, 8, 1, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 7, 1, 2, 3, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 7, 1, 2, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 6, 7, 8, 10, 1, 2, 3, 4, 5, 7, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 9, 10, 1, 3, 4, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 6, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 6, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 3, 4, 5, 6, 7, 9, 10, 1, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 7, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 5, 6, 1, 2, 3, 5, 6, 7, 9, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 5, 6, 1, 2, 3, 4, 5, 6, 8, 1, 2, 4, 6, 8, 10, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9], \"Freq\": [0.12675767642205324, 0.10263250406575446, 0.11660499972211083, 0.12062586178149397, 0.10685440922810674, 0.12726028417947613, 0.062021797265984814, 0.10444189199247686, 0.06795256880357493, 0.06493692225903759, 0.22161043542944386, 0.08160146965601132, 0.09014661780180767, 0.09812834958634273, 0.12357598856997802, 0.11615767314670426, 0.06056725883558953, 0.053430651592946424, 0.06873679607387835, 0.0861088005461017, 0.12547626168748646, 0.13277500463217937, 0.07966500277930763, 0.11724576432432214, 0.09270956463790771, 0.165231116875601, 0.07764620153928618, 0.06087462200680037, 0.06879453456380756, 0.0798202951823862, 0.20064579877982736, 0.20064579877982736, 0.20064579877982736, 0.18558095846121447, 0.11134857507672868, 0.07423238338448579, 0.07423238338448579, 0.29692953353794316, 0.07423238338448579, 0.037116191692242895, 0.037116191692242895, 0.07423238338448579, 0.037116191692242895, 0.1463144844625361, 0.4389434533876083, 0.1463144844625361, 0.1463144844625361, 0.1463144844625361, 0.18768023531770767, 0.18768023531770767, 0.37536047063541533, 0.08369838196715199, 0.08369838196715199, 0.08369838196715199, 0.08369838196715199, 0.08369838196715199, 0.08369838196715199, 0.251095145901456, 0.08369838196715199, 0.08369838196715199, 0.1380475150347372, 0.0690237575173686, 0.1380475150347372, 0.0690237575173686, 0.0690237575173686, 0.2760950300694744, 0.1380475150347372, 0.14661788035525788, 0.4398536410657736, 0.14661788035525788, 0.14661788035525788, 0.14661788035525788, 0.18931423514851048, 0.11358854108910629, 0.11358854108910629, 0.07572569405940419, 0.11358854108910629, 0.03786284702970209, 0.03786284702970209, 0.22717708217821259, 0.07572569405940419, 0.03786284702970209, 0.17197166277560982, 0.12668530619371765, 0.08207848765271132, 0.1496925227208526, 0.11775423479921802, 0.1005716300511046, 0.05970227073497039, 0.06135257740569315, 0.07052634095765202, 0.05965373230347855, 0.40928164824638885, 0.13642721608212963, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.06821360804106481, 0.11414587361561275, 0.18438948814829753, 0.30731581358049587, 0.035121807266342384, 0.052682710899513575, 0.061463162716099175, 0.052682710899513575, 0.061463162716099175, 0.061463162716099175, 0.061463162716099175, 0.17858450943763593, 0.1187051409831287, 0.10833014776850368, 0.11709548054080325, 0.10423283027894795, 0.08692166388557501, 0.06778133789865042, 0.07506870971936024, 0.06516198136068443, 0.07812706455977862, 0.147268584388727, 0.147268584388727, 0.147268584388727, 0.147268584388727, 0.147268584388727, 0.147268584388727, 0.147268584388727, 0.1598329764608242, 0.09254833150483996, 0.14625191952993644, 0.09415469307731054, 0.12029457684751386, 0.09539597247421965, 0.09393564377197365, 0.053667079807540326, 0.07575455142901101, 0.06816084217733183, 0.37929619605797804, 0.10632721377862353, 0.21265442755724706, 0.3189816413358706, 0.10632721377862353, 0.10632721377862353, 0.13719039652177156, 0.4115711895653147, 0.13719039652177156, 0.13719039652177156, 0.13719039652177156, 0.13719039652177156, 0.13719039652177156, 0.09545133056506844, 0.3340796569777395, 0.09545133056506844, 0.04772566528253422, 0.09545133056506844, 0.09545133056506844, 0.04772566528253422, 0.04772566528253422, 0.09545133056506844, 0.04772566528253422, 0.16873771623176945, 0.11116686928035267, 0.13355410731535794, 0.10093490138119218, 0.08736920960511224, 0.0872666334858224, 0.09295960810640794, 0.08403548572819278, 0.0531087857623092, 0.08085562603020806, 0.3475556797012124, 0.048927758441289125, 0.09785551688257825, 0.1957110337651565, 0.09785551688257825, 0.29356655064773474, 0.09785551688257825, 0.048927758441289125, 0.048927758441289125, 0.09785551688257825, 0.048927758441289125, 0.13472555434762304, 0.0945833735975036, 0.13472555434762304, 0.10332894674567777, 0.12331258138925574, 0.0980378749910324, 0.07289435219003167, 0.08662490203266511, 0.07722341089837789, 0.07455601108818477, 0.1053335966867879, 0.1053335966867879, 0.05266679834339395, 0.1053335966867879, 0.2896673908886667, 0.1053335966867879, 0.1053335966867879, 0.026333399171696976, 0.05266679834339395, 0.05266679834339395, 0.14576015114203283, 0.29152030228406567, 0.14576015114203283, 0.14576015114203283, 0.14576015114203283, 0.07574705923995052, 0.1298521015542009, 0.07574705923995052, 0.14608361424847602, 0.06492605077710045, 0.0703365550085255, 0.2326516819512766, 0.08656806770280061, 0.032463025388550226, 0.08656806770280061, 0.1658368358078135, 0.13502109258490075, 0.08345108440007747, 0.11249127263575454, 0.10353458414458783, 0.12787941585846385, 0.06715543529500323, 0.07390254424649886, 0.06541933708526167, 0.06530096675277929, 0.09867217585687504, 0.08633815387476566, 0.03700206594632814, 0.07400413189265628, 0.08633815387476566, 0.04933608792843752, 0.259014461624297, 0.08633815387476566, 0.14800826378531257, 0.0616701099105469, 0.18121418569635836, 0.06873641526413593, 0.056238885216111215, 0.2749456610565437, 0.12185091796824098, 0.08123394531216065, 0.056238885216111215, 0.07186079777614211, 0.05311450270410504, 0.034368207632067965, 0.1542153254089948, 0.056078300148725384, 0.07009787518590672, 0.3084306508179896, 0.08411745022308807, 0.09346383358120897, 0.07009787518590672, 0.05140510846966494, 0.04673191679060448, 0.07009787518590672, 0.15898797551308325, 0.15898797551308325, 0.07949398775654162, 0.15898797551308325, 0.07949398775654162, 0.23848196326962487, 0.07949398775654162, 0.07949398775654162, 0.08082820711589793, 0.034640660192527685, 0.057734433654212804, 0.3810472621178045, 0.13856264077011074, 0.023093773461685122, 0.08082820711589793, 0.046187546923370244, 0.10392198057758305, 0.046187546923370244, 0.11067977700612591, 0.055339888503062956, 0.055339888503062956, 0.3873792195214407, 0.11067977700612591, 0.027669944251531478, 0.08300983275459443, 0.055339888503062956, 0.08300983275459443, 0.055339888503062956, 0.14914760648213302, 0.14455844935960585, 0.04359699266400811, 0.09178314245054339, 0.12161266374697, 0.2294578561263585, 0.045891571225271696, 0.06654277827664395, 0.045891571225271696, 0.06195362115411679, 0.13657974341971113, 0.4097392302591334, 0.13657974341971113, 0.06592766305371682, 0.4614936413760177, 0.13185532610743364, 0.06592766305371682, 0.06592766305371682, 0.06592766305371682, 0.06592766305371682, 0.06592766305371682, 0.06592766305371682, 0.06592766305371682, 0.12731463888457756, 0.1044041543510002, 0.14930255357116523, 0.09625478736925792, 0.09379460111061874, 0.1277759238080724, 0.07588136991490221, 0.07603513155606716, 0.08133990817625789, 0.06788576457432487, 0.17972724229790898, 0.17972724229790898, 0.17972724229790898, 0.17972724229790898, 0.17972724229790898, 0.42608676967844816, 0.06391301545176722, 0.10652169241961204, 0.08521735393568963, 0.08521735393568963, 0.08521735393568963, 0.042608676967844816, 0.042608676967844816, 0.042608676967844816, 0.042608676967844816, 0.12520796831658218, 0.12520796831658218, 0.12520796831658218, 0.06260398415829109, 0.06260398415829109, 0.06260398415829109, 0.06260398415829109, 0.06260398415829109, 0.06260398415829109, 0.18781195247487328, 0.13696003635958345, 0.11661119608738214, 0.11038313072903562, 0.10889069110399405, 0.08142406185082528, 0.1038680577504888, 0.08489685405524892, 0.08814004016351232, 0.08656149825241066, 0.08231378547344621, 0.11707260227530887, 0.039024200758436295, 0.039024200758436295, 0.39024200758436295, 0.11707260227530887, 0.039024200758436295, 0.07804840151687259, 0.039024200758436295, 0.07804840151687259, 0.039024200758436295, 0.20563767808399372, 0.06201771243802985, 0.0750740729512993, 0.06854589269466457, 0.1077149742344729, 0.10118679397783818, 0.09465861372120346, 0.16973268667250277, 0.03264090128317361, 0.08160225320793402, 0.15627128319197472, 0.12056768986936825, 0.15129300438446533, 0.10563285344684005, 0.08494188215312912, 0.08517523897223112, 0.06977368891149892, 0.07374075483623296, 0.08750880716325114, 0.06510655252945885, 0.1475297812665598, 0.1475297812665598, 0.1475297812665598, 0.1475297812665598, 0.1475297812665598, 0.1475297812665598, 0.2950595625331196, 0.1475297812665598, 0.13361634133712452, 0.14684990869000267, 0.12473704453261272, 0.07931602626337934, 0.10510013813801934, 0.13933665754772345, 0.07675469064669325, 0.07376646576055948, 0.073851843614449, 0.04661630822368689, 0.12697973299150575, 0.12697973299150575, 0.12697973299150575, 0.12697973299150575, 0.3809391989745172, 0.12697973299150575, 0.12697973299150575, 0.19342162787243425, 0.3868432557448685, 0.14632306480262797, 0.4389691944078839, 0.14632306480262797, 0.14632306480262797, 0.4635070620842539, 0.16121984768147962, 0.040304961920369906, 0.08060992384073981, 0.040304961920369906, 0.040304961920369906, 0.040304961920369906, 0.040304961920369906, 0.040304961920369906, 0.06045744288055486, 0.09496918804273348, 0.06331279202848898, 0.07386492403323715, 0.06331279202848898, 0.1160734520522298, 0.052760660023740816, 0.08441705603798531, 0.13717771606172613, 0.27435543212345226, 0.052760660023740816, 0.1051823253866582, 0.18699080068739235, 0.33892082624589864, 0.04674770017184809, 0.04674770017184809, 0.04674770017184809, 0.05843462521481011, 0.04674770017184809, 0.04674770017184809, 0.07012155025777213, 0.12766604194811557, 0.09498961454472885, 0.07067227322127827, 0.15578296785335533, 0.19909823208575167, 0.09346978071201319, 0.07295202397035176, 0.07447185780306742, 0.03723592890153371, 0.07371194088670958, 0.40422555579665675, 0.03440217496141759, 0.08600543740354398, 0.12040761236496159, 0.10320652488425279, 0.08600543740354398, 0.04300271870177199, 0.07740489366318959, 0.025801631221063197, 0.017201087480708796, 0.20484953803320405, 0.10108588314710396, 0.12977629463634824, 0.09176149941309958, 0.12647689731508513, 0.11590926241654684, 0.06684865876993913, 0.0681875446394372, 0.050303854811141614, 0.04475704192322105, 0.1978860250958672, 0.16391023424414056, 0.1266286907690027, 0.07639961618550417, 0.11891526798104315, 0.07208377248271727, 0.06951263155339743, 0.05647327398327532, 0.05821797675674236, 0.059870853068447985, 0.2075876462069354, 0.3892268366380039, 0.025948455775866925, 0.07784536732760078, 0.05189691155173385, 0.05189691155173385, 0.05189691155173385, 0.05189691155173385, 0.05189691155173385, 0.025948455775866925, 0.17044966399026085, 0.17044966399026085, 0.17044966399026085, 0.17044966399026085, 0.17995923248536771, 0.05968944839861206, 0.10779736203331432, 0.07127098316252187, 0.16659592314239485, 0.08196163063690015, 0.06414388484626968, 0.17015947230052095, 0.04810791363470226, 0.049889688213765306, 0.07978155699116352, 0.07978155699116352, 0.15956311398232703, 0.07978155699116352, 0.07978155699116352, 0.07978155699116352, 0.07978155699116352, 0.07978155699116352, 0.23934467097349058, 0.07978155699116352, 0.12178215799332846, 0.06089107899666423, 0.06089107899666423, 0.06089107899666423, 0.06089107899666423, 0.06089107899666423, 0.06089107899666423, 0.24356431598665693, 0.12178215799332846, 0.12178215799332846, 0.21300453482407364, 0.21300453482407364, 0.15926574524001139, 0.10617716349334091, 0.05308858174667046, 0.05308858174667046, 0.10617716349334091, 0.42470865397336366, 0.05308858174667046, 0.05308858174667046, 0.08079721125161698, 0.16159442250323397, 0.08079721125161698, 0.08079721125161698, 0.08079721125161698, 0.24239163375485095, 0.16159442250323397, 0.08079721125161698, 0.08079721125161698, 0.13576355367440385, 0.40729066102321154, 0.13576355367440385, 0.13576355367440385, 0.11660101969794004, 0.11891165806521659, 0.17995389552908936, 0.12473998469312308, 0.09887462983554987, 0.10184052385921827, 0.07328517209645743, 0.06045595608710112, 0.05762801062267312, 0.06762928116760143, 0.3766298532524438, 0.12554328441748125, 0.12554328441748125, 0.12554328441748125, 0.47957692245934597, 0.15985897415311534, 0.03197179483062307, 0.06394358966124614, 0.03197179483062307, 0.03197179483062307, 0.03197179483062307, 0.0479576922459346, 0.0479576922459346, 0.0959153844918692, 0.3808326533805214, 0.12694421779350715, 0.12694421779350715, 0.12694421779350715, 0.16359581881040286, 0.06732977184863, 0.1040294378457868, 0.0990890981923234, 0.10064177636912618, 0.11814469399853943, 0.0824330959320753, 0.07481085760958889, 0.11278089666049343, 0.07692814603250178, 0.3937712234107891, 0.03937712234107891, 0.03937712234107891, 0.11813136702323672, 0.07875424468215782, 0.07875424468215782, 0.07875424468215782, 0.03937712234107891, 0.03937712234107891, 0.03937712234107891, 0.1881530964488362, 0.0940765482244181, 0.12543539763255748, 0.0940765482244181, 0.0940765482244181, 0.03135884940813937, 0.06271769881627874, 0.21951194585697556, 0.03135884940813937, 0.06271769881627874, 0.4024944069603335, 0.17249760298300007, 0.05749920099433336, 0.08624880149150004, 0.05749920099433336, 0.05749920099433336, 0.02874960049716668, 0.05749920099433336, 0.02874960049716668, 0.05749920099433336, 0.12426879245782385, 0.09372373212680413, 0.08119242532433449, 0.13001230807562245, 0.19449632432999742, 0.09215731877649543, 0.08615273426697873, 0.06605042960468369, 0.06735577406327427, 0.0647450851460931, 0.1399334999994008, 0.11939737321942545, 0.13257149228582474, 0.10788385739668994, 0.14419571499147116, 0.0729558358382952, 0.08956186827493295, 0.06216191475448066, 0.05729081190640025, 0.07400755122594893, 0.10364579964830137, 0.0831201014500523, 0.15618679970096222, 0.15014278944433493, 0.13625951835980496, 0.08210279279299623, 0.06702268799428264, 0.08198310942157787, 0.073425748365165, 0.06606522102293574, 0.11468288210360165, 0.10733477981778737, 0.1695312170227155, 0.10667869925655395, 0.09145763023593863, 0.13685840507329122, 0.0698069717152358, 0.05143671600070006, 0.09749357139928608, 0.05484833491911384, 0.08461436892703149, 0.12692155339054723, 0.042307184463515744, 0.21153592231757873, 0.12692155339054723, 0.042307184463515744, 0.042307184463515744, 0.08461436892703149, 0.08461436892703149, 0.21153592231757873, 0.06321118034825265, 0.047408385261189484, 0.3318586968283264, 0.07901397543531581, 0.07901397543531581, 0.14222515578356845, 0.07901397543531581, 0.047408385261189484, 0.047408385261189484, 0.047408385261189484, 0.16430317894977398, 0.06319353036529768, 0.06319353036529768, 0.06319353036529768, 0.1011096485844763, 0.12638706073059536, 0.08847094251141675, 0.18958059109589304, 0.03791611821917861, 0.08847094251141675, 0.16200423561468572, 0.08246727239300539, 0.12056129162023123, 0.06335049351340855, 0.12935221913420641, 0.1652136218499465, 0.08637435128810547, 0.060001568746179894, 0.06809480360031579, 0.06265280085356924, 0.11176828616984025, 0.10013807649784628, 0.1200474184787173, 0.07806039034084081, 0.10881145320238415, 0.16715962376018437, 0.07668053495602796, 0.08298844528660096, 0.06012227033827385, 0.09442153276076451, 0.21945626921881103, 0.11742835458199537, 0.08470241969848846, 0.07507714473275114, 0.08662747469163593, 0.034650989876654374, 0.038501099862949306, 0.24448198412972807, 0.06352681477386635, 0.032725934883506905, 0.13827345089747217, 0.06913672544873609, 0.06913672544873609, 0.41482035269241657, 0.06913672544873609, 0.06913672544873609, 0.06913672544873609, 0.06913672544873609, 0.06913672544873609, 0.06913672544873609, 0.1817530817883312, 0.07347465008464452, 0.10441134485712643, 0.09667717116400595, 0.10441134485712643, 0.06960756323808429, 0.06960756323808429, 0.06574047639152404, 0.06574047639152404, 0.17015182124865047, 0.14917212312609518, 0.14917212312609518, 0.14917212312609518, 0.14917212312609518, 0.14917212312609518, 0.29834424625219036, 0.1451557707278269, 0.4354673121834807, 0.1451557707278269, 0.1451557707278269, 0.1388764242666367, 0.0883759063514961, 0.1388764242666367, 0.10100103583028125, 0.0883759063514961, 0.06312564739392579, 0.03787538843635547, 0.050500517915140625, 0.10100103583028125, 0.18937694218177734, 0.10682258570719454, 0.10682258570719454, 0.10682258570719454, 0.10682258570719454, 0.42729034282877815, 0.10682258570719454, 0.10682258570719454, 0.08324419560117259, 0.08324419560117259, 0.046246775333984774, 0.055496130400781725, 0.055496130400781725, 0.27748065200390865, 0.08324419560117259, 0.08324419560117259, 0.09249355066796955, 0.13874032600195432, 0.14397865821498476, 0.14397865821498476, 0.14397865821498476, 0.2879573164299695, 0.14397865821498476, 0.14397865821498476, 0.14819387390161298, 0.10543581870400334, 0.14761014618560467, 0.08580797425322348, 0.08755915740124845, 0.09945260961491803, 0.09974447347292219, 0.09967150750842114, 0.07099588345951229, 0.05552709898529172, 0.1741145557980086, 0.09392558640485967, 0.09228188864277462, 0.09780001684406013, 0.0993263076231391, 0.14887205445170257, 0.07279232946376624, 0.06692198031346251, 0.08500265569639799, 0.06915271299057793, 0.1244102094258248, 0.11663457133671075, 0.18830567024506634, 0.1301574201873439, 0.09668836928202687, 0.0753898823422797, 0.10480207859240676, 0.06693810181063399, 0.04530154364962098, 0.051386825632405896, 0.18472873007785548, 0.1523471381449227, 0.10107154178012055, 0.08747013497525073, 0.1293556387760214, 0.07802313275931604, 0.0595274958907692, 0.06868994984718779, 0.07039723940428443, 0.06834849193576846, 0.11734348035944679, 0.09052211342014467, 0.0670534173482553, 0.1072854677572085, 0.06370074648084255, 0.14081217643133614, 0.23133428985148083, 0.05364273387860425, 0.05699540474601701, 0.0670534173482553, 0.15588368361261706, 0.12147729014476197, 0.14914846979697563, 0.10719539096942589, 0.08520451212558455, 0.10167738446986423, 0.06718984384760382, 0.06946196417095274, 0.06434969344341766, 0.07855044546434842, 0.05427269339370033, 0.325636160362202, 0.10854538678740067, 0.0814090400905505, 0.027136346696850167, 0.0814090400905505, 0.0814090400905505, 0.10854538678740067, 0.05427269339370033, 0.0814090400905505, 0.2332316674734929, 0.11471276482717126, 0.09832522699471823, 0.09029004715428963, 0.10836920179525396, 0.08204341521279714, 0.0717879883111975, 0.05021987400267866, 0.07622848243353961, 0.07474831772609224, 0.09215586845119379, 0.09215586845119379, 0.052660496257825026, 0.09215586845119379, 0.32912810161140643, 0.10532099251565005, 0.10532099251565005, 0.039495372193368766, 0.06582562032228129, 0.026330248128912513, 0.1298400542023409, 0.07201687478427976, 0.08016212042057569, 0.15669517100319774, 0.09596873571477371, 0.12088834860205529, 0.09371064781560257, 0.07661369657902102, 0.09225901988042111, 0.0816943943521561, 0.14372295473054508, 0.0796879749001042, 0.058342981623290574, 0.2547169197699759, 0.0853799731072545, 0.0910719713144048, 0.08964897176261723, 0.06545797938222844, 0.06688097893401602, 0.06545797938222844, 0.34611743433266823, 0.08112127367171912, 0.0730091463045472, 0.1189778680518547, 0.0459687217473075, 0.08652935858316706, 0.05948893402592735, 0.01892829719006779, 0.0730091463045472, 0.10275361331751087, 0.11158846191984152, 0.08279143948891468, 0.14038548435076836, 0.07559218388118297, 0.25557357407447573, 0.08999069509664638, 0.05759404486185369, 0.08279143948891468, 0.035996278038658555, 0.0647933004695854, 0.14943842382110736, 0.13257665514396638, 0.18300213398413684, 0.09453778362586633, 0.07152266808550327, 0.09597622834713902, 0.0612937278453419, 0.0661684571785438, 0.07735636056622029, 0.06808638347357406, 0.11081678684999084, 0.31398089607497404, 0.07387785789999389, 0.11081678684999084, 0.11081678684999084, 0.036938928949996945, 0.05540839342499542, 0.036938928949996945, 0.07387785789999389, 0.07387785789999389, 0.5188878570116245, 0.17296261900387486, 0.4677805173003862, 0.11694512932509656, 0.11694512932509656, 0.44130958099134293, 0.24785728723338757, 0.49571457446677514, 0.24785728723338757, 0.11209198105069569, 0.07472798736713046, 0.07472798736713046, 0.07472798736713046, 0.29891194946852184, 0.11209198105069569, 0.07472798736713046, 0.03736399368356523, 0.03736399368356523, 0.03736399368356523, 0.10604454413013892, 0.18557795222774312, 0.37115590445548624, 0.02651113603253473, 0.02651113603253473, 0.05302227206506946, 0.05302227206506946, 0.05302227206506946, 0.05302227206506946, 0.05302227206506946, 0.1451192325807156, 0.2902384651614312, 0.1451192325807156, 0.08065532199077734, 0.08065532199077734, 0.08065532199077734, 0.16131064398155467, 0.08065532199077734, 0.08065532199077734, 0.08065532199077734, 0.08065532199077734, 0.24196596597233203, 0.14642881377472164, 0.07321440688736082, 0.07321440688736082, 0.07321440688736082, 0.36607203443680414, 0.07321440688736082, 0.07321440688736082, 0.07321440688736082, 0.07321440688736082, 0.13706188712214648, 0.41118566136643947, 0.13706188712214648, 0.13706188712214648, 0.13706188712214648, 0.13760357103046375, 0.1171423612372596, 0.09723590051158873, 0.1064344141197568, 0.11211091620614383, 0.16579256434581754, 0.07278823811680822, 0.0811610786942291, 0.05366874699856828, 0.05606835924417734, 0.25655410902979975, 0.08577179906238608, 0.10378895211986953, 0.10776456805274147, 0.11410863603072861, 0.07959690623047859, 0.04652316517190566, 0.05777331238620285, 0.07976608137655825, 0.06834675901618141, 0.14731243087498225, 0.07178676834516902, 0.06430897997588057, 0.1465646520380534, 0.11964461390861503, 0.19816139178614361, 0.05757897044352098, 0.06206564346509404, 0.056831191606592134, 0.07552566252981323, 0.2620041404350958, 0.07170639632960517, 0.08549608793145232, 0.027579383203694293, 0.07170639632960517, 0.2509723871536181, 0.019305568242586005, 0.06894845800923574, 0.055158766407388586, 0.08825402625182174, 0.3763199661332475, 0.13089390126373826, 0.06544695063186913, 0.11453216360577097, 0.049085212973901844, 0.06544695063186913, 0.032723475315934565, 0.049085212973901844, 0.032723475315934565, 0.06544695063186913, 0.4573783409051496, 0.1407317972015845, 0.07036589860079225, 0.07036589860079225, 0.03518294930039612, 0.03518294930039612, 0.03518294930039612, 0.03518294930039612, 0.03518294930039612, 0.07036589860079225, 0.23711196374251425, 0.08577285861080743, 0.139867643059832, 0.08314178932826732, 0.1026117020190641, 0.09377130922972934, 0.05293711396470691, 0.07493285316674218, 0.07219654111290048, 0.0575677959019775, 0.1848013574585173, 0.12560315103030145, 0.11698080357227872, 0.09137114470442012, 0.10578462105215963, 0.07438383329458427, 0.0783732776408336, 0.05134800948882201, 0.06653363635519043, 0.10462639527421627, 0.1347426380996812, 0.344342297365852, 0.059885616933191645, 0.07485702116648955, 0.08982842539978747, 0.059885616933191645, 0.08982842539978747, 0.044914212699893735, 0.044914212699893735, 0.044914212699893735, 0.18186541534050352, 0.09535584000797089, 0.10569562988835327, 0.10604028955103269, 0.10351278535805032, 0.09593027277910324, 0.06605976868022079, 0.06973613841546786, 0.1135079155757533, 0.06203873928229431, 0.11803730248597254, 0.3541119074579176, 0.11803730248597254, 0.11803730248597254, 0.11803730248597254, 0.11803730248597254, 0.11803730248597254, 0.11803730248597254, 0.12669412250706485, 0.09411563386239105, 0.07963630557586934, 0.1303139545786953, 0.0434379848595651, 0.06153714521771722, 0.19185109979641252, 0.13755361872195615, 0.03619832071630425, 0.09411563386239105, 0.12712581676178544, 0.09775975308981301, 0.10592758681675772, 0.12467864478912107, 0.11031342749503932, 0.12772966439140393, 0.07503601334364386, 0.08711296593601348, 0.066359676349652, 0.07799168858335537, 0.1601022382874081, 0.10515990187680516, 0.10448493459903363, 0.1116395877434119, 0.07249148563266286, 0.07951114532148683, 0.12567890712105984, 0.12945872387658042, 0.05426736913283142, 0.057237225155026175, 0.3792889357716899, 0.12642964525722997, 0.12642964525722997, 0.12642964525722997, 0.14946089051408143, 0.10344932852924364, 0.14693025460491535, 0.12668516733158672, 0.10920077377734837, 0.09624085048495239, 0.07860308505743123, 0.08734528183455041, 0.049309057260417836, 0.05283661034592207, 0.16814143034701456, 0.12461597275934712, 0.08353282541707986, 0.08859189663969451, 0.12322036690483273, 0.08077068883002013, 0.0793460078535367, 0.10278055616059077, 0.06716353174850487, 0.08184646834287497, 0.14598841849776195, 0.09637725070132397, 0.11842665861085197, 0.09566597947843597, 0.10695741014178298, 0.10749086355894898, 0.07530584072326697, 0.06970457984302399, 0.10713522794750498, 0.07708401878048698, 0.07894661348202807, 0.07894661348202807, 0.07894661348202807, 0.07894661348202807, 0.15789322696405614, 0.07894661348202807, 0.07894661348202807, 0.07894661348202807, 0.07894661348202807, 0.2368398404460842, 0.07561769516679327, 0.037808847583396636, 0.09452211895849158, 0.037808847583396636, 0.15123539033358654, 0.18904423791698316, 0.018904423791698318, 0.05671327137509495, 0.3402796282505697, 0.018904423791698318, 0.14114866359763129, 0.10946222891244875, 0.07489520925588598, 0.12818603122642025, 0.09793988902692782, 0.07201462428450575, 0.09073842659847725, 0.061932576884674954, 0.07489520925588598, 0.14690983354039175, 0.1466696275595305, 0.07605091799383062, 0.10049585592041904, 0.06382844903053642, 0.08963143906415752, 0.04481571953207876, 0.0937055953852556, 0.14123741913139973, 0.20099171184083808, 0.04074156321098069, 0.09480122084428222, 0.04740061042214111, 0.09480122084428222, 0.04740061042214111, 0.09480122084428222, 0.42660549379927, 0.04740061042214111, 0.04740061042214111, 0.04740061042214111, 0.04740061042214111, 0.09307746006075326, 0.13461202557173454, 0.2201832388533948, 0.06905747036765565, 0.10608828781118114, 0.044537064222618494, 0.06305247294438124, 0.09557954232045093, 0.06505413875213938, 0.10909078652281834, 0.10143564476604579, 0.10290572657424935, 0.06174343594454961, 0.11025613561526716, 0.09555531753323154, 0.1705294897516132, 0.08967499030041728, 0.07644425402658522, 0.02940163616407124, 0.16170899890239182, 0.3718423763212068, 0.145611534765058, 0.436834604295174, 0.145611534765058, 0.145611534765058, 0.145611534765058, 0.14692405481090015, 0.2938481096218003, 0.14692405481090015, 0.14692405481090015, 0.14692405481090015, 0.14356024412971521, 0.0991870777623487, 0.1111939345441067, 0.17425603451090524, 0.10555593222919425, 0.07120588108833875, 0.09615926170434017, 0.061809210563484665, 0.07360725244469035, 0.063375322317627, 0.14674293411495887, 0.14674293411495887, 0.14674293411495887, 0.14674293411495887, 0.14674293411495887, 0.14674293411495887, 0.29348586822991773, 0.14674293411495887, 0.16245773669192762, 0.08122886834596381, 0.08122886834596381, 0.08122886834596381, 0.08122886834596381, 0.24368660503789144, 0.16245773669192762, 0.09900121047826611, 0.07425090785869959, 0.14850181571739918, 0.09900121047826611, 0.09900121047826611, 0.07425090785869959, 0.24750302619566528, 0.04950060523913306, 0.04950060523913306, 0.07425090785869959, 0.03308922492531432, 0.06617844985062864, 0.06617844985062864, 0.09926767477594295, 0.1654461246265716, 0.13235689970125727, 0.23162457447720022, 0.03308922492531432, 0.13235689970125727, 0.03308922492531432, 0.07396696010413129, 0.11095044015619693, 0.3328513204685908, 0.07396696010413129, 0.03698348005206564, 0.07396696010413129, 0.14793392020826257, 0.03698348005206564, 0.03698348005206564, 0.07396696010413129, 0.371042236625921, 0.12368074554197367, 0.12368074554197367, 0.12368074554197367, 0.12368074554197367, 0.11214459687692636, 0.11214459687692636, 0.04485783875077054, 0.11214459687692636, 0.2915759518800085, 0.04485783875077054, 0.11214459687692636, 0.06728675812615581, 0.04485783875077054, 0.06728675812615581, 0.11694722564316991, 0.07016833538590195, 0.07016833538590195, 0.275995452517881, 0.09355778051453592, 0.11226933661744311, 0.08887989148880912, 0.07952411343735553, 0.051456779282994754, 0.04210100123154117, 0.1612825339683895, 0.08064126698419476, 0.04032063349209738, 0.08064126698419476, 0.12096190047629214, 0.4032063349209738, 0.04032063349209738, 0.04032063349209738, 0.04032063349209738, 0.04032063349209738, 0.1109255939623143, 0.14948685942374437, 0.07613123875161518, 0.11380034125892477, 0.1297601452159691, 0.11816202681240272, 0.08683719420106106, 0.051150676036241446, 0.1103308186595673, 0.05343064803010492, 0.15512292982982212, 0.09254197050812503, 0.12414768496187745, 0.11880239934307282, 0.1164175796054523, 0.0804259897721679, 0.07022882951475602, 0.10885194457575963, 0.07519035103785159, 0.05827731910553134, 0.3146379003988237, 0.2049690852128976, 0.08463964637190487, 0.10765371909756355, 0.10846280759182499, 0.13745514530285985, 0.10486685872844081, 0.06396294040744589, 0.05393923295076253, 0.08445984892873566, 0.04957914495390922, 0.12828796931891426, 0.3848639079567428, 0.12828796931891426, 0.12828796931891426, 0.12828796931891426, 0.12828796931891426, 0.12828796931891426, 0.09546146972385013, 0.11388385861792646, 0.09881099497731856, 0.08206336870997642, 0.07034003032283694, 0.07536431820303957, 0.06029145456243166, 0.09546146972385013, 0.05694192930896323, 0.25456391926360034, 0.09500868578434578, 0.09500868578434578, 0.09500868578434578, 0.3800347431373831, 0.09500868578434578, 0.09500868578434578, 0.09500868578434578, 0.09500868578434578, 0.09500868578434578, 0.09500868578434578, 0.1396945019452561, 0.1010781221220637, 0.1416606100563586, 0.13374576458345885, 0.10516157742973808, 0.10707727251235076, 0.06175595990001398, 0.079803824099365, 0.0777368899312829, 0.0522783105439302, 0.10813421063093427, 0.09268646625508652, 0.04634323312754326, 0.09268646625508652, 0.27805939876525954, 0.12358195500678203, 0.10813421063093427, 0.04634323312754326, 0.06179097750339101, 0.04634323312754326, 0.12850332119923527, 0.14923999421518663, 0.09839911635754525, 0.08903158453180661, 0.09391551138112333, 0.08422772205706884, 0.10528465257133605, 0.10232227071191444, 0.08358720706043714, 0.06557272278017051, 0.135052186489614, 0.10714464870433911, 0.10446552507695271, 0.1421965161626444, 0.10024387572470748, 0.11447164589741855, 0.09050160798875698, 0.08035341243047518, 0.04968556545334763, 0.0758882063848312, 0.43297860029055957, 0.08659572005811192, 0.08659572005811192, 0.08659572005811192, 0.08659572005811192, 0.08659572005811192, 0.15239630547628863, 0.10771021128291405, 0.10718207622350451, 0.10932395729777657, 0.10292765491159425, 0.09770498599076649, 0.08370940691641346, 0.07575804018863637, 0.07696101449062479, 0.0862620597035596, 0.14639770901833743, 0.14639770901833743, 0.14639770901833743, 0.14639770901833743, 0.14639770901833743, 0.14639770901833743, 0.14639770901833743, 0.29279541803667486, 0.14639770901833743, 0.11525328376180538, 0.11525328376180538, 0.06402960208989188, 0.08323848271685945, 0.29453616961350265, 0.08323848271685945, 0.09604440313483782, 0.04482072146292432, 0.051223681671913504, 0.051223681671913504, 0.19017324931326623, 0.19017324931326623, 0.38034649862653247, 0.2029332732734839, 0.11457952639817473, 0.09934144415816491, 0.09278499927744852, 0.11127869552719337, 0.07329653208028462, 0.09328238475115803, 0.07655214609001966, 0.07591911003257118, 0.06000277487386656, 0.14392965968280147, 0.14392965968280147, 0.14392965968280147, 0.14392965968280147, 0.14392965968280147, 0.14392965968280147, 0.28785931936560294, 0.14671883725053536, 0.14671883725053536, 0.14671883725053536, 0.14671883725053536, 0.14671883725053536, 0.2934376745010707, 0.10481475702140876, 0.10481475702140876, 0.05240737851070438, 0.10481475702140876, 0.05240737851070438, 0.10481475702140876, 0.05240737851070438, 0.2620368925535219, 0.20962951404281752, 0.2161841095009005, 0.11936033845030414, 0.15340596484259772, 0.07101265966973447, 0.10433596018383229, 0.06984088657843912, 0.06165452662555382, 0.07820381507932783, 0.06248921430702448, 0.06351652222268067, 0.21554740828062868, 0.12064728611360472, 0.10066620553919757, 0.07760187205050313, 0.1272942988898604, 0.085169856476481, 0.07207604215217009, 0.07427836566237529, 0.0647483112000328, 0.06194535400522619, 0.14686068927926488, 0.29372137855852976, 0.14686068927926488, 0.14686068927926488, 0.14686068927926488, 0.12061864267895933, 0.24123728535791866, 0.28380857100931606, 0.03547607137616451, 0.04257128565139741, 0.04257128565139741, 0.04257128565139741, 0.05676171420186321, 0.04966649992663031, 0.07804735702756192, 0.14712101390800336, 0.4413630417240101, 0.14712101390800336, 0.14712101390800336, 0.14712101390800336, 0.13037450506599435, 0.13037450506599435, 0.39112351519798305, 0.13037450506599435, 0.13037450506599435, 0.16530391122364688, 0.09929295154096794, 0.12191666201865685, 0.08873521998471312, 0.12277133552559176, 0.07797638877976774, 0.0778255640432498, 0.0785294128136668, 0.09185226453941693, 0.07576429264417149, 0.10007683492361658, 0.10841657116725129, 0.05003841746180829, 0.09173709867998187, 0.2752112960399456, 0.10841657116725129, 0.11675630741088601, 0.03335894497453886, 0.058378153705443005, 0.05003841746180829, 0.05508529756765528, 0.11017059513531056, 0.05508529756765528, 0.05508529756765528, 0.16525589270296587, 0.05508529756765528, 0.05508529756765528, 0.05508529756765528, 0.05508529756765528, 0.27542648783827645, 0.14679476189114263, 0.14679476189114263, 0.14679476189114263, 0.14679476189114263, 0.14679476189114263, 0.29358952378228526, 0.19254049580824717, 0.11309647558758501, 0.09721820439333269, 0.10208964746287942, 0.08502643065711572, 0.0949273095444107, 0.08494743428301496, 0.07423025953001214, 0.0864220332662291, 0.06949047708396668, 0.29233508438260836, 0.1479892999415632, 0.1479892999415632, 0.1479892999415632, 0.1479892999415632, 0.2959785998831264, 0.21388551947530712, 0.21388551947530712, 0.21388551947530712, 0.12653974057641643, 0.08084947757656549, 0.12269507210447775, 0.141305496301978, 0.12230503327399121, 0.0904890086728755, 0.07059702831806236, 0.09316356065335459, 0.08469414604850417, 0.06730955817539015, 0.05314251260344811, 0.15942753781034433, 0.05314251260344811, 0.05314251260344811, 0.10628502520689621, 0.15942753781034433, 0.10628502520689621, 0.05314251260344811, 0.05314251260344811, 0.21257005041379243, 0.26081908771780515, 0.11249385572493192, 0.11416043136530128, 0.08721745851266327, 0.09235606673713546, 0.0756208696817598, 0.058607910019655894, 0.06332987433403575, 0.06381595889581015, 0.07166275253588256, 0.08483970580931473, 0.050903823485588834, 0.11877558813304061, 0.13574352929490355, 0.08483970580931473, 0.050903823485588834, 0.10180764697117767, 0.08483970580931473, 0.23755117626608122, 0.050903823485588834, 0.15251235097180466, 0.15251235097180466, 0.32681218065386713, 0.04357495742051562, 0.04357495742051562, 0.06536243613077343, 0.06536243613077343, 0.04357495742051562, 0.04357495742051562, 0.06536243613077343, 0.07945298254859509, 0.07945298254859509, 0.07945298254859509, 0.23835894764578527, 0.07945298254859509, 0.07945298254859509, 0.07945298254859509, 0.23835894764578527, 0.07945298254859509, 0.08457803553244694, 0.3383121421297878, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.08457803553244694, 0.22007254668592574, 0.11003627334296287, 0.11003627334296287, 0.07335751556197526, 0.11003627334296287, 0.03667875778098763, 0.03667875778098763, 0.22007254668592574, 0.03667875778098763, 0.03667875778098763, 0.11137227030400441, 0.05568613515200221, 0.05568613515200221, 0.05568613515200221, 0.05568613515200221, 0.38980294606401544, 0.05568613515200221, 0.05568613515200221, 0.05568613515200221, 0.05568613515200221, 0.1458913147039067, 0.1458913147039067, 0.1458913147039067, 0.2917826294078134, 0.1458913147039067, 0.29177366078704425, 0.15632077534058297, 0.14728106900918114, 0.10621654939397157, 0.11878394600104242, 0.08631817143277606, 0.10649215019675821, 0.08802689641005325, 0.06790803780662842, 0.05445871863064033, 0.06818363860941506, 0.09446930626182297, 0.023617326565455742, 0.1180866328272787, 0.07085197969636722, 0.047234653130911484, 0.07085197969636722, 0.2834079187854689, 0.14170395939273445, 0.047234653130911484, 0.09446930626182297, 0.12907167616128326, 0.05646885832056143, 0.048401878560481226, 0.3468801296834488, 0.08066979760080203, 0.08066979760080203, 0.06453583808064163, 0.10487073688104265, 0.04033489880040102, 0.048401878560481226, 0.11298395521322556, 0.05649197760661278, 0.05649197760661278, 0.05649197760661278, 0.33895186563967666, 0.05649197760661278, 0.11298395521322556, 0.05649197760661278, 0.11298395521322556, 0.33040617010291123, 0.08978428535405197, 0.0772144854044847, 0.09876271388945716, 0.13108505661691588, 0.07003174257616053, 0.02693528560621559, 0.06823605686907949, 0.05746194262659326, 0.0502791997982691, 0.27000301517293473, 0.08166562475336127, 0.055393350123403955, 0.15320217976987152, 0.08767975990961654, 0.0902120273438293, 0.05634295041123374, 0.10065763050995691, 0.045897347245106135, 0.05887521784544649, 0.16458359747046736, 0.12473119091227676, 0.10754163357709155, 0.11754749530951279, 0.12071174218215883, 0.1020255815963978, 0.06422565949613977, 0.060548291509010595, 0.08953963447730803, 0.04857546550440398, 0.13733475183929286, 0.06866737591964643, 0.11444562653274405, 0.06866737591964643, 0.34333687959823217, 0.09155650122619524, 0.06866737591964643, 0.02288912530654881, 0.02288912530654881, 0.04577825061309762, 0.0505279117775581, 0.14147815297716268, 0.04042232942204648, 0.12126698826613945, 0.1515837353326743, 0.1010558235551162, 0.04042232942204648, 0.030316747066534862, 0.12126698826613945, 0.2021116471102324, 0.0795495649106195, 0.08750452140168145, 0.05568469543743365, 0.08750452140168145, 0.34206312911566383, 0.11932434736592926, 0.08750452140168145, 0.03977478245530975, 0.047729738946371704, 0.047729738946371704, 0.10915701984161498, 0.12199902217592262, 0.057789010504384404, 0.08989401634015351, 0.2761030501876144, 0.10915701984161498, 0.10273601867446115, 0.038526007002922934, 0.051368009337230576, 0.044947008170076755, 0.09641897469806732, 0.07888825202569144, 0.31555300810276576, 0.08765361336187938, 0.061357529353315565, 0.05259216801712763, 0.12271505870663113, 0.03506144534475175, 0.03506144534475175, 0.09641897469806732, 0.06625976975253464, 0.19877930925760393, 0.1656494243813366, 0.06625976975253464, 0.03312988487626732, 0.03312988487626732, 0.13251953950506928, 0.23190919413387123, 0.03312988487626732, 0.06625976975253464, 0.04917275853919598, 0.09834551707839197, 0.19669103415678393, 0.04917275853919598, 0.2950365512351759, 0.09834551707839197, 0.04917275853919598, 0.04917275853919598, 0.09834551707839197, 0.04917275853919598, 0.15433022168730554, 0.1045841857627172, 0.17704888376310177, 0.09342070525995524, 0.11398501144925358, 0.09655431382213404, 0.0530754950219033, 0.07246469800038458, 0.06521822820034612, 0.06933108943820579, 0.07426447009845472, 0.07426447009845472, 0.07426447009845472, 0.14852894019690943, 0.3713223504922736, 0.07426447009845472, 0.07426447009845472, 0.07426447009845472, 0.38898647818493665, 0.05304361066158227, 0.07072481421544304, 0.1237684248770253, 0.07072481421544304, 0.08840601776930379, 0.07072481421544304, 0.05304361066158227, 0.03536240710772152, 0.05304361066158227, 0.4097483575817869, 0.04552759528686521, 0.09105519057373042, 0.04552759528686521, 0.09105519057373042, 0.09105519057373042, 0.04552759528686521, 0.04552759528686521, 0.04552759528686521, 0.04552759528686521, 0.45367292396054476, 0.19443125312594775, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.06481041770864925, 0.14120152996763466, 0.11221138787629904, 0.09763710879213032, 0.11659423267334978, 0.1405678656596273, 0.07915523314191636, 0.07788790452590169, 0.07683179734588946, 0.07809912596190413, 0.07978889744992369, 0.1835890874989011, 0.1352761697360324, 0.11595100263088491, 0.07730066842058994, 0.07730066842058994, 0.03865033421029497, 0.03865033421029497, 0.22223942170919608, 0.057975501315442456, 0.04831291776286871, 0.11020978982873242, 0.12264280399152254, 0.103194017551158, 0.14502222948454474, 0.09457971488122484, 0.08232431520647458, 0.07415404875664107, 0.11544941722590825, 0.08596541221129168, 0.06642781852690721, 0.14516531119987242, 0.14516531119987242, 0.14516531119987242, 0.14516531119987242, 0.14516531119987242, 0.14516531119987242, 0.14516531119987242, 0.29033062239974483, 0.17866800424745907, 0.09923476141822213, 0.12342820382426713, 0.11850622023618285, 0.13425656771805253, 0.08132631344003859, 0.0800768868369095, 0.04971203423965114, 0.04134466213990788, 0.0934419653491691, 0.20278093751972406, 0.10139046875986203, 0.10139046875986203, 0.10139046875986203, 0.10139046875986203, 0.3041714062795861, 0.10139046875986203, 0.10139046875986203, 0.13826384129902622, 0.034565960324756555, 0.06913192064951311, 0.06913192064951311, 0.10369788097426966, 0.034565960324756555, 0.10369788097426966, 0.13826384129902622, 0.24196172227329588, 0.034565960324756555, 0.14725525414117258, 0.14725525414117258, 0.14725525414117258, 0.14725525414117258, 0.29451050828234515, 0.4385203914773572, 0.1096300978693393, 0.08222257340200448, 0.05481504893466965, 0.027407524467334826, 0.08222257340200448, 0.05481504893466965, 0.027407524467334826, 0.08222257340200448, 0.05481504893466965, 0.13542373819797723, 0.40627121459393173, 0.13542373819797723, 0.13542373819797723, 0.2251105052584972, 0.08972423455076614, 0.12385410683159248, 0.09339052942468302, 0.12832032058709125, 0.09192401147511628, 0.049528310751277296, 0.07205935924916657, 0.07045952148600283, 0.055594362269939794, 0.10884723104466079, 0.1311819036109209, 0.12028894905464908, 0.10695399712933899, 0.12322483353203217, 0.1216059813435686, 0.05901950944720579, 0.06744302846175353, 0.07496108777766909, 0.08645768213302903, 0.15845971957911867, 0.10628738732214478, 0.12916550460288542, 0.12821970534100005, 0.058383932814761584, 0.09872099322706183, 0.0842016964500108, 0.0893141248926344, 0.07119056606353372, 0.07604737308402615, 0.07297967321669706, 0.08156551712454377, 0.06439382930885035, 0.1287876586177007, 0.09444428298631384, 0.2575753172354014, 0.08156551712454377, 0.08585843907846712, 0.06439382930885035, 0.0686867512627737, 0.10644539248704551, 0.05150583507437686, 0.12876458768594215, 0.12876458768594215, 0.08240933611900297, 0.08412619728814888, 0.17340297808373545, 0.08412619728814888, 0.06695758559668992, 0.09442736430302424, 0.11299820754228844, 0.050849193394029796, 0.07909874527960191, 0.08474865565671633, 0.13559784905074612, 0.25989587734726344, 0.09039856603383076, 0.04519928301691538, 0.07344883490248749, 0.062149014148258644, 0.1337568712663176, 0.0835980445414485, 0.1170372623580279, 0.1003176534497382, 0.0668784356331588, 0.0668784356331588, 0.0501588267248691, 0.0668784356331588, 0.1337568712663176, 0.2006353068994764, 0.04660212973519748, 0.2923224501571478, 0.12286016021097518, 0.12286016021097518, 0.021182786243271582, 0.08473114497308633, 0.05931180148116043, 0.13133327470828382, 0.05931180148116043, 0.055075244232506114, 0.06720463743556666, 0.08960618324742221, 0.13440927487113333, 0.13440927487113333, 0.31362164136597775, 0.08960618324742221, 0.08960618324742221, 0.022401545811855553, 0.04480309162371111, 0.022401545811855553, 0.38337458333202645, 0.12779152777734215, 0.04792182291650331, 0.12779152777734215, 0.04792182291650331, 0.04792182291650331, 0.03194788194433554, 0.04792182291650331, 0.04792182291650331, 0.07986970486083884, 0.49991780935039726, 0.12497945233759931, 0.12497945233759931, 0.12497945233759931, 0.07919734860582471, 0.07919734860582471, 0.07919734860582471, 0.39598674302912357, 0.07919734860582471, 0.07919734860582471, 0.07919734860582471, 0.07919734860582471, 0.07919734860582471, 0.10266452618262259, 0.10266452618262259, 0.0710754412033541, 0.11056179742743971, 0.30009630730305065, 0.08686998369298835, 0.08686998369298835, 0.047383627468902734, 0.047383627468902734, 0.047383627468902734, 0.164943741990031, 0.04123593549750775, 0.0824718709950155, 0.0824718709950155, 0.37112341947756977, 0.04123593549750775, 0.0824718709950155, 0.04123593549750775, 0.0824718709950155, 0.04123593549750775, 0.14621462057978435, 0.14621462057978435, 0.14621462057978435, 0.14621462057978435, 0.2924292411595687, 0.11536836817029526, 0.23073673634059053, 0.3461051045108858, 0.11536836817029526, 0.13593168090696234, 0.13593168090696234, 0.13593168090696234, 0.13593168090696234, 0.13593168090696234, 0.13593168090696234, 0.2718633618139247, 0.43800973024291856, 0.1752038920971674, 0.0876019460485837, 0.0876019460485837, 0.0876019460485837, 0.0876019460485837, 0.0876019460485837, 0.05819348087608487, 0.17458044262825462, 0.05819348087608487, 0.05819348087608487, 0.11638696175216974, 0.11638696175216974, 0.11638696175216974, 0.11638696175216974, 0.05819348087608487, 0.23277392350433948, 0.06433806097376789, 0.06433806097376789, 0.12867612194753578, 0.09650709146065184, 0.09650709146065184, 0.032169030486883944, 0.09650709146065184, 0.09650709146065184, 0.3216903048688394, 0.06433806097376789, 0.14808792446253402, 0.14808792446253402, 0.14808792446253402, 0.14808792446253402, 0.14808792446253402, 0.14808792446253402, 0.29617584892506804, 0.14808792446253402, 0.1419704806478569, 0.09464698709857125, 0.08675973817369032, 0.07098524032392844, 0.05521074247416657, 0.2839409612957138, 0.05521074247416657, 0.08675973817369032, 0.07098524032392844, 0.05521074247416657, 0.14560307251359997, 0.1592688898996887, 0.07509987827173309, 0.06193099969968395, 0.08348572075865118, 0.11870625920370716, 0.07820574585948054, 0.08982169063765597, 0.0771497508796464, 0.1107552381790737, 0.16010959103171227, 0.10808405641435488, 0.08892736731106438, 0.074811912182324, 0.08065974359280215, 0.10707580961944485, 0.05827666474579955, 0.13389517436405157, 0.07501356154130599, 0.11292364102992301, 0.12787683045080614, 0.12787683045080614, 0.08525122030053743, 0.08525122030053743, 0.042625610150268715, 0.08525122030053743, 0.042625610150268715, 0.298379271051881, 0.042625610150268715, 0.08525122030053743, 0.1378993296312427, 0.1378993296312427, 0.1378993296312427, 0.41369798889372816, 0.09614594895641382, 0.04807297447820691, 0.07210946171731036, 0.07210946171731036, 0.07210946171731036, 0.024036487239103455, 0.09614594895641382, 0.16825541067372418, 0.28843784686924145, 0.04807297447820691, 0.42819692078390026, 0.04757743564265558, 0.14273230692796676, 0.04757743564265558, 0.04757743564265558, 0.04757743564265558, 0.04757743564265558, 0.09515487128531117, 0.04757743564265558, 0.04757743564265558, 0.145572822931565, 0.145572822931565, 0.145572822931565, 0.145572822931565, 0.29114564586313, 0.10819556551846429, 0.09016297126538692, 0.054097782759232146, 0.09016297126538692, 0.10819556551846429, 0.054097782759232146, 0.234423725290006, 0.09016297126538692, 0.12622815977154167, 0.054097782759232146, 0.10539014577303314, 0.06586884110814571, 0.03952130466488743, 0.07904260932977486, 0.092216377551404, 0.06586884110814571, 0.26347536443258285, 0.092216377551404, 0.13173768221629142, 0.06586884110814571, 0.26795549554440684, 0.13397774777220342, 0.13397774777220342, 0.26795549554440684, 0.13397774777220342, 0.37653348469005327, 0.1255111615633511, 0.1255111615633511, 0.09175329113147097, 0.09175329113147097, 0.09175329113147097, 0.09175329113147097, 0.09175329113147097, 0.09175329113147097, 0.09175329113147097, 0.2752598733944129, 0.09175329113147097, 0.09175329113147097, 0.1398443624797057, 0.1398443624797057, 0.4195330874391171, 0.1398443624797057, 0.1878600213974847, 0.11408312466296437, 0.10159055109449926, 0.10206196896500738, 0.08721230604400168, 0.08815514178501792, 0.0695341358999473, 0.051384547885384775, 0.12209722846160236, 0.07542685928129875, 0.1665724654904337, 0.09711966385772469, 0.08393913804846205, 0.11768618090994874, 0.13094831988211703, 0.10071064302557332, 0.09699724411336622, 0.06549456323178493, 0.07573701517644413, 0.06484165792853971, 0.13032232838638863, 0.13032232838638863, 0.3909669851591659, 0.06516116419319432, 0.06516116419319432, 0.06516116419319432, 0.06516116419319432, 0.06516116419319432, 0.06516116419319432, 0.06516116419319432, 0.1166221744639432, 0.0965372444173752, 0.09243387161216238, 0.15371450495316957, 0.06452013818722784, 0.10161246867645421, 0.10549987449191899, 0.09642926092250118, 0.07785609980416948, 0.09475551675195384, 0.0765952875874662, 0.0765952875874662, 0.0765952875874662, 0.1531905751749324, 0.3063811503498648, 0.0765952875874662, 0.1531905751749324, 0.0765952875874662, 0.0765952875874662, 0.0765952875874662, 0.10353036041281999, 0.07764777030961499, 0.04313765017200833, 0.07764777030961499, 0.07764777030961499, 0.06039271024081166, 0.26745343106645164, 0.11215789044722166, 0.129412950516025, 0.04313765017200833, 0.15364051308441246, 0.07682025654220623, 0.2304607696266187, 0.07682025654220623, 0.07682025654220623, 0.2304607696266187, 0.07682025654220623, 0.07682025654220623, 0.14560713508941028, 0.14560713508941028, 0.07280356754470514, 0.07280356754470514, 0.07280356754470514, 0.07280356754470514, 0.07280356754470514, 0.07280356754470514, 0.07280356754470514, 0.2184107026341154, 0.17109145143652754, 0.10862983873116848, 0.12517372533961493, 0.12015283546042216, 0.08154317250654285, 0.10372875316579593, 0.0743984788823553, 0.06591415520363261, 0.06711219834183478, 0.08225110708820778, 0.12634385984526753, 0.3790315795358026, 0.12634385984526753, 0.12634385984526753, 0.12634385984526753, 0.18178621313959883, 0.13732949955692705, 0.09536890348422135, 0.1074621624549191, 0.11258350700122882, 0.089946303376364, 0.06868626803285978, 0.0742379776670947, 0.07647587612430566, 0.056162643974236856, 0.13509360856087047, 0.4052808256826114, 0.13509360856087047, 0.13509360856087047, 0.1460810491674958, 0.1460810491674958, 0.1460810491674958, 0.1460810491674958, 0.1460810491674958, 0.1460810491674958, 0.2921620983349916, 0.3456515098376908, 0.19706010920509615, 0.1289956543273672, 0.10621323060328894, 0.07790017711998619, 0.11158674019889912, 0.1090728175810698, 0.0729037559170504, 0.0730923001133876, 0.07013844103743815, 0.052980919170753, 0.06606923003404462, 0.1038230757677844, 0.08494615290091452, 0.1415769215015242, 0.04719230716717473, 0.2831538430030484, 0.06606923003404462, 0.07550769146747957, 0.06606923003404462, 0.037753845733739785, 0.14442121760711402, 0.14442121760711402, 0.4332636528213421, 0.14442121760711402, 0.14442121760711402, 0.09040530035920756, 0.08820029303337322, 0.253575842470948, 0.12348041024672252, 0.06615021977502991, 0.0859952857075389, 0.07717525640420157, 0.06835522710086425, 0.08379027838170457, 0.06174020512336126, 0.1465313035333196, 0.1465313035333196, 0.1465313035333196, 0.1465313035333196, 0.1465313035333196, 0.1465313035333196, 0.1465313035333196, 0.13223946044242976, 0.11334810895065409, 0.07556540596710273, 0.07556540596710273, 0.09445675745887841, 0.09445675745887841, 0.09445675745887841, 0.2078048664095325, 0.03778270298355137, 0.05667405447532704, 0.0734491685419167, 0.11542012199444053, 0.32527488925705966, 0.10492738363130957, 0.0734491685419167, 0.11542012199444053, 0.13640559872070246, 0.03147821508939287, 0.020985476726261915, 0.010492738363130957, 0.20220420004234343, 0.11518934121669853, 0.1177730273748301, 0.10057921115583557, 0.12137173309508477, 0.0859998392635218, 0.0604398011991489, 0.07834105529477468, 0.04635256000362208, 0.07175880722524905, 0.18724899150938829, 0.14979919320751062, 0.11234939490563296, 0.07489959660375531, 0.07489959660375531, 0.037449798301877654, 0.037449798301877654, 0.22469878981126593, 0.037449798301877654, 0.037449798301877654, 0.20189593025173674, 0.12083251113835056, 0.16314366160241067, 0.08631700655418403, 0.08586508505390035, 0.0724204204204607, 0.06874855823065575, 0.0814588504261344, 0.05174501178248205, 0.06761875447994653, 0.12976522156321024, 0.09083565509424717, 0.10381217725056818, 0.11678869940688921, 0.07785913293792614, 0.06488261078160512, 0.03892956646896307, 0.05190608862528409, 0.14274174371953124, 0.19464783234481536, 0.1367967177218004, 0.41039015316540123, 0.1367967177218004, 0.1367967177218004, 0.1367967177218004, 0.12123314847466081, 0.060616574237330405, 0.08082209898310722, 0.060616574237330405, 0.08082209898310722, 0.04041104949155361, 0.101027623728884, 0.101027623728884, 0.28287734644087525, 0.060616574237330405, 0.07932450684398087, 0.07932450684398087, 0.15864901368796175, 0.07932450684398087, 0.07932450684398087, 0.07932450684398087, 0.07932450684398087, 0.07932450684398087, 0.23797352053194262, 0.07932450684398087, 0.3716843223276754, 0.12389477410922514, 0.12389477410922514, 0.12389477410922514, 0.12389477410922514, 0.12389477410922514, 0.0765958997709611, 0.061276719816768875, 0.12255343963353775, 0.0842554897480572, 0.09191507972515331, 0.03829794988548055, 0.06893630979386499, 0.0765958997709611, 0.3140431890609405, 0.0765958997709611, 0.14668784988915917, 0.14668784988915917, 0.14668784988915917, 0.14668784988915917, 0.29337569977831834, 0.14668784988915917, 0.1901833159923182, 0.1901833159923182, 0.3803666319846364, 0.15506993732636923, 0.08614996518131623, 0.10337995821757948, 0.08614996518131623, 0.05168997910878974, 0.2929098816164752, 0.05168997910878974, 0.06891997214505298, 0.05168997910878974, 0.06891997214505298, 0.12724133424281595, 0.10450405114787976, 0.1139050431967476, 0.114342298640881, 0.1294276114634829, 0.07608244727920953, 0.07958049083227664, 0.07498930866887606, 0.12286877980148206, 0.05728046318147385, 0.11438084368479855, 0.1157669129180706, 0.10615482410472742, 0.11781588482812495, 0.12215488416706356, 0.12399293249814174, 0.0930172983284966, 0.08400784831222823, 0.07038821149833757, 0.05230904758609333, 0.16106920626956783, 0.11172758322220022, 0.11966761451717892, 0.0955234377222437, 0.15726123207707804, 0.08223603841227935, 0.07397192420730152, 0.05849696525484305, 0.0740529449348013, 0.0661129136398226, 0.14945905672438517, 0.14945905672438517, 0.29891811344877034, 0.14945905672438517, 0.14945905672438517, 0.1325248050146568, 0.09711425079079611, 0.12082873118778995, 0.12248644243884194, 0.12299296532110783, 0.1240060110856396, 0.08270137241359403, 0.07837290414695826, 0.0573291807655482, 0.061657649032183966, 0.2840924634886831, 0.06366188357791665, 0.06366188357791665, 0.06366188357791665, 0.06366188357791665, 0.3183094178895832, 0.1273237671558333, 0.1273237671558333, 0.06366188357791665, 0.1273237671558333, 0.1794725637546861, 0.10560958157675684, 0.10543578632457348, 0.10282885754182304, 0.06662151333695578, 0.13602375070884537, 0.0585689999857933, 0.07722302372014091, 0.09442875368629383, 0.07380505042720144, 0.07341374098561433, 0.07341374098561433, 0.07341374098561433, 0.36706870492807164, 0.07341374098561433, 0.07341374098561433, 0.07341374098561433, 0.07341374098561433, 0.07341374098561433, 0.07341374098561433, 0.07685256233883311, 0.2817927285757214, 0.11271709143028857, 0.07685256233883311, 0.1255258518200941, 0.06916730610494981, 0.0640438019490276, 0.035864529091455453, 0.09990833104048305, 0.05123504155922208, 0.08370288274264985, 0.08370288274264985, 0.1674057654852997, 0.08370288274264985, 0.08370288274264985, 0.08370288274264985, 0.25110864822794954, 0.08370288274264985, 0.08370288274264985, 0.18868371893379257, 0.13123986446170238, 0.10146138642184124, 0.08371133291773189, 0.09102591540568904, 0.10796323752224761, 0.05975201161273445, 0.090993406150187, 0.06794434399924645, 0.07724199107282756, 0.15512303647174058, 0.12864831912566593, 0.1307098749845816, 0.11363874576689412, 0.08900857839984928, 0.07924331380498569, 0.07855612851868046, 0.07016523449642731, 0.07870079910527104, 0.07616906383993603, 0.11705172225522943, 0.0780344815034863, 0.0780344815034863, 0.0780344815034863, 0.03901724075174315, 0.3901724075174315, 0.03901724075174315, 0.0780344815034863, 0.0780344815034863, 0.03901724075174315, 0.1479184341787778, 0.1479184341787778, 0.1479184341787778, 0.1479184341787778, 0.2958368683575556, 0.1479184341787778, 0.1847165917567324, 0.3694331835134648, 0.24628878900897652, 0.06157219725224413, 0.06157219725224413, 0.17239949711526267, 0.10739850153624882, 0.08019769199139627, 0.10535524823710497, 0.11557151473282423, 0.12553237456615052, 0.04252520928843146, 0.06461788558542438, 0.11110189814094706, 0.07521726207473313, 0.13575571659046962, 0.10860457327237569, 0.08145342995428176, 0.35296486313522096, 0.10860457327237569, 0.054302286636187844, 0.027151143318093922, 0.027151143318093922, 0.08145342995428176, 0.027151143318093922, 0.20439262006013076, 0.10355892749713291, 0.09174957611588092, 0.0926579877605926, 0.1989421501918606, 0.07903181308991722, 0.04905422881443138, 0.09629163433943938, 0.030885995920197536, 0.05450469868270153, 0.09635025772602028, 0.3854010309040811, 0.09635025772602028, 0.09635025772602028, 0.09635025772602028, 0.09635025772602028, 0.09635025772602028, 0.15760668893938193, 0.11861545079031609, 0.09316853747197838, 0.09111636704308018, 0.07264683318299636, 0.18797881128707533, 0.07675117404079276, 0.058281640180708943, 0.05089382663667542, 0.09357897155775802, 0.10910198397078187, 0.054550991985390936, 0.10910198397078187, 0.10910198397078187, 0.054550991985390936, 0.054550991985390936, 0.21820396794156374, 0.1636529759561728, 0.054550991985390936, 0.054550991985390936, 0.17492142541757524, 0.0836565648397777, 0.08996983151600693, 0.11355786085576457, 0.11125687171919017, 0.1158010361949376, 0.08559910843246361, 0.07756299059367364, 0.062207646003870624, 0.08546035531870033, 0.2098115067405112, 0.09701205421898307, 0.0872329173723429, 0.1111402673496046, 0.10631354684946344, 0.09640871415646542, 0.10269350647435756, 0.07531695113761941, 0.06164124305388611, 0.05241516793122045, 0.4394275691665623, 0.13717418145063337, 0.4115225443519001, 0.13717418145063337, 0.13717418145063337, 0.13717418145063337, 0.13717418145063337, 0.11647570700101918, 0.08735678025076439, 0.05823785350050959, 0.10191624362589179, 0.291189267502548, 0.10191624362589179, 0.11647570700101918, 0.043678390125382195, 0.043678390125382195, 0.043678390125382195, 0.10587232095701078, 0.05293616047850539, 0.10587232095701078, 0.10587232095701078, 0.05293616047850539, 0.05293616047850539, 0.26468080239252695, 0.15880848143551615, 0.05293616047850539, 0.05293616047850539, 0.07920669535136891, 0.07920669535136891, 0.15841339070273783, 0.07920669535136891, 0.07920669535136891, 0.07920669535136891, 0.07920669535136891, 0.31682678140547565, 0.07920669535136891, 0.1821394138242429, 0.1821394138242429, 0.09106970691212145, 0.09106970691212145, 0.09106970691212145, 0.27320912073636433, 0.09106970691212145, 0.09106970691212145, 0.18851852524575025, 0.0694541935115922, 0.1637134561344673, 0.1389083870231844, 0.054571152044822435, 0.0694541935115922, 0.05953216586707902, 0.0347270967557961, 0.19347953906800683, 0.02976608293353951, 0.07250722831755904, 0.36253614158779524, 0.07250722831755904, 0.29002891327023617, 0.14501445663511808, 0.07250722831755904, 0.14665714674095492, 0.4399714402228648, 0.14665714674095492, 0.14665714674095492, 0.14665714674095492, 0.0985925508463284, 0.07264714272887356, 0.07783622435236452, 0.12972704058727422, 0.10897071409331034, 0.062268979481891626, 0.2023741833161478, 0.08821438759934647, 0.11415979571680131, 0.057079897858400654, 0.10826999772050948, 0.06496199863230569, 0.04330799908820379, 0.38977199179383415, 0.06496199863230569, 0.06496199863230569, 0.08661599817640758, 0.06496199863230569, 0.04330799908820379, 0.04330799908820379, 0.14729925105445874, 0.14729925105445874, 0.14729925105445874, 0.14729925105445874, 0.14729925105445874, 0.14729925105445874, 0.29459850210891747, 0.14714432785517903, 0.4414329835655371, 0.14714432785517903, 0.14714432785517903, 0.14714432785517903, 0.20414805906106182, 0.20414805906106182, 0.13186820015207343, 0.14632119372314234, 0.10431443719580719, 0.11978598924454559, 0.07821826654379212, 0.11853913317705361, 0.09458544759875716, 0.07521527516997342, 0.052701620542864876, 0.07844656413361459, 0.16340794289683283, 0.09447455482125758, 0.08020481600899593, 0.13897726166183233, 0.1082445751537124, 0.08497990370492785, 0.09564056460747351, 0.08053796166220048, 0.06174299439391033, 0.09180938959562117, 0.1349593439187165, 0.10431320370355841, 0.09911860271159116, 0.1289424315728085, 0.13437770905861207, 0.10834453497531676, 0.09203870251790608, 0.05639852505564435, 0.06482220233991555, 0.07669557603584068, 0.05949693629604825, 0.09916156049341374, 0.09916156049341374, 0.09916156049341374, 0.2974846814802412, 0.1189938725920965, 0.1189938725920965, 0.039664624197365494, 0.039664624197365494, 0.019832312098682747, 0.11358697278575312, 0.11533595953523434, 0.08939265608459612, 0.11747361000682251, 0.09143314062565755, 0.12456672293527417, 0.1213602472278919, 0.08006472675402958, 0.07248578417294425, 0.07442910278347895, 0.12589426100128487, 0.14527777195920713, 0.10973038406688192, 0.09323797304844637, 0.0945521093845767, 0.08423613914595367, 0.1063793364097496, 0.07805969836614114, 0.07109477578465044, 0.09152959581147695, 0.14637141014265267, 0.14637141014265267, 0.14637141014265267, 0.14637141014265267, 0.14637141014265267, 0.29274282028530535, 0.1733826046910626, 0.08901978773910961, 0.1127076487622429, 0.09573657252827784, 0.10249813588270719, 0.10603564253833579, 0.08284034573307485, 0.09246773726421598, 0.07778036785856811, 0.0675708549790324, 0.10684955411784428, 0.10684955411784428, 0.21369910823568855, 0.10684955411784428, 0.10684955411784428, 0.10684955411784428, 0.21369910823568855, 0.10684955411784428, 0.121625772374121, 0.121625772374121, 0.121625772374121, 0.121625772374121, 0.121625772374121, 0.243251544748242, 0.121625772374121, 0.1498787414269074, 0.11419332680145328, 0.08564499510108996, 0.07850791217599912, 0.07850791217599912, 0.27834623407854236, 0.02854833170036332, 0.05709666340072664, 0.09991916095127161, 0.035685414625454145, 0.11442476672964139, 0.1137791408756981, 0.09902907328945526, 0.1675150773346703, 0.1021082119774925, 0.10752153644517083, 0.09033795602483406, 0.08199448345079771, 0.06078815732512199, 0.06252638077804623, 0.14004083892737004, 0.10481965742740035, 0.1198763794053193, 0.12445113564049821, 0.11565694404277564, 0.08501051877798486, 0.10481965742740035, 0.07532802499867415, 0.071819231381401, 0.05822820800310248, 0.1438935083411147, 0.1438935083411147, 0.1438935083411147, 0.1438935083411147, 0.1438935083411147, 0.1438935083411147, 0.1438935083411147, 0.2877870166822294, 0.11556683533803094, 0.081537339944038, 0.11236405930094925, 0.10315607819433939, 0.09021152504446757, 0.09968640415416756, 0.09941950615107742, 0.09488224009854504, 0.11196371229631404, 0.09114566805528307, 0.1113451200298743, 0.3340353600896229, 0.1113451200298743, 0.1113451200298743, 0.1113451200298743, 0.1113451200298743, 0.1113451200298743, 0.1113451200298743, 0.12609158926499395, 0.11015304567812673, 0.11534783025458714, 0.12077874140270486, 0.12786253855242363, 0.09492288180623139, 0.11853553897196059, 0.07024765506804437, 0.05867745305683707, 0.057496820198550604, 0.08391835493755642, 0.08391835493755642, 0.08391835493755642, 0.08391835493755642, 0.08391835493755642, 0.08391835493755642, 0.08391835493755642, 0.25175506481266924, 0.08391835493755642, 0.08391835493755642, 0.14475975329868226, 0.14475975329868226, 0.14475975329868226, 0.14475975329868226, 0.14475975329868226, 0.14475975329868226, 0.14475975329868226, 0.28951950659736453, 0.13084334145181384, 0.1076600941779185, 0.14130112156112085, 0.1200553156548445, 0.12296147770627296, 0.08579782965467248, 0.08544556758783266, 0.0763968357458849, 0.059708420329348665, 0.06983595475099334, 0.14717982129036908, 0.14717982129036908, 0.14717982129036908, 0.14717982129036908, 0.14717982129036908, 0.14717982129036908, 0.29435964258073816, 0.14717982129036908, 0.11329186546998507, 0.2556329272143253, 0.09005250845050096, 0.10457710658767853, 0.09586234770537198, 0.08133774956819441, 0.08133774956819441, 0.08133774956819441, 0.06681315143101683, 0.03195411590179066, 0.13307990208862802, 0.08871993472575201, 0.08871993472575201, 0.04435996736287601, 0.08871993472575201, 0.04435996736287601, 0.08871993472575201, 0.13307990208862802, 0.26615980417725604, 0.04435996736287601, 0.14333084937175164, 0.13046890218472643, 0.08103867377968832, 0.1363534531853262, 0.11483280952598988, 0.07473379770761714, 0.0811227387939826, 0.06330095576359472, 0.05977022516323485, 0.11491687454028417, 0.11664849550171631, 0.277940242368287, 0.0633646148404385, 0.09504692226065774, 0.08208597831602259, 0.09504692226065774, 0.08064587343328534, 0.10080734179160669, 0.05328388066127782, 0.034562517185693725, 0.4947490106032456, 0.1236872526508114, 0.1236872526508114, 0.4993468216185013, 0.12483670540462533, 0.12483670540462533, 0.12483670540462533, 0.13703459057833875, 0.103392845352324, 0.10421538191041728, 0.09599001632948458, 0.10561369405917584, 0.10495566481270122, 0.08768239709274256, 0.08225365580932698, 0.10117199664547218, 0.07764745108400466, 0.1174291426488351, 0.08652673668861534, 0.09270721788065929, 0.11124866145679115, 0.061804811920439524, 0.29666309721810974, 0.05562433072839557, 0.05562433072839557, 0.04944384953635162, 0.07416577430452743, 0.13530093375408422, 0.055794199486220296, 0.06555818439630885, 0.06416332940915334, 0.10879868899812958, 0.050214779537598266, 0.10042955907519653, 0.1325112237797732, 0.23433563784212524, 0.05300448951190928, 0.08370737707470882, 0.12556106561206323, 0.12556106561206323, 0.08370737707470882, 0.08370737707470882, 0.04185368853735441, 0.04185368853735441, 0.04185368853735441, 0.04185368853735441, 0.29297581976148085, 0.1464407745032404, 0.5857630980129616, 0.11030673420166404, 0.44122693680665614, 0.11030673420166404, 0.11030673420166404, 0.11030673420166404, 0.11030673420166404, 0.11030673420166404, 0.1855651482034799, 0.08230515718010284, 0.10437386923431523, 0.095062543564754, 0.1165395078194055, 0.11826253817695047, 0.09777762170391578, 0.07280238369303661, 0.06282969283573087, 0.0645005101521381, 0.15253494534787534, 0.18222941988155014, 0.09662221826401658, 0.09695727580459401, 0.10834923218422665, 0.08937659894902965, 0.07593241513336024, 0.05319038456666712, 0.08606790573582751, 0.05880259837133909, 0.14427577609576597, 0.14427577609576597, 0.14427577609576597, 0.14427577609576597, 0.14427577609576597, 0.14427577609576597, 0.14427577609576597, 0.28855155219153195, 0.18866286628050738, 0.15642775402860612, 0.06950956375765271, 0.10932450860625427, 0.11852859104510463, 0.09316530504845365, 0.049976918220001956, 0.07554844137590296, 0.0714253456227528, 0.06742719216515264, 0.10583425570750603, 0.04724195762016211, 0.09601774503318664, 0.10736808550036844, 0.12147931959470258, 0.0868147662760122, 0.1211725536361301, 0.11657106425754288, 0.1377379153990441, 0.05981936192163385, 0.14524353326074152, 0.14524353326074152, 0.14524353326074152, 0.14524353326074152, 0.14524353326074152, 0.29048706652148304, 0.13783502965461691, 0.4135050889638508, 0.13783502965461691, 0.13783502965461691, 0.13783502965461691, 0.13698548328392163, 0.27397096656784325, 0.13698548328392163, 0.13698548328392163, 0.13698548328392163, 0.17747949474419786, 0.11831966316279857, 0.11831966316279857, 0.029579915790699643, 0.29579915790699646, 0.11831966316279857, 0.029579915790699643, 0.029579915790699643, 0.029579915790699643, 0.059159831581399286, 0.13840744863260823, 0.14215116641582914, 0.10287883280753139, 0.13583823054608407, 0.09432700689095815, 0.11535789208493441, 0.07913191706494387, 0.05659620413457488, 0.06239529638701511, 0.07285568431072059, 0.36021989162128887, 0.036757131798090696, 0.10291996903465396, 0.13967710083274465, 0.08086568995579954, 0.09556854267503581, 0.05145998451732698, 0.07351426359618139, 0.04410855815770884, 0.01470285271923628, 0.1474874660576796, 0.368718665144199, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.0737437330288398, 0.13592684343716743, 0.40778053031150224, 0.13592684343716743, 0.13592684343716743, 0.13592684343716743, 0.13592684343716743, 0.10461169031555623, 0.10461169031555623, 0.10461169031555623, 0.10461169031555623, 0.3138350709466687, 0.10461169031555623, 0.10461169031555623, 0.10461169031555623, 0.2125686725725872, 0.4251373451451744, 0.20152486238077377, 0.10225340071297803, 0.10740402270011107, 0.11347633493757318, 0.1099522251569032, 0.09677747628455238, 0.0704821956133995, 0.061536378477852635, 0.05546406624039052, 0.08110874202895818, 0.1942116870543155, 0.10198783408940292, 0.09809749786011379, 0.0956565025789912, 0.1259782408366858, 0.13196630738568962, 0.07181865803677849, 0.06014764934891114, 0.06930138165312083, 0.05087949539089883, 0.19488890004427295, 0.059057242437658475, 0.08268013941272186, 0.28938048794452653, 0.1003973121440194, 0.07677441516895601, 0.06496296668142432, 0.059057242437658475, 0.04724579395012678, 0.029528621218829237, 0.41432962169962895, 0.10358240542490724, 0.05179120271245362, 0.05179120271245362, 0.10358240542490724, 0.05179120271245362, 0.05179120271245362, 0.10358240542490724, 0.05179120271245362, 0.05179120271245362, 0.07766302215656605, 0.04659781329393963, 0.10872823101919248, 0.09319562658787926, 0.09319562658787926, 0.06213041772525284, 0.06213041772525284, 0.06213041772525284, 0.295119484194951, 0.09319562658787926, 0.13752545082566459, 0.41257635247699376, 0.13752545082566459, 0.13752545082566459, 0.13752545082566459, 0.1287318949257359, 0.08644444673090564, 0.12009635287331792, 0.11484380667648637, 0.09935324670616962, 0.09125186189410739, 0.10380455704246754, 0.06783796952518033, 0.08163703156770388, 0.10611923841734246, 0.10894611335316148, 0.10894611335316148, 0.10894611335316148, 0.10894611335316148, 0.10894611335316148, 0.10894611335316148, 0.21789222670632297, 0.10894611335316148, 0.030882776563702603, 0.0772069414092565, 0.10808971797295912, 0.16985527110036433, 0.23162082422776953, 0.061765553127405205, 0.046324164845553906, 0.046324164845553906, 0.23162082422776953, 0.015441388281851301, 0.13014639188339588, 0.12404175750853187, 0.09752705037433339, 0.13746459815205814, 0.10238133794952645, 0.10646335250139334, 0.08590618011856817, 0.06873229907602907, 0.07024007021680874, 0.07708020270912623, 0.23764478555525614, 0.09312185228585194, 0.07485197204236123, 0.11889056397256646, 0.12802550409431182, 0.0758063687714988, 0.060536021105297606, 0.06421726563197111, 0.05576403745960973, 0.0910767164377, 0.08839089596118196, 0.03314658598544324, 0.17678179192236393, 0.08839089596118196, 0.04419544798059098, 0.06629317197088648, 0.22097723990295493, 0.1436352059369207, 0.05524430997573873, 0.08839089596118196, 0.3175444162514003, 0.12794265314983605, 0.07707388743966026, 0.09865457592276514, 0.04624433246379616, 0.08632275393241949, 0.052410243458968976, 0.052410243458968976, 0.04470285471500295, 0.09865457592276514, 0.0794535516545781, 0.0794535516545781, 0.0794535516545781, 0.39726775827289046, 0.0794535516545781, 0.0794535516545781, 0.0794535516545781, 0.0794535516545781, 0.0794535516545781, 0.1475072387542374, 0.1475072387542374, 0.1475072387542374, 0.1475072387542374, 0.1475072387542374, 0.2950144775084748, 0.1475072387542374, 0.07783719921820799, 0.07783719921820799, 0.11675579882731198, 0.15567439843641598, 0.27243019726372797, 0.07783719921820799, 0.11675579882731198, 0.038918599609103995, 0.038918599609103995, 0.038918599609103995, 0.23941271984248297, 0.07665407258114586, 0.09345496520167099, 0.05355284522792382, 0.07980423994749432, 0.20791104617899836, 0.04515239891766126, 0.07035373784844895, 0.051452733650358184, 0.08295440731384278, 0.1584695463594998, 0.09953264277444335, 0.14182576478707987, 0.09198871911555612, 0.10787810832208734, 0.10212586653218583, 0.06200162257147939, 0.08270026311055122, 0.0769480213206497, 0.07657082513770534, 0.1539377006054036, 0.09911057436238314, 0.11176298811077248, 0.09313582342564374, 0.1692260338847074, 0.0953324230347391, 0.0402417048386272, 0.08452515295798987, 0.062383428898308536, 0.09032417592600166, 0.08737044105233349, 0.043685220526166746, 0.17474088210466698, 0.043685220526166746, 0.08737044105233349, 0.043685220526166746, 0.08737044105233349, 0.34948176420933397, 0.043685220526166746, 0.043685220526166746, 0.12978709466311303, 0.12978709466311303, 0.12978709466311303, 0.12978709466311303, 0.12978709466311303, 0.12978709466311303, 0.25957418932622606, 0.12978709466311303, 0.17036738391186887, 0.09695788014695902, 0.09910794929488526, 0.09941510203030328, 0.1544978259152705, 0.10770822588659017, 0.051499275305090166, 0.06562830113431968, 0.07996209545382787, 0.074945267442, 0.1432102616963588, 0.07622996112567874, 0.11322860334567346, 0.10812534234981211, 0.11769395671705213, 0.09791882035808944, 0.0923371286438661, 0.11275017262731145, 0.08914759052145275, 0.04943784089740672, 0.14387776688735637, 0.14387776688735637, 0.14387776688735637, 0.28775553377471275, 0.14387776688735637, 0.14387776688735637, 0.07632320917457484, 0.07632320917457484, 0.1526464183491497, 0.07632320917457484, 0.1526464183491497, 0.07632320917457484, 0.22896962752372452, 0.07632320917457484, 0.07632320917457484, 0.07632320917457484, 0.11985427792880342, 0.10075965300532058, 0.17611240838518052, 0.11046477228461145, 0.11993318133757813, 0.09681448256658445, 0.07535275537985994, 0.07188100539377217, 0.07093416448847549, 0.05791510204064629, 0.1886737806266796, 0.09465559602385784, 0.11043152869450082, 0.07712678194536565, 0.12501231495070114, 0.13537025054253746, 0.05927926215635542, 0.0639801713864965, 0.07003557988633927, 0.07529422410988693, 0.15859496414099283, 0.14013113366115812, 0.11595572916129669, 0.0896968574088469, 0.09630647765843756, 0.11990713257137806, 0.04720130982588099, 0.07636985136211795, 0.07949505224100048, 0.07629800766375285, 0.12839972119134904, 0.14997328170159555, 0.1358995426562845, 0.08689607956594994, 0.10791409774546047, 0.0800906860144344, 0.0801369812086624, 0.07740556474921059, 0.0788870109645065, 0.0743963771243908, 0.17760066770497035, 0.12176091188603139, 0.15581364161312758, 0.09767756684877588, 0.101262064714786, 0.09090062557085048, 0.06552910161299758, 0.05718394251869276, 0.061216502617954145, 0.07107387174948199, 0.2632240535888795, 0.09449540902106031, 0.11549438880351816, 0.08399591912983138, 0.10075826264038985, 0.08418012070687049, 0.07625945289418902, 0.06815458350446846, 0.06318114092441264, 0.050287030531675374, 0.30706618253499657, 0.12275356811851401, 0.12275356811851401, 0.12275356811851401, 0.12275356811851401, 0.24550713623702802, 0.12275356811851401, 0.12275356811851401, 0.26458081663047933, 0.26458081663047933, 0.2638097108337042, 0.13734706422998513, 0.13734706422998513, 0.13734706422998513, 0.27469412845997027, 0.13734706422998513, 0.09514000938086604, 0.03805600375234642, 0.04757000469043302, 0.14271001407129907, 0.11416801125703925, 0.04757000469043302, 0.2093080206379053, 0.17125201688555888, 0.10465401031895265, 0.03805600375234642, 0.19488142596446278, 0.38976285192892557, 0.05317949274476696, 0.10045015296233759, 0.09454132043514125, 0.13590314812551554, 0.041361827690374296, 0.30135045888701273, 0.07090599032635594, 0.07090599032635594, 0.06499715779915961, 0.06499715779915961, 0.052597241988353194, 0.07889586298252979, 0.061363448986412064, 0.12272689797282413, 0.052597241988353194, 0.3243496589281781, 0.08766206998058866, 0.09642827697864753, 0.07012965598447093, 0.052597241988353194, 0.4634423701134293, 0.06620605287334705, 0.1324121057466941, 0.06620605287334705, 0.06620605287334705, 0.06620605287334705, 0.06620605287334705, 0.06620605287334705, 0.06620605287334705, 0.10466920311349544, 0.10466920311349544, 0.10466920311349544, 0.10466920311349544, 0.3140076093404863, 0.10466920311349544, 0.10466920311349544, 0.10466920311349544, 0.16961507612232954, 0.05653835870744318, 0.11307671741488635, 0.11307671741488635, 0.2826917935372159, 0.05653835870744318, 0.05653835870744318, 0.05653835870744318, 0.05653835870744318, 0.17532505076529759, 0.15005935321393482, 0.09708796862805592, 0.10543115847367726, 0.10299116899052385, 0.10059053417645356, 0.06312488920932376, 0.06698164677946947, 0.08181835702380554, 0.056631368810609026, 0.16457126044146086, 0.11686944582074757, 0.10556618974757855, 0.10245520183753203, 0.09322593770439402, 0.09104824616736146, 0.0729008166920901, 0.11998043373079409, 0.05941986908188852, 0.07393781266210561, 0.1573792037539981, 0.39073457483751256, 0.07054929823455088, 0.09225677461441269, 0.06512242913958542, 0.037988083664758164, 0.02170747637986181, 0.03256121456979271, 0.03256121456979271, 0.10311051280434358, 0.3109543022732107, 0.09914983484114387, 0.2974495045234316, 0.09914983484114387, 0.09914983484114387, 0.09914983484114387, 0.09914983484114387, 0.09914983484114387, 0.09914983484114387, 0.09914983484114387, 0.1406570066329275, 0.08950900422095386, 0.08950900422095386, 0.10229600482394727, 0.10229600482394727, 0.06393500301496705, 0.03836100180898023, 0.051148002411973634, 0.1278700060299341, 0.20459200964789453, 0.13665127474065486, 0.13665127474065486, 0.13665127474065486, 0.13665127474065486, 0.13665127474065486, 0.13665127474065486, 0.2733025494813097, 0.09580447949379031, 0.05748268769627418, 0.09580447949379031, 0.09580447949379031, 0.09580447949379031, 0.09580447949379031, 0.21076985488633868, 0.07664358359503225, 0.07664358359503225, 0.11496537539254836, 0.16054329916424157, 0.08027164958212078, 0.08027164958212078, 0.08027164958212078, 0.08027164958212078, 0.08027164958212078, 0.24081494874636233, 0.16054329916424157, 0.1838075767148431, 0.16921967380096667, 0.08577686913359345, 0.09119523307303326, 0.1097010299123508, 0.09302914086792059, 0.07243935789804928, 0.07293951456938218, 0.05618426607972982, 0.06560388338983289, 0.1350175102174513, 0.06750875510872564, 0.33754377554362824, 0.1350175102174513, 0.06750875510872564, 0.06750875510872564, 0.06750875510872564, 0.06750875510872564, 0.06750875510872564, 0.06750875510872564, 0.16665215066043995, 0.11312883220015267, 0.07663566052268407, 0.08636717297000902, 0.10704663692057456, 0.07663566052268407, 0.07541922146676845, 0.0364931716774686, 0.060821952795781, 0.2007124442260773, 0.37506756918256234, 0.12502252306085412, 0.12502252306085412, 0.12502252306085412, 0.16012690096784746, 0.12376781106918484, 0.0905427033301376, 0.11257851538993312, 0.14019673317154352, 0.10567396094453052, 0.05714620594173639, 0.08292810605169715, 0.07154293648746946, 0.05550576215506272, 0.09505732388453123, 0.1306131167879055, 0.09723420916432965, 0.0841728974855391, 0.11464929140271705, 0.07401409951314646, 0.07764224164614383, 0.10086235129732703, 0.08780103961853648, 0.1371437726273008, 0.1457443484173395, 0.1457443484173395, 0.1457443484173395, 0.1457443484173395, 0.1457443484173395, 0.1457443484173395, 0.1457443484173395, 0.2657321769995973, 0.08363896701305115, 0.10720872422284818, 0.10209071980014939, 0.09091192066635995, 0.0766353820135686, 0.05185346586155345, 0.061954790380037886, 0.06909305970643356, 0.09091192066635995, 0.13100510233670462, 0.13100510233670462, 0.13100510233670462, 0.26201020467340924, 0.13100510233670462, 0.13100510233670462, 0.13100510233670462, 0.14837432448453305, 0.08365786380510906, 0.08365786380510906, 0.05287808372587082, 0.15547735065666493, 0.09155011510747783, 0.16258037682879684, 0.04340738216302829, 0.08839321458653032, 0.0891824397167672, 0.15277506048932385, 0.08402628326912812, 0.0916650362935943, 0.1833300725871886, 0.12985880141592526, 0.04583251814679715, 0.03819376512233096, 0.198607578636121, 0.022916259073398577, 0.04583251814679715, 0.07133784054698664, 0.10304354745675848, 0.15060210782141623, 0.08719069400187256, 0.15060210782141623, 0.0396321336372148, 0.25364565527817473, 0.03170570690977184, 0.08719069400187256, 0.023779280182328878, 0.5147738022034107, 0.17159126740113692, 0.053230893014427245, 0.053230893014427245, 0.053230893014427245, 0.053230893014427245, 0.053230893014427245, 0.3193853580865635, 0.10646178602885449, 0.10646178602885449, 0.053230893014427245, 0.10646178602885449, 0.13979111894966978, 0.07614638186689329, 0.11365131621924374, 0.09092105297539499, 0.10228618459731936, 0.08182894767785548, 0.06932730289373867, 0.05568914494742943, 0.07160032921812355, 0.19888980338367654, 0.2093634861136746, 0.06383033113221787, 0.07659639735866144, 0.13276708875501317, 0.04340462516990815, 0.13276708875501317, 0.08553264371717194, 0.06510693775486222, 0.03829819867933072, 0.15191618809467852, 0.2198759470048338, 0.05496898675120845, 0.09161497791868074, 0.05496898675120845, 0.12826096908615303, 0.036645991167472296, 0.2198759470048338, 0.05496898675120845, 0.07329198233494459, 0.05496898675120845, 0.16965553262479732, 0.16965553262479732, 0.16965553262479732, 0.08482776631239866, 0.08482776631239866, 0.254483298937196, 0.08482776631239866, 0.08482776631239866, 0.1373178456106283, 0.4119535368318849, 0.1373178456106283, 0.1373178456106283, 0.1373178456106283, 0.1373178456106283, 0.14560376869625394, 0.4368113060887618, 0.14560376869625394, 0.14560376869625394, 0.18231848017678035, 0.07852782618632609, 0.07563629770272105, 0.10729092531271296, 0.15279445250207635, 0.10576906821607875, 0.06543985515527175, 0.0805823332667823, 0.0866697616533192, 0.06498329802628147, 0.09888528578092334, 0.04944264289046167, 0.09888528578092334, 0.09888528578092334, 0.14832792867138503, 0.29665585734277006, 0.09888528578092334, 0.04944264289046167, 0.04944264289046167, 0.0812103439345676, 0.08933137832802435, 0.12993655029530815, 0.08933137832802435, 0.15023913627895005, 0.04466568916401217, 0.1989653426396906, 0.04872620636074056, 0.13805758468876492, 0.028423620377098658, 0.11399543560148064, 0.06649733743419703, 0.11399543560148064, 0.1044958159680239, 0.05699771780074032, 0.28498858900370155, 0.04749809816728359, 0.08549657670111047, 0.04749809816728359, 0.07599695706765375, 0.1363099237919637, 0.40892977137589104, 0.1363099237919637, 0.1363099237919637, 0.0954812259172768, 0.0954812259172768, 0.0954812259172768, 0.0954812259172768, 0.3819249036691072, 0.0954812259172768, 0.0954812259172768, 0.0954812259172768, 0.11623172465323117, 0.3486951739596935, 0.058115862326615586, 0.058115862326615586, 0.11623172465323117, 0.058115862326615586, 0.058115862326615586, 0.058115862326615586, 0.058115862326615586, 0.058115862326615586, 0.1461987727452134, 0.2923975454904268, 0.1461987727452134, 0.1461987727452134, 0.1461987727452134, 0.16495568005799563, 0.06598227202319826, 0.13196454404639651, 0.06598227202319826, 0.09897340803479739, 0.09897340803479739, 0.03299113601159913, 0.06598227202319826, 0.09897340803479739, 0.19794681606959477, 0.2102717577384822, 0.1069862038088026, 0.12220460668249936, 0.07234978415364031, 0.10586353474434955, 0.09343101436392516, 0.08752660669161658, 0.07638307671852715, 0.05733928295854597, 0.06765120621722574, 0.1967320623084418, 0.1277667872508705, 0.12602193525700406, 0.08479980690190927, 0.0970137708589744, 0.09605410226234785, 0.06482125157213847, 0.07031753535281778, 0.059630316890385796, 0.07681710902997028, 0.24669769444113773, 0.0986790777764551, 0.04933953888822755, 0.04933953888822755, 0.29603723332936527, 0.04933953888822755, 0.0986790777764551, 0.04933953888822755, 0.04933953888822755, 0.0909712047172658, 0.2160566112035063, 0.3070278159207721, 0.03411420176897468, 0.0454856023586329, 0.06822840353794936, 0.05685700294829113, 0.05685700294829113, 0.06822840353794936, 0.06822840353794936, 0.12403990963132822, 0.06201995481566411, 0.12403990963132822, 0.09302993222349616, 0.06201995481566411, 0.3411097514861526, 0.031009977407832054, 0.06201995481566411, 0.031009977407832054, 0.06201995481566411, 0.17541138869446854, 0.121058784833201, 0.126122497278309, 0.07752339950792268, 0.08578524612888835, 0.10403342348525277, 0.06838363370142744, 0.08435862745240282, 0.08065882517052825, 0.07669251170733221, 0.16191271452943495, 0.08985863093399205, 0.1291456602725746, 0.09871910989120428, 0.13666870844379256, 0.13967792771227971, 0.045054699603182986, 0.06603564505846857, 0.07046588453707468, 0.06244129982110889, 0.17005165061023428, 0.11732104221285478, 0.0841135310421867, 0.1520794536305046, 0.10609982277881035, 0.07964328915382754, 0.09296278539261199, 0.07325722931331445, 0.06313076299478655, 0.06121494504263262, 0.37220711969901454, 0.12406903989967152, 0.12406903989967152, 0.12406903989967152, 0.12406903989967152, 0.17057646354867176, 0.10886975261815346, 0.1277765226339015, 0.08186008116708486, 0.17099199695561126, 0.073133879621355, 0.0831066813879034, 0.06752417862767152, 0.06897854555195983, 0.04716304168763519, 0.10434926466222164, 0.20869852932444327, 0.10434926466222164, 0.3130477939866649, 0.10434926466222164, 0.10980052565727677, 0.10980052565727677, 0.10980052565727677, 0.10980052565727677, 0.054900262828638385, 0.054900262828638385, 0.054900262828638385, 0.054900262828638385, 0.10980052565727677, 0.27450131414319195, 0.14774244208839343, 0.14774244208839343, 0.14774244208839343, 0.14774244208839343, 0.14774244208839343, 0.14774244208839343, 0.29548488417678687, 0.15889716099504353, 0.11061922939482687, 0.09731094326456186, 0.09929302843289921, 0.13199743371046532, 0.1069854065862084, 0.07126068105212822, 0.08994891263930888, 0.05832993495392748, 0.07531923639681898, 0.12656242149895305, 0.12144139866373531, 0.1365606089391401, 0.11402810846418199, 0.102908173164852, 0.11885650142310158, 0.08120479067273867, 0.06959713891291176, 0.06364699809484922, 0.0652076907684394, 0.15812308388788718, 0.1312747472818848, 0.10822019737020885, 0.11099257995452431, 0.07456250003080007, 0.08054500981800712, 0.08545747720425032, 0.10077853885441472, 0.0749516063584233, 0.0750488829403291, 0.13213361327777076, 0.11842163454139831, 0.06980643720335059, 0.1084492863694911, 0.12465435214884034, 0.12839398271330554, 0.06606680663888538, 0.04736865381655933, 0.17077646244391126, 0.03365667508018689, 0.1940300824851409, 0.10494302584774418, 0.11269483301724739, 0.0900853954395297, 0.11868486583004532, 0.06882665153528605, 0.0976022993614722, 0.08057181391332122, 0.06718232880236114, 0.06542055444565585, 0.17427404587720605, 0.10369206597699518, 0.0945719225067432, 0.09278754661038956, 0.10131289811519031, 0.0945719225067432, 0.09179622666797087, 0.11578616927450322, 0.06225489238389385, 0.06879760400385722, 0.14732662351399656, 0.4419798705419897, 0.14732662351399656, 0.14732662351399656, 0.11553391348269038, 0.3466017404480711, 0.11553391348269038, 0.11553391348269038, 0.11553391348269038, 0.19099928751633838, 0.11383001746217145, 0.08443728994846521, 0.09291664649181319, 0.10770207911991997, 0.09683567682697403, 0.06537655150018298, 0.05996116412796074, 0.0967644217299711, 0.09117089661524155, 0.07094641957349138, 0.05320981468011853, 0.1241562342536099, 0.08868302446686421, 0.08868302446686421, 0.05320981468011853, 0.07094641957349138, 0.07094641957349138, 0.2837856782939655, 0.08868302446686421, 0.17122358963951467, 0.08099798551809377, 0.11161024405929014, 0.18616354356871098, 0.11175671419585088, 0.07938681401592554, 0.05873452476086004, 0.07982622442560777, 0.05829511435117779, 0.06181039762863575, 0.15054046490352138, 0.15054046490352138, 0.30108092980704276, 0.15054046490352138, 0.15054046490352138, 0.1359064962398019, 0.1359064962398019, 0.1359064962398019, 0.1359064962398019, 0.1359064962398019, 0.1359064962398019, 0.1359064962398019, 0.2718129924796038, 0.5367367239211659, 0.1710276995187619, 0.1176121715888334, 0.11838225128376029, 0.07686795500270183, 0.10508087473502317, 0.09976032411552832, 0.07553781734782812, 0.10844122249470413, 0.07245749856812057, 0.05488568007478892, 0.1911320342626798, 0.08188349134366982, 0.09790943315022262, 0.15593543754036382, 0.09570208644856534, 0.11169779062906805, 0.06038453922204897, 0.05999145008339768, 0.06334782657495874, 0.08197420422182011, 0.1516865350399886, 0.0965277950254473, 0.16547622004362394, 0.14479169253817095, 0.04826389751272365, 0.08963295252362963, 0.041369055010905986, 0.041369055010905986, 0.1930555900508946, 0.027579370007270655, 0.16549897047805315, 0.10656545967157785, 0.09724856226625107, 0.1190247425923107, 0.13501231802156966, 0.07657497334910586, 0.0675337237960077, 0.09460234288485649, 0.0584373446724638, 0.07949684058272906, 0.1271305450547067, 0.11363836463783947, 0.1033767062926165, 0.0927349865272001, 0.105086982683487, 0.10622716694406732, 0.06955123989540007, 0.0936851400776837, 0.07202163912665745, 0.11648882528929029, 0.05757701531176775, 0.2994004796211923, 0.1151540306235355, 0.10363862756118196, 0.0230308061247071, 0.08060782143647485, 0.08060782143647485, 0.12666943368588907, 0.08060782143647485, 0.0460616122494142, 0.18057296889989788, 0.07222918755995915, 0.36114593779979576, 0.07222918755995915, 0.07222918755995915, 0.07222918755995915, 0.036114593779979574, 0.036114593779979574, 0.036114593779979574, 0.036114593779979574, 0.16517205702770402, 0.045046924643919274, 0.06006256619189237, 0.06006256619189237, 0.09009384928783855, 0.12012513238378474, 0.10510949083581164, 0.21021898167162328, 0.030031283095946184, 0.10510949083581164, 0.14091053405089546, 0.14091053405089546, 0.2818210681017909, 0.14091053405089546, 0.07614190056847892, 0.07614190056847892, 0.07614190056847892, 0.11421285085271839, 0.07614190056847892, 0.30456760227391566, 0.07614190056847892, 0.07614190056847892, 0.03807095028423946, 0.07614190056847892, 0.13634424665159703, 0.13634424665159703, 0.27268849330319406, 0.13634424665159703, 0.13634424665159703, 0.27268849330319406, 0.3658414721712568, 0.11836047629070072, 0.0914603680428142, 0.06994028144450497, 0.11298045464112343, 0.03228012989746384, 0.04842019484619575, 0.04842019484619575, 0.043040173196618445, 0.06994028144450497, 0.14287561150720612, 0.14287561150720612, 0.14287561150720612, 0.14287561150720612, 0.14287561150720612, 0.28575122301441225, 0.14287561150720612, 0.120834342034126, 0.302085855085315, 0.060417171017063, 0.094941268741099, 0.0906257565255945, 0.0647326832325675, 0.094941268741099, 0.077679219879081, 0.0561016588015585, 0.0388396099395405, 0.18827159937453683, 0.12103174245505938, 0.1075837710711639, 0.05379188553558195, 0.09413579968726841, 0.040343914151686464, 0.040343914151686464, 0.24206348491011875, 0.05379188553558195, 0.040343914151686464, 0.09478871325452168, 0.09297746395666458, 0.1165237048288069, 0.0923737141907122, 0.07244997191428408, 0.11410870576499743, 0.1497299419561871, 0.11048620716928323, 0.07546872074404593, 0.08029871887166486, 0.2872481697230782, 0.14442134525878367, 0.09226919280422291, 0.2527373542028714, 0.11633941701402019, 0.05215215245456077, 0.10029260087415533, 0.0601755605244932, 0.06418726455945942, 0.04011704034966213, 0.08023408069932426, 0.135846874355707, 0.40754062306712097, 0.135846874355707, 0.15725871477418799, 0.1030676230348279, 0.0887792965955111, 0.16505630755662, 0.10555065537336772, 0.09174151061341825, 0.07605920110685102, 0.04774392005332687, 0.07793236585346877, 0.08677544593633862, 0.17980772782970222, 0.09454389795208751, 0.10413159259256492, 0.12817773583525963, 0.08859645100933146, 0.08475111893427367, 0.08459730565127135, 0.06711386248334195, 0.09259559636739156, 0.07567613523713729, 0.10251950717633058, 0.10251950717633058, 0.10251950717633058, 0.15377926076449588, 0.30755852152899177, 0.10251950717633058, 0.05125975358816529, 0.05125975358816529, 0.13700307505919296, 0.2740061501183859, 0.13700307505919296, 0.13700307505919296, 0.13700307505919296, 0.1448114083507311, 0.056334748356012335, 0.2025286045191609, 0.0950432871037018, 0.1019555261657892, 0.09124155561955373, 0.11301510866512905, 0.07638024163606581, 0.03663486702906324, 0.08156442093263136, 0.14774352136488225, 0.14774352136488225, 0.14774352136488225, 0.14774352136488225, 0.14774352136488225, 0.2954870427297645, 0.14774352136488225, 0.12150859528409094, 0.09144354045780474, 0.08499359789991635, 0.08905081983149131, 0.11869974933146213, 0.144291456899858, 0.0934201357578028, 0.0705332428104569, 0.08957097648938553, 0.09633301304201046, 0.148976342381553, 0.148976342381553, 0.148976342381553, 0.148976342381553, 0.297952684763106, 0.148976342381553, 0.2344656180906508, 0.07419005539049965, 0.09808530529826959, 0.1139459078571387, 0.10413737732731175, 0.08890285118524009, 0.06876405977825495, 0.055407762886575694, 0.10611995264717039, 0.05592949323390691, 0.3095495079141395, 0.14587571582149994, 0.09858709514761085, 0.10854259423685066, 0.11531786445036109, 0.08849332523768716, 0.1012142407406047, 0.09181182493410044, 0.0641576607973232, 0.07978226353460233, 0.1061919902852246, 0.13800977483955582, 0.4140293245186675, 0.13800977483955582, 0.13800977483955582, 0.13800977483955582, 0.2206850785980672, 0.11638814245854084, 0.0843094318162575, 0.09327502017525464, 0.0881753277141737, 0.096400638135272, 0.08134832006466212, 0.07649538691621413, 0.07262949101829792, 0.0703264041003904, 0.1471579244226854, 0.11211516509199808, 0.12462656757327903, 0.10886545016179523, 0.12045610007951871, 0.0848175596782942, 0.08552166457983815, 0.05714082085606666, 0.0909920180456796, 0.06829817544976308, 0.20437323459455503, 0.20437323459455503, 0.20437323459455503, 0.1926529390274028, 0.13141665725352433, 0.13430337532787254, 0.07789406476028125, 0.1019342742974762, 0.06355512088278112, 0.09076598797704706, 0.07396623524928288, 0.06885532456027292, 0.06464355556655176, 0.044440294009688436, 0.3110820580678191, 0.07999252921743918, 0.15998505843487837, 0.044440294009688436, 0.017776117603875374, 0.03555223520775075, 0.10665670562325225, 0.15998505843487837, 0.05332835281162612, 0.12535546286104304, 0.14776568262436998, 0.11166941624159031, 0.10703469925890712, 0.09951009992231559, 0.09612948282906432, 0.08413374475623724, 0.07982618426644933, 0.06723065928998088, 0.08135291456662731, 0.13740775329624047, 0.10683733624818043, 0.1030370945698239, 0.1536383421392705, 0.09863780001606144, 0.09966742214566542, 0.0904569841862989, 0.06209557461629831, 0.0742451157456253, 0.07398303011263518, 0.15994653352277813, 0.1564577668519793, 0.09500180011252259, 0.138835022386662, 0.08990283343981657, 0.0911552112190777, 0.062439977851733296, 0.05331551117425938, 0.06888077785936195, 0.08408822232181848, 0.17030345997050758, 0.1331800291236136, 0.098713055444958, 0.13929657756140612, 0.07587645306590055, 0.09241792165131753, 0.09382428132862018, 0.06634445969751586, 0.06690253893454073, 0.06315224646173365, 0.14546370334559844, 0.13427418770362934, 0.12308467206166022, 0.100705640777722, 0.0895161251357529, 0.055947578209845555, 0.04475806256787645, 0.055947578209845555, 0.055947578209845555, 0.1902217659134749, 0.08647152950170703, 0.12970729425256053, 0.10808941187713378, 0.08647152950170703, 0.06485364712628026, 0.06485364712628026, 0.06485364712628026, 0.06485364712628026, 0.06485364712628026, 0.3026503532559746, 0.13462284023381726, 0.13462284023381726, 0.13462284023381726, 0.13462284023381726, 0.13462284023381726, 0.26924568046763453, 0.1699128823401688, 0.06577272864780727, 0.12058333585431333, 0.2685719753118797, 0.0876969715304097, 0.05481060720650606, 0.06577272864780727, 0.07125378936845787, 0.049329546485855455, 0.04384848576520485, 0.14636813937503323, 0.11137048582355272, 0.12194064327976477, 0.09389134276747022, 0.09753283090415407, 0.11715749940293138, 0.08595880374539673, 0.07326280456614762, 0.0848171480052472, 0.06771199562266196, 0.14730921078156606, 0.14730921078156606, 0.14730921078156606, 0.14730921078156606, 0.14730921078156606, 0.14730921078156606, 0.14730921078156606, 0.2946184215631321, 0.17443687738630498, 0.11992535320308469, 0.07631613385650843, 0.3052645354260337, 0.043609219346576245, 0.07631613385650843, 0.05451152418322031, 0.05451152418322031, 0.043609219346576245, 0.05451152418322031, 0.0735600696821052, 0.367800348410526, 0.1471201393642104, 0.0735600696821052, 0.0735600696821052, 0.0735600696821052, 0.0735600696821052, 0.0735600696821052, 0.0735600696821052, 0.11711906431061862, 0.35135719293185586, 0.11711906431061862, 0.11711906431061862, 0.11711906431061862, 0.11711906431061862, 0.11711906431061862, 0.15121277357069315, 0.09582409465905778, 0.08238295923055171, 0.10551291311377256, 0.07924669429723363, 0.15098875464688472, 0.09263182499478759, 0.09341589122811711, 0.06866180014728511, 0.08019877472341948, 0.14162222977966388, 0.14162222977966388, 0.14162222977966388, 0.14162222977966388, 0.28324445955932775, 0.14162222977966388, 0.44519059906326536, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.0635986570090379, 0.1694454885110382, 0.09229897215174568, 0.08953049735769225, 0.1278689295503429, 0.08221381397340818, 0.1164736895498194, 0.08040936165228407, 0.06936018100101725, 0.0836722069452756, 0.08873950455939127, 0.1744802256614265, 0.13375246821630504, 0.09300726100364069, 0.11740203602861062, 0.0975616503323368, 0.10059790988480086, 0.06290641199214347, 0.06737355248312508, 0.07964073906578163, 0.07325412414508135, 0.11031670088799322, 0.11031670088799322, 0.3309501026639797, 0.11031670088799322, 0.11031670088799322, 0.11031670088799322, 0.11031670088799322, 0.11031670088799322, 0.14590151141290125, 0.14590151141290125, 0.14590151141290125, 0.14590151141290125, 0.14590151141290125, 0.2918030228258025, 0.19837778940771583, 0.09345993258270532, 0.10751285708894721, 0.11661531955321754, 0.10088562564566268, 0.10715354936009444, 0.0744964691154755, 0.08475670092827142, 0.05501400559545832, 0.06168116011972649, 0.15861003658246417, 0.10889079984684072, 0.12264393472332971, 0.12765366770239445, 0.10496808440096929, 0.12179322534952627, 0.08644152470480541, 0.052365888120789725, 0.07268838982831642, 0.04385879438275529, 0.10134146128311644, 0.05067073064155822, 0.05067073064155822, 0.10134146128311644, 0.15201219192467466, 0.3546951144909075, 0.10134146128311644, 0.05067073064155822, 0.05067073064155822, 0.10927507077939595, 0.05828003774901117, 0.04371002831175838, 0.32782521233818784, 0.06556504246763757, 0.08013505190489036, 0.09470506134214315, 0.10199006606076955, 0.03642502359313198, 0.08013505190489036, 0.13600340988633614, 0.13600340988633614, 0.13600340988633614, 0.4080102296590084, 0.13600340988633614, 0.14756107628787266, 0.07378053814393633, 0.07378053814393633, 0.14756107628787266, 0.3689026907196816, 0.07378053814393633, 0.07378053814393633, 0.07378053814393633, 0.13719754684465635, 0.13719754684465635, 0.13719754684465635, 0.13719754684465635, 0.2743950936893127, 0.13719754684465635, 0.22277426618778487, 0.06188174060771802, 0.37129044364630814, 0.06188174060771802, 0.049505392486174415, 0.049505392486174415, 0.03712904436463081, 0.049505392486174415, 0.049505392486174415, 0.03712904436463081, 0.12873847516232512, 0.11457227229697273, 0.10521098034501472, 0.1320107851809299, 0.12380929931151537, 0.0880209973358883, 0.0680971857036237, 0.07360626459570518, 0.09278448660347756, 0.07310920484604369, 0.1551771861782295, 0.07174859145875127, 0.08593145256106258, 0.09510859798020518, 0.09761145582178953, 0.12013717639604865, 0.0659085898283878, 0.11179431692410083, 0.06757716172277736, 0.12889717884159388, 0.12141170473955813, 0.08094113649303875, 0.04047056824651937, 0.12141170473955813, 0.04047056824651937, 0.08094113649303875, 0.08094113649303875, 0.2023528412325969, 0.04047056824651937, 0.2023528412325969, 0.055507124956661026, 0.11101424991332205, 0.08326068743499154, 0.08326068743499154, 0.16652137486998309, 0.055507124956661026, 0.08326068743499154, 0.055507124956661026, 0.055507124956661026, 0.2220284998266441, 0.14609746953058275, 0.43829240859174823, 0.14609746953058275, 0.14609746953058275, 0.14609746953058275, 0.10977001243039326, 0.19209752175318823, 0.3018675341835815, 0.05488500621519663, 0.05488500621519663, 0.05488500621519663, 0.05488500621519663, 0.05488500621519663, 0.08232750932279495, 0.05488500621519663, 0.08718555136824334, 0.1426183402011388, 0.12001467873529793, 0.1110449718044087, 0.10261344728937281, 0.10763648317067079, 0.09167040483368796, 0.11822073734912009, 0.06171158368451792, 0.057226730219073305, 0.03997861469092492, 0.07995722938184983, 0.03997861469092492, 0.11993584407277474, 0.07995722938184983, 0.35980753221832423, 0.07995722938184983, 0.07995722938184983, 0.03997861469092492, 0.07995722938184983, 0.059765297921337515, 0.10458927136234064, 0.059765297921337515, 0.1344719203230094, 0.059765297921337515, 0.29882648960668756, 0.059765297921337515, 0.08964794688200627, 0.07470662240167189, 0.059765297921337515, 0.14918903559849467, 0.049729678532831556, 0.09945935706566311, 0.049729678532831556, 0.19891871413132622, 0.049729678532831556, 0.049729678532831556, 0.19891871413132622, 0.049729678532831556, 0.049729678532831556, 0.17236500593376947, 0.04700863798193713, 0.06267818397591617, 0.34473001186753893, 0.07834772996989521, 0.06267818397591617, 0.04700863798193713, 0.07834772996989521, 0.04700863798193713, 0.04700863798193713, 0.10178616223037192, 0.10178616223037192, 0.30535848669111576, 0.10178616223037192, 0.10178616223037192, 0.05089308111518596, 0.05089308111518596, 0.05089308111518596, 0.05089308111518596, 0.10178616223037192, 0.14681254627854404, 0.44043763883563214, 0.14681254627854404, 0.14681254627854404, 0.12642261536331145, 0.08849583075431801, 0.03792678460899343, 0.16434939997230488, 0.03792678460899343, 0.08849583075431801, 0.07585356921798686, 0.2275607076539606, 0.02528452307266229, 0.1137803538269803, 0.1258136541930517, 0.3774409625791551, 0.1258136541930517, 0.1258136541930517, 0.1258136541930517, 0.21371471528667146, 0.42742943057334293, 0.11695033469619527, 0.06682876268354015, 0.10024314402531023, 0.0835359533544252, 0.10024314402531023, 0.06682876268354015, 0.06682876268354015, 0.10024314402531023, 0.2673150507341606, 0.050121572012655116, 0.15272739677080316, 0.11454554757810237, 0.07636369838540158, 0.07636369838540158, 0.07636369838540158, 0.07636369838540158, 0.11454554757810237, 0.26727294434890553, 0.03818184919270079, 0.07636369838540158, 0.1473706418408093, 0.16632612216680187, 0.06579633488877769, 0.10699437305394074, 0.0844778920886721, 0.10595346517476774, 0.07604105980484882, 0.0879293234775089, 0.06267361125125868, 0.09642094038655181, 0.18842865567682568, 0.18842865567682568, 0.37685731135365136, 0.043302801206946975, 0.08660560241389395, 0.06495420181042046, 0.29770675829776044, 0.08660560241389395, 0.16238550452605116, 0.06495420181042046, 0.10284415286649906, 0.054128501508683716, 0.043302801206946975, 0.13712149191305406, 0.4113644757391622, 0.13712149191305406, 0.13712149191305406, 0.13712149191305406, 0.12752264663026386, 0.06376132331513193, 0.06376132331513193, 0.06376132331513193, 0.3188066165756597, 0.06376132331513193, 0.12752264663026386, 0.06376132331513193, 0.06376132331513193, 0.06376132331513193, 0.15104731521566472, 0.16536195308841078, 0.10475712261418715, 0.11414529420605309, 0.10308398312256749, 0.05855988220668847, 0.06711148405274457, 0.07380404201922325, 0.09936589536341266, 0.06274273093573765, 0.07877531005310734, 0.07877531005310734, 0.07877531005310734, 0.07877531005310734, 0.15755062010621468, 0.07877531005310734, 0.07877531005310734, 0.07877531005310734, 0.07877531005310734, 0.23632593015932202, 0.2714673952146675, 0.08130241785616946, 0.0808430821620668, 0.09140780312642781, 0.13458535837207714, 0.09370448159694107, 0.07716839660924558, 0.05649829037462623, 0.06384766148026867, 0.0491489192689838, 0.13379881299766958, 0.13379881299766958, 0.13379881299766958, 0.13379881299766958, 0.13379881299766958, 0.26759762599533915, 0.1989379541104025, 0.09383615690217519, 0.10761999915899188, 0.11027073805453355, 0.08124514714835225, 0.11888563946504399, 0.04055630510178758, 0.1212713044710315, 0.07077472851096264, 0.056858349309368866, 0.37876511359303267, 0.12625503786434422, 0.12625503786434422, 0.12625503786434422, 0.12949123729016682, 0.11963494888750321, 0.11021563878840596, 0.11914941743909614, 0.1372111873198393, 0.09506705759810523, 0.06345896030680466, 0.07622843739991073, 0.0721014200884506, 0.07749081916576912, 0.14531267443825657, 0.14531267443825657, 0.07265633721912829, 0.07265633721912829, 0.07265633721912829, 0.14531267443825657, 0.07265633721912829, 0.21796901165738486, 0.07265633721912829, 0.07265633721912829, 0.1369909142493912, 0.4109727427481736, 0.1369909142493912, 0.1369909142493912, 0.0839258393703991, 0.0839258393703991, 0.0839258393703991, 0.4196291968519955, 0.0839258393703991, 0.0839258393703991, 0.0839258393703991, 0.29042894450492923, 0.29042894450492923, 0.07540435959099802, 0.07540435959099802, 0.05655326969324851, 0.11310653938649702, 0.3016174383639921, 0.05655326969324851, 0.15080871918199604, 0.05655326969324851, 0.03770217979549901, 0.07540435959099802, 0.13843207300177082, 0.15488842863786279, 0.10063860533358067, 0.09070432240365639, 0.12534473505495755, 0.12154379202089957, 0.06867612981991127, 0.05481132625249522, 0.06880570742334506, 0.07619163081907138, 0.1458719854156741, 0.10405747756129048, 0.09687559644126276, 0.08841693645545234, 0.1744399125375621, 0.12241117375691687, 0.05665706216910755, 0.06782887724470622, 0.07181881120027717, 0.07181881120027717, 0.09018627847465636, 0.09018627847465636, 0.33068302107374, 0.12024837129954181, 0.06012418564977091, 0.06012418564977091, 0.06012418564977091, 0.06012418564977091, 0.030062092824885454, 0.09018627847465636, 0.09510806953473286, 0.10742868618461904, 0.11327876315506859, 0.14412462354471167, 0.1618521295157709, 0.113101488095358, 0.04981429177867648, 0.07622827567555476, 0.05566436874912603, 0.08340791559383376, 0.1903033202411195, 0.1903033202411195, 0.380606640482239, 0.1903033202411195, 0.13089313193292293, 0.13089313193292293, 0.13089313193292293, 0.13089313193292293, 0.13089313193292293, 0.13089313193292293, 0.26178626386584586, 0.1366593781583483, 0.1366593781583483, 0.1366593781583483, 0.1366593781583483, 0.2733187563166966, 0.1366593781583483, 0.1481809773882073, 0.1481809773882073, 0.1481809773882073, 0.1481809773882073, 0.1481809773882073, 0.2963619547764146, 0.1481809773882073, 0.2601418830182375, 0.05780930733738611, 0.34685584402431663, 0.08671396100607916, 0.05780930733738611, 0.05780930733738611, 0.05780930733738611, 0.05780930733738611, 0.028904653668693055, 0.028904653668693055, 0.15701667473262895, 0.15701667473262895, 0.07850833736631448, 0.07850833736631448, 0.07850833736631448, 0.07850833736631448, 0.07850833736631448, 0.07850833736631448, 0.07850833736631448, 0.23552501209894344, 0.1415535025573713, 0.05828673634715289, 0.11657347269430578, 0.09992011945226209, 0.24980029863065523, 0.10824679607328394, 0.049960059726131045, 0.06661341296817473, 0.05828673634715289, 0.05828673634715289, 0.4618187470491429, 0.10262638823314287, 0.05131319411657143, 0.05131319411657143, 0.05131319411657143, 0.10262638823314287, 0.05131319411657143, 0.05131319411657143, 0.05131319411657143], \"Term\": [\"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"accuracy\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"activation\", \"adaptivestream\", \"adaptivestream\", \"adaptivestream\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"aems\", \"afeasurement\", \"afeasurement\", \"afeasurement\", \"afeasurement\", \"afeasurement\", \"aggregative\", \"aggregative\", \"aggregative\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"agrin\", \"ahd\", \"ahd\", \"ahd\", \"ahd\", \"ahd\", \"ahd\", \"ahd\", \"ajectories\", \"ajectories\", \"ajectories\", \"ajectories\", \"ajectories\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"akimoto\", \"al\", \"al\", \"al\", \"al\", \"al\", \"al\", \"al\", \"al\", \"al\", \"al\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alburquerque\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"alc\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithme\", \"algorithme\", \"algorithme\", \"algorithme\", \"algorithme\", \"algorithme\", \"algorithme\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"algorithms\", \"alidation\", \"alkis\", \"alkis\", \"alkis\", \"alkis\", \"alkis\", \"allliwll\", \"allliwll\", \"allliwll\", \"allliwll\", \"allliwll\", \"allliwll\", \"allliwll\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"alow\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"altemation\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"amagasaki\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"analysis\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"ancm\", \"aphic\", \"aphic\", \"aphic\", \"aphic\", \"aphic\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"apnn\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"approach\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"appxpca\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulator\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"articulatory\", \"asst\", \"asst\", \"asst\", \"asst\", \"asst\", \"asst\", \"asst\", \"asst\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronizable\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"asynchronized\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"aulomatica\", \"aulomatica\", \"aulomatica\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"aup\", \"average\", \"average\", \"average\", \"average\", \"average\", \"average\", \"average\", \"average\", \"average\", \"average\", \"avhd\", \"avhd\", \"avhd\", \"avhd\", \"avhd\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"awj\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"backbones\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"baudet\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"bdc\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"betiijmn\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"bilayers\", \"bilayers\", \"bilayers\", \"bilayers\", \"bilayers\", \"bilayers\", \"bilayers\", \"bino\", \"bino\", \"biomedi\", \"biomedi\", \"biomedi\", \"biomedi\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"biphone\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blasdel\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"blc\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bootstrap\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bouchards\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bound\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bounds\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"bpwd\", \"breadboard\", \"breadboard\", \"breadboard\", \"breadboard\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bregman\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bubel\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"bumping\", \"businger\", \"businger\", \"bxpca\", \"bxpca\", \"bxpca\", \"bxpca\", \"bxpca\", \"bxpca\", \"bxpca\", \"bxpca\", \"camot\", \"camot\", \"camot\", \"camot\", \"camot\", \"camot\", \"camot\", \"camot\", \"camot\", \"capactiy\", \"capactiy\", \"capactiy\", \"capactiy\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"cdidv\", \"cdidv\", \"cdidv\", \"cdidv\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdmlp\", \"cdnn\", \"cdnn\", \"cdnn\", \"cdnn\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cggm\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cigar\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"cimlp\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classification\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"classifier\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"clda\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"closecall\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"clstm\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"cluster\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"clusters\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"cma\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coarticulated\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"coco\", \"cocos\", \"cocos\", \"cocos\", \"cocos\", \"cocos\", \"cocos\", \"coetticients\", \"coetticients\", \"coetticients\", \"coetticients\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"coevolving\", \"colgibbs\", \"colgibbs\", \"colgibbs\", \"colgibbs\", \"colgibbs\", \"colgibbs\", \"colgibbs\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"collicular\", \"combinatorical\", \"combinatorical\", \"combinatorical\", \"combinatorical\", \"combinatorical\", \"combinatorical\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"complexity\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consider\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"consonant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"constant\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"contending\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"contextualized\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"conv_\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"correlogram\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cplst\", \"cqm\", \"cqm\", \"cqms\", \"cqms\", \"cqms\", \"csiupuiedu\", \"cthr\", \"cthr\", \"cthr\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"ctyp\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cuong\", \"cwada\", \"cwada\", \"cwada\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daijifeng\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"daquar\", \"dasal\", \"dasal\", \"dasal\", \"dasal\", \"dasal\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"dataset\", \"db\", \"db\", \"db\", \"db\", \"db\", \"db\", \"db\", \"db\", \"db\", \"db\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"dcrf\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"decipher\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"deciphertm\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deep\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"deletes\", \"density\", \"density\", \"density\", \"density\", \"density\", \"density\", \"density\", \"density\", \"density\", \"density\", \"dermed\", \"dermed\", \"dermed\", \"dermed\", \"dermed\", \"dermed\", \"dermed\", \"dermed\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"dfa\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"discriminatioo\", \"discriminatioo\", \"discriminatioo\", \"discriminatioo\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distance\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"distributions\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"djamgoz\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dlda\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dnn\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dominance\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dpmg\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dropout\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"dude\", \"duwp\", \"dyllamics\", \"dyllamics\", \"dyllamics\", \"dyllamics\", \"dyllamics\", \"dynamicb\", \"dynamicb\", \"dynamicb\", \"dynamicb\", \"dynamicb\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"dynamics\", \"edelmant\", \"edelmant\", \"edelmant\", \"edelmant\", \"edelmant\", \"edelmant\", \"edelmant\", \"edelmant\", \"edleman\", \"edleman\", \"edleman\", \"edleman\", \"edleman\", \"edleman\", \"edleman\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eduard\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"eejj\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efn\", \"efyn\", \"efyn\", \"efyn\", \"efyn\", \"efyn\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"elfadel\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"emg\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"epca\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"eq\", \"error\", \"error\", \"error\", \"error\", \"error\", \"error\", \"error\", \"error\", \"error\", \"error\", \"ersue\", \"et\", \"et\", \"et\", \"et\", \"et\", \"et\", \"et\", \"et\", \"et\", \"et\", \"exempt\", \"exempt\", \"exempt\", \"exempt\", \"exempt\", \"exempt\", \"exempt\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fcn\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"fdm\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"feature\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fido\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"fig\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"figure\", \"fips\", \"fips\", \"fips\", \"fips\", \"fips\", \"fips\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"firstnearest\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flopstime\", \"flopstime\", \"flopstime\", \"following\", \"following\", \"following\", \"following\", \"following\", \"following\", \"following\", \"following\", \"following\", \"following\", \"fornl\", \"fornl\", \"fornl\", \"fornl\", \"fornl\", \"fornl\", \"fornl\", \"fourieranalysis\", \"fourieranalysis\", \"fourieranalysis\", \"fourieranalysis\", \"fourieranalysis\", \"fourieranalysis\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"freyd\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"functions\", \"furthe\", \"furthe\", \"furthe\", \"furthe\", \"furthe\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"fworst\", \"g_lot_ta_\", \"g_lot_ta_\", \"g_lot_ta_\", \"g_lot_ta_\", \"g_lot_ta_\", \"garawa\", \"garawa\", \"garawa\", \"garawa\", \"garawa\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gaussian\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"gentner\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"ggap\", \"gidaris\", \"gidaris\", \"gidaris\", \"gidaris\", \"gidaris\", \"gidaris\", \"given\", \"given\", \"given\", \"given\", \"given\", \"given\", \"given\", \"given\", \"given\", \"given\", \"gmmp\", \"googlenets\", \"googlenets\", \"googlenets\", \"googlenets\", \"googlenets\", \"gourley\", \"gourley\", \"gourley\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"gradient\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"grafts\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"graph\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"grill\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"guillory\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hadassa\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"hdnn\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"heidrich\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbn\", \"hetdbnbino\", \"hetdbnbino\", \"hetdbnbino\", \"hetdbnbino\", \"hetdbnbino\", \"hetdbnexp\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hidden\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hildebrand\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hirayama\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hmdm\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hme\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"hmm\", \"however\", \"however\", \"however\", \"however\", \"however\", \"however\", \"however\", \"however\", \"however\", \"however\", \"href\", \"href\", \"href\", \"href\", \"href\", \"href\", \"href\", \"href\", \"href\", \"href\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrns\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrr\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"hrrs\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"huffman\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"humbert\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hyogo\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"hypothesis\", \"ibna\", \"ibna\", \"ibna\", \"ibna\", \"ibna\", \"ibna\", \"ibna\", \"ibna\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"icu\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idct\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"idv\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"ie\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"igel\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"ii\", \"iifn\", \"iifn\", \"iifn\", \"iifn\", \"iifn\", \"iifn\", \"iifn\", \"iifn\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"imem\", \"imem\", \"imem\", \"imem\", \"imem\", \"imem\", \"imem\", \"imem\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"immature\", \"impared\", \"impared\", \"impared\", \"impared\", \"impared\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"importances\", \"increasel\", \"increasel\", \"increasel\", \"increasel\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"inference\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interconnect\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"interneurons\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"ionic\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"iptv\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"isb\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"itivr\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iyt\", \"iytca\", \"iytca\", \"iytca\", \"iytca\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"izlt\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"jane\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"janitor\", \"jaqueline\", \"jaqueline\", \"jaqueline\", \"jaqueline\", \"jaqueline\", \"javdani\", \"javdani\", \"javdani\", \"javdani\", \"jifeng\", \"jifeng\", \"jifeng\", \"jifeng\", \"jifeng\", \"jifeng\", \"jifeng\", \"jols\", \"jols\", \"jols\", \"jols\", \"jols\", \"jols\", \"jols\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"jqk\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanit\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kalanitedelman\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kay\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernel\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kernels\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kgr\", \"kims\", \"kims\", \"kims\", \"kims\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kiorpes\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"kleinbergs\", \"klingenstein\", \"klingenstein\", \"klingenstein\", \"klingenstein\", \"klingenstein\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knd\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"knnz\", \"kohling\", \"kohling\", \"kohling\", \"kohling\", \"kohling\", \"krasner\", \"krasner\", \"krasner\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"kvh\", \"lakota\", \"lakota\", \"lakota\", \"lakota\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"language\", \"large\", \"large\", \"large\", \"large\", \"large\", \"large\", \"large\", \"large\", \"large\", \"large\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"latvian\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"layer\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazarro\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lazysvd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcbd\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"lcls\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"learning\", \"lenns\", \"lenns\", \"lenns\", \"lenns\", \"lenns\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"levied\", \"levied\", \"levied\", \"levied\", \"lhtml\", \"lhtml\", \"lhtml\", \"lhtml\", \"lhtml\", \"lhtml\", \"lhtml\", \"lilolololololo\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"linear\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"lisp\", \"ljcj\", \"ljcj\", \"ljcj\", \"ljcj\", \"ljcj\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lms\", \"lnhibition\", \"lnhibition\", \"lnhibition\", \"lnhibition\", \"lnhibition\", \"lnhibition\", \"lnhibition\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"lnn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"localknn\", \"log\", \"log\", \"log\", \"log\", \"log\", \"log\", \"log\", \"log\", \"log\", \"log\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loshchilov\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"loss\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lowrankhawkes\", \"lutlo\", \"lutlo\", \"lutlo\", \"lutlo\", \"lutlo\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macaques\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"macilwain\", \"mackayi\", \"mackayi\", \"mackayi\", \"mackayi\", \"mackayi\", \"mackayi\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malach\", \"malacht\", \"malacht\", \"malacht\", \"malacht\", \"malacht\", \"malacht\", \"maranungku\", \"maranungku\", \"maranungku\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"marple\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matching\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"matrix\", \"max\", \"max\", \"max\", \"max\", \"max\", \"max\", \"max\", \"max\", \"max\", \"max\", \"maxkj\", \"maxkj\", \"maxkj\", \"maxkj\", \"maxkj\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"may\", \"mayan\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mdgps\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"mermelstein\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metabolic\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"metamorphosis\", \"method\", \"method\", \"method\", \"method\", \"method\", \"method\", \"method\", \"method\", \"method\", \"method\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"methods\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mhi\", \"mihama\", \"mihama\", \"mihama\", \"mihama\", \"mihama\", \"mihama\", \"mime\", \"mime\", \"mime\", \"mime\", \"mime\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mixture\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mlcm\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mle\", \"mlow\", \"mlow\", \"mlow\", \"mlow\", \"mlow\", \"mlow\", \"mlow\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"mlp\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"moc\", \"model\", \"model\", \"model\", \"model\", \"model\", \"model\", \"model\", \"model\", \"model\", \"model\", \"models\", \"models\", \"models\", \"models\", \"models\", \"models\", \"models\", \"models\", \"models\", \"models\", \"mongolian\", \"monkl\", \"monkl\", \"monkl\", \"monkl\", \"monkl\", \"monkl\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"mort\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"moth\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mouncastle\", \"mrbf\", \"mrbf\", \"mrbf\", \"mrbf\", \"mrbf\", \"mrbf\", \"mrbf\", \"mrbf\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"mtb\", \"multibatch\", \"multibatch\", \"multibatch\", \"multibatch\", \"multibatch\", \"multibatch\", \"musclo\", \"musclo\", \"musclo\", \"musclo\", \"musclo\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musco\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"musculo\", \"mvcm\", \"mvcm\", \"mvcm\", \"mvcm\", \"mvcm\", \"mvcm\", \"mvcm\", \"nasality\", \"nasality\", \"nasality\", \"nasality\", \"nasality\", \"neighboured\", \"neighboured\", \"network\", \"network\", \"network\", \"network\", \"network\", \"network\", \"network\", \"network\", \"network\", \"network\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"networks\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neural\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuralog\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neuron\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neurons\", \"neuroscl\", \"neuroscl\", \"neuroscl\", \"neuroscl\", \"neuroscl\", \"neuroscl\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nexpnp\", \"nlmp\", \"nlmp\", \"nlmp\", \"nlmp\", \"nlmp\", \"nlmp\", \"nlmp\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"nmbatch\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"noise\", \"non\", \"non\", \"non\", \"non\", \"non\", \"non\", \"non\", \"non\", \"non\", \"non\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinc\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonlinear\", \"nonnally\", \"nonnally\", \"nonnally\", \"nonnally\", \"nonnally\", \"nonnally\", \"nonnally\", \"nonnally\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"norm\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"npv\", \"nqd\", \"nqd\", \"nqd\", \"nqd\", \"nqd\", \"nqd\", \"nqd\", \"nqd\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"nunber\", \"nunber\", \"nunber\", \"nunber\", \"nunber\", \"nunber\", \"nunber\", \"nunber\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obd\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"obennayer\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obs\", \"obseivation\", \"obseivation\", \"obseivation\", \"obsexvation\", \"obsexvation\", \"obsexvation\", \"obsexvation\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"obtained\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocd\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ocular\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"ohem\", \"okm\", \"okm\", \"olk\", \"olk\", \"olk\", \"olk\", \"olk\", \"olk\", \"olk\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"one\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimal\", \"optimallll\", \"optimallll\", \"optimallll\", \"optimallll\", \"optimallll\", \"optimallll\", \"optimallll\", \"optimallll\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientation\", \"orientatiqn\", \"orientatiqn\", \"orientatiqn\", \"orientatiqn\", \"orientatiqn\", \"orientatiqn\", \"ormoregenerally\", \"ormoregenerally\", \"ormoregenerally\", \"ormoregenerally\", \"ormoregenerally\", \"ototypes\", \"ototypes\", \"ototypes\", \"ototypes\", \"ototypes\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"ours_full\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"ove\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"overfilting\", \"owq\", \"owq\", \"owq\", \"owq\", \"owq\", \"owq\", \"paii\", \"paii\", \"paii\", \"paii\", \"paii\", \"paii\", \"paii\", \"paii\", \"paiute\", \"paiute\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"paper\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parameters\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parcor\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"parws\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"patchy\", \"pattei\", \"pattei\", \"pattei\", \"pattei\", \"pattei\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pattern\", \"pavgi\", \"pavgi\", \"pavgi\", \"pavgi\", \"pavgi\", \"pavgi\", \"pavgi\", \"pavgi\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"pdmm\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"performance\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"phase\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"pheromone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"phonemespecific\", \"piing\", \"piing\", \"piing\", \"piing\", \"piing\", \"piing\", \"piing\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"pirr\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"planar\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posg\", \"posgs\", \"posgs\", \"posgs\", \"posgs\", \"posgs\", \"posgs\", \"posgs\", \"posgs\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"posterior\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"powerlaws\", \"powerlaws\", \"powerlaws\", \"powerlaws\", \"powerlaws\", \"powerlaws\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prado\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"prior\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"probability\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"programming\", \"psax\", \"psets\", \"psets\", \"psets\", \"psets\", \"psets\", \"psets\", \"psets\", \"pslx\", \"pslx\", \"pssx\", \"psychiatrically\", \"psychiatrically\", \"psychiatrically\", \"psychiatrically\", \"psychiatrically\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"puffs\", \"pupa\", \"pupa\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvar\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pvars\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"pwid\", \"qna\", \"qna\", \"qna\", \"qna\", \"qna\", \"qna\", \"qna\", \"qna\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"qrp\", \"random\", \"random\", \"random\", \"random\", \"random\", \"random\", \"random\", \"random\", \"random\", \"random\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"rank\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"ranvgg\", \"rcrit\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"recalculates\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"reddit\", \"redmon\", \"redmon\", \"redmon\", \"redmon\", \"redmon\", \"redmon\", \"redmon\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reekie\", \"reformation\", \"reformation\", \"reformation\", \"reformation\", \"reformation\", \"reformation\", \"reformation\", \"reformation\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"regression\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"reiterated\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resnet\", \"resomce\", \"resomce\", \"resomce\", \"resomce\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retina\", \"retroact\", \"retroact\", \"retroact\", \"retroact\", \"retroact\", \"retroact\", \"retroact\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"reward\", \"rids\", \"rids\", \"rids\", \"rids\", \"rids\", \"rids\", \"rids\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"riemannian\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rja\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmhc\", \"rmxd\", \"rmxd\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roher\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"roi\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"routing\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rox\", \"rpcca\", \"rpcca\", \"rpcca\", \"rpcca\", \"rpcca\", \"rpcca\", \"rpcca\", \"rpcca\", \"rrst\", \"rrst\", \"rrst\", \"rrst\", \"rrst\", \"rrst\", \"s_o_u_rc_e\", \"s_o_u_rc_e\", \"s_o_u_rc_e\", \"s_o_u_rc_e\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sampling\", \"sana\", \"sana\", \"sana\", \"sana\", \"sana\", \"sana\", \"sana\", \"sana\", \"sana\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schemas\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"schiz\", \"sciencetech\", \"sciencetech\", \"sciencetech\", \"sciencetech\", \"sck\", \"sck\", \"sck\", \"sck\", \"sck\", \"sck\", \"sck\", \"sck\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"seber\", \"secoild\", \"secoild\", \"secoild\", \"secoild\", \"secoild\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"secretary\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"selc\", \"selc\", \"selc\", \"selc\", \"selc\", \"selc\", \"selc\", \"selc\", \"selc\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sensitively\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"sergejew\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"several\", \"several\", \"several\", \"several\", \"several\", \"several\", \"several\", \"several\", \"several\", \"several\", \"sfiicnls\", \"sfiicnls\", \"sfiicnls\", \"sfiicnls\", \"sfiicnls\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shape\", \"shcnn\", \"shcnn\", \"shcnn\", \"shcnn\", \"shcnn\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shepherds\", \"shlttlng\", \"shlttlng\", \"shlttlng\", \"shlttlng\", \"shlttlng\", \"shlttlng\", \"shlttlng\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"shown\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"skills\", \"small\", \"small\", \"small\", \"small\", \"small\", \"small\", \"small\", \"small\", \"small\", \"small\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"smaller\", \"socj\", \"socj\", \"socj\", \"socj\", \"soua\", \"soua\", \"soua\", \"soua\", \"soua\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"spector\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"spinx\", \"spinx\", \"spinx\", \"spinx\", \"spinx\", \"sppnet\", \"sppnet\", \"sppnet\", \"sppnet\", \"sppnet\", \"sppnet\", \"sppnet\", \"sppnet\", \"sqale\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"standard\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"stb\", \"step\", \"step\", \"step\", \"step\", \"step\", \"step\", \"step\", \"step\", \"step\", \"step\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strategy\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"strawman\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"structboost\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"submodule\", \"subselect\", \"subselect\", \"subselect\", \"subselect\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"subselection\", \"sumida\", \"sumida\", \"sumida\", \"sumida\", \"sumida\", \"sumida\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supermodular\", \"supku\", \"supku\", \"supku\", \"supku\", \"supku\", \"supku\", \"supku\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"surgeon\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"suttorp\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"svd\", \"swahili\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syllable\", \"syslems\", \"syslems\", \"syslems\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"tana\", \"tana\", \"tana\", \"tana\", \"tana\", \"tana\", \"tana\", \"tana\", \"tangdist\", \"tangdist\", \"tangdist\", \"tangdist\", \"tangdist\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tangent\", \"tapplied\", \"tapplied\", \"tapplied\", \"tapplied\", \"tapplied\", \"tapplied\", \"tapplied\", \"target\", \"target\", \"target\", \"target\", \"target\", \"target\", \"target\", \"target\", \"target\", \"target\", \"targetpoint\", \"targetpoint\", \"targetpoint\", \"targetpoint\", \"targetpoint\", \"targetpoint\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tasks\", \"tcrit\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"temporal\", \"tennino\", \"tennino\", \"tennino\", \"tennino\", \"tennino\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"terms\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"tfllr\", \"tfllr\", \"tfllr\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"theorem\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thn\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"thus\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"trained\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trainval\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"trous\", \"tso\", \"tso\", \"tso\", \"tso\", \"tso\", \"tso\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"twinn\", \"two\", \"two\", \"two\", \"two\", \"two\", \"two\", \"two\", \"two\", \"two\", \"two\", \"txywh\", \"txywh\", \"txywh\", \"txywh\", \"txywh\", \"txywh\", \"txywh\", \"txywh\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ucn\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"ultiresolution\", \"unintelligible\", \"unintelligible\", \"unintelligible\", \"unintelligible\", \"unintelligible\", \"unintelligible\", \"unintelligible\", \"units\", \"units\", \"units\", \"units\", \"units\", \"units\", \"units\", \"units\", \"units\", \"units\", \"unxr\", \"unxr\", \"unxr\", \"unxr\", \"unxr\", \"unxr\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"uoms\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"ution\", \"ution\", \"ution\", \"ution\", \"ution\", \"ution\", \"ution\", \"ution\", \"vability\", \"vability\", \"vability\", \"vability\", \"vability\", \"vability\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"values\", \"values\", \"values\", \"values\", \"values\", \"values\", \"values\", \"values\", \"values\", \"values\", \"vana\", \"vana\", \"vana\", \"vana\", \"vana\", \"vana\", \"vana\", \"vana\", \"vana\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vatikiotis\", \"vba\", \"vba\", \"vba\", \"vba\", \"vba\", \"vbna\", \"vbna\", \"vbna\", \"vbna\", \"vbna\", \"vbna\", \"vbna\", \"vbna\", \"vbnasbna\", \"vbnasbna\", \"vbnasbna\", \"vbnasbna\", \"vbnasbna\", \"vbnasbna\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vcrf\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"vector\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"velocity\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"viapoint\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"vibert\", \"videband\", \"videband\", \"videband\", \"videband\", \"videband\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"viet\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virt\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"virtualization\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"vkr\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"voiceless\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vrsnvr\", \"vvada\", \"vvada\", \"vvada\", \"vvada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"wada\", \"waited\", \"waited\", \"waited\", \"waited\", \"waited\", \"warao\", \"warao\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"wavelengths\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"ween\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weights\", \"weri\", \"weri\", \"weri\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"willshaw\", \"wishful\", \"wishful\", \"wishful\", \"wishful\", \"wishful\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"wisniewski\", \"without\", \"without\", \"without\", \"without\", \"without\", \"without\", \"without\", \"without\", \"without\", \"without\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"witkovsky\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wk\", \"wonders\", \"wonders\", \"wonders\", \"wonders\", \"wonders\", \"wonders\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"wordspecific\", \"wordspecific\", \"wordspecific\", \"wordspecific\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wormhole\", \"wotff\", \"wotff\", \"wotff\", \"wotff\", \"wroot\", \"wroot\", \"wroot\", \"wroot\", \"wroot\", \"wroot\", \"wroot\", \"wrootll\", \"wrootll\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"wyatt\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xi\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xj\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xoi\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"xt\", \"yas\", \"yas\", \"yas\", \"yas\", \"yiningwa\", \"yiningwa\", \"yiningwa\", \"yiningwa\", \"yiningwa\", \"yiningwa\", \"yiningwa\", \"ymb\", \"ymb\", \"ymb\", \"ymb\", \"ymb\", \"ymb\", \"yoshita\", \"yoshita\", \"yoshita\", \"yoshita\", \"yoshita\", \"yoshita\", \"yoshita\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"yyf\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"zijc\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"znk\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\", \"ztrn\"]}, \"R\": 30, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [3, 1, 9, 7, 6, 4, 2, 8, 10, 5]};\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_el2837869631454082563143802\", ldavis_el2837869631454082563143802_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://d3js.org/d3.v5\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" LDAvis_load_lib(\"https://cdn.jsdelivr.net/gh/bmabey/pyLDAvis@3.3.1/pyLDAvis/js/ldavis.v3.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el2837869631454082563143802\", ldavis_el2837869631454082563143802_data);\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & LDAvis\n",
" LDAvis_load_lib(\"https://d3js.org/d3.v5.js\", function(){\n",
" LDAvis_load_lib(\"https://cdn.jsdelivr.net/gh/bmabey/pyLDAvis@3.3.1/pyLDAvis/js/ldavis.v3.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el2837869631454082563143802\", ldavis_el2837869631454082563143802_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"PreparedData(topic_coordinates= x y topics cluster Freq\n",
"topic \n",
"2 -0.005385 0.001843 1 1 15.988369\n",
"0 -0.002649 -0.000769 2 1 11.213842\n",
"8 -0.002355 -0.003914 3 1 11.072177\n",
"6 0.003698 0.001742 4 1 10.889077\n",
"5 -0.001911 0.001595 5 1 10.816704\n",
"3 0.002731 0.002924 6 1 10.192499\n",
"1 0.004146 -0.003182 7 1 7.765360\n",
"7 0.000459 -0.002540 8 1 7.572526\n",
"9 0.000217 0.000917 9 1 7.319893\n",
"4 0.001049 0.001385 10 1 7.169552, topic_info= Term Freq Total Category logprob loglift\n",
"479 model 86484.000000 86484.000000 Default 30.0000 30.0000\n",
"170 data 77512.000000 77512.000000 Default 29.0000 29.0000\n",
"499 network 56943.000000 56943.000000 Default 28.0000 28.0000\n",
"420 learning 91816.000000 91816.000000 Default 27.0000 27.0000\n",
"701 set 63787.000000 63787.000000 Default 26.0000 26.0000\n",
".. ... ... ... ... ... ...\n",
"527 one 3705.852870 57456.909895 Topic10 -5.6790 -0.1058\n",
"170 data 4345.754678 77512.523259 Topic10 -5.5198 -0.2459\n",
"471 method 2375.681995 30760.470659 Topic10 -6.1237 0.0744\n",
"325 given 2639.026960 37976.426566 Topic10 -6.0186 -0.0312\n",
"803 training 2828.885569 44796.506197 Topic10 -5.9491 -0.1269\n",
"\n",
"[927 rows x 6 columns], token_table= Topic Freq Term\n",
"term \n",
"2166 1 0.126758 accuracy\n",
"2166 2 0.102633 accuracy\n",
"2166 3 0.116605 accuracy\n",
"2166 4 0.120626 accuracy\n",
"2166 5 0.106854 accuracy\n",
"... ... ... ...\n",
"155931 5 0.051313 ztrn\n",
"155931 6 0.102626 ztrn\n",
"155931 7 0.051313 ztrn\n",
"155931 8 0.051313 ztrn\n",
"155931 9 0.051313 ztrn\n",
"\n",
"[5106 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[3, 1, 9, 7, 6, 4, 2, 8, 10, 5])"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pyLDAvis\n",
"import pyLDAvis.gensim_models\n",
"\n",
"pyLDAvis.enable_notebook()\n",
"pyLDAvis.gensim_models.prepare(lda_model, id2counts, id2word)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment