Skip to content

Instantly share code, notes, and snippets.

@tdhopper
Created July 17, 2015 14:31
Show Gist options
  • Save tdhopper/b1fd66334540ee89dc9a to your computer and use it in GitHub Desktop.
Save tdhopper/b1fd66334540ee89dc9a to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"from microscopes.common.rng import rng\n",
"from microscopes.lda.definition import model_definition\n",
"from microscopes.lda.model import initialize\n",
"from microscopes.lda.testutil import toy_dataset\n",
"from microscopes.lda import model, runner\n",
"from collections import Counter\n",
"\n",
"import itertools\n",
"import numpy as np\n",
"import pyLDAvis\n",
"import scipy as sp\n",
"import numpy as np\n",
"import re\n",
"import simplejson"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Topics Found: 3\n",
"Assignments:\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1]\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n",
"\t[2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2]\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n",
"\t[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]\n",
"\t[2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2]\n",
"\t[3, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1]\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n",
"\t[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n"
]
}
],
"source": [
"N, V = 10, 3\n",
"defn = model_definition(N, V)\n",
"data = toy_dataset(defn)\n",
"prng = rng()\n",
"\n",
"latent = initialize(defn, data, prng)\n",
"r = runner.runner(defn, data, latent)\n",
"r.run(prng, 1000)\n",
"\n",
"print \"Topics Found:\", latent.ntopics()\n",
"print \"Assignments:\"\n",
"for doc in latent.assignments():\n",
" print \"\\t\", doc"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Visualize Daily Kos Topics"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def get_vis_data(latent, num_docs, num_to_word):\n",
" sorted_num_vocab = sorted(num_to_word.keys())\n",
" \n",
" topic_term_distribution = []\n",
" for topic in latent.word_distribution(prng):\n",
" topic_term_distribution.append([topic[word_id] for word_id in sorted_num_vocab])\n",
" \n",
" doc_topic_distribution = latent.document_distribution()\n",
" \n",
" doc_lengths = [len(doc) for doc in num_docs]\n",
" \n",
" vocab = [num_to_word[k] for k in sorted_num_vocab]\n",
" assert all(map(len, vocab))\n",
" \n",
" ctr = Counter(list(itertools.chain.from_iterable(num_docs)))\n",
" term_frequency = [ctr[num] for num in sorted_num_vocab]\n",
" \n",
" return {'topic_term_dists': topic_term_distribution, \n",
" 'doc_topic_dists': doc_topic_distribution,\n",
" 'doc_lengths': doc_lengths,\n",
" 'vocab': vocab,\n",
" 'term_frequency': term_frequency}"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"with open(\"docword.kos.txt\", \"r\") as f:\n",
" kos_raw = [map(int, _.strip().split()) for _ in f.readlines()][3:]\n",
"\n",
" docs = []\n",
"for _, grp in itertools.groupby(kos_raw, lambda x: x[0]):\n",
" doc = []\n",
" for _, word_id, word_cnt in grp:\n",
" doc += word_cnt * [word_id - 1]\n",
" docs.append(doc)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"with open(\"vocab.kos.txt\", \"r\") as f:\n",
" kos_vocab = [word.strip() for word in f.readlines()]\n",
"id_to_word = {i: word for i, word in enumerate(kos_vocab)}\n",
"word_to_id = {word: i for i, word in enumerate(kos_vocab)}"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of docs: 3430 vocabulary size: 6906\n"
]
}
],
"source": [
"N, V = len(docs), len(id_to_word)\n",
"defn = model_definition(N, V)\n",
"prng = rng()\n",
"latent = initialize(defn, docs, prng, \n",
" vocab_hp=0.5, \n",
" dish_hps={\"alpha\": 0.1, \"gamma\": 0.1})\n",
"r = runner.runner(defn, docs, latent)\n",
"\n",
"print \"number of docs:\", N, \"vocabulary size:\", V"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"iteration: 0 perplexity: 1660.04514575 num topics: 13\n",
"iteration: 10 perplexity: 1642.88840381 num topics: 14\n",
"iteration: 20 perplexity: 1628.16751916 num topics: 14\n",
"iteration: 30 perplexity: 1621.08824537 num topics: 13\n",
"iteration: 40 perplexity: 1613.7293193 num topics: 14\n",
"iteration: 50 perplexity: 1607.56607523 num topics: 14\n",
"iteration: 60 perplexity: 1598.09713799 num topics: 14\n",
"iteration: 70 perplexity: 1584.36558045 num topics: 14\n",
"iteration: 80 perplexity: 1580.50486935 num topics: 14\n",
"iteration: 90 perplexity: 1577.8944629 num topics: 15\n",
"iteration: 100 perplexity: 1574.40470209 num topics: 15\n",
"iteration: 110 perplexity: 1571.62380585 num topics: 15\n",
"iteration: 120 perplexity: 1570.25337662 num topics: 15\n",
"iteration: 130 perplexity: 1560.67636844 num topics: 16\n",
"iteration: 140 perplexity: 1556.59002989 num topics: 17\n",
"iteration: 150 perplexity: 1555.3368302 num topics: 16\n",
"iteration: 160 perplexity: 1553.96941592 num topics: 16\n",
"iteration: 170 perplexity: 1552.24021544 num topics: 16\n",
"iteration: 180 perplexity: 1550.72215895 num topics: 17\n",
"iteration: 190 perplexity: 1548.90044365 num topics: 17\n"
]
}
],
"source": [
"step_size = 10\n",
"steps = 20\n",
"\n",
"for _ in range(steps):\n",
" r.run(prng, step_size)\n",
" with open(\"daily-kos-summary.json\", \"w\") as fp:\n",
" simplejson.dump(get_vis_data(latent, docs, id_to_word), fp=fp)\n",
" print \"iteration:\", _ * step_size, \"perplexity:\", latent.perplexity(), \"num topics:\", latent.ntopics()"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css\">\n",
"\n",
"\n",
"<div id=\"ldavis_el4065744266144809611862881\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el4065744266144809611862881_data = {\"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [2, 4, 5, 6, 1, 9, 3, 7, 10, 15, 8, 12, 14, 13, 17, 16, 11], \"token.table\": {\"Topic\": [7, 9, 1, 2, 3, 4, 8, 4, 7, 8, 2, 3, 5, 6, 9, 1, 2, 6, 9, 1, 3, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 2, 3, 4, 7, 8, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 1, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 7, 8, 9, 11, 1, 2, 4, 5, 8, 10, 1, 2, 4, 5, 6, 7, 8, 1, 3, 6, 7, 2, 1, 7, 1, 2, 3, 4, 5, 6, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 9, 11, 1, 3, 6, 7, 2, 3, 4, 13, 1, 5, 1, 1, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 10, 4, 5, 9, 3, 4, 9, 12, 1, 2, 3, 4, 6, 13, 2, 3, 6, 1, 2, 5, 6, 1, 2, 8, 9, 1, 4, 6, 9, 1, 2, 3, 4, 5, 8, 11, 1, 3, 7, 10, 1, 2, 4, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 1, 2, 3, 4, 5, 10, 11, 2, 3, 4, 5, 7, 8, 1, 3, 4, 5, 1, 2, 4, 8, 13, 1, 2, 3, 8, 12, 1, 2, 4, 5, 6, 7, 9, 1, 2, 3, 4, 6, 8, 1, 2, 3, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 7, 1, 2, 3, 4, 5, 7, 8, 9, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 7, 8, 11, 2, 4, 5, 6, 9, 1, 2, 4, 5, 8, 1, 2, 3, 4, 7, 5, 6, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 9, 1, 3, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 3, 4, 5, 6, 8, 9, 16, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, 1, 2, 3, 4, 6, 7, 8, 9, 1, 3, 5, 6, 8, 12, 1, 2, 3, 4, 7, 8, 9, 10, 12, 1, 2, 3, 4, 6, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 2, 3, 4, 5, 7, 8, 10, 1, 3, 4, 5, 6, 7, 1, 2, 8, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 1, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 6, 8, 1, 2, 4, 6, 1, 2, 3, 4, 6, 7, 8, 9, 5, 2, 3, 4, 7, 9, 4, 1, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 8, 1, 2, 3, 4, 6, 7, 1, 2, 3, 9, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 17, 1, 5, 7, 1, 5, 5, 1, 2, 3, 4, 5, 6, 7, 10, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 6, 8, 2, 4, 4, 12, 6, 9, 3, 4, 6, 7, 10, 1, 2, 3, 4, 6, 7, 9, 4, 6, 5, 5, 2, 7, 8, 1, 2, 3, 4, 5, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 1, 5, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 3, 4, 6, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 10, 13, 1, 2, 3, 7, 8, 3, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 8, 1, 4, 6, 2, 3, 6, 8, 10, 2, 8, 6, 10, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 5, 9, 1, 2, 3, 4, 7, 3, 8, 1, 2, 4, 6, 7, 8, 9, 10, 1, 2, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 3, 8, 14, 4, 6, 7, 5, 1, 2, 3, 4, 5, 6, 7, 8, 1, 6, 7, 1, 3, 5, 7, 9, 14, 2, 4, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 1, 8, 12, 1, 2, 3, 4, 5, 6, 8, 9, 13, 1, 7, 1, 2, 3, 4, 6, 9, 1, 2, 4, 8, 1, 2, 4, 1, 2, 3, 4, 5, 7, 8, 9, 10, 2, 3, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 3, 4, 7, 8, 9, 13, 3, 4, 5, 6, 9, 4, 7, 1, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 11, 3, 6, 8, 1, 2, 3, 4, 6, 7, 8, 9, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 3, 4, 7, 8, 1, 2, 3, 5, 6, 7, 8, 2, 8, 1, 2, 3, 4, 5, 6, 7, 14, 2, 3, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 7, 8, 9, 3, 4, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 1, 2, 3, 4, 6, 7, 9, 10, 13, 1, 5, 7, 2, 3, 6, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 4, 6, 7, 1, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 12, 13, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 2, 9, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 7, 8, 9, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 2, 7, 8, 9, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 7, 8, 2, 3, 5, 7, 8, 9, 3, 4, 7, 8, 14, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 1, 3, 4, 5, 6, 7, 8, 12, 5, 1, 2, 3, 4, 7, 8, 3, 5, 4, 4, 1, 2, 3, 8, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 2, 3, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 6, 6, 2, 3, 6, 7, 8, 11, 1, 2, 4, 1, 2, 3, 4, 7, 3, 7, 8, 1, 2, 4, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 5, 8, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 4, 5, 6, 7, 9, 1, 2, 3, 6, 7, 8, 10, 2, 4, 7, 14, 1, 3, 6, 7, 4, 2, 11, 1, 1, 3, 4, 7, 2, 5, 1, 7, 10, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 1, 7, 8, 9, 4, 8, 10, 1, 2, 3, 6, 7, 8, 9, 3, 6, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 5, 6, 8, 9, 1, 2, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 6, 3, 4, 5, 6, 10, 14, 1, 5, 6, 1, 2, 3, 6, 7, 3, 1, 2, 3, 4, 5, 6, 7, 10, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 17, 4, 1, 5, 2, 3, 4, 5, 7, 9, 2, 6, 1, 5, 1, 2, 3, 4, 6, 9, 10, 3, 1, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 4, 5, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 12, 3, 7, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 13, 5, 1, 2, 3, 4, 9, 14, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 4, 8, 9, 11, 1, 3, 4, 5, 6, 7, 8, 9, 3, 4, 6, 9, 7, 10, 1, 2, 4, 14, 7, 8, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 1, 5, 1, 2, 3, 4, 7, 8, 12, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 1, 3, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 6, 10, 1, 2, 3, 4, 7, 13, 4, 6, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 3, 4, 6, 7, 8, 1, 5, 6, 8, 2, 3, 6, 7, 2, 1, 2, 3, 4, 5, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 4, 6, 7, 8, 10, 1, 2, 3, 4, 5, 7, 8, 11, 1, 3, 4, 6, 8, 9, 1, 3, 6, 7, 2, 4, 1, 5, 7, 8, 9, 3, 4, 7, 8, 9, 4, 8, 9, 10, 1, 4, 7, 2, 4, 1, 2, 3, 4, 5, 7, 8, 9, 12, 1, 3, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 6, 7, 8, 10, 11, 1, 4, 6, 10, 11, 1, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 6, 8, 10, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 8, 4, 5, 7, 9, 5, 6, 1, 2, 3, 4, 5, 6, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 14, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 5, 6, 8, 10, 1, 2, 3, 4, 6, 7, 8, 5, 1, 6, 8, 1, 2, 3, 6, 8, 1, 2, 3, 6, 7, 5, 1, 2, 3, 4, 5, 6, 8, 2, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 1, 3, 4, 6, 8, 9, 1, 2, 3, 4, 6, 7, 8, 9, 2, 9, 1, 2, 3, 4, 6, 2, 3, 1, 2, 6, 7, 9, 2, 3, 8, 7, 8, 12, 5, 6, 8, 10, 2, 4, 6, 7, 8, 12, 1, 3, 4, 7, 8, 1, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 6, 1, 2, 3, 4, 5, 6, 9, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 4, 8, 4, 5, 8, 2, 3, 7, 10, 2, 4, 7, 1, 2, 3, 4, 5, 6, 7, 9, 1, 6, 8, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 4, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 1, 4, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 2, 3, 4, 6, 8, 2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 6, 4, 5, 6, 1, 2, 3, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 2, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 3, 6, 8, 3, 3, 6, 9, 2, 3, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 1, 2, 3, 4, 5, 6, 7, 9, 1, 4, 5, 1, 2, 3, 4, 6, 8, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 6, 7, 8, 13, 5, 4, 6, 7, 3, 4, 5, 2, 3, 1, 3, 4, 7, 1, 2, 3, 6, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 1, 2, 9, 1, 2, 3, 4, 6, 13, 1, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 4, 6, 10, 11, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 5, 6, 7, 8, 9, 1, 2, 3, 7, 8, 7, 5, 7, 8, 1, 2, 3, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 3, 6, 7, 8, 3, 4, 7, 1, 1, 2, 7, 8, 1, 2, 3, 4, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 7, 1, 2, 3, 6, 7, 9, 5, 6, 7, 8, 1, 2, 3, 5, 6, 7, 8, 1, 2, 3, 4, 5, 7, 8, 1, 4, 7, 10, 11, 1, 2, 3, 4, 5, 11, 1, 4, 7, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 3, 6, 1, 2, 3, 4, 5, 6, 7, 8, 13, 3, 8, 10, 1, 4, 7, 12, 4, 3, 4, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 4, 6, 7, 8, 1, 4, 5, 6, 7, 8, 14, 2, 8, 9, 5, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 7, 8, 9, 1, 6, 7, 3, 4, 5, 8, 5, 1, 3, 6, 9, 12, 3, 1, 3, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 11, 1, 2, 3, 4, 5, 6, 8, 14, 5, 2, 3, 5, 1, 1, 2, 5, 6, 1, 4, 5, 6, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 1, 2, 3, 2, 4, 5, 6, 8, 1, 4, 10, 1, 2, 3, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 3, 5, 6, 8, 9, 13, 1, 2, 3, 4, 6, 8, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 3, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 4, 1, 2, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 5, 1, 5, 1, 4, 6, 8, 6, 8, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 2, 4, 8, 1, 2, 3, 4, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 4, 5, 6, 8, 1, 2, 4, 5, 6, 1, 3, 4, 6, 7, 9, 16, 1, 6, 8, 1, 4, 5, 8, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 5, 5, 4, 5, 5, 1, 2, 3, 4, 5, 6, 8, 9, 12, 1, 2, 6, 7, 8, 9, 1, 3, 4, 6, 7, 8, 14, 1, 7, 11, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 4, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 1, 3, 4, 5, 6, 7, 9, 6, 7, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 3, 7, 9, 1, 2, 3, 4, 5, 7, 8, 5, 1, 7, 8, 3, 4, 5, 4, 5, 2, 3, 4, 6, 9, 1, 2, 3, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 2, 4, 6, 8, 4, 8, 10, 12, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 1, 2, 3, 5, 7, 8, 10, 2, 3, 5, 6, 7, 2, 4, 3, 4, 9, 1, 2, 3, 4, 6, 7, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 5, 7, 1, 4, 6, 8, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 6, 7, 8, 11, 1, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 6, 15, 1, 1, 2, 3, 4, 5, 6, 10, 1, 4, 7, 8, 9, 1, 5, 3, 2, 7, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 5, 1, 2, 3, 4, 5, 7, 10, 1, 4, 6, 9, 1, 2, 3, 5, 6, 9, 2, 3, 1, 9, 11, 1, 4, 8, 6, 7, 1, 2, 3, 5, 6, 11, 3, 4, 6, 7, 9, 10, 6, 8, 9, 1, 2, 6, 9, 3, 4, 2, 3, 6, 7, 3, 1, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 2, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 4, 6, 8, 10, 11, 1, 4, 5, 6, 7, 11, 1, 2, 3, 6, 10, 1, 1, 2, 3, 4, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 7, 8, 9, 14, 1, 2, 8, 1, 1, 4, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 10, 1, 2, 5, 6, 7, 9, 1, 2, 3, 2, 4, 14, 7, 1, 2, 3, 4, 5, 6, 9, 10, 1, 5, 1, 2, 3, 4, 6, 7, 8, 9, 14, 1, 4, 7, 8, 9, 2, 3, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 3, 4, 1, 2, 3, 4, 7, 1, 3, 5, 5, 7, 3, 1, 2, 8, 9, 1, 2, 8, 9, 1, 3, 5, 6, 7, 8, 3, 1, 2, 3, 4, 6, 7, 8, 9, 14, 1, 3, 1, 1, 5, 2, 2, 3, 5, 10, 1, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 12, 1, 2, 5, 6, 2, 4, 7, 1, 2, 4, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 7, 8, 9, 1, 8, 12, 1, 2, 3, 4, 5, 7, 8, 2, 1, 3, 4, 7, 8, 14, 1, 2, 3, 4, 5, 6, 8, 9, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 2, 4, 6, 7, 8, 2, 4, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 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, 2, 3, 6, 1, 2, 3, 4, 6, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 1, 5, 6, 2, 5, 6, 8, 9, 4, 5, 2, 4, 6, 4, 7, 1, 2, 3, 4, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 2, 4, 6, 1, 3, 4, 7, 8, 9, 14, 4, 5, 7, 9, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 5, 1, 4, 8, 2, 3, 4, 5, 6, 9, 2, 3, 1, 2, 3, 4, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 4, 8, 4, 1, 5, 1, 5, 6, 7, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 7, 9, 12, 4, 9, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 6, 12, 1, 7, 4, 7, 8, 3, 4, 6, 7, 8, 9, 1, 2, 6, 9, 11, 4, 6, 10, 1, 2, 3, 4, 6, 7, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 9, 1, 2, 3, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 7, 8, 1, 2, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 6, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 1, 2, 3, 4, 7, 9, 3, 1, 4, 5, 6, 12, 1, 2, 3, 7, 4, 1, 3, 4, 7, 1, 2, 3, 4, 5, 6, 8, 9, 4, 1, 6, 7, 8, 11, 3, 6, 8, 9, 6, 10, 2, 3, 8, 1, 6, 7, 8, 9, 14, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 1, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 1, 3, 4, 6, 9, 12, 1, 2, 4, 5, 6, 7, 11, 1, 3, 1, 8, 2, 3, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 4, 6, 8, 9, 14, 6, 8, 3, 8, 1, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 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, 1, 1, 4, 6, 8, 14, 1, 2, 5, 7, 1, 3, 5, 6, 7, 8, 1, 3, 6, 8, 2, 4, 5, 1, 2, 3, 4, 6, 12, 1, 2, 3, 4, 6, 7, 8, 9, 1, 3, 6, 1, 2, 4, 7, 9, 1, 2, 3, 4, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 5, 1, 2, 3, 4, 7, 8, 9, 2, 3, 4, 5, 9, 1, 2, 3, 8, 9, 1, 2, 3, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 3, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 4, 9, 10, 3, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 2, 4, 5, 8, 1, 1, 1, 1, 3, 4, 8, 15, 1, 3, 5, 10, 14, 1, 2, 3, 4, 6, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 5, 6, 9, 1, 7, 8, 9, 10, 13, 1, 2, 3, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 6, 7, 8, 1, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 8, 9, 2, 4, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 4, 6, 1, 4, 6, 8, 10, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 1, 2, 3, 4, 6, 7, 8, 10, 7, 1, 5, 7, 1, 2, 3, 4, 5, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 4, 6, 9, 14, 1, 2, 7, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 8, 10, 1, 3, 1, 2, 3, 7, 9, 1, 2, 3, 4, 8, 1, 2, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 5, 7, 8, 2, 3, 5, 7, 8, 9, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 1, 2, 5, 1, 3, 4, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 8, 9, 1, 2, 3, 6, 7, 8, 14, 2, 3, 2, 3, 4, 6, 7, 2, 3, 2, 4, 7, 9, 1, 2, 3, 5, 13, 1, 3, 6, 2, 3, 4, 6, 7, 10, 1, 2, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 1, 3, 4, 7, 9, 4, 9, 1, 2, 3, 4, 5, 7, 8, 1, 2, 3, 4, 6, 7, 8, 9, 6, 1, 2, 3, 4, 5, 6, 7, 9, 10, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 7, 2, 1, 3, 4, 6, 8, 1, 2, 3, 4, 5, 6, 8, 9, 16, 1, 2, 3, 4, 6, 7, 8, 9, 2, 3, 4, 7, 8, 3, 1, 3, 6, 9, 1, 2, 3, 4, 5, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 15, 1, 2, 3, 4, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 11, 1, 2, 3, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 3, 4, 11, 2, 6, 1, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 6, 7, 9, 1, 4, 6, 14, 1, 2, 3, 4, 5, 8, 14, 1, 3, 4, 5, 6, 7, 8, 9, 11, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 2, 9, 1, 2, 3, 4, 5, 6, 7, 8, 12, 2, 7, 2, 3, 4, 5, 6, 7, 3, 1, 4, 5, 6, 12, 2, 1, 2, 3, 4, 5, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 1, 2, 3, 4, 6, 7, 8, 1, 3, 5, 8, 9, 1, 7, 4, 7, 1, 5, 4, 7, 9, 2, 3, 4, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 12, 1, 2, 3, 4, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 16, 1, 2, 4, 12, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 7, 8, 9, 1, 2, 3, 4, 5, 7, 8, 9, 7, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 12, 1, 2, 3, 4, 5, 6, 8, 1, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 3, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 15, 3, 1, 2, 3, 4, 6, 7, 8, 9, 10, 7, 1, 2, 3, 4, 9, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 2, 4, 6, 13, 1, 5, 7, 8, 9, 2, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 9, 4, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 1, 2, 3, 4, 5, 6, 8, 9, 10, 1, 2, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 8, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 1, 2, 3, 4, 5, 6, 1, 2, 5], \"Freq\": [0.66666666666666663, 0.083333333333333329, 0.019047619047619049, 0.0095238095238095247, 0.20952380952380953, 0.0095238095238095247, 0.7142857142857143, 0.0625, 0.0625, 0.6875, 0.068965517241379309, 0.13793103448275862, 0.10344827586206896, 0.068965517241379309, 0.51724137931034486, 0.94505494505494503, 0.016483516483516484, 0.0054945054945054949, 0.01098901098901099, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.015130674002751032, 0.020632737276478678, 0.015130674002751032, 0.0096286107290233843, 0.92847317744154056, 0.001375515818431912, 0.0068775790921595595, 0.23333333333333334, 0.066666666666666666, 0.1388888888888889, 0.088888888888888892, 0.011111111111111112, 0.11666666666666667, 0.044444444444444446, 0.20555555555555555, 0.088888888888888892, 0.0055555555555555558, 0.50909090909090904, 0.0090909090909090905, 0.027272727272727271, 0.29090909090909089, 0.0090909090909090905, 0.081818181818181818, 0.045454545454545456, 0.018181818181818181, 0.14285714285714285, 0.014285714285714285, 0.071428571428571425, 0.15714285714285714, 0.014285714285714285, 0.057142857142857141, 0.15714285714285714, 0.17142857142857143, 0.20000000000000001, 0.014285714285714285, 0.014285714285714285, 0.32727272727272727, 0.018181818181818181, 0.10909090909090909, 0.036363636363636362, 0.018181818181818181, 0.036363636363636362, 0.16363636363636364, 0.14545454545454545, 0.072727272727272724, 0.018181818181818181, 0.072727272727272724, 0.0059880239520958087, 0.0029940119760479044, 0.97904191616766467, 0.54526166902404527, 0.022630834512022632, 0.024045261669024046, 0.13790664780763789, 0.016265912305516265, 0.0063649222065063652, 0.19731258840169733, 0.045261669024045263, 0.0035360678925035359, 0.00070721357850070724, 0.090909090909090912, 0.090909090909090912, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.125, 0.125, 0.125, 0.125, 0.25, 0.0625, 0.29197080291970801, 0.014598540145985401, 0.6058394160583942, 0.014598540145985401, 0.0072992700729927005, 0.014598540145985401, 0.029197080291970802, 0.91935483870967738, 0.0080645161290322578, 0.0080645161290322578, 0.032258064516129031, 0.94202898550724634, 0.083333333333333329, 0.66666666666666663, 0.62365591397849462, 0.021505376344086023, 0.032258064516129031, 0.086021505376344093, 0.010752688172043012, 0.021505376344086023, 0.16129032258064516, 0.010752688172043012, 0.15987460815047022, 0.040752351097178681, 0.043887147335423198, 0.27586206896551724, 0.037617554858934171, 0.2884012539184953, 0.12852664576802508, 0.0094043887147335428, 0.003134796238244514, 0.012539184952978056, 0.42857142857142855, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.76923076923076927, 0.8571428571428571, 0.023809523809523808, 0.071428571428571425, 0.59999999999999998, 0.14999999999999999, 0.050000000000000003, 0.050000000000000003, 0.75, 0.9555555555555556, 0.7857142857142857, 0.0030211480362537764, 0.98489425981873113, 0.75, 0.0058479532163742687, 0.023391812865497075, 0.017543859649122806, 0.029239766081871343, 0.0058479532163742687, 0.035087719298245612, 0.040935672514619881, 0.82456140350877194, 0.011695906432748537, 0.0058479532163742687, 0.1798165137614679, 0.064220183486238536, 0.044036697247706424, 0.13027522935779817, 0.016513761467889909, 0.22018348623853212, 0.15412844036697249, 0.15596330275229359, 0.033027522935779818, 0.54318181818181821, 0.10000000000000001, 0.028409090909090908, 0.05909090909090909, 0.026136363636363635, 0.079545454545454544, 0.14886363636363636, 0.011363636363636364, 0.0011363636363636363, 0.69999999999999996, 0.015503875968992248, 0.10852713178294573, 0.054263565891472867, 0.03875968992248062, 0.51937984496124034, 0.046511627906976744, 0.031007751937984496, 0.0077519379844961239, 0.17054263565891473, 0.10000000000000001, 0.5, 0.61538461538461542, 0.076923076923076927, 0.076923076923076927, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.032258064516129031, 0.032258064516129031, 0.12903225806451613, 0.35483870967741937, 0.32258064516129031, 0.032258064516129031, 0.27272727272727271, 0.27272727272727271, 0.18181818181818182, 0.10000000000000001, 0.29999999999999999, 0.10000000000000001, 0.20000000000000001, 0.076923076923076927, 0.15384615384615385, 0.15384615384615385, 0.46153846153846156, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.65000000000000002, 0.2608695652173913, 0.086956521739130432, 0.30434782608695654, 0.086956521739130432, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.72727272727272729, 0.20000000000000001, 0.29999999999999999, 0.20000000000000001, 0.03875968992248062, 0.86046511627906974, 0.015503875968992248, 0.0077519379844961239, 0.031007751937984496, 0.015503875968992248, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.78536585365853662, 0.039024390243902439, 0.039024390243902439, 0.092682926829268292, 0.014634146341463415, 0.0048780487804878049, 0.0097560975609756097, 0.11627906976744186, 0.046511627906976744, 0.023255813953488372, 0.046511627906976744, 0.39534883720930231, 0.30232558139534882, 0.0029940119760479044, 0.0029940119760479044, 0.0059880239520958087, 0.9760479041916168, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.27272727272727271, 0.18181818181818182, 0.090909090909090912, 0.045454545454545456, 0.090909090909090912, 0.045454545454545456, 0.18181818181818182, 0.38461538461538464, 0.076923076923076927, 0.19230769230769232, 0.11538461538461539, 0.076923076923076927, 0.076923076923076927, 0.18181818181818182, 0.068181818181818177, 0.090909090909090912, 0.068181818181818177, 0.090909090909090912, 0.045454545454545456, 0.27272727272727271, 0.068181818181818177, 0.045454545454545456, 0.1111111111111111, 0.055555555555555552, 0.33333333333333331, 0.055555555555555552, 0.22222222222222221, 0.48697916666666669, 0.020833333333333332, 0.065104166666666671, 0.3125, 0.0026041666666666665, 0.046875, 0.052083333333333336, 0.005208333333333333, 0.0026041666666666665, 0.0026041666666666665, 0.75135135135135134, 0.07567567567567568, 0.013513513513513514, 0.11351351351351352, 0.0054054054054054057, 0.016216216216216217, 0.0081081081081081086, 0.0054054054054054057, 0.0027027027027027029, 0.1419939577039275, 0.10876132930513595, 0.15105740181268881, 0.40785498489425981, 0.039274924471299093, 0.072507552870090641, 0.057401812688821753, 0.0030211480362537764, 0.015105740181268883, 0.0030211480362537764, 0.45454545454545453, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.20000000000000001, 0.10000000000000001, 0.20000000000000001, 0.20000000000000001, 0.10000000000000001, 0.017241379310344827, 0.051724137931034482, 0.051724137931034482, 0.77586206896551724, 0.034482758620689655, 0.16666666666666666, 0.58333333333333337, 0.75, 0.75, 0.059701492537313432, 0.19402985074626866, 0.089552238805970144, 0.22388059701492538, 0.014925373134328358, 0.22388059701492538, 0.029850746268656716, 0.059701492537313432, 0.074626865671641784, 0.029850746268656716, 0.97890295358649793, 0.0042194092827004216, 0.003003003003003003, 0.15615615615615616, 0.15915915915915915, 0.012012012012012012, 0.012012012012012012, 0.003003003003003003, 0.003003003003003003, 0.03003003003003003, 0.6216216216216216, 0.013157894736842105, 0.19736842105263158, 0.092105263157894732, 0.013157894736842105, 0.078947368421052627, 0.026315789473684209, 0.57894736842105265, 0.10000000000000001, 0.01, 0.050000000000000003, 0.089999999999999997, 0.68999999999999995, 0.029999999999999999, 0.15789473684210525, 0.10526315789473684, 0.40789473684210525, 0.013157894736842105, 0.013157894736842105, 0.078947368421052627, 0.11842105263157894, 0.039473684210526314, 0.052631578947368418, 0.14634146341463414, 0.097560975609756101, 0.04878048780487805, 0.024390243902439025, 0.26829268292682928, 0.26829268292682928, 0.04878048780487805, 0.024390243902439025, 0.69999999999999996, 0.54545454545454541, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.090909090909090912, 0.045454545454545456, 0.80000000000000004, 0.33333333333333331, 0.066666666666666666, 0.13333333333333333, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705, 0.23529411764705882, 0.29411764705882354, 0.058823529411764705, 0.31818181818181818, 0.18181818181818182, 0.045454545454545456, 0.13636363636363635, 0.12121212121212122, 0.090909090909090912, 0.045454545454545456, 0.015151515151515152, 0.015151515151515152, 0.5714285714285714, 0.095238095238095233, 0.047619047619047616, 0.047619047619047616, 0.095238095238095233, 0.047619047619047616, 0.032822757111597371, 0.054704595185995623, 0.17505470459518599, 0.20568927789934355, 0.0021881838074398249, 0.028446389496717725, 0.20787746170678337, 0.2713347921225383, 0.015317286652078774, 0.0021881838074398249, 0.15720524017467249, 0.013100436681222707, 0.0043668122270742356, 0.034934497816593885, 0.0087336244541484712, 0.76419213973799127, 0.0087336244541484712, 0.013100436681222707, 0.032258064516129031, 0.16129032258064516, 0.096774193548387094, 0.064516129032258063, 0.032258064516129031, 0.4838709677419355, 0.97222222222222221, 0.10000000000000001, 0.59999999999999998, 0.69230769230769229, 0.088888888888888892, 0.044444444444444446, 0.12592592592592591, 0.088888888888888892, 0.0074074074074074077, 0.044444444444444446, 0.022222222222222223, 0.51111111111111107, 0.059259259259259262, 0.0074074074074074077, 0.0074074074074074077, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.59999999999999998, 0.066666666666666666, 0.13333333333333333, 0.066666666666666666, 0.20000000000000001, 0.066666666666666666, 0.33333333333333331, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.0049261083743842365, 0.049261083743842367, 0.12807881773399016, 0.073891625615763554, 0.029556650246305417, 0.6354679802955665, 0.019704433497536946, 0.034482758620689655, 0.019704433497536946, 0.046153846153846156, 0.092307692307692313, 0.061538461538461542, 0.076923076923076927, 0.076923076923076927, 0.59999999999999998, 0.0065359477124183009, 0.039215686274509803, 0.019607843137254902, 0.039215686274509803, 0.83660130718954251, 0.052287581699346407, 0.038461538461538464, 0.076923076923076927, 0.096153846153846159, 0.71153846153846156, 0.006993006993006993, 0.027972027972027972, 0.13286713286713286, 0.055944055944055944, 0.71328671328671334, 0.013986013986013986, 0.006993006993006993, 0.034965034965034968, 0.96268656716417911, 0.010101010101010102, 0.020202020202020204, 0.90909090909090906, 0.010101010101010102, 0.010101010101010102, 0.72727272727272729, 0.86206896551724133, 0.16666666666666666, 0.047619047619047616, 0.019047619047619049, 0.2857142857142857, 0.40476190476190477, 0.033333333333333333, 0.023809523809523808, 0.014285714285714285, 0.43333333333333335, 0.20000000000000001, 0.066666666666666666, 0.10000000000000001, 0.10000000000000001, 0.0092592592592592587, 0.83333333333333337, 0.018518518518518517, 0.046296296296296294, 0.046296296296296294, 0.018518518518518517, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.5, 0.0030211480362537764, 0.98489425981873113, 0.027777777777777776, 0.1111111111111111, 0.41666666666666669, 0.027777777777777776, 0.027777777777777776, 0.083333333333333329, 0.027777777777777776, 0.027777777777777776, 0.083333333333333329, 0.027777777777777776, 0.083333333333333329, 0.0030211480362537764, 0.98187311178247738, 0.0030211480362537764, 0.0030211480362537764, 0.98489425981873113, 0.95652173913043481, 0.26470588235294118, 0.088235294117647065, 0.058823529411764705, 0.029411764705882353, 0.029411764705882353, 0.3235294117647059, 0.029411764705882353, 0.17647058823529413, 0.96062992125984248, 0.39285714285714285, 0.035714285714285712, 0.035714285714285712, 0.071428571428571425, 0.035714285714285712, 0.035714285714285712, 0.071428571428571425, 0.035714285714285712, 0.10714285714285714, 0.035714285714285712, 0.21428571428571427, 0.69230769230769229, 0.076923076923076927, 0.076923076923076927, 0.69230769230769229, 0.82608695652173914, 0.043478260869565216, 0.16666666666666666, 0.58333333333333337, 0.2857142857142857, 0.23809523809523808, 0.19047619047619047, 0.14285714285714285, 0.047619047619047616, 0.017045454545454544, 0.011363636363636364, 0.068181818181818177, 0.068181818181818177, 0.011363636363636364, 0.8125, 0.005681818181818182, 0.125, 0.5, 0.91666666666666663, 0.82608695652173914, 0.029411764705882353, 0.67647058823529416, 0.20588235294117646, 0.17857142857142858, 0.035714285714285712, 0.6071428571428571, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.19672614658604926, 0.26839699159416014, 0.034508184633534875, 0.27975224893083617, 0.079044388733225182, 0.005898834980091432, 0.099837782038047482, 0.03155876714348916, 0.0042766553605662885, 0.25741710296684117, 0.16055846422338568, 0.035776614310645723, 0.37870855148342059, 0.0061082024432809771, 0.015706806282722512, 0.10471204188481675, 0.039267015706806283, 0.0030211480362537764, 0.98489425981873113, 0.0030211480362537764, 0.98489425981873113, 0.017241379310344827, 0.39080459770114945, 0.10919540229885058, 0.028735632183908046, 0.0057471264367816091, 0.057471264367816091, 0.057471264367816091, 0.17816091954022989, 0.14367816091954022, 0.011494252873563218, 0.0030211480362537764, 0.98489425981873113, 0.23773584905660378, 0.071698113207547168, 0.018867924528301886, 0.2339622641509434, 0.0037735849056603774, 0.15094339622641509, 0.067924528301886791, 0.17358490566037735, 0.037735849056603772, 0.0037735849056603774, 0.0037735849056603774, 0.090909090909090912, 0.63636363636363635, 0.017068273092369479, 0.21937751004016065, 0.30020080321285142, 0.27610441767068272, 0.0040160642570281121, 0.076305220883534142, 0.048694779116465865, 0.019076305220883535, 0.038654618473895584, 0.052631578947368418, 0.10526315789473684, 0.052631578947368418, 0.21052631578947367, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.10526315789473684, 0.42105263157894735, 0.0045871559633027525, 0.30389908256880732, 0.50344036697247707, 0.082568807339449546, 0.0057339449541284407, 0.03096330275229358, 0.008027522935779817, 0.022935779816513763, 0.037844036697247709, 0.0011467889908256881, 0.0058548009367681503, 0.37119437939110073, 0.48009367681498827, 0.045667447306791571, 0.01288056206088993, 0.032786885245901641, 0.0081967213114754103, 0.02224824355971897, 0.01873536299765808, 0.23999999999999999, 0.16, 0.32000000000000001, 0.040000000000000001, 0.080000000000000002, 0.040000000000000001, 0.45283018867924529, 0.094339622641509441, 0.075471698113207544, 0.018867924528301886, 0.037735849056603772, 0.094339622641509441, 0.11320754716981132, 0.056603773584905662, 0.018867924528301886, 0.63636363636363635, 0.15019762845849802, 0.011857707509881422, 0.031620553359683792, 0.10276679841897234, 0.015810276679841896, 0.14624505928853754, 0.45059288537549408, 0.083003952569169967, 0.0079051383399209481, 0.003952569169960474, 0.068965517241379309, 0.034482758620689655, 0.20689655172413793, 0.37931034482758619, 0.068965517241379309, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.066666666666666666, 0.53333333333333333, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.9196428571428571, 0.049107142857142856, 0.004464285714285714, 0.0089285714285714281, 0.040000000000000001, 0.10000000000000001, 0.080000000000000002, 0.10000000000000001, 0.059999999999999998, 0.059999999999999998, 0.10000000000000001, 0.23999999999999999, 0.16, 0.040000000000000001, 0.10000000000000001, 0.59999999999999998, 0.92222222222222228, 0.022222222222222223, 0.011111111111111112, 0.014925373134328358, 0.014925373134328358, 0.014925373134328358, 0.88059701492537312, 0.014925373134328358, 0.034482758620689655, 0.82758620689655171, 0.80952380952380953, 0.047619047619047616, 0.010869565217391304, 0.90217391304347827, 0.043478260869565216, 0.26190476190476192, 0.023809523809523808, 0.023809523809523808, 0.16666666666666666, 0.095238095238095233, 0.047619047619047616, 0.11904761904761904, 0.14285714285714285, 0.047619047619047616, 0.023809523809523808, 0.023809523809523808, 0.095744680851063829, 0.14893617021276595, 0.042553191489361701, 0.031914893617021274, 0.010638297872340425, 0.031914893617021274, 0.042553191489361701, 0.2978723404255319, 0.095744680851063829, 0.21276595744680851, 0.16129032258064516, 0.064516129032258063, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.096774193548387094, 0.032258064516129031, 0.4838709677419355, 0.89772727272727271, 0.022727272727272728, 0.034090909090909088, 0.046808510638297871, 0.017021276595744681, 0.11914893617021277, 0.017021276595744681, 0.73191489361702122, 0.010638297872340425, 0.0042553191489361703, 0.019148936170212766, 0.031914893617021274, 0.002617801047120419, 0.015706806282722512, 0.089005235602094238, 0.87172774869109948, 0.013089005235602094, 0.0097087378640776691, 0.0097087378640776691, 0.92233009708737868, 0.0097087378640776691, 0.0097087378640776691, 0.8214285714285714, 0.035714285714285712, 0.057692307692307696, 0.019230769230769232, 0.19230769230769232, 0.51923076923076927, 0.019230769230769232, 0.057692307692307696, 0.057692307692307696, 0.019230769230769232, 0.13333333333333333, 0.066666666666666666, 0.13333333333333333, 0.066666666666666666, 0.13333333333333333, 0.26666666666666666, 0.34782608695652173, 0.052173913043478258, 0.12173913043478261, 0.17391304347826086, 0.034782608695652174, 0.086956521739130432, 0.034782608695652174, 0.086956521739130432, 0.026086956521739129, 0.026086956521739129, 0.27272727272727271, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.54545454545454541, 0.090909090909090912, 0.95180722891566261, 0.19038076152304609, 0.024048096192384769, 0.024048096192384769, 0.66733466933867736, 0.0040080160320641279, 0.002004008016032064, 0.074148296593186377, 0.0080160320641282558, 0.1111111111111111, 0.1111111111111111, 0.44444444444444442, 0.090909090909090912, 0.36363636363636365, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.058823529411764705, 0.078431372549019607, 0.019607843137254902, 0.11764705882352941, 0.62745098039215685, 0.039215686274509803, 0.73417721518987344, 0.0042194092827004216, 0.0084388185654008432, 0.016877637130801686, 0.19831223628691982, 0.0042194092827004216, 0.016877637130801686, 0.0042194092827004216, 0.72727272727272729, 0.45454545454545453, 0.090909090909090912, 0.29487179487179488, 0.019230769230769232, 0.00641025641025641, 0.032051282051282048, 0.00641025641025641, 0.032051282051282048, 0.58333333333333337, 0.02564102564102564, 0.00641025641025641, 0.90566037735849059, 0.018867924528301886, 0.019512195121951219, 0.96097560975609753, 0.0024390243902439024, 0.0036585365853658539, 0.0060975609756097563, 0.0036585365853658539, 0.022727272727272728, 0.90909090909090906, 0.011363636363636364, 0.011363636363636364, 0.85185185185185186, 0.69230769230769229, 0.076923076923076927, 0.73988439306358378, 0.0057803468208092483, 0.052023121387283239, 0.046242774566473986, 0.0057803468208092483, 0.028901734104046242, 0.086705202312138727, 0.011560693641618497, 0.011560693641618497, 0.006369426751592357, 0.95541401273885351, 0.006369426751592357, 0.13157894736842105, 0.052631578947368418, 0.052631578947368418, 0.026315789473684209, 0.026315789473684209, 0.18421052631578946, 0.13157894736842105, 0.13157894736842105, 0.052631578947368418, 0.15789473684210525, 0.65957446808510634, 0.1276595744680851, 0.042553191489361701, 0.042553191489361701, 0.021276595744680851, 0.021276595744680851, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.10526315789473684, 0.52631578947368418, 0.1111111111111111, 0.55555555555555558, 0.125, 0.625, 0.0625, 0.54032258064516125, 0.064516129032258063, 0.0080645161290322578, 0.24193548387096775, 0.024193548387096774, 0.0080645161290322578, 0.040322580645161289, 0.040322580645161289, 0.016129032258064516, 0.024193548387096774, 0.56666666666666665, 0.088888888888888892, 0.033333333333333333, 0.14444444444444443, 0.011111111111111112, 0.055555555555555552, 0.011111111111111112, 0.011111111111111112, 0.011111111111111112, 0.066666666666666666, 0.5, 0.014285714285714285, 0.014285714285714285, 0.32857142857142857, 0.042857142857142858, 0.014285714285714285, 0.014285714285714285, 0.014285714285714285, 0.071428571428571425, 0.20000000000000001, 0.40000000000000002, 0.20000000000000001, 0.15681818181818183, 0.011363636363636364, 0.54318181818181821, 0.084090909090909091, 0.0090909090909090905, 0.031818181818181815, 0.072727272727272724, 0.088636363636363638, 0.72727272727272729, 0.13442622950819672, 0.045901639344262293, 0.19672131147540983, 0.0098360655737704927, 0.016393442622950821, 0.44918032786885248, 0.055737704918032788, 0.085245901639344257, 0.0032786885245901639, 0.16091954022988506, 0.011494252873563218, 0.011494252873563218, 0.75862068965517238, 0.011494252873563218, 0.060606060606060608, 0.47474747474747475, 0.17171717171717171, 0.020202020202020204, 0.060606060606060608, 0.16161616161616163, 0.020202020202020204, 0.63636363636363635, 0.090909090909090912, 0.0234375, 0.0546875, 0.75, 0.015625, 0.0390625, 0.0546875, 0.03125, 0.0078125, 0.047619047619047616, 0.19047619047619047, 0.38095238095238093, 0.095238095238095233, 0.14285714285714285, 0.045918367346938778, 0.035714285714285712, 0.26275510204081631, 0.11989795918367346, 0.0076530612244897957, 0.15561224489795919, 0.020408163265306121, 0.34693877551020408, 0.0025510204081632651, 0.017241379310344827, 0.060344827586206899, 0.086206896551724144, 0.051724137931034482, 0.086206896551724144, 0.13793103448275862, 0.53448275862068961, 0.0086206896551724137, 0.10465116279069768, 0.023255813953488372, 0.011627906976744186, 0.011627906976744186, 0.034883720930232558, 0.70930232558139539, 0.058139534883720929, 0.014705882352941176, 0.014705882352941176, 0.83823529411764708, 0.073529411764705885, 0.012631578947368421, 0.0021052631578947368, 0.0042105263157894736, 0.02736842105263158, 0.87578947368421056, 0.02736842105263158, 0.0084210526315789472, 0.012631578947368421, 0.029473684210526315, 0.75, 0.42708333333333331, 0.083333333333333329, 0.13541666666666666, 0.09375, 0.052083333333333336, 0.15625, 0.020833333333333332, 0.010416666666666666, 0.010416666666666666, 0.35714285714285715, 0.071428571428571425, 0.2857142857142857, 0.042372881355932202, 0.8728813559322034, 0.033898305084745763, 0.0084745762711864406, 0.0084745762711864406, 0.017543859649122806, 0.21052631578947367, 0.041666666666666664, 0.33771929824561403, 0.054824561403508769, 0.16666666666666666, 0.0043859649122807015, 0.1206140350877193, 0.043859649122807015, 0.037037037037037035, 0.33333333333333331, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.37037037037037035, 0.27272727272727271, 0.090909090909090912, 0.36363636363636365, 0.22222222222222221, 0.27777777777777779, 0.1111111111111111, 0.16666666666666666, 0.055555555555555552, 0.055555555555555552, 0.20218579234972678, 0.01092896174863388, 0.12568306010928962, 0.07650273224043716, 0.0054644808743169399, 0.016393442622950821, 0.50273224043715847, 0.027322404371584699, 0.027322404371584699, 0.12686567164179105, 0.014925373134328358, 0.007462686567164179, 0.014925373134328358, 0.014925373134328358, 0.17164179104477612, 0.62686567164179108, 0.007462686567164179, 0.007462686567164179, 0.007462686567164179, 0.16793893129770993, 0.053435114503816793, 0.16793893129770993, 0.17557251908396945, 0.20610687022900764, 0.053435114503816793, 0.11450381679389313, 0.053435114503816793, 0.0076335877862595417, 0.69999999999999996, 0.012048192771084338, 0.14457831325301204, 0.16867469879518071, 0.012048192771084338, 0.012048192771084338, 0.024096385542168676, 0.03614457831325301, 0.048192771084337352, 0.54216867469879515, 0.38808139534883723, 0.084302325581395346, 0.11918604651162791, 0.1380813953488372, 0.0058139534883720929, 0.084302325581395346, 0.1002906976744186, 0.071220930232558141, 0.0072674418604651162, 0.022813688212927757, 0.064638783269961975, 0.46007604562737642, 0.034220532319391636, 0.0038022813688212928, 0.022813688212927757, 0.087452471482889732, 0.30038022813688214, 0.14285714285714285, 0.6428571428571429, 0.875, 0.051792828685258967, 0.0039840637450199202, 0.051792828685258967, 0.019920318725099601, 0.011952191235059761, 0.015936254980079681, 0.027888446215139442, 0.63745019920318724, 0.17928286852589642, 0.0039840637450199202, 0.040816326530612242, 0.020408163265306121, 0.83673469387755106, 0.020408163265306121, 0.83999999999999997, 0.042986425339366516, 0.013574660633484163, 0.013574660633484163, 0.020361990950226245, 0.76470588235294112, 0.04072398190045249, 0.083710407239818999, 0.011312217194570135, 0.0090497737556561094, 0.24444444444444444, 0.011111111111111112, 0.055555555555555552, 0.066666666666666666, 0.044444444444444446, 0.21111111111111111, 0.29999999999999999, 0.055555555555555552, 0.011111111111111112, 0.011111111111111112, 0.5, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.043478260869565216, 0.73913043478260865, 0.086956521739130432, 0.10052910052910052, 0.010582010582010581, 0.12698412698412698, 0.1111111111111111, 0.026455026455026454, 0.052910052910052907, 0.51851851851851849, 0.042328042328042326, 0.0052910052910052907, 0.070512820512820512, 0.00641025641025641, 0.02564102564102564, 0.02564102564102564, 0.80769230769230771, 0.057692307692307696, 0.043478260869565216, 0.82608695652173914, 0.065217391304347824, 0.007246376811594203, 0.021739130434782608, 0.014492753623188406, 0.41379310344827586, 0.27586206896551724, 0.13793103448275862, 0.034482758620689655, 0.034482758620689655, 0.29496402877697842, 0.021582733812949641, 0.17985611510791366, 0.23021582733812951, 0.021582733812949641, 0.028776978417266189, 0.079136690647482008, 0.071942446043165464, 0.050359712230215826, 0.0071942446043165471, 0.10869565217391304, 0.45652173913043476, 0.10869565217391304, 0.043478260869565216, 0.086956521739130432, 0.021739130434782608, 0.065217391304347824, 0.021739130434782608, 0.95348837209302328, 0.0074074074074074077, 0.0074074074074074077, 0.82222222222222219, 0.037037037037037035, 0.029629629629629631, 0.07407407407407407, 0.93700787401574803, 0.031496062992125984, 0.72727272727272729, 0.72727272727272729, 0.4375, 0.125, 0.0625, 0.0625, 0.0625, 0.0625, 0.00055617352614015572, 0.92825361512791993, 0.010567296996662959, 0.0072302558398220241, 0.0016685205784204673, 0.03726362625139043, 0.00055617352614015572, 0.012235817575083427, 0.89772727272727271, 0.007575757575757576, 0.007575757575757576, 0.071969696969696975, 0.015748031496062992, 0.23425196850393701, 0.017716535433070866, 0.51377952755905509, 0.033464566929133861, 0.082677165354330714, 0.023622047244094488, 0.076771653543307089, 0.001968503937007874, 0.019417475728155338, 0.25242718446601942, 0.0097087378640776691, 0.61165048543689315, 0.0097087378640776691, 0.029126213592233011, 0.019417475728155338, 0.0097087378640776691, 0.75, 0.69999999999999996, 0.15384615384615385, 0.076923076923076927, 0.30769230769230771, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.76923076923076927, 0.10000000000000001, 0.5, 0.008130081300813009, 0.032520325203252036, 0.016260162601626018, 0.032520325203252036, 0.88617886178861793, 0.068965517241379309, 0.84482758620689657, 0.017241379310344827, 0.15789473684210525, 0.23684210526315788, 0.026315789473684209, 0.18421052631578946, 0.026315789473684209, 0.26315789473684209, 0.026315789473684209, 0.058823529411764705, 0.11764705882352941, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.11764705882352941, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.054726368159203981, 0.02736318407960199, 0.8233830845771144, 0.029850746268656716, 0.0024875621890547263, 0.022388059701492536, 0.0099502487562189053, 0.014925373134328358, 0.0099502487562189053, 0.87234042553191493, 0.021276595744680851, 0.021276595744680851, 0.010373443983402489, 0.15975103734439833, 0.5954356846473029, 0.062240663900414939, 0.056016597510373446, 0.0082987551867219917, 0.078838174273858919, 0.024896265560165973, 0.0020746887966804979, 0.019875292283710055, 0.37373343725643027, 0.24863600935307872, 0.068978955572876074, 0.14964925954793454, 0.048324240062353856, 0.021434138737334373, 0.030397505845674203, 0.038581449727201872, 0.01218836565096953, 0.11634349030470914, 0.37285318559556785, 0.085872576177285317, 0.19722991689750694, 0.042105263157894736, 0.054847645429362879, 0.067036011080332414, 0.050415512465373964, 0.33333333333333331, 0.22222222222222221, 0.055555555555555552, 0.055555555555555552, 0.055555555555555552, 0.1111111111111111, 0.068965517241379309, 0.34482758620689657, 0.13793103448275862, 0.17241379310344829, 0.10344827586206896, 0.034482758620689655, 0.034482758620689655, 0.083333333333333329, 0.33333333333333331, 0.33333333333333331, 0.083333333333333329, 0.25, 0.125, 0.125, 0.25, 0.69999999999999996, 0.5, 0.10000000000000001, 0.7857142857142857, 0.010526315789473684, 0.91578947368421049, 0.010526315789473684, 0.010526315789473684, 0.8928571428571429, 0.035714285714285712, 0.36363636363636365, 0.090909090909090912, 0.27272727272727271, 0.050000000000000003, 0.050000000000000003, 0.75, 0.028571428571428571, 0.028571428571428571, 0.028571428571428571, 0.057142857142857141, 0.028571428571428571, 0.028571428571428571, 0.31428571428571428, 0.34285714285714286, 0.17142857142857143, 0.028571428571428571, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.44444444444444442, 0.36363636363636365, 0.18181818181818182, 0.18181818181818182, 0.011741682974559686, 0.0058708414872798431, 0.8845401174168297, 0.0039138943248532287, 0.029354207436399216, 0.035225048923679059, 0.027397260273972601, 0.21739130434782608, 0.60869565217391308, 0.36734693877551022, 0.061224489795918366, 0.020408163265306121, 0.081632653061224483, 0.040816326530612242, 0.18367346938775511, 0.040816326530612242, 0.14285714285714285, 0.020408163265306121, 0.040816326530612242, 0.028469750889679714, 0.060498220640569395, 0.49110320284697506, 0.032028469750889681, 0.014234875444839857, 0.32384341637010677, 0.035587188612099648, 0.0071174377224199285, 0.011080332409972299, 0.0055401662049861496, 0.94182825484764543, 0.024930747922437674, 0.0027700831024930748, 0.0083102493074792248, 0.044444444444444446, 0.066666666666666666, 0.088888888888888892, 0.066666666666666666, 0.66666666666666663, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705, 0.058823529411764705, 0.11764705882352941, 0.47058823529411764, 0.10000000000000001, 0.59999999999999998, 0.10000000000000001, 0.34999999999999998, 0.050000000000000003, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.125, 0.083333333333333329, 0.66666666666666663, 0.02197802197802198, 0.032967032967032968, 0.89560439560439564, 0.02197802197802198, 0.0054945054945054949, 0.72727272727272729, 0.18954248366013071, 0.026143790849673203, 0.058823529411764705, 0.57516339869281041, 0.026143790849673203, 0.091503267973856203, 0.0065359477124183009, 0.0065359477124183009, 0.69999999999999996, 0.030303030303030304, 0.030303030303030304, 0.030303030303030304, 0.30303030303030304, 0.030303030303030304, 0.030303030303030304, 0.090909090909090912, 0.27272727272727271, 0.030303030303030304, 0.030303030303030304, 0.060606060606060608, 0.72727272727272729, 0.0030211480362537764, 0.98489425981873113, 0.010309278350515464, 0.85567010309278346, 0.030927835051546393, 0.020618556701030927, 0.010309278350515464, 0.030927835051546393, 0.66666666666666663, 0.083333333333333329, 0.0036363636363636364, 0.98181818181818181, 0.15702479338842976, 0.0082644628099173556, 0.041322314049586778, 0.72727272727272729, 0.0082644628099173556, 0.024793388429752067, 0.0082644628099173556, 0.8571428571428571, 0.42857142857142855, 0.071428571428571425, 0.14285714285714285, 0.21739130434782608, 0.10869565217391304, 0.021739130434782608, 0.043478260869565216, 0.021739130434782608, 0.043478260869565216, 0.28260869565217389, 0.15217391304347827, 0.10869565217391304, 0.26666666666666666, 0.13333333333333333, 0.066666666666666666, 0.26666666666666666, 0.066666666666666666, 0.028301886792452831, 0.04716981132075472, 0.042452830188679243, 0.04716981132075472, 0.014150943396226415, 0.009433962264150943, 0.66981132075471694, 0.14150943396226415, 0.0047169811320754715, 0.071428571428571425, 0.7142857142857143, 0.030303030303030304, 0.84848484848484851, 0.0080256821829855531, 0.064205457463884424, 0.020866773675762441, 0.06741573033707865, 0.5393258426966292, 0.009630818619582664, 0.2825040128410915, 0.004815409309791332, 0.0016051364365971107, 0.20000000000000001, 0.29999999999999999, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.0062111801242236021, 0.87755102040816324, 0.011535048802129548, 0.094055013309671698, 0.0017746228926353151, 0.0044365572315882874, 0.00088731144631765753, 0.00088731144631765753, 0.93333333333333335, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.30769230769230771, 0.23076923076923078, 0.076923076923076927, 0.75, 0.056580565805658053, 0.18634686346863469, 0.2029520295202952, 0.07441574415744158, 0.25461254612546125, 0.052275522755227552, 0.032595325953259535, 0.021525215252152521, 0.11746617466174662, 0.076107899807321772, 0.050096339113680152, 0.67052023121387283, 0.035645472061657031, 0.022157996146435453, 0.050096339113680152, 0.015414258188824663, 0.011560693641618497, 0.068400770712909439, 0.001215066828675577, 0.078979343863912518, 0.031591737545565005, 0.0048602673147023082, 0.82503037667071688, 0.0036452004860267314, 0.0060753341433778859, 0.017010935601458079, 0.030376670716889428, 0.29999999999999999, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.083832335329341312, 0.11976047904191617, 0.19161676646706588, 0.023952095808383235, 0.52095808383233533, 0.0059880239520958087, 0.0059880239520958087, 0.035928143712574849, 0.77777777777777779, 0.18181818181818182, 0.090909090909090912, 0.45454545454545453, 0.80000000000000004, 0.040000000000000001, 0.47058823529411764, 0.058823529411764705, 0.11764705882352941, 0.058823529411764705, 0.73913043478260865, 0.086956521739130432, 0.28301886792452829, 0.13207547169811321, 0.22641509433962265, 0.018867924528301886, 0.037735849056603772, 0.16981132075471697, 0.018867924528301886, 0.037735849056603772, 0.018867924528301886, 0.037735849056603772, 0.0030211480362537764, 0.98489425981873113, 0.61029411764705888, 0.0073529411764705881, 0.022058823529411766, 0.22058823529411764, 0.051470588235294115, 0.051470588235294115, 0.0073529411764705881, 0.054644808743169397, 0.027322404371584699, 0.11475409836065574, 0.02185792349726776, 0.043715846994535519, 0.67213114754098358, 0.054644808743169397, 0.0054644808743169399, 0.034482758620689655, 0.011494252873563218, 0.011494252873563218, 0.011494252873563218, 0.011494252873563218, 0.011494252873563218, 0.63218390804597702, 0.21839080459770116, 0.080459770114942528, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.15384615384615385, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.30769230769230771, 0.090909090909090912, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.057971014492753624, 0.086956521739130432, 0.021739130434782608, 0.13043478260869565, 0.021739130434782608, 0.44927536231884058, 0.014492753623188406, 0.14492753623188406, 0.079710144927536225, 0.007246376811594203, 0.5, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.20000000000000001, 0.022624434389140271, 0.015837104072398189, 0.011312217194570135, 0.061085972850678731, 0.81674208144796379, 0.036199095022624438, 0.018099547511312219, 0.015837104072398189, 0.0022624434389140274, 0.23076923076923078, 0.46153846153846156, 0.19230769230769232, 0.38461538461538464, 0.26153846153846155, 0.20000000000000001, 0.015384615384615385, 0.076923076923076927, 0.015384615384615385, 0.083333333333333329, 0.75, 0.027777777777777776, 0.027777777777777776, 0.83098591549295775, 0.014084507042253521, 0.014084507042253521, 0.0070422535211267607, 0.0070422535211267607, 0.0070422535211267607, 0.0070422535211267607, 0.0070422535211267607, 0.0070422535211267607, 0.11267605633802817, 0.071428571428571425, 0.071428571428571425, 0.21428571428571427, 0.071428571428571425, 0.071428571428571425, 0.2857142857142857, 0.0029498525073746312, 0.97640117994100295, 0.0088495575221238937, 0.0029498525073746312, 0.0625, 0.375, 0.125, 0.25, 0.7857142857142857, 0.11450381679389313, 0.012722646310432569, 0.13486005089058525, 0.020356234096692113, 0.0025445292620865142, 0.39694656488549618, 0.27226463104325699, 0.043256997455470736, 0.0025445292620865142, 0.76923076923076927, 0.057777777777777775, 0.37333333333333335, 0.30222222222222223, 0.013333333333333334, 0.022222222222222223, 0.12444444444444444, 0.03111111111111111, 0.0044444444444444444, 0.053333333333333337, 0.0088888888888888889, 0.0044444444444444444, 0.25, 0.125, 0.0625, 0.0625, 0.125, 0.1875, 0.71111111111111114, 0.022222222222222223, 0.044444444444444446, 0.022222222222222223, 0.022222222222222223, 0.088888888888888892, 0.022222222222222223, 0.066666666666666666, 0.054054054054054057, 0.013513513513513514, 0.013513513513513514, 0.83783783783783783, 0.013513513513513514, 0.013513513513513514, 0.076923076923076927, 0.076923076923076927, 0.53846153846153844, 0.076923076923076927, 0.071428571428571425, 0.7142857142857143, 0.29999999999999999, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.012345679012345678, 0.086419753086419748, 0.64197530864197527, 0.19753086419753085, 0.012345679012345678, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.33333333333333331, 0.40000000000000002, 0.20000000000000001, 0.20000000000000001, 0.055555555555555552, 0.77777777777777779, 0.035353535353535352, 0.44696969696969696, 0.080808080808080815, 0.12121212121212122, 0.0025252525252525255, 0.055555555555555552, 0.055555555555555552, 0.19696969696969696, 0.0025252525252525255, 0.75, 0.083333333333333329, 0.66666666666666663, 0.33514986376021799, 0.035422343324250684, 0.081743869209809264, 0.1335149863760218, 0.23705722070844687, 0.0054495912806539508, 0.07901907356948229, 0.081743869209809264, 0.0027247956403269754, 0.0027247956403269754, 0.0054495912806539508, 0.86805555555555558, 0.024305555555555556, 0.03125, 0.024305555555555556, 0.003472222222222222, 0.003472222222222222, 0.024305555555555556, 0.003472222222222222, 0.003472222222222222, 0.29999999999999999, 0.20000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.14705882352941177, 0.029411764705882353, 0.029411764705882353, 0.11764705882352941, 0.55882352941176472, 0.26158038147138962, 0.17983651226158037, 0.07901907356948229, 0.14168937329700274, 0.0027247956403269754, 0.081743869209809264, 0.098092643051771122, 0.07901907356948229, 0.054495912806539509, 0.019073569482288829, 0.29999999999999999, 0.20000000000000001, 0.20000000000000001, 0.14999999999999999, 0.050000000000000003, 0.65000000000000002, 0.13432835820895522, 0.014925373134328358, 0.089552238805970144, 0.044776119402985072, 0.014925373134328358, 0.044776119402985072, 0.059701492537313432, 0.029850746268656716, 0.56716417910447758, 0.014925373134328358, 0.20000000000000001, 0.5, 0.41666666666666669, 0.16666666666666666, 0.083333333333333329, 0.083333333333333329, 0.1111111111111111, 0.55555555555555558, 0.54838709677419351, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.19354838709677419, 0.032258064516129031, 0.32323232323232326, 0.14141414141414141, 0.087542087542087546, 0.12457912457912458, 0.016835016835016835, 0.05387205387205387, 0.11447811447811448, 0.050505050505050504, 0.047138047138047139, 0.037037037037037035, 0.034482758620689655, 0.034482758620689655, 0.75862068965517238, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.068965517241379309, 0.76923076923076927, 0.21459227467811159, 0.1630901287553648, 0.077253218884120178, 0.15450643776824036, 0.034334763948497854, 0.13733905579399142, 0.047210300429184553, 0.11158798283261803, 0.055793991416309016, 0.0088495575221238937, 0.0029498525073746312, 0.96755162241887904, 0.0058997050147492625, 0.0029498525073746312, 0.0029498525073746312, 0.0084745762711864406, 0.055084745762711863, 0.83050847457627119, 0.016949152542372881, 0.012711864406779662, 0.029661016949152543, 0.033898305084745763, 0.91304347826086951, 0.1111111111111111, 0.22222222222222221, 0.33333333333333331, 0.030674846625766871, 0.8834355828220859, 0.012269938650306749, 0.042944785276073622, 0.0061349693251533744, 0.125, 0.013888888888888888, 0.027777777777777776, 0.041666666666666664, 0.73611111111111116, 0.94736842105263153, 0.0050000000000000001, 0.0050000000000000001, 0.070000000000000007, 0.074999999999999997, 0.0050000000000000001, 0.014999999999999999, 0.82499999999999996, 0.042553191489361701, 0.021276595744680851, 0.85106382978723405, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.46153846153846156, 0.65476190476190477, 0.059523809523809521, 0.011904761904761904, 0.15476190476190477, 0.023809523809523808, 0.023809523809523808, 0.011904761904761904, 0.011904761904761904, 0.059523809523809521, 0.099023090586145654, 0.22424511545293072, 0.069271758436944941, 0.24733570159857904, 0.1913854351687389, 0.027531083481349913, 0.040408525754884544, 0.018206039076376555, 0.07460035523978685, 0.0013321492007104796, 0.0066607460035523975, 0.00044404973357015987, 0.097560975609756101, 0.073170731707317069, 0.097560975609756101, 0.04878048780487805, 0.04878048780487805, 0.024390243902439025, 0.26829268292682928, 0.29268292682926828, 0.04878048780487805, 0.04878048780487805, 0.090909090909090912, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.17262830482115085, 0.15241057542768274, 0.073094867807153963, 0.39657853810264387, 0.02177293934681182, 0.1181959564541213, 0.045101088646967338, 0.017107309486780714, 0.90000000000000002, 0.02, 0.0037735849056603774, 0.97547169811320755, 0.0018867924528301887, 0.0037735849056603774, 0.0075471698113207548, 0.80000000000000004, 0.8571428571428571, 0.91216216216216217, 0.020270270270270271, 0.013513513513513514, 0.013513513513513514, 0.013513513513513514, 0.016393442622950821, 0.88524590163934425, 0.032786885245901641, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.36363636363636365, 0.090909090909090912, 0.090909090909090912, 0.18181818181818182, 0.066666666666666666, 0.46666666666666667, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.29999999999999999, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.125, 0.5, 0.125, 0.012443438914027148, 0.041855203619909499, 0.5339366515837104, 0.16063348416289594, 0.02828054298642534, 0.027149321266968326, 0.056561085972850679, 0.054298642533936653, 0.083710407239818999, 0.72727272727272729, 0.032258064516129031, 0.25806451612903225, 0.21935483870967742, 0.025806451612903226, 0.051612903225806452, 0.01935483870967742, 0.38709677419354838, 0.56097560975609762, 0.0017421602787456446, 0.04878048780487805, 0.0017421602787456446, 0.03484320557491289, 0.21777003484320556, 0.1289198606271777, 0.0034843205574912892, 0.012961116650049851, 0.073778664007976072, 0.1465603190428714, 0.037886340977068791, 0.66699900299102688, 0.018943170488534396, 0.0099700897308075773, 0.023928215353938187, 0.006979062811565304, 0.70588235294117652, 0.058823529411764705, 0.058823529411764705, 0.055555555555555552, 0.055555555555555552, 0.72222222222222221, 0.125, 0.25, 0.125, 0.25, 0.066666666666666666, 0.59999999999999998, 0.13333333333333333, 0.060240963855421686, 0.15662650602409639, 0.10843373493975904, 0.060240963855421686, 0.024096385542168676, 0.060240963855421686, 0.084337349397590355, 0.44578313253012047, 0.33333333333333331, 0.26666666666666666, 0.26666666666666666, 0.0066666666666666671, 0.026666666666666668, 0.17999999999999999, 0.026666666666666668, 0.040000000000000001, 0.12, 0.56000000000000005, 0.040000000000000001, 0.064516129032258063, 0.19354838709677419, 0.25806451612903225, 0.064516129032258063, 0.064516129032258063, 0.25806451612903225, 0.028735632183908046, 0.0057471264367816091, 0.011494252873563218, 0.85057471264367812, 0.0057471264367816091, 0.022988505747126436, 0.034482758620689655, 0.0057471264367816091, 0.017241379310344827, 0.022988505747126436, 0.0057471264367816091, 0.078947368421052627, 0.76315789473684215, 0.026315789473684209, 0.026315789473684209, 0.026315789473684209, 0.13011152416356878, 0.12267657992565056, 0.17843866171003717, 0.096654275092936809, 0.03717472118959108, 0.36431226765799257, 0.0074349442379182153, 0.055762081784386616, 0.1111111111111111, 0.27777777777777779, 0.27777777777777779, 0.1111111111111111, 0.055555555555555552, 0.80526315789473679, 0.052631578947368418, 0.021052631578947368, 0.005263157894736842, 0.04736842105263158, 0.026315789473684209, 0.015789473684210527, 0.010526315789473684, 0.41666666666666669, 0.25, 0.16666666666666666, 0.78260869565217395, 0.043478260869565216, 0.043478260869565216, 0.125, 0.1875, 0.25, 0.1875, 0.0625, 0.048192771084337352, 0.2289156626506024, 0.54216867469879515, 0.060240963855421686, 0.012048192771084338, 0.012048192771084338, 0.024096385542168676, 0.012048192771084338, 0.048192771084337352, 0.03614457831325301, 0.69999999999999996, 0.023890784982935155, 0.013651877133105802, 0.040955631399317405, 0.13993174061433447, 0.0068259385665529011, 0.0068259385665529011, 0.67576791808873715, 0.075085324232081918, 0.017064846416382253, 0.13471502590673576, 0.12435233160621761, 0.067357512953367879, 0.31088082901554404, 0.025906735751295335, 0.12953367875647667, 0.18652849740932642, 0.010362694300518135, 0.0051813471502590676, 0.0051813471502590676, 0.78947368421052633, 0.23577235772357724, 0.14227642276422764, 0.34552845528455284, 0.04878048780487805, 0.012195121951219513, 0.0040650406504065045, 0.06910569105691057, 0.1016260162601626, 0.028455284552845527, 0.0040650406504065045, 0.008130081300813009, 0.92777777777777781, 0.044444444444444446, 0.0055555555555555558, 0.76470588235294112, 0.20000000000000001, 0.29999999999999999, 0.20000000000000001, 0.68085106382978722, 0.1276595744680851, 0.021276595744680851, 0.10638297872340426, 0.16822429906542055, 0.10747663551401869, 0.088785046728971959, 0.2102803738317757, 0.02336448598130841, 0.13084112149532709, 0.070093457943925228, 0.16822429906542055, 0.014018691588785047, 0.0093457943925233638, 0.0046728971962616819, 0.0027855153203342618, 0.013927576601671309, 0.0055710306406685237, 0.0055710306406685237, 0.92757660167130918, 0.027855153203342618, 0.0055710306406685237, 0.0027855153203342618, 0.066666666666666666, 0.73333333333333328, 0.94805194805194803, 0.20000000000000001, 0.12727272727272726, 0.090909090909090912, 0.34545454545454546, 0.090909090909090912, 0.054545454545454543, 0.018181818181818181, 0.018181818181818181, 0.12, 0.014693877551020407, 0.39183673469387753, 0.086122448979591842, 0.29755102040816328, 0.01673469387755102, 0.047755102040816323, 0.022448979591836733, 0.0028571428571428571, 0.018181818181818181, 0.62272727272727268, 0.050000000000000003, 0.12272727272727273, 0.050000000000000003, 0.027272727272727271, 0.095454545454545459, 0.0045454545454545452, 0.98054474708171202, 0.0625, 0.625, 0.0625, 0.022222222222222223, 0.8666666666666667, 0.022222222222222223, 0.029411764705882353, 0.8529411764705882, 0.90972222222222221, 0.0069444444444444441, 0.034722222222222224, 0.020833333333333332, 0.75, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.29999999999999999, 0.078947368421052627, 0.026315789473684209, 0.10526315789473684, 0.052631578947368418, 0.026315789473684209, 0.052631578947368418, 0.052631578947368418, 0.52631578947368418, 0.026315789473684209, 0.10526315789473684, 0.083333333333333329, 0.16666666666666666, 0.5, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.20000000000000001, 0.29999999999999999, 0.10000000000000001, 0.029023746701846966, 0.23482849604221637, 0.22163588390501318, 0.12137203166226913, 0.050131926121372031, 0.28232189973614774, 0.021108179419525065, 0.018469656992084433, 0.018469656992084433, 0.0026385224274406332, 0.0050505050505050509, 0.030303030303030304, 0.77777777777777779, 0.055555555555555552, 0.035353535353535352, 0.010101010101010102, 0.010101010101010102, 0.030303030303030304, 0.030303030303030304, 0.20000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.66666666666666663, 0.040000000000000001, 0.35999999999999999, 0.040000000000000001, 0.12, 0.12, 0.080000000000000002, 0.040000000000000001, 0.040000000000000001, 0.040000000000000001, 0.34343434343434343, 0.13131313131313133, 0.12121212121212122, 0.040404040404040407, 0.12121212121212122, 0.060606060606060608, 0.070707070707070704, 0.080808080808080815, 0.013888888888888888, 0.013888888888888888, 0.027777777777777776, 0.90277777777777779, 0.013888888888888888, 0.75, 0.040000000000000001, 0.76000000000000001, 0.040000000000000001, 0.014285714285714285, 0.014285714285714285, 0.071428571428571425, 0.014285714285714285, 0.12857142857142856, 0.69999999999999996, 0.014285714285714285, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.8666666666666667, 0.033333333333333333, 0.80000000000000004, 0.033333333333333333, 0.076923076923076927, 0.096153846153846159, 0.75, 0.93333333333333335, 0.92929292929292928, 0.010101010101010102, 0.010101010101010102, 0.010101010101010102, 0.90666666666666662, 0.0026666666666666666, 0.018666666666666668, 0.050666666666666665, 0.010666666666666666, 0.0026666666666666666, 0.28125, 0.0625, 0.20833333333333334, 0.041666666666666664, 0.020833333333333332, 0.052083333333333336, 0.13541666666666666, 0.1875, 0.010416666666666666, 0.0055555555555555558, 0.083333333333333329, 0.072222222222222215, 0.066666666666666666, 0.011111111111111112, 0.69444444444444442, 0.0055555555555555558, 0.011111111111111112, 0.03888888888888889, 0.0055555555555555558, 0.83333333333333337, 0.27777777777777779, 0.055555555555555552, 0.055555555555555552, 0.16666666666666666, 0.27777777777777779, 0.086956521739130432, 0.043478260869565216, 0.21739130434782608, 0.30434782608695654, 0.17391304347826086, 0.043478260869565216, 0.16666666666666666, 0.16666666666666666, 0.33333333333333331, 0.083333333333333329, 0.0016750418760469012, 0.91792294807370189, 0.01675041876046901, 0.0067001675041876048, 0.036850921273031828, 0.0050251256281407036, 0.0083752093802345051, 0.8240866035182679, 0.038340099233198012, 0.013080739738385205, 0.096526838069463244, 0.0013531799729364006, 0.024357239512855209, 0.0013531799729364006, 0.97164461247637046, 0.011342155009451797, 0.001890359168241966, 0.001890359168241966, 0.0056710775047258983, 0.96097560975609753, 0.0048780487804878049, 0.0048780487804878049, 0.0048780487804878049, 0.0048780487804878049, 0.019512195121951219, 0.81632653061224492, 0.061224489795918366, 0.020408163265306121, 0.020408163265306121, 0.13108614232209737, 0.10112359550561797, 0.091760299625468167, 0.21722846441947566, 0.0018726591760299626, 0.048689138576779027, 0.1104868913857678, 0.2640449438202247, 0.031835205992509365, 0.0018726591760299626, 0.50666666666666671, 0.026666666666666668, 0.13333333333333333, 0.040000000000000001, 0.053333333333333337, 0.17333333333333334, 0.013333333333333334, 0.078817733990147784, 0.16748768472906403, 0.10591133004926108, 0.21674876847290642, 0.0024630541871921183, 0.083743842364532015, 0.10591133004926108, 0.23645320197044334, 0.0024630541871921183, 0.098321342925659472, 0.1366906474820144, 0.22541966426858512, 0.11031175059952038, 0.023980815347721823, 0.29256594724220625, 0.023980815347721823, 0.057553956834532377, 0.023980815347721823, 0.0023980815347721821, 0.72727272727272729, 0.26984126984126983, 0.015873015873015872, 0.15873015873015872, 0.23809523809523808, 0.015873015873015872, 0.015873015873015872, 0.079365079365079361, 0.12698412698412698, 0.047619047619047616, 0.031746031746031744, 0.083333333333333329, 0.66666666666666663, 0.033333333333333333, 0.016666666666666666, 0.45000000000000001, 0.016666666666666666, 0.016666666666666666, 0.016666666666666666, 0.016666666666666666, 0.40000000000000002, 0.050000000000000003, 0.5714285714285714, 0.14285714285714285, 0.071428571428571425, 0.21428571428571427, 0.35714285714285715, 0.14285714285714285, 0.071428571428571425, 0.77777777777777779, 0.0625, 0.3125, 0.125, 0.3125, 0.023255813953488372, 0.0046511627906976744, 0.71162790697674416, 0.10697674418604651, 0.0046511627906976744, 0.065116279069767441, 0.018604651162790697, 0.018604651162790697, 0.037209302325581395, 0.14617169373549885, 0.19953596287703015, 0.08584686774941995, 0.18561484918793503, 0.0069605568445475635, 0.083526682134570762, 0.27842227378190254, 0.0092807424593967514, 0.0046403712296983757, 0.03880597014925373, 0.032835820895522387, 0.032835820895522387, 0.1044776119402985, 0.0059701492537313433, 0.053731343283582089, 0.72835820895522385, 0.040329218106995884, 0.2773662551440329, 0.12181069958847737, 0.40246913580246912, 0.013168724279835391, 0.026337448559670781, 0.037860082304526747, 0.056790123456790124, 0.022222222222222223, 0.0024691358024691358, 0.00082304526748971192, 0.25287356321839083, 0.034482758620689655, 0.068965517241379309, 0.51724137931034486, 0.034482758620689655, 0.045977011494252873, 0.74137931034482762, 0.017241379310344827, 0.017241379310344827, 0.068965517241379309, 0.034482758620689655, 0.034482758620689655, 0.017241379310344827, 0.10638297872340426, 0.74468085106382975, 0.085106382978723402, 0.94736842105263153, 0.29999999999999999, 0.02, 0.22, 0.040000000000000001, 0.02, 0.02, 0.32000000000000001, 0.02, 0.02, 0.02, 0.038461538461538464, 0.76923076923076927, 0.038461538461538464, 0.63157894736842102, 0.052631578947368418, 0.10526315789473684, 0.088235294117647065, 0.76470588235294112, 0.029411764705882353, 0.029411764705882353, 0.9494949494949495, 0.043478260869565216, 0.52173913043478259, 0.086956521739130432, 0.13043478260869565, 0.086956521739130432, 0.87878787878787878, 0.039215686274509803, 0.88235294117647056, 0.0115409275486215, 0.56037614874973285, 0.026501389185723444, 0.27185296003419535, 0.10792904466766404, 0.0085488352212011107, 0.010899764907031416, 0.0019234879247702502, 0.00021372088053002778, 0.0097719869706840382, 0.39413680781758959, 0.026058631921824105, 0.5456026058631922, 0.0065146579804560263, 0.011400651465798045, 0.0016286644951140066, 0.83582089552238803, 0.018656716417910446, 0.018656716417910446, 0.055970149253731345, 0.011194029850746268, 0.022388059701492536, 0.0037313432835820895, 0.011194029850746268, 0.0037313432835820895, 0.007462686567164179, 0.58333333333333337, 0.083333333333333329, 0.10294117647058823, 0.044117647058823532, 0.088235294117647065, 0.11764705882352941, 0.33823529411764708, 0.22058823529411764, 0.058823529411764705, 0.014705882352941176, 0.9555555555555556, 0.0049504950495049506, 0.96534653465346532, 0.0099009900990099011, 0.59999999999999998, 0.0093457943925233638, 0.96261682242990654, 0.0046728971962616819, 0.0046728971962616819, 0.75, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.01601423487544484, 0.037366548042704624, 0.014234875444839857, 0.0017793594306049821, 0.59252669039145911, 0.012455516014234875, 0.27758007117437722, 0.023131672597864767, 0.023131672597864767, 0.0017793594306049821, 0.95774647887323938, 0.0070422535211267607, 0.0070422535211267607, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.22222222222222221, 0.18181818181818182, 0.27272727272727271, 0.18181818181818182, 0.30769230769230771, 0.076923076923076927, 0.30769230769230771, 0.076923076923076927, 0.14084507042253522, 0.53286384976525825, 0.16901408450704225, 0.032863849765258218, 0.011737089201877934, 0.037558685446009391, 0.037558685446009391, 0.021126760563380281, 0.014084507042253521, 0.0023474178403755869, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.20356234096692111, 0.0076335877862595417, 0.076335877862595422, 0.027989821882951654, 0.0050890585241730284, 0.022900763358778626, 0.043256997455470736, 0.48091603053435117, 0.12977099236641221, 0.0025445292620865142, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.14999999999999999, 0.10000000000000001, 0.16, 0.32000000000000001, 0.040000000000000001, 0.040000000000000001, 0.12, 0.16, 0.040000000000000001, 0.1111111111111111, 0.055555555555555552, 0.1111111111111111, 0.055555555555555552, 0.22222222222222221, 0.27777777777777779, 0.055555555555555552, 0.055555555555555552, 0.042253521126760563, 0.042253521126760563, 0.19718309859154928, 0.098591549295774641, 0.12676056338028169, 0.098591549295774641, 0.014084507042253521, 0.098591549295774641, 0.25352112676056338, 0.042253521126760563, 0.82608695652173914, 0.031486146095717885, 0.39168765743073047, 0.1712846347607053, 0.041561712846347604, 0.29596977329974811, 0.003778337531486146, 0.042821158690176324, 0.010075566750629723, 0.0062972292191435771, 0.0025188916876574307, 0.0048780487804878049, 0.77073170731707319, 0.14634146341463414, 0.0097560975609756097, 0.0097560975609756097, 0.019512195121951219, 0.0048780487804878049, 0.014634146341463415, 0.0048780487804878049, 0.086956521739130432, 0.43478260869565216, 0.17391304347826086, 0.17391304347826086, 0.16546762589928057, 0.0071942446043165471, 0.043165467625899283, 0.014388489208633094, 0.035971223021582732, 0.079136690647482008, 0.028776978417266189, 0.48201438848920863, 0.12949640287769784, 0.014388489208633094, 0.75, 0.072727272727272724, 0.018181818181818181, 0.72727272727272729, 0.10909090909090909, 0.016393442622950821, 0.045081967213114756, 0.21721311475409835, 0.081967213114754092, 0.020491803278688523, 0.30327868852459017, 0.0040983606557377051, 0.29098360655737704, 0.016393442622950821, 0.97041420118343191, 0.45454545454545453, 0.27272727272727271, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.68421052631578949, 0.14285714285714285, 0.6428571428571429, 0.7857142857142857, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.30769230769230771, 0.013071895424836602, 0.95206971677559915, 0.0021786492374727671, 0.023965141612200435, 0.3888888888888889, 0.1111111111111111, 0.055555555555555552, 0.22222222222222221, 0.055555555555555552, 0.17424242424242425, 0.01893939393939394, 0.064393939393939392, 0.25757575757575757, 0.003787878787878788, 0.12121212121212122, 0.045454545454545456, 0.26893939393939392, 0.007575757575757576, 0.030303030303030304, 0.11428571428571428, 0.057142857142857141, 0.028571428571428571, 0.65714285714285714, 0.057142857142857141, 0.025000000000000001, 0.050000000000000003, 0.77500000000000002, 0.025000000000000001, 0.050000000000000003, 0.11428571428571428, 0.22857142857142856, 0.085714285714285715, 0.22857142857142856, 0.028571428571428571, 0.17142857142857143, 0.028571428571428571, 0.10000000000000001, 0.59999999999999998, 0.10000000000000001, 0.002976190476190476, 0.002976190476190476, 0.97916666666666663, 0.002976190476190476, 0.86842105263157898, 0.026315789473684209, 0.2847826086956522, 0.10217391304347827, 0.11956521739130435, 0.11304347826086956, 0.010869565217391304, 0.18913043478260869, 0.080434782608695646, 0.065217391304347824, 0.019565217391304349, 0.0086956521739130436, 0.91666666666666663, 0.9452054794520548, 0.78260869565217395, 0.043478260869565216, 0.95049504950495045, 0.040540540540540543, 0.13513513513513514, 0.12162162162162163, 0.22972972972972974, 0.013513513513513514, 0.33783783783783783, 0.054054054054054057, 0.054054054054054057, 0.013513513513513514, 0.027027027027027029, 0.081081081081081086, 0.054054054054054057, 0.10810810810810811, 0.027027027027027029, 0.59459459459459463, 0.1111111111111111, 0.037037037037037035, 0.18518518518518517, 0.037037037037037035, 0.40740740740740738, 0.07407407407407407, 0.037037037037037035, 0.41666666666666669, 0.083333333333333329, 0.16666666666666666, 0.75, 0.27607361963190186, 0.12576687116564417, 0.11042944785276074, 0.21165644171779141, 0.033742331288343558, 0.11349693251533742, 0.079754601226993863, 0.015337423312883436, 0.027607361963190184, 0.0030674846625766872, 0.076923076923076927, 0.61538461538461542, 0.076923076923076927, 0.13082039911308205, 0.097560975609756101, 0.046563192904656318, 0.15299334811529933, 0.33481152993348118, 0.062084257206208429, 0.008869179600886918, 0.14855875831485588, 0.0066518847006651885, 0.0022172949002217295, 0.0066518847006651885, 0.33333333333333331, 0.019607843137254902, 0.078431372549019607, 0.019607843137254902, 0.11764705882352941, 0.31372549019607843, 0.019607843137254902, 0.071428571428571425, 0.7142857142857143, 0.080000000000000002, 0.76000000000000001, 0.56896551724137934, 0.017241379310344827, 0.017241379310344827, 0.1206896551724138, 0.017241379310344827, 0.017241379310344827, 0.017241379310344827, 0.017241379310344827, 0.017241379310344827, 0.1206896551724138, 0.1206896551724138, 0.7857142857142857, 0.017857142857142856, 0.035714285714285712, 0.017857142857142856, 0.017857142857142856, 0.017857142857142856, 0.017857142857142856, 0.035714285714285712, 0.071428571428571425, 0.086956521739130432, 0.21739130434782608, 0.13043478260869565, 0.17391304347826086, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.13043478260869565, 0.043478260869565216, 0.043478260869565216, 0.0047169811320754715, 0.009433962264150943, 0.014150943396226415, 0.033018867924528301, 0.0047169811320754715, 0.014150943396226415, 0.014150943396226415, 0.90094339622641506, 0.0047169811320754715, 0.75, 0.0625, 0.75, 0.060606060606060608, 0.21212121212121213, 0.030303030303030304, 0.030303030303030304, 0.030303030303030304, 0.030303030303030304, 0.30303030303030304, 0.060606060606060608, 0.27272727272727271, 0.028571428571428571, 0.20000000000000001, 0.028571428571428571, 0.62857142857142856, 0.090909090909090912, 0.18181818181818182, 0.31818181818181818, 0.045454545454545456, 0.045454545454545456, 0.13636363636363635, 0.090909090909090912, 0.98054474708171202, 0.066666666666666666, 0.066666666666666666, 0.66666666666666663, 0.90277777777777779, 0.013888888888888888, 0.027777777777777776, 0.86206896551724133, 0.8571428571428571, 0.030303030303030304, 0.045454545454545456, 0.40909090909090912, 0.045454545454545456, 0.40909090909090912, 0.0625, 0.027777777777777776, 0.0625, 0.67361111111111116, 0.034722222222222224, 0.0069444444444444441, 0.10416666666666667, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.47826086956521741, 0.043478260869565216, 0.043478260869565216, 0.73913043478260865, 0.043478260869565216, 0.59999999999999998, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.027777777777777776, 0.86111111111111116, 0.071967100753941055, 0.135709389993146, 0.052775873886223443, 0.17546264564770392, 0.23851953392734751, 0.28923920493488692, 0.02193283070596299, 0.0041124057573680602, 0.0095956134338588076, 0.15625, 0.015625, 0.03125, 0.390625, 0.015625, 0.015625, 0.21875, 0.09375, 0.0625, 0.015625, 0.010416666666666666, 0.03125, 0.041666666666666664, 0.010416666666666666, 0.70833333333333337, 0.17708333333333334, 0.010416666666666666, 0.026315789473684209, 0.052631578947368418, 0.15789473684210525, 0.65789473684210531, 0.026315789473684209, 0.071428571428571425, 0.7142857142857143, 0.076923076923076927, 0.15384615384615385, 0.53846153846153844, 0.03125, 0.03125, 0.03125, 0.0625, 0.40625, 0.125, 0.15625, 0.03125, 0.47744360902255639, 0.12781954887218044, 0.041353383458646614, 0.097744360902255634, 0.011278195488721804, 0.0075187969924812026, 0.0075187969924812026, 0.19548872180451127, 0.0037593984962406013, 0.011278195488721804, 0.0037593984962406013, 0.011278195488721804, 0.072327044025157231, 0.15094339622641509, 0.20125786163522014, 0.16981132075471697, 0.0220125786163522, 0.330188679245283, 0.040880503144654086, 0.0062893081761006293, 0.21651785714285715, 0.24330357142857142, 0.022321428571428572, 0.10491071428571429, 0.042410714285714288, 0.10714285714285714, 0.14508928571428573, 0.078125, 0.026785714285714284, 0.011160714285714286, 0.01483679525222552, 0.002967359050445104, 0.002967359050445104, 0.96142433234421365, 0.0059347181008902079, 0.0625, 0.0625, 0.625, 0.0625, 0.11805555555555555, 0.034722222222222224, 0.11805555555555555, 0.15277777777777779, 0.41666666666666669, 0.0069444444444444441, 0.10416666666666667, 0.034722222222222224, 0.0069444444444444441, 0.75, 0.72492836676217765, 0.0071633237822349575, 0.018624641833810889, 0.2148997134670487, 0.0014326647564469914, 0.024355300859598854, 0.0014326647564469914, 0.0028653295128939827, 0.69999999999999996, 0.75, 0.024783147459727387, 0.089219330855018583, 0.46964064436183395, 0.047087980173482029, 0.0024783147459727386, 0.035935563816604711, 0.31226765799256506, 0.0037174721189591076, 0.012391573729863693, 0.0012391573729863693, 0.0012391573729863693, 0.78888888888888886, 0.022222222222222223, 0.011111111111111112, 0.10000000000000001, 0.011111111111111112, 0.022222222222222223, 0.011111111111111112, 0.75, 0.032258064516129031, 0.58064516129032262, 0.032258064516129031, 0.12903225806451613, 0.032258064516129031, 0.064516129032258063, 0.096774193548387094, 0.26666666666666666, 0.20000000000000001, 0.066666666666666666, 0.20000000000000001, 0.13333333333333333, 0.82608695652173914, 0.96062992125984248, 0.80000000000000004, 0.20000000000000001, 0.5, 0.033205619412515965, 0.10983397190293742, 0.5938697318007663, 0.035759897828863345, 0.0063856960408684551, 0.091954022988505746, 0.12132822477650064, 0.0063856960408684551, 0.20000000000000001, 0.13333333333333333, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.13333333333333333, 0.066666666666666666, 0.33333333333333331, 0.0030211480362537764, 0.98489425981873113, 0.17391304347826086, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.086956521739130432, 0.39130434782608697, 0.21739130434782608, 0.13793103448275862, 0.068965517241379309, 0.65517241379310343, 0.034482758620689655, 0.76923076923076927, 0.0093457943925233638, 0.90654205607476634, 0.0093457943925233638, 0.018691588785046728, 0.018691588785046728, 0.59999999999999998, 0.80000000000000004, 0.59999999999999998, 0.066666666666666666, 0.066666666666666666, 0.29999999999999999, 0.10000000000000001, 0.20000000000000001, 0.69230769230769229, 0.076923076923076927, 0.4375, 0.0625, 0.0625, 0.0625, 0.125, 0.0625, 0.015873015873015872, 0.12698412698412698, 0.74603174603174605, 0.015873015873015872, 0.015873015873015872, 0.015873015873015872, 0.5714285714285714, 0.071428571428571425, 0.071428571428571425, 0.72727272727272729, 0.1111111111111111, 0.55555555555555558, 0.1111111111111111, 0.94845360824742264, 0.010309278350515464, 0.012658227848101266, 0.91139240506329111, 0.012658227848101266, 0.012658227848101266, 0.69999999999999996, 0.080000000000000002, 0.28000000000000003, 0.16, 0.20000000000000001, 0.040000000000000001, 0.040000000000000001, 0.080000000000000002, 0.54838709677419351, 0.064516129032258063, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.12903225806451613, 0.064516129032258063, 0.017605633802816902, 0.36267605633802819, 0.035211267605633804, 0.035211267605633804, 0.15140845070422534, 0.0017605633802816902, 0.0035211267605633804, 0.010563380281690141, 0.38028169014084506, 0.016129032258064516, 0.096774193548387094, 0.016129032258064516, 0.064516129032258063, 0.016129032258064516, 0.016129032258064516, 0.016129032258064516, 0.016129032258064516, 0.77419354838709675, 0.016129032258064516, 0.041666666666666664, 0.79166666666666663, 0.94444444444444442, 0.15518744551002617, 0.23714036617262424, 0.15170008718395817, 0.22842197035745423, 0.022667829119442023, 0.049694856146469048, 0.049694856146469048, 0.065387968613775063, 0.038360941586748042, 0.0017436791630340018, 0.071428571428571425, 0.42857142857142855, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.23076923076923078, 0.15384615384615385, 0.076923076923076927, 0.23076923076923078, 0.076923076923076927, 0.83999999999999997, 0.011235955056179775, 0.38202247191011235, 0.078651685393258425, 0.02247191011235955, 0.011235955056179775, 0.033707865168539325, 0.449438202247191, 0.21533442088091354, 0.18515497553017946, 0.088907014681892327, 0.26427406199021208, 0.0097879282218597055, 0.12561174551386622, 0.07096247960848287, 0.016313213703099509, 0.022838499184339316, 0.0016313213703099511, 0.0030211480362537764, 0.98489425981873113, 0.14525139664804471, 0.2011173184357542, 0.047486033519553071, 0.21508379888268156, 0.055865921787709494, 0.22905027932960895, 0.027932960893854747, 0.044692737430167599, 0.030726256983240222, 0.75, 0.014810896588204179, 0.018778101031473156, 0.028034911399100765, 0.0063475271092303621, 0.90610949484263426, 0.0031737635546151811, 0.0074054482941020893, 0.0095212906638455427, 0.0055540862205765672, 0.93442622950819676, 0.049056603773584909, 0.5911949685534591, 0.18742138364779873, 0.0037735849056603774, 0.033962264150943396, 0.0440251572327044, 0.072955974842767293, 0.0062893081761006293, 0.0075471698113207548, 0.0025157232704402514, 0.066666666666666666, 0.13333333333333333, 0.066666666666666666, 0.33333333333333331, 0.13333333333333333, 0.066666666666666666, 0.066666666666666666, 0.93220338983050843, 0.016949152542372881, 0.0084745762711864406, 0.72727272727272729, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.2857142857142857, 0.21428571428571427, 0.0625, 0.0625, 0.1875, 0.0625, 0.0625, 0.0625, 0.0625, 0.0625, 0.5, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.10526315789473684, 0.10526315789473684, 0.15789473684210525, 0.052631578947368418, 0.21052631578947367, 0.052631578947368418, 0.15789473684210525, 0.13509544787077826, 0.23348017621145375, 0.1013215859030837, 0.23641703377386197, 0.067547723935389131, 0.10719530102790015, 0.04405286343612335, 0.0058737151248164461, 0.063142437591776804, 0.002936857562408223, 0.27607361963190186, 0.33128834355828218, 0.036809815950920248, 0.11042944785276074, 0.049079754601226995, 0.042944785276073622, 0.055214723926380369, 0.079754601226993863, 0.24096385542168675, 0.060240963855421686, 0.26506024096385544, 0.30120481927710846, 0.012048192771084338, 0.072289156626506021, 0.024096385542168676, 0.012048192771084338, 0.62087912087912089, 0.076923076923076927, 0.10714285714285714, 0.076923076923076927, 0.008241758241758242, 0.01098901098901099, 0.043956043956043959, 0.0054945054945054949, 0.043956043956043959, 0.7142857142857143, 0.020952380952380951, 0.026666666666666668, 0.049523809523809526, 0.078095238095238093, 0.026666666666666668, 0.081904761904761911, 0.021231422505307854, 0.2929936305732484, 0.20169851380042464, 0.027600849256900213, 0.17834394904458598, 0.027600849256900213, 0.074309978768577492, 0.17197452229299362, 0.0021231422505307855, 0.16788321167883211, 0.021897810218978103, 0.014598540145985401, 0.043795620437956206, 0.72262773722627738, 0.0072992700729927005, 0.01020408163265306, 0.16326530612244897, 0.80612244897959184, 0.36363636363636365, 0.36363636363636365, 0.090909090909090912, 0.69999999999999996, 0.039325842696629212, 0.0898876404494382, 0.24157303370786518, 0.050561797752808987, 0.02247191011235955, 0.5337078651685393, 0.011235955056179775, 0.0056179775280898875, 0.0030211480362537764, 0.98489425981873113, 0.012195121951219513, 0.23170731707317074, 0.10975609756097561, 0.2073170731707317, 0.085365853658536592, 0.024390243902439025, 0.26829268292682928, 0.024390243902439025, 0.012195121951219513, 0.036363636363636362, 0.16363636363636364, 0.072727272727272724, 0.65454545454545454, 0.018181818181818181, 0.25, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.34090909090909088, 0.15454545454545454, 0.13181818181818181, 0.072727272727272724, 0.05909090909090909, 0.018181818181818181, 0.050000000000000003, 0.077272727272727271, 0.090909090909090912, 0.047619047619047616, 0.34523809523809523, 0.095238095238095233, 0.011904761904761904, 0.035714285714285712, 0.44047619047619047, 0.021739130434782608, 0.043478260869565216, 0.021739130434782608, 0.043478260869565216, 0.021739130434782608, 0.78260869565217395, 0.021739130434782608, 0.021739130434782608, 0.021739130434782608, 0.021739130434782608, 0.090909090909090912, 0.45454545454545453, 0.18181818181818182, 0.89583333333333337, 0.010416666666666666, 0.010416666666666666, 0.03125, 0.010416666666666666, 0.0029585798816568047, 0.017751479289940829, 0.96745562130177509, 0.071428571428571425, 0.7142857142857143, 0.69999999999999996, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.59999999999999998, 0.29999999999999999, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.0625, 0.1875, 0.0625, 0.25, 0.125, 0.1875, 0.83333333333333337, 0.12643678160919541, 0.10919540229885058, 0.22413793103448276, 0.068965517241379309, 0.36781609195402298, 0.063218390804597707, 0.017241379310344827, 0.011494252873563218, 0.0057471264367816091, 0.77272727272727271, 0.045454545454545456, 0.69230769230769229, 0.0036363636363636364, 0.98181818181818181, 0.625, 0.88888888888888884, 0.027777777777777776, 0.013888888888888888, 0.013888888888888888, 0.20000000000000001, 0.40000000000000002, 0.10000000000000001, 0.033643521832498212, 0.13385826771653545, 0.329277022190408, 0.0572655690765927, 0.0093056549749463129, 0.09591982820329277, 0.0007158196134574087, 0.20400858983536149, 0.13457408732999285, 0.086956521739130432, 0.043478260869565216, 0.086956521739130432, 0.043478260869565216, 0.043478260869565216, 0.52173913043478259, 0.043478260869565216, 0.086956521739130432, 0.13043478260869565, 0.0058997050147492625, 0.0029498525073746312, 0.97345132743362828, 0.0058997050147492625, 0.043478260869565216, 0.043478260869565216, 0.73913043478260865, 0.94270833333333337, 0.010416666666666666, 0.020833333333333332, 0.005208333333333333, 0.28380836870830806, 0.098847786537295326, 0.076409945421467562, 0.13402061855670103, 0.0078835657974530016, 0.17283201940570042, 0.057610673135233471, 0.11643420254699818, 0.04972710733778047, 0.0012128562765312311, 0.00060642813826561554, 0.022519352568613652, 0.65798733286418021, 0.18578465869106264, 0.00070372976776917663, 0.00844475721323012, 0.11118930330752991, 0.00070372976776917663, 0.01055594651653765, 0.54545454545454541, 0.090909090909090912, 0.090909090909090912, 0.071428571428571425, 0.071428571428571425, 0.21428571428571427, 0.21428571428571427, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.69999999999999996, 0.029411764705882353, 0.52941176470588236, 0.029411764705882353, 0.20588235294117646, 0.058823529411764705, 0.029411764705882353, 0.019230769230769232, 0.019230769230769232, 0.019230769230769232, 0.038461538461538464, 0.038461538461538464, 0.096153846153846159, 0.038461538461538464, 0.73076923076923073, 0.80952380952380953, 0.13043478260869565, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.52173913043478259, 0.69999999999999996, 0.023255813953488372, 0.023255813953488372, 0.27906976744186046, 0.046511627906976744, 0.023255813953488372, 0.16279069767441862, 0.023255813953488372, 0.11627906976744186, 0.30232558139534882, 0.023255813953488372, 0.24390243902439024, 0.073170731707317069, 0.31707317073170732, 0.073170731707317069, 0.14634146341463414, 0.04878048780487805, 0.40000000000000002, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.31104651162790697, 0.093023255813953487, 0.066860465116279064, 0.061046511627906974, 0.014534883720930232, 0.078488372093023256, 0.35465116279069769, 0.0029069767441860465, 0.011627906976744186, 0.62251655629139069, 0.013245033112582781, 0.013245033112582781, 0.052980132450331126, 0.013245033112582781, 0.039735099337748346, 0.16556291390728478, 0.033112582781456956, 0.039735099337748346, 0.0066225165562913907, 0.16204869857262805, 0.078925272879932826, 0.12846347607052896, 0.14273719563392107, 0.14441645675902604, 0.14945424013434089, 0.032745591939546598, 0.15197313182199831, 0.0083963056255247689, 0.00083963056255247689, 0.062814070351758788, 0.1407035175879397, 0.077889447236180909, 0.18592964824120603, 0.0050251256281407036, 0.21859296482412061, 0.070351758793969849, 0.21859296482412061, 0.017587939698492462, 0.0025125628140703518, 0.030681818181818182, 0.52878787878787881, 0.096212121212121207, 0.01553030303030303, 0.28409090909090912, 0.021212121212121213, 0.0098484848484848477, 0.0087121212121212127, 0.0034090909090909089, 0.00037878787878787879, 0.015779092702169626, 0.72189349112426038, 0.14398422090729784, 0.017751479289940829, 0.02564102564102564, 0.02564102564102564, 0.0039447731755424065, 0.0039447731755424065, 0.037475345167652857, 0.0037059913526868438, 0.46016059295861644, 0.057442865966646078, 0.03829524397776405, 0.39962940086473131, 0.010500308832612723, 0.0092649783817171094, 0.012970969734403953, 0.0080296479308214954, 0.84313725490196079, 0.058823529411764705, 0.019607843137254902, 0.2808988764044944, 0.15730337078651685, 0.14606741573033707, 0.15730337078651685, 0.02247191011235955, 0.011235955056179775, 0.1797752808988764, 0.02247191011235955, 0.4459016393442623, 0.088524590163934422, 0.14754098360655737, 0.0065573770491803279, 0.013114754098360656, 0.098360655737704916, 0.039344262295081971, 0.13114754098360656, 0.016393442622950821, 0.013114754098360656, 0.0032786885245901639, 0.003003003003003003, 0.98198198198198194, 0.003003003003003003, 0.20689655172413793, 0.068965517241379309, 0.63793103448275867, 0.017241379310344827, 0.017241379310344827, 0.5, 0.16666666666666666, 0.090909090909090912, 0.090909090909090912, 0.54545454545454541, 0.064516129032258063, 0.80645161290322576, 0.22564667033571822, 0.11997798569069895, 0.028618602091359385, 0.39515685195376993, 0.0060539350577875619, 0.093010456796917995, 0.0957622454595487, 0.034672537149146948, 0.036050156739811913, 0.4670846394984326, 0.10188087774294671, 0.22413793103448276, 0.014106583072100314, 0.017241379310344827, 0.042319749216300939, 0.09561128526645768, 0.31159420289855072, 0.11231884057971014, 0.052536231884057968, 0.31340579710144928, 0.021739130434782608, 0.11594202898550725, 0.016304347826086956, 0.036231884057971016, 0.018115942028985508, 0.014705882352941176, 0.029411764705882353, 0.8970588235294118, 0.014397905759162303, 0.54712041884816753, 0.16099476439790575, 0.0032722513089005235, 0.24345549738219896, 0.01832460732984293, 0.0098167539267015706, 0.0013089005235602095, 0.055555555555555552, 0.77777777777777779, 0.72727272727272729, 0.12903225806451613, 0.032258064516129031, 0.096774193548387094, 0.12903225806451613, 0.25806451612903225, 0.22580645161290322, 0.032258064516129031, 0.20000000000000001, 0.20000000000000001, 0.29999999999999999, 0.10000000000000001, 0.44444444444444442, 0.625, 0.33697632058287796, 0.10928961748633879, 0.072859744990892539, 0.10018214936247723, 0.027322404371584699, 0.069216757741347903, 0.13114754098360656, 0.14025500910746813, 0.01092896174863388, 0.0018214936247723133, 0.0018214936247723133, 0.95348837209302328, 0.89814814814814814, 0.046296296296296294, 0.018518518518518517, 0.13333333333333333, 0.13333333333333333, 0.20000000000000001, 0.13333333333333333, 0.13333333333333333, 0.13333333333333333, 0.82758620689655171, 0.034482758620689655, 0.0022123893805309734, 0.30162241887905605, 0.58554572271386429, 0.025073746312684365, 0.06268436578171091, 0.010324483775811209, 0.0029498525073746312, 0.0088495575221238937, 0.018421052631578946, 0.039473684210526314, 0.46052631578947367, 0.005263157894736842, 0.44736842105263158, 0.015789473684210527, 0.0092105263157894728, 0.002631578947368421, 0.14285714285714285, 0.6428571428571429, 0.80952380952380953, 0.0030211480362537764, 0.98489425981873113, 0.1111111111111111, 0.1111111111111111, 0.44444444444444442, 0.1111111111111111, 0.95402298850574707, 0.083333333333333329, 0.032051282051282048, 0.10256410256410256, 0.064102564102564097, 0.00641025641025641, 0.55769230769230771, 0.01282051282051282, 0.11538461538461539, 0.01282051282051282, 0.050505050505050504, 0.063973063973063973, 0.71380471380471378, 0.030303030303030304, 0.037037037037037035, 0.057239057239057242, 0.030303030303030304, 0.010101010101010102, 0.0099009900990099011, 0.21782178217821782, 0.11881188118811881, 0.15841584158415842, 0.019801980198019802, 0.0099009900990099011, 0.44554455445544555, 0.0099009900990099011, 0.10000000000000001, 0.59999999999999998, 0.016393442622950821, 0.81147540983606559, 0.016393442622950821, 0.05737704918032787, 0.05737704918032787, 0.0081967213114754103, 0.040000000000000001, 0.13600000000000001, 0.048000000000000001, 0.016, 0.0080000000000000002, 0.032000000000000001, 0.56799999999999995, 0.056000000000000001, 0.080000000000000002, 0.016, 0.083333333333333329, 0.66666666666666663, 0.27042253521126758, 0.09295774647887324, 0.033802816901408447, 0.22253521126760564, 0.0056338028169014088, 0.26478873239436618, 0.019718309859154931, 0.059154929577464786, 0.028169014084507043, 0.20714285714285716, 0.10714285714285714, 0.035714285714285712, 0.042857142857142858, 0.4642857142857143, 0.021428571428571429, 0.09285714285714286, 0.0071428571428571426, 0.010526315789473684, 0.13157894736842105, 0.005263157894736842, 0.1736842105263158, 0.026315789473684209, 0.18421052631578946, 0.46842105263157896, 0.015873015873015872, 0.063492063492063489, 0.015873015873015872, 0.1111111111111111, 0.047619047619047616, 0.047619047619047616, 0.031746031746031744, 0.61904761904761907, 0.2857142857142857, 0.14285714285714285, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.071428571428571425, 0.052631578947368418, 0.73684210526315785, 0.10000000000000001, 0.20000000000000001, 0.40000000000000002, 0.070588235294117646, 0.63529411764705879, 0.011764705882352941, 0.029411764705882353, 0.21764705882352942, 0.011764705882352941, 0.27272727272727271, 0.18181818181818182, 0.18181818181818182, 0.18181818181818182, 0.090909090909090912, 0.1111111111111111, 0.33333333333333331, 0.22222222222222221, 0.083333333333333329, 0.1111111111111111, 0.027777777777777776, 0.30555555555555558, 0.083333333333333329, 0.083333333333333329, 0.16666666666666666, 0.027777777777777776, 0.018264840182648401, 0.66210045662100458, 0.027397260273972601, 0.0091324200913242004, 0.013698630136986301, 0.018264840182648401, 0.018264840182648401, 0.018264840182648401, 0.21461187214611871, 0.066666666666666666, 0.80000000000000004, 0.0080000000000000002, 0.087999999999999995, 0.096000000000000002, 0.0080000000000000002, 0.032000000000000001, 0.056000000000000001, 0.0080000000000000002, 0.0080000000000000002, 0.70399999999999996, 0.081081081081081086, 0.027027027027027029, 0.7567567567567568, 0.048442906574394463, 0.044982698961937718, 0.75778546712802763, 0.072664359861591699, 0.0034602076124567475, 0.038062283737024222, 0.024221453287197232, 0.39910979228486648, 0.1513353115727003, 0.063798219584569729, 0.1394658753709199, 0.016320474777448073, 0.084569732937685466, 0.12611275964391691, 0.011869436201780416, 0.0044510385756676559, 0.001483679525222552, 0.63636363636363635, 0.090909090909090912, 0.028753993610223641, 0.063258785942492013, 0.49073482428115017, 0.15463258785942491, 0.0083067092651757189, 0.0063897763578274758, 0.028115015974440896, 0.11629392971246007, 0.10159744408945687, 0.0012779552715654952, 0.018136020151133501, 0.036272040302267002, 0.24231738035264483, 0.14508816120906801, 0.35717884130982369, 0.021662468513853905, 0.028715365239294709, 0.09219143576826197, 0.057430730478589417, 0.0030211480362537764, 0.98489425981873113, 0.017793594306049824, 0.46263345195729538, 0.081850533807829182, 0.02491103202846975, 0.017793594306049824, 0.092526690391459068, 0.099644128113879002, 0.11387900355871886, 0.017793594306049824, 0.067615658362989328, 0.15625, 0.03125, 0.03125, 0.03125, 0.03125, 0.1875, 0.03125, 0.0625, 0.03125, 0.46875, 0.63636363636363635, 0.090909090909090912, 0.2857142857142857, 0.21428571428571427, 0.14285714285714285, 0.14285714285714285, 0.39622641509433965, 0.009433962264150943, 0.04716981132075472, 0.19811320754716982, 0.018867924528301886, 0.037735849056603772, 0.094339622641509441, 0.15094339622641509, 0.028301886792452831, 0.028301886792452831, 0.46153846153846156, 0.23076923076923078, 0.076923076923076927, 0.022624434389140271, 0.78129713423831071, 0.099547511312217188, 0.0090497737556561094, 0.030165912518853696, 0.010558069381598794, 0.031674208144796379, 0.0045248868778280547, 0.0045248868778280547, 0.0015082956259426848, 0.0015082956259426848, 0.071428571428571425, 0.2857142857142857, 0.2857142857142857, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.8571428571428571, 0.066666666666666666, 0.066666666666666666, 0.20000000000000001, 0.40000000000000002, 0.066666666666666666, 0.10000000000000001, 0.40000000000000002, 0.20000000000000001, 0.10000000000000001, 0.72727272727272729, 0.29999999999999999, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.14134275618374559, 0.0035335689045936395, 0.060070671378091869, 0.035335689045936397, 0.0035335689045936395, 0.0035335689045936395, 0.69611307420494695, 0.056537102473498232, 0.7857142857142857, 0.14285714285714285, 0.14285714285714285, 0.35714285714285715, 0.071428571428571425, 0.071428571428571425, 0.61904761904761907, 0.047619047619047616, 0.047619047619047616, 0.047619047619047616, 0.10000000000000001, 0.40000000000000002, 0.020833333333333332, 0.875, 0.020833333333333332, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.29999999999999999, 0.050000000000000003, 0.20000000000000001, 0.5, 0.090277777777777776, 0.1388888888888889, 0.22222222222222221, 0.13194444444444445, 0.013888888888888888, 0.090277777777777776, 0.15972222222222221, 0.13194444444444445, 0.020833333333333332, 0.0069444444444444441, 0.93333333333333335, 0.035897435897435895, 0.010256410256410256, 0.058470764617691157, 0.15142428785607195, 0.37031484257871067, 0.10044977511244378, 0.19940029985007496, 0.052473763118440778, 0.037481259370314844, 0.014992503748125937, 0.010494752623688156, 0.0014992503748125937, 0.76470588235294112, 0.33333333333333331, 0.030303030303030304, 0.30303030303030304, 0.15151515151515152, 0.030303030303030304, 0.030303030303030304, 0.9057750759878419, 0.0182370820668693, 0.051671732522796353, 0.0030395136778115501, 0.0030395136778115501, 0.0030395136778115501, 0.0030395136778115501, 0.90566037735849059, 0.018867924528301886, 0.80000000000000004, 0.72727272727272729, 0.0096153846153846159, 0.92307692307692313, 0.019230769230769232, 0.0096153846153846159, 0.096774193548387094, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.096774193548387094, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.54838709677419351, 0.27272727272727271, 0.045454545454545456, 0.13636363636363635, 0.22727272727272727, 0.13636363636363635, 0.045454545454545456, 0.045454545454545456, 0.023255813953488372, 0.88372093023255816, 0.9452054794520548, 0.75, 0.027777777777777776, 0.055555555555555552, 0.22222222222222221, 0.1388888888888889, 0.44444444444444442, 0.027777777777777776, 0.16935483870967741, 0.18548387096774194, 0.0080645161290322578, 0.0080645161290322578, 0.016129032258064516, 0.12096774193548387, 0.14516129032258066, 0.072580645161290328, 0.016129032258064516, 0.25806451612903225, 0.0080645161290322578, 0.064516129032258063, 0.064516129032258063, 0.032258064516129031, 0.25806451612903225, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.19354838709677419, 0.29032258064516131, 0.22535211267605634, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.056338028169014086, 0.22535211267605634, 0.070422535211267609, 0.028169014084507043, 0.3380281690140845, 0.012500000000000001, 0.0025000000000000001, 0.025000000000000001, 0.02, 0.84750000000000003, 0.070000000000000007, 0.0025000000000000001, 0.0025000000000000001, 0.014999999999999999, 0.75, 0.083333333333333329, 0.083333333333333329, 0.25, 0.33333333333333331, 0.083333333333333329, 0.40000000000000002, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.013953488372093023, 0.93023255813953487, 0.0046511627906976744, 0.0069767441860465115, 0.0093023255813953487, 0.027906976744186046, 0.0057803468208092483, 0.91907514450867056, 0.028901734104046242, 0.023121387283236993, 0.83333333333333337, 0.76190476190476186, 0.047619047619047616, 0.38461538461538464, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.15384615384615385, 0.076923076923076927, 0.61283643892339545, 0.0082815734989648039, 0.026915113871635612, 0.12215320910973085, 0.002070393374741201, 0.15942028985507245, 0.055900621118012424, 0.010351966873706004, 0.020408163265306121, 0.87755102040816324, 0.020408163265306121, 0.36842105263157893, 0.052631578947368418, 0.052631578947368418, 0.31578947368421051, 0.052631578947368418, 0.01812688821752266, 0.099697885196374625, 0.36555891238670696, 0.41389728096676737, 0.0030211480362537764, 0.027190332326283987, 0.051359516616314202, 0.01812688821752266, 0.021126760563380281, 0.017102615694164991, 0.51710261569416494, 0.056841046277665994, 0.33501006036217301, 0.013078470824949699, 0.007545271629778672, 0.019617706237424547, 0.012575452716297788, 0.95121951219512191, 0.043256997455470736, 0.13231552162849872, 0.36386768447837148, 0.39949109414758271, 0.043256997455470736, 0.0025445292620865142, 0.010178117048346057, 0.051724137931034482, 0.034482758620689655, 0.81034482758620685, 0.017241379310344827, 0.017241379310344827, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.18181818181818182, 0.090909090909090912, 0.014705882352941176, 0.058823529411764705, 0.029411764705882353, 0.044117647058823532, 0.63235294117647056, 0.029411764705882353, 0.13235294117647059, 0.1079136690647482, 0.017985611510791366, 0.028776978417266189, 0.56474820143884896, 0.0071942446043165471, 0.050359712230215826, 0.12949640287769784, 0.053956834532374098, 0.028776978417266189, 0.0035971223021582736, 0.0071942446043165471, 0.018867924528301886, 0.018867924528301886, 0.64150943396226412, 0.11320754716981132, 0.018867924528301886, 0.018867924528301886, 0.018867924528301886, 0.037735849056603772, 0.037735849056603772, 0.094339622641509441, 0.10000000000000001, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.20000000000000001, 0.10000000000000001, 0.050000000000000003, 0.14999999999999999, 0.20000000000000001, 0.29999999999999999, 0.20000000000000001, 0.034482758620689655, 0.17241379310344829, 0.068965517241379309, 0.27586206896551724, 0.034482758620689655, 0.034482758620689655, 0.20689655172413793, 0.034482758620689655, 0.13793103448275862, 0.034482758620689655, 0.20000000000000001, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.40000000000000002, 0.35483870967741937, 0.064516129032258063, 0.032258064516129031, 0.35483870967741937, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.064516129032258063, 0.93877551020408168, 0.015306122448979591, 0.020408163265306121, 0.0051020408163265302, 0.85185185185185186, 0.9375, 0.90243902439024393, 0.48484848484848486, 0.24242424242424243, 0.060606060606060608, 0.060606060606060608, 0.030303030303030304, 0.2857142857142857, 0.35714285714285715, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.7857142857142857, 0.0625, 0.0625, 0.125, 0.125, 0.25, 0.0625, 0.0625, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.012658227848101266, 0.93670886075949367, 0.080000000000000002, 0.23000000000000001, 0.10000000000000001, 0.12, 0.089999999999999997, 0.14000000000000001, 0.050000000000000003, 0.059999999999999998, 0.059999999999999998, 0.050000000000000003, 0.21428571428571427, 0.23214285714285715, 0.077380952380952384, 0.15476190476190477, 0.0059523809523809521, 0.083333333333333329, 0.071428571428571425, 0.053571428571428568, 0.065476190476190479, 0.035714285714285712, 0.125, 0.0625, 0.078125, 0.015625, 0.546875, 0.109375, 0.2857142857142857, 0.21428571428571427, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.25, 0.083333333333333329, 0.16666666666666666, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.034013605442176874, 0.040816326530612242, 0.081632653061224483, 0.013605442176870748, 0.020408163265306121, 0.020408163265306121, 0.31292517006802723, 0.47619047619047616, 0.89181286549707606, 0.0058479532163742687, 0.017543859649122806, 0.064327485380116955, 0.0058479532163742687, 0.0029239766081871343, 0.0029239766081871343, 0.14864864864864866, 0.20270270270270271, 0.39189189189189189, 0.054054054054054057, 0.027027027027027029, 0.12162162162162163, 0.013513513513513514, 0.052631578947368418, 0.26315789473684209, 0.15789473684210525, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.26315789473684209, 0.052631578947368418, 0.052631578947368418, 0.075342465753424653, 0.061643835616438353, 0.020547945205479451, 0.027397260273972601, 0.027397260273972601, 0.16438356164383561, 0.50684931506849318, 0.013698630136986301, 0.034246575342465752, 0.068493150684931503, 0.75, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.035714285714285712, 0.071428571428571425, 0.10714285714285714, 0.071428571428571425, 0.5714285714285714, 0.019607843137254902, 0.026143790849673203, 0.88235294117647056, 0.039215686274509803, 0.0065359477124183009, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.25, 0.083333333333333329, 0.083333333333333329, 0.10493827160493827, 0.064814814814814811, 0.030864197530864196, 0.61419753086419748, 0.018518518518518517, 0.043209876543209874, 0.030864197530864196, 0.07716049382716049, 0.012345679012345678, 0.0049019607843137254, 0.073529411764705885, 0.16666666666666666, 0.044117647058823532, 0.019607843137254902, 0.024509803921568627, 0.65196078431372551, 0.0049019607843137254, 0.16666666666666666, 0.58333333333333337, 0.1111111111111111, 0.33333333333333331, 0.1111111111111111, 0.27777777777777779, 0.055555555555555552, 0.041666666666666664, 0.79166666666666663, 0.33507853403141363, 0.078534031413612565, 0.17801047120418848, 0.26178010471204188, 0.005235602094240838, 0.020942408376963352, 0.026178010471204188, 0.005235602094240838, 0.062827225130890049, 0.015706806282722512, 0.005235602094240838, 0.13402061855670103, 0.32989690721649484, 0.1134020618556701, 0.25773195876288657, 0.092783505154639179, 0.030927835051546393, 0.010309278350515464, 0.010309278350515464, 0.75, 0.0030211480362537764, 0.98187311178247738, 0.0030211480362537764, 0.085855466337245209, 0.27918468190240892, 0.36874613959234093, 0.043236565781346513, 0.011735639283508339, 0.042618900555898703, 0.074737492279184678, 0.092649783817171094, 0.00061766522544780733, 0.18924889543446244, 0.32621502209131076, 0.13549337260677466, 0.053755522827687779, 0.013991163475699559, 0.0036818851251840942, 0.12076583210603829, 0.0898379970544919, 0.065537555228276881, 0.2857142857142857, 0.20000000000000001, 0.31428571428571428, 0.057142857142857141, 0.028571428571428571, 0.083333333333333329, 0.10000000000000001, 0.75, 0.090909090909090912, 0.63636363636363635, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.40000000000000002, 0.053571428571428568, 0.089285714285714288, 0.071428571428571425, 0.17857142857142858, 0.017857142857142856, 0.053571428571428568, 0.053571428571428568, 0.3392857142857143, 0.035714285714285712, 0.10714285714285714, 0.5, 0.1875, 0.75, 0.72727272727272729, 0.20000000000000001, 0.20000000000000001, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.20000000000000001, 0.20000000000000001, 0.10000000000000001, 0.32258064516129031, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.12903225806451613, 0.096774193548387094, 0.032258064516129031, 0.16129032258064516, 0.34482758620689657, 0.12643678160919541, 0.011494252873563218, 0.068965517241379309, 0.011494252873563218, 0.068965517241379309, 0.14942528735632185, 0.045977011494252873, 0.16091954022988506, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.20000000000000001, 0.20000000000000001, 0.13333333333333333, 0.13333333333333333, 0.13333333333333333, 0.066666666666666666, 0.28333333333333333, 0.058333333333333334, 0.10000000000000001, 0.15833333333333333, 0.10000000000000001, 0.083333333333333329, 0.13333333333333333, 0.058333333333333334, 0.0083333333333333332, 0.9285714285714286, 0.0024630541871921183, 0.0024630541871921183, 0.98768472906403937, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.5, 0.16326530612244897, 0.37414965986394561, 0.17687074829931973, 0.016326530612244899, 0.0068027210884353739, 0.051700680272108841, 0.053061224489795916, 0.13741496598639455, 0.016326530612244899, 0.0013605442176870747, 0.0084745762711864406, 0.016949152542372881, 0.084745762711864403, 0.033898305084745763, 0.042372881355932202, 0.63559322033898302, 0.1864406779661017, 0.10000000000000001, 0.10000000000000001, 0.34999999999999998, 0.10000000000000001, 0.050000000000000003, 0.14999999999999999, 0.050000000000000003, 0.82608695652173914, 0.13043478260869565, 0.78395061728395066, 0.16666666666666666, 0.0061728395061728392, 0.0061728395061728392, 0.012345679012345678, 0.63636363636363635, 0.090909090909090912, 0.011235955056179775, 0.9213483146067416, 0.011235955056179775, 0.011235955056179775, 0.29999999999999999, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.72727272727272729, 0.090909090909090912, 0.63636363636363635, 0.20000000000000001, 0.066666666666666666, 0.26666666666666666, 0.13333333333333333, 0.13333333333333333, 0.066666666666666666, 0.022222222222222223, 0.066666666666666666, 0.82222222222222219, 0.005681818181818182, 0.002840909090909091, 0.053977272727272728, 0.048295454545454544, 0.0085227272727272721, 0.0085227272727272721, 0.80397727272727271, 0.056818181818181816, 0.0085227272727272721, 0.002840909090909091, 0.014925373134328358, 0.022388059701492536, 0.067164179104477612, 0.13432835820895522, 0.007462686567164179, 0.007462686567164179, 0.64925373134328357, 0.074626865671641784, 0.058823529411764705, 0.058823529411764705, 0.058823529411764705, 0.52941176470588236, 0.058823529411764705, 0.63636363636363635, 0.090909090909090912, 0.72875816993464049, 0.029411764705882353, 0.0065359477124183009, 0.088235294117647065, 0.0032679738562091504, 0.088235294117647065, 0.045751633986928102, 0.81958762886597936, 0.0051546391752577319, 0.010309278350515464, 0.030927835051546393, 0.030927835051546393, 0.025773195876288658, 0.056701030927835051, 0.0051546391752577319, 0.75, 0.25, 0.26666666666666666, 0.10000000000000001, 0.016666666666666666, 0.016666666666666666, 0.11666666666666667, 0.083333333333333329, 0.050000000000000003, 0.10000000000000001, 0.69999999999999996, 0.1815068493150685, 0.18493150684931506, 0.089041095890410954, 0.1678082191780822, 0.030821917808219176, 0.17808219178082191, 0.085616438356164379, 0.020547945205479451, 0.044520547945205477, 0.0068493150684931503, 0.0068493150684931503, 0.80000000000000004, 0.040000000000000001, 0.18617683686176836, 0.17434620174346202, 0.16064757160647572, 0.16251556662515568, 0.019302615193026153, 0.15006226650062265, 0.048567870485678705, 0.069115815691158156, 0.025529265255292654, 0.0043586550435865505, 0.066666666666666666, 0.73333333333333328, 0.76923076923076927, 0.29999999999999999, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.14814814814814814, 0.1111111111111111, 0.07407407407407407, 0.33333333333333331, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.037037037037037035, 0.12076271186440678, 0.15889830508474576, 0.28177966101694918, 0.13771186440677965, 0.2076271186440678, 0.01059322033898305, 0.048728813559322036, 0.029661016949152543, 0.025423728813559324, 0.9152542372881356, 0.0084745762711864406, 0.0084745762711864406, 0.0084745762711864406, 0.77777777777777779, 0.91954022988505746, 0.011494252873563218, 0.011494252873563218, 0.011494252873563218, 0.027272727272727271, 0.79545454545454541, 0.086363636363636365, 0.018181818181818181, 0.018181818181818181, 0.027272727272727271, 0.0090909090909090905, 0.0045454545454545452, 0.22857142857142856, 0.028571428571428571, 0.076190476190476197, 0.019047619047619049, 0.0095238095238095247, 0.066666666666666666, 0.53333333333333333, 0.028571428571428571, 0.0095238095238095247, 0.0095238095238095247, 0.12328767123287671, 0.013698630136986301, 0.013698630136986301, 0.013698630136986301, 0.054794520547945202, 0.64383561643835618, 0.095890410958904104, 0.35999999999999999, 0.080000000000000002, 0.040000000000000001, 0.040000000000000001, 0.040000000000000001, 0.23999999999999999, 0.12, 0.080000000000000002, 0.010582010582010581, 0.7407407407407407, 0.17989417989417988, 0.010582010582010581, 0.037037037037037035, 0.0052910052910052907, 0.25974025974025972, 0.14285714285714285, 0.19480519480519481, 0.025974025974025976, 0.012987012987012988, 0.07792207792207792, 0.03896103896103896, 0.025974025974025976, 0.20779220779220781, 0.03896103896103896, 0.33333333333333331, 0.25, 0.083333333333333329, 0.083333333333333329, 0.24358974358974358, 0.70512820512820518, 0.91435768261964734, 0.012594458438287154, 0.030226700251889168, 0.017632241813602016, 0.007556675062972292, 0.007556675062972292, 0.0025188916876574307, 0.045454545454545456, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.22727272727272727, 0.090909090909090912, 0.35294117647058826, 0.23529411764705882, 0.058823529411764705, 0.058823529411764705, 0.1111111111111111, 0.22222222222222221, 0.1111111111111111, 0.22222222222222221, 0.16666666666666666, 0.055555555555555552, 0.055555555555555552, 0.3080357142857143, 0.0089285714285714281, 0.48214285714285715, 0.026785714285714284, 0.11160714285714286, 0.022321428571428572, 0.022321428571428572, 0.004464285714285714, 0.004464285714285714, 0.7142857142857143, 0.071428571428571425, 0.21925133689839571, 0.074866310160427801, 0.096256684491978606, 0.24064171122994651, 0.016042780748663103, 0.13903743315508021, 0.096256684491978606, 0.026737967914438502, 0.074866310160427801, 0.0053475935828877002, 0.0053475935828877002, 0.0053475935828877002, 0.23076923076923078, 0.53846153846153844, 0.21951219512195122, 0.21951219512195122, 0.12195121951219512, 0.097560975609756101, 0.024390243902439025, 0.073170731707317069, 0.14634146341463414, 0.024390243902439025, 0.04878048780487805, 0.8214285714285714, 0.035714285714285712, 0.88808664259927794, 0.054151624548736461, 0.021660649819494584, 0.01444043321299639, 0.0036101083032490976, 0.0036101083032490976, 0.76923076923076927, 0.46153846153846156, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.91489361702127658, 0.046808510638297871, 0.22553191489361701, 0.01276595744680851, 0.034042553191489362, 0.0042553191489361703, 0.46808510638297873, 0.19148936170212766, 0.017021276595744681, 0.0042553191489361703, 0.62370062370062374, 0.0020790020790020791, 0.033264033264033266, 0.10810810810810811, 0.0041580041580041582, 0.10602910602910603, 0.089397089397089402, 0.029106029106029108, 0.13714285714285715, 0.29142857142857143, 0.080000000000000002, 0.074285714285714288, 0.017142857142857144, 0.097142857142857142, 0.068571428571428575, 0.17142857142857143, 0.0057142857142857143, 0.057142857142857141, 0.80000000000000004, 0.76923076923076927, 0.071428571428571425, 0.071428571428571425, 0.2857142857142857, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.071428571428571425, 0.003003003003003003, 0.003003003003003003, 0.97897897897897901, 0.003003003003003003, 0.003003003003003003, 0.91489361702127658, 0.76923076923076927, 0.076923076923076927, 0.69230769230769229, 0.0030211480362537764, 0.98489425981873113, 0.25, 0.083333333333333329, 0.5, 0.59999999999999998, 0.10909090909090909, 0.090909090909090912, 0.018181818181818181, 0.018181818181818181, 0.090909090909090912, 0.018181818181818181, 0.042016806722689079, 0.025210084033613446, 0.0084033613445378148, 0.68067226890756305, 0.025210084033613446, 0.033613445378151259, 0.14285714285714285, 0.025210084033613446, 0.0084033613445378148, 0.20487804878048779, 0.053658536585365853, 0.0048780487804878049, 0.54634146341463419, 0.043902439024390241, 0.068292682926829273, 0.073170731707317069, 0.18478260869565216, 0.010869565217391304, 0.097826086956521743, 0.30434782608695654, 0.076086956521739135, 0.21739130434782608, 0.021739130434782608, 0.076086956521739135, 0.010869565217391304, 0.28888888888888886, 0.027777777777777776, 0.65555555555555556, 0.0055555555555555558, 0.77777777777777779, 0.055555555555555552, 0.021099744245524295, 0.2442455242966752, 0.10869565217391304, 0.058823529411764705, 0.34974424552429667, 0.0095907928388746806, 0.033887468030690537, 0.1010230179028133, 0.072250639386189253, 0.004464285714285714, 0.10119047619047619, 0.037202380952380952, 0.013392857142857142, 0.6160714285714286, 0.0089285714285714281, 0.002976190476190476, 0.002976190476190476, 0.21130952380952381, 0.0008375209380234506, 0.58123953098827474, 0.088777219430485763, 0.065326633165829151, 0.082914572864321606, 0.0050251256281407036, 0.01423785594639866, 0.041876046901172533, 0.11892797319932999, 0.015789473684210527, 0.36842105263157893, 0.21578947368421053, 0.021052631578947368, 0.026315789473684209, 0.063157894736842107, 0.081578947368421056, 0.20789473684210527, 0.012500000000000001, 0.10555555555555556, 0.048611111111111112, 0.015277777777777777, 0.64444444444444449, 0.0027777777777777779, 0.027777777777777776, 0.14027777777777778, 0.73333333333333328, 0.80769230769230771, 0.038461538461538464, 0.57148900169204742, 0.037225042301184431, 0.022419627749576988, 0.1548223350253807, 0.14043993231810489, 0.032571912013536382, 0.022419627749576988, 0.016074450084602367, 0.00084602368866328254, 0.00042301184433164127, 0.54545454545454541, 0.070707070707070704, 0.010101010101010102, 0.080808080808080815, 0.020202020202020204, 0.070707070707070704, 0.080808080808080815, 0.060606060606060608, 0.050505050505050504, 0.094915254237288138, 0.13220338983050847, 0.054237288135593219, 0.23728813559322035, 0.29830508474576273, 0.12203389830508475, 0.054237288135593219, 0.0029940119760479044, 0.0029940119760479044, 0.97904191616766467, 0.0029940119760479044, 0.15596330275229359, 0.13761467889908258, 0.0091743119266055051, 0.24770642201834864, 0.11009174311926606, 0.0091743119266055051, 0.11009174311926606, 0.11926605504587157, 0.11009174311926606, 0.85943775100401609, 0.0040160642570281121, 0.096385542168674704, 0.020080321285140562, 0.0040160642570281121, 0.0040160642570281121, 0.10000000000000001, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.29999999999999999, 0.11604095563139932, 0.12969283276450511, 0.09556313993174062, 0.034129692832764506, 0.48464163822525597, 0.034129692832764506, 0.030716723549488054, 0.037542662116040959, 0.027303754266211604, 0.0068259385665529011, 0.0034129692832764505, 0.72727272727272729, 0.37336814621409919, 0.045691906005221931, 0.057441253263707574, 0.2297650130548303, 0.014360313315926894, 0.12532637075718014, 0.13968668407310705, 0.011749347258485639, 0.0013054830287206266, 0.76923076923076927, 0.31578947368421051, 0.10526315789473684, 0.26315789473684209, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.064981949458483748, 0.28399518652226236, 0.33694344163658241, 0.080625752105896509, 0.12515042117930206, 0.051744885679903728, 0.0084235860409145602, 0.038507821901323708, 0.0084235860409145602, 0.21052631578947367, 0.15789473684210525, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.15789473684210525, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.15789473684210525, 0.18181818181818182, 0.18181818181818182, 0.18181818181818182, 0.090909090909090912, 0.046511627906976744, 0.023255813953488372, 0.046511627906976744, 0.69767441860465118, 0.11627906976744186, 0.090909090909090912, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.053691275167785234, 0.020134228187919462, 0.020134228187919462, 0.0067114093959731542, 0.026845637583892617, 0.0067114093959731542, 0.71140939597315433, 0.15436241610738255, 0.10000000000000001, 0.59999999999999998, 0.11180124223602485, 0.16149068322981366, 0.11801242236024845, 0.11180124223602485, 0.018633540372670808, 0.21739130434782608, 0.18012422360248448, 0.043478260869565216, 0.031055900621118012, 0.0062111801242236021, 0.0062111801242236021, 0.69999999999999996, 0.02197802197802198, 0.065934065934065936, 0.076923076923076927, 0.14285714285714285, 0.032967032967032968, 0.51648351648351654, 0.087912087912087919, 0.01098901098901099, 0.01098901098901099, 0.076923076923076927, 0.23076923076923078, 0.076923076923076927, 0.38461538461538464, 0.17338709677419356, 0.10752688172043011, 0.19354838709677419, 0.098118279569892469, 0.0026881720430107529, 0.061827956989247312, 0.25806451612903225, 0.064516129032258063, 0.038978494623655914, 0.0013440860215053765, 0.0013440860215053765, 0.13286713286713286, 0.087412587412587409, 0.080419580419580416, 0.14568764568764569, 0.01048951048951049, 0.083916083916083919, 0.24825174825174826, 0.15034965034965034, 0.047785547785547784, 0.011655011655011656, 0.32388663967611336, 0.080971659919028341, 0.15384615384615385, 0.17408906882591094, 0.0080971659919028341, 0.1417004048582996, 0.056680161943319839, 0.03643724696356275, 0.016194331983805668, 0.004048582995951417, 0.10000000000000001, 0.20000000000000001, 0.20000000000000001, 0.20000000000000001, 0.16666666666666666, 0.33333333333333331, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.010638297872340425, 0.62234042553191493, 0.013297872340425532, 0.013297872340425532, 0.3271276595744681, 0.0026595744680851063, 0.03125, 0.8125, 0.03125], \"Term\": [\"aarp\", \"aarp\", \"abortion\", \"abortion\", \"abortion\", \"abortion\", \"abortion\", \"abortions\", \"abortions\", \"abortions\", \"absentee\", \"absentee\", \"absentee\", \"absentee\", \"absentee\", \"abu\", \"abu\", \"abu\", \"abu\", \"accidentally\", \"accidentally\", \"accidentally\", \"accidentally\", \"accidentally\", \"accidentally\", \"accidentally\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"actions\", \"actions\", \"actions\", \"actions\", \"actions\", \"actions\", \"actions\", \"actions\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"activities\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"admin\", \"admin\", \"admin\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administrative\", \"administrative\", \"administrative\", \"administrative\", \"administrative\", \"administrative\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adviser\", \"adviser\", \"adviser\", \"adviser\", \"adviser\", \"adviser\", \"adviser\", \"afghanistan\", \"afghanistan\", \"afghanistan\", \"afghanistan\", \"afscme\", \"aft\", \"aft\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"airborne\", \"airborne\", \"airborne\", \"airborne\", \"airplane\", \"alaska\", \"alaska\", \"alaska\", \"albuquerque\", \"albuquerque\", \"albuquerque\", \"albuquerque\", \"alhusainy\", \"allegory\", \"alsadr\", \"altsite\", \"altsite\", \"amdt\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"america\", \"america\", \"america\", \"america\", \"america\", \"america\", \"america\", \"america\", \"america\", \"american\", \"american\", \"american\", \"american\", \"american\", \"american\", \"american\", \"american\", \"american\", \"americanled\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amphibians\", \"amphibians\", \"anchor\", \"anchor\", \"anchor\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ann\", \"ann\", \"ann\", \"ann\", \"ann\", \"ann\", \"announces\", \"announces\", \"announces\", \"anxiety\", \"anxiety\", \"anxiety\", \"anxiety\", \"appealed\", \"appealed\", \"appealed\", \"appealed\", \"applications\", \"applications\", \"applications\", \"applications\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"arabic\", \"arctic\", \"arctic\", \"arctic\", \"arg\", \"arg\", \"arg\", \"arg\", \"arg\", \"arg\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"aristide\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"arnold\", \"arnold\", \"arnold\", \"arnold\", \"arnold\", \"arnold\", \"asap\", \"asap\", \"asap\", \"asap\", \"ashamed\", \"ashamed\", \"ashamed\", \"ashamed\", \"ashamed\", \"asian\", \"asian\", \"asian\", \"asian\", \"asian\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assigned\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"assistance\", \"association\", \"association\", \"association\", \"association\", \"association\", \"association\", \"association\", \"association\", \"association\", \"attached\", \"attached\", \"attached\", \"attached\", \"attached\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"attacks\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"aug\", \"authorize\", \"authorize\", \"authorize\", \"authorize\", \"authorize\", \"auxiliary\", \"auxiliary\", \"auxiliary\", \"auxiliary\", \"auxiliary\", \"awaiting\", \"awaiting\", \"awaiting\", \"awaiting\", \"awaiting\", \"awol\", \"awol\", \"awol\", \"awol\", \"awol\", \"axelrod\", \"axelrod\", \"ayatollah\", \"baathist\", \"background\", \"background\", \"background\", \"background\", \"background\", \"background\", \"background\", \"background\", \"background\", \"background\", \"baghdad\", \"baghdad\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballot\", \"ballots\", \"ballots\", \"ballots\", \"ballots\", \"ballots\", \"ballots\", \"ballots\", \"ban\", \"ban\", \"ban\", \"ban\", \"ban\", \"ban\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bar\", \"bar\", \"bar\", \"bar\", \"bar\", \"bar\", \"bar\", \"bar\", \"basra\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"battalion\", \"beasley\", \"beaten\", \"beaten\", \"beaten\", \"beaten\", \"beaten\", \"beaten\", \"beaten\", \"beaten\", \"beliefs\", \"beliefs\", \"beliefs\", \"beliefs\", \"beliefs\", \"beliefs\", \"believed\", \"believed\", \"believed\", \"believed\", \"believed\", \"believed\", \"believed\", \"believed\", \"believed\", \"berg\", \"berg\", \"berg\", \"berg\", \"berg\", \"berg\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"bill\", \"billion\", \"billion\", \"billion\", \"billion\", \"billion\", \"billion\", \"billion\", \"billion\", \"bills\", \"bills\", \"bills\", \"bills\", \"bills\", \"bills\", \"bin\", \"birth\", \"birth\", \"bishops\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"blackwell\", \"blackwell\", \"blackwell\", \"blackwell\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blitzer\", \"blog\", \"blog\", \"blog\", \"blog\", \"blog\", \"blog\", \"blog\", \"blog\", \"blog\", \"blogger\", \"blogger\", \"blogger\", \"blogger\", \"blogger\", \"blogger\", \"bloggers\", \"bloggers\", \"bloggers\", \"bloggers\", \"bloggers\", \"bloggers\", \"blogging\", \"blogging\", \"blogging\", \"blogging\", \"blogs\", \"blogs\", \"blogs\", \"blogs\", \"blogs\", \"blogs\", \"blogs\", \"blogs\", \"bloomfield\", \"boat\", \"boat\", \"boat\", \"boat\", \"boat\", \"boats\", \"bombings\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"border\", \"border\", \"border\", \"border\", \"border\", \"bounce\", \"bounce\", \"bounce\", \"bounce\", \"bounce\", \"bounce\", \"boundaries\", \"boundaries\", \"boundaries\", \"boundaries\", \"boxblogroll\", \"boxblogroll\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxer\", \"boxfeed_listing\", \"boxfeed_listing\", \"boxfeed_listing\", \"boxrdf_feeds\", \"boxrdf_feeds\", \"bradnickel\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"braun\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brigade\", \"brock\", \"brock\", \"broder\", \"broder\", \"bronze\", \"bronze\", \"broward\", \"broward\", \"bruce\", \"bruce\", \"bruce\", \"bruce\", \"bruce\", \"budget\", \"budget\", \"budget\", \"budget\", \"budget\", \"budget\", \"budget\", \"bug\", \"bug\", \"buh\", \"bumblebums\", \"burden\", \"burden\", \"burden\", \"burns\", \"burns\", \"burns\", \"burns\", \"burns\", \"burns\", \"burns\", \"bush\", \"bush\", \"bush\", \"bush\", \"bush\", \"bush\", \"bush\", \"bush\", \"bush\", \"bushs\", \"bushs\", \"bushs\", \"bushs\", \"bushs\", \"bushs\", \"bushs\", \"bushs\", \"bushsux\", \"bushsux\", \"calculator\", \"calculator\", \"california\", \"california\", \"california\", \"california\", \"california\", \"california\", \"california\", \"california\", \"california\", \"california\", \"calistan\", \"calistan\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"called\", \"camejo\", \"camejo\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"campaign\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"cancer\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidate\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"candidates\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"caps\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"care\", \"carl\", \"carl\", \"carl\", \"carl\", \"carl\", \"carl\", \"carl\", \"carl\", \"carol\", \"carol\", \"carol\", \"carol\", \"carol\", \"carson\", \"carson\", \"carson\", \"carson\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"carter\", \"castro\", \"castro\", \"casualties\", \"casualties\", \"casualties\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholics\", \"catholics\", \"cats\", \"cats\", \"caucuses\", \"caucuses\", \"caucuses\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"caused\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"cells\", \"chalabi\", \"chalabi\", \"chalabi\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challenge\", \"challengers\", \"challengers\", \"challengers\", \"challengers\", \"challengers\", \"chandler\", \"chandler\", \"chandler\", \"chandler\", \"chandler\", \"chandlers\", \"chandlers\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"chapter\", \"chapter\", \"chapter\", \"chapter\", \"chapter\", \"chapter\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charities\", \"charities\", \"charities\", \"charts\", \"charts\", \"charts\", \"chedrcheez\", \"cheney\", \"cheney\", \"cheney\", \"cheney\", \"cheney\", \"cheney\", \"cheney\", \"cheney\", \"childhood\", \"childhood\", \"childhood\", \"childrens\", \"childrens\", \"childrens\", \"childrens\", \"childrens\", \"childrens\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"cia\", \"cia\", \"cia\", \"cia\", \"cia\", \"cia\", \"cia\", \"cia\", \"cias\", \"citizenship\", \"citizenship\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civil\", \"civilian\", \"civilian\", \"clark\", \"clark\", \"clark\", \"clark\", \"clark\", \"clark\", \"clarks\", \"clarks\", \"clarks\", \"clarks\", \"cleric\", \"cnnusa\", \"cnnusa\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coalition\", \"coburn\", \"coburn\", \"coburn\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"coffee\", \"cohen\", \"cohen\", \"cohen\", \"cohen\", \"cohen\", \"cohen\", \"collecting\", \"collecting\", \"collecting\", \"collecting\", \"collecting\", \"colmes\", \"colmes\", \"columns\", \"columns\", \"columns\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"combat\", \"command\", \"command\", \"command\", \"command\", \"command\", \"command\", \"command\", \"command\", \"command\", \"command\", \"commander\", \"commander\", \"commander\", \"commander\", \"commander\", \"commander\", \"commander\", \"commander\", \"commander\", \"commentator\", \"commentator\", \"commentator\", \"committee\", \"committee\", \"committee\", \"committee\", \"committee\", \"committee\", \"committee\", \"committee\", \"communion\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"community\", \"companies\", \"companies\", \"companies\", \"companies\", \"companies\", \"compared\", \"compared\", \"compared\", \"compared\", \"compared\", \"compared\", \"compared\", \"composite\", \"composite\", \"congressman\", \"congressman\", \"congressman\", \"congressman\", \"congressman\", \"congressman\", \"congressman\", \"congressman\", \"conservation\", \"conservation\", \"conservation\", \"conservation\", \"conservation\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservative\", \"conservatives\", \"conservatives\", \"conservatives\", \"conservatives\", \"conservatives\", \"conservatives\", \"conservatives\", \"conservatives\", \"constitution\", \"constitution\", \"constitution\", \"constitution\", \"constitution\", \"constitution\", \"constitution\", \"constitutional\", \"constitutional\", \"constitutional\", \"constitutional\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"contact\", \"conti\", \"continued\", \"continued\", \"continued\", \"continued\", \"continued\", \"continued\", \"continued\", \"continued\", \"continued\", \"contractor\", \"contractor\", \"contractor\", \"contributions\", \"contributions\", \"contributions\", \"contributions\", \"contributions\", \"convention\", \"convention\", \"convention\", \"convention\", \"convention\", \"convention\", \"convention\", \"convention\", \"convention\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"conway\", \"cop\", \"cop\", \"cop\", \"corp\", \"corp\", \"corp\", \"corp\", \"corp\", \"corp\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"costs\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"couldnt\", \"counterinsurgency\", \"counties\", \"counties\", \"counties\", \"counties\", \"counties\", \"counties\", \"counties\", \"counties\", \"counties\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"county\", \"countylevel\", \"countylevel\", \"couples\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"courts\", \"courts\", \"courts\", \"courts\", \"crane\", \"create\", \"create\", \"create\", \"create\", \"create\", \"create\", \"create\", \"create\", \"create\", \"created\", \"created\", \"created\", \"created\", \"created\", \"created\", \"created\", \"created\", \"created\", \"created\", \"credence\", \"credence\", \"credence\", \"credence\", \"cuban\", \"cuban\", \"cuban\", \"cut\", \"cut\", \"cut\", \"cut\", \"cut\", \"cut\", \"cut\", \"cut\", \"cut\", \"cuts\", \"cuts\", \"cuts\", \"cuts\", \"cuts\", \"cuts\", \"dakota\", \"dakota\", \"dakota\", \"dakota\", \"dakota\", \"dakota\", \"dallas\", \"dallas\", \"dallas\", \"dallas\", \"dallas\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"damage\", \"daniel\", \"daniel\", \"daniel\", \"daniel\", \"daniel\", \"daniel\", \"daniel\", \"daniel\", \"danielua\", \"daschle\", \"daschle\", \"daschle\", \"daschle\", \"daschle\", \"daschle\", \"dccc\", \"dccc\", \"dconn\", \"ddel\", \"deadly\", \"deadly\", \"deadly\", \"deadly\", \"deadly\", \"deadly\", \"dean\", \"dean\", \"dean\", \"dean\", \"dean\", \"dean\", \"dean\", \"dean\", \"deans\", \"deans\", \"deans\", \"deans\", \"debate\", \"debate\", \"debate\", \"debate\", \"debate\", \"debate\", \"debate\", \"debate\", \"debate\", \"debates\", \"debates\", \"debates\", \"debates\", \"debates\", \"debates\", \"debates\", \"debates\", \"debunking\", \"deceits\", \"decentralized\", \"decentralized\", \"decentralized\", \"decentralized\", \"decentralized\", \"decentralized\", \"declassified\", \"decorated\", \"decorated\", \"deficit\", \"deficit\", \"deficit\", \"deficit\", \"deficit\", \"deficits\", \"deficits\", \"deficits\", \"degree\", \"degree\", \"degree\", \"degree\", \"degree\", \"degree\", \"degree\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"degrees\", \"delay\", \"delay\", \"delay\", \"delay\", \"delay\", \"delay\", \"delay\", \"delay\", \"delay\", \"demint\", \"demint\", \"demint\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democrat\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democratic\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"democrats\", \"departure\", \"departure\", \"departure\", \"departure\", \"departure\", \"departure\", \"depending\", \"depending\", \"depending\", \"depending\", \"depending\", \"depending\", \"depending\", \"depression\", \"depression\", \"depression\", \"depression\", \"dept\", \"dept\", \"dept\", \"dept\", \"devine\", \"dfa\", \"dfa\", \"dictator\", \"diedrich\", \"diedrich\", \"diedrich\", \"diedrich\", \"disapprove\", \"disapprove\", \"discovery\", \"discovery\", \"discovery\", \"discrimination\", \"discrimination\", \"discrimination\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disenfranchise\", \"disenfranchise\", \"disenfranchise\", \"disenfranchise\", \"distorted\", \"distorted\", \"distorted\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"district\", \"ditka\", \"ditka\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"dkos\", \"dkos\", \"dkos\", \"dkos\", \"dkos\", \"dkos\", \"dkos\", \"dkos\", \"dkosopedia\", \"dkosopedia\", \"dkosopedia\", \"dkosopedia\", \"dkosopedia\", \"dkosopedia\", \"dlc\", \"dlc\", \"dlc\", \"dlc\", \"dlc\", \"dna\", \"dna\", \"dna\", \"dna\", \"dna\", \"dna\", \"dna\", \"dna\", \"dna\", \"dncc\", \"dncc\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"documentary\", \"documentary\", \"documentary\", \"donors\", \"donors\", \"donors\", \"donors\", \"donors\", \"downer\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"drake\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"dreier\", \"drills\", \"dryfly\", \"dryfly\", \"dscc\", \"dscc\", \"dscc\", \"dscc\", \"dscc\", \"dscc\", \"dubuque\", \"dubuque\", \"duderino\", \"duderino\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"earle\", \"ears\", \"ears\", \"ears\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"economic\", \"economic\", \"economic\", \"economic\", \"economic\", \"economic\", \"economic\", \"economic\", \"economic\", \"economics\", \"economics\", \"economists\", \"economists\", \"economy\", \"economy\", \"economy\", \"economy\", \"economy\", \"economy\", \"economy\", \"economy\", \"economy\", \"edit\", \"edit\", \"edit\", \"edit\", \"edit\", \"edwards\", \"edwards\", \"edwards\", \"edwards\", \"edwards\", \"edwards\", \"edwards\", \"edwards\", \"egon\", \"eisenhower\", \"eisenhower\", \"eisenhower\", \"eisenhower\", \"eisenhower\", \"eisenhower\", \"electability\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"elections\", \"elections\", \"elections\", \"elections\", \"elections\", \"elections\", \"elections\", \"elections\", \"elections\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"electoral\", \"elite\", \"elite\", \"elite\", \"elite\", \"elite\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"emilys\", \"eminem\", \"eminem\", \"eminem\", \"emissions\", \"emissions\", \"empire\", \"empire\", \"empire\", \"empire\", \"employers\", \"employers\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"ends\", \"endspan\", \"endspan\", \"enemy\", \"enemy\", \"enemy\", \"enemy\", \"enemy\", \"enemy\", \"enemy\", \"energy\", \"energy\", \"energy\", \"energy\", \"energy\", \"energy\", \"energy\", \"energy\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"environmental\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethic\", \"ethically\", \"ethically\", \"ethically\", \"ethically\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"excerpt\", \"excerpt\", \"excerpt\", \"excerpt\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"exemplary\", \"experience\", \"experience\", \"experience\", \"experience\", \"experience\", \"experience\", \"experience\", \"experience\", \"experience\", \"exposure\", \"exposure\", \"exposure\", \"extremely\", \"extremely\", \"extremely\", \"extremely\", \"extremely\", \"extremely\", \"fahrenheit\", \"fahrenheit\", \"fahrenheit\", \"fahrenheit\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"fallujah\", \"familys\", \"familys\", \"familys\", \"familys\", \"familys\", \"familys\", \"faq\", \"faq\", \"faq\", \"faq\", \"farmers\", \"farmers\", \"farmers\", \"farmers\", \"favorableunfavorable\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"feith\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"field\", \"fields\", \"fields\", \"fields\", \"fields\", \"fields\", \"fields\", \"fighters\", \"fighters\", \"fighters\", \"fighters\", \"fighters\", \"fighters\", \"fighters\", \"fighters\", \"film\", \"film\", \"film\", \"film\", \"film\", \"film\", \"films\", \"films\", \"films\", \"films\", \"fineman\", \"fineman\", \"fingers\", \"fingers\", \"fingers\", \"fingers\", \"fingers\", \"fiscal\", \"fiscal\", \"fiscal\", \"fiscal\", \"fiscal\", \"fishing\", \"fishing\", \"fishing\", \"fishing\", \"fled\", \"fled\", \"fled\", \"flipflopper\", \"flipflopper\", \"florida\", \"florida\", \"florida\", \"florida\", \"florida\", \"florida\", \"florida\", \"florida\", \"florida\", \"flypaper\", \"fma\", \"fma\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"formation\", \"formation\", \"formation\", \"formation\", \"formation\", \"forms\", \"forms\", \"forms\", \"forms\", \"forms\", \"found\", \"found\", \"found\", \"found\", \"found\", \"found\", \"found\", \"found\", \"found\", \"found\", \"foundations\", \"foundations\", \"foundations\", \"franken\", \"franken\", \"franken\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"fraud\", \"freedoms\", \"freedoms\", \"freeper\", \"freeper\", \"freeper\", \"freeper\", \"freeway\", \"freeway\", \"french\", \"french\", \"french\", \"french\", \"french\", \"french\", \"french\", \"french\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"friday\", \"frost\", \"frost\", \"frost\", \"frost\", \"frost\", \"frost\", \"frost\", \"frost\", \"frost\", \"fubar\", \"full\", \"full\", \"full\", \"full\", \"full\", \"full\", \"full\", \"full\", \"full\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"fundraising\", \"fundraising\", \"fundraising\", \"fundraising\", \"fundraising\", \"fundraising\", \"fundraising\", \"furiousxgeorge\", \"gag\", \"gag\", \"gag\", \"gallup\", \"gallup\", \"gallup\", \"gallup\", \"gallup\", \"gas\", \"gas\", \"gas\", \"gas\", \"gas\", \"gatana\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gdp\", \"gdp\", \"gdp\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gehlen\", \"gen\", \"gen\", \"gen\", \"gen\", \"gen\", \"gen\", \"gen\", \"gen\", \"gen\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"generation\", \"genuinely\", \"genuinely\", \"genuinely\", \"genuinely\", \"genuinely\", \"genuinely\", \"george\", \"george\", \"george\", \"george\", \"george\", \"george\", \"george\", \"george\", \"gep\", \"gep\", \"gephardt\", \"gephardt\", \"gephardt\", \"gephardt\", \"gephardt\", \"geps\", \"gerlach\", \"ghraib\", \"ghraib\", \"ghraib\", \"ghraib\", \"ghraib\", \"ginny\", \"ginny\", \"ginny\", \"girly\", \"girly\", \"girly\", \"glass\", \"glass\", \"glass\", \"glass\", \"gold\", \"gold\", \"gold\", \"gold\", \"gold\", \"gold\", \"golf\", \"golf\", \"golf\", \"golf\", \"golf\", \"googlebomb\", \"googlebomb\", \"googlebomb\", \"gop\", \"gop\", \"gop\", \"gop\", \"gop\", \"gop\", \"gop\", \"gop\", \"gop\", \"gotcha\", \"gotv\", \"gotv\", \"gotv\", \"gotv\", \"gotv\", \"gotv\", \"gotv\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"governor\", \"governor\", \"governor\", \"governor\", \"governor\", \"governor\", \"governor\", \"governor\", \"governor\", \"governorship\", \"governorship\", \"governorship\", \"granholm\", \"granholm\", \"granholm\", \"graph\", \"graph\", \"graph\", \"graph\", \"gray\", \"gray\", \"gray\", \"green\", \"green\", \"green\", \"green\", \"green\", \"green\", \"green\", \"green\", \"grief\", \"grief\", \"grief\", \"growth\", \"growth\", \"growth\", \"growth\", \"growth\", \"growth\", \"growth\", \"growth\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guard\", \"guests\", \"guests\", \"guests\", \"guests\", \"guests\", \"guys\", \"guys\", \"guys\", \"guys\", \"guys\", \"guys\", \"guys\", \"guys\", \"halfway\", \"halfway\", \"halfway\", \"halfway\", \"halfway\", \"hampshire\", \"hampshire\", \"hampshire\", \"hampshire\", \"hampshire\", \"hampshire\", \"hampshire\", \"hampshire\", \"handily\", \"handily\", \"handily\", \"hardball\", \"hardball\", \"hardball\", \"hardcore\", \"hardcore\", \"hardcore\", \"hardcore\", \"hardcore\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harris\", \"harts\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"heard\", \"hecht\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"held\", \"herseth\", \"herseth\", \"herseth\", \"herseths\", \"hip\", \"hip\", \"hip\", \"hispanic\", \"hispanic\", \"hispanic\", \"hispanic\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"homepage\", \"homepage\", \"homepage\", \"homepage\", \"homepage\", \"homepage\", \"homepage\", \"homepage\", \"honorably\", \"honorably\", \"hoodies\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"howard\", \"howard\", \"howard\", \"howard\", \"howard\", \"howard\", \"howard\", \"howard\", \"hstewart\", \"html\", \"html\", \"html\", \"hughes\", \"hughes\", \"hughes\", \"humphreys\", \"humphreys\", \"hussein\", \"hussein\", \"hussein\", \"hussein\", \"iaea\", \"ice\", \"ice\", \"ice\", \"ice\", \"ice\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"ideals\", \"identification\", \"identification\", \"identification\", \"identifying\", \"identifying\", \"identifying\", \"identifying\", \"identifying\", \"identifying\", \"ideologues\", \"ideologues\", \"ideologues\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"ill\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"illinois\", \"implication\", \"implication\", \"implication\", \"implication\", \"implication\", \"inching\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"inclined\", \"included\", \"included\", \"included\", \"included\", \"included\", \"included\", \"included\", \"included\", \"income\", \"income\", \"income\", \"income\", \"income\", \"incomes\", \"industries\", \"industries\", \"industries\", \"industry\", \"industry\", \"industry\", \"industry\", \"industry\", \"industry\", \"industry\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"indymedia\", \"inez\", \"inflation\", \"inflation\", \"inflation\", \"insurance\", \"insurance\", \"insurance\", \"insurgency\", \"insurgents\", \"insurgents\", \"insurgents\", \"insurgents\", \"intelligence\", \"intelligence\", \"intelligence\", \"intelligence\", \"intelligence\", \"intelligence\", \"interests\", \"interests\", \"interests\", \"interests\", \"interests\", \"interests\", \"interests\", \"interests\", \"interests\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"internet\", \"interrogation\", \"invented\", \"invented\", \"invented\", \"invented\", \"invented\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investors\", \"investors\", \"investors\", \"investors\", \"iowa\", \"iowa\", \"iowa\", \"iowa\", \"iowa\", \"iowa\", \"iowa\", \"iraq\", \"iraq\", \"iraq\", \"iraq\", \"iraq\", \"iraq\", \"iraq\", \"iraqi\", \"iraqi\", \"iraqi\", \"iraqi\", \"iraqi\", \"iraqis\", \"iraqis\", \"iraqis\", \"iraqis\", \"iraqis\", \"iraqis\", \"israel\", \"israel\", \"israel\", \"israel\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issued\", \"issues\", \"issues\", \"issues\", \"issues\", \"issues\", \"issues\", \"issues\", \"issues\", \"issues\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"ive\", \"iyad\", \"james\", \"james\", \"james\", \"james\", \"james\", \"james\", \"james\", \"james\", \"james\", \"james\", \"janeane\", \"janeane\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklow\", \"janklows\", \"janklows\", \"janklows\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"jenna\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jim\", \"jim\", \"jim\", \"jim\", \"jim\", \"jim\", \"jim\", \"jim\", \"jim\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"journalists\", \"journalists\", \"journalists\", \"journalists\", \"journalists\", \"journalists\", \"juan\", \"juan\", \"juan\", \"juan\", \"juan\", \"juan\", \"juan\", \"judges\", \"judges\", \"judges\", \"juppon\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"jury\", \"justices\", \"justices\", \"justices\", \"justified\", \"justified\", \"justified\", \"karen\", \"karen\", \"karen\", \"karen\", \"katerina\", \"katherine\", \"katherine\", \"katherine\", \"katherine\", \"katherine\", \"keever\", \"kerr\", \"kerr\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerry\", \"kerrys\", \"kerrys\", \"kerrys\", \"kerrys\", \"kerrys\", \"kerrys\", \"kerrys\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"kimmitt\", \"kimmitt\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"kingelection\", \"knowles\", \"knowles\", \"knowles\", \"kroll\", \"kucinich\", \"kucinich\", \"kucinich\", \"kucinich\", \"kufa\", \"kurtz\", \"kurtz\", \"kurtz\", \"kurtz\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"labor\", \"laden\", \"laden\", \"laden\", \"ladies\", \"ladies\", \"ladies\", \"ladies\", \"ladies\", \"lai\", \"lai\", \"lai\", \"landing\", \"landing\", \"landing\", \"landing\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latest\", \"latif\", \"latif\", \"latif\", \"latif\", \"latif\", \"latif\", \"latif\", \"latif\", \"latif\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawn\", \"lawsuit\", \"lawsuit\", \"lawsuit\", \"lawsuit\", \"lawsuit\", \"lawsuit\", \"lawsuit\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawsuits\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"lawyer\", \"layoffs\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"lead\", \"leads\", \"leads\", \"leads\", \"leads\", \"leads\", \"leads\", \"leads\", \"leads\", \"leads\", \"league\", \"league\", \"league\", \"league\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"lehane\", \"liars\", \"liars\", \"liars\", \"liars\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberal\", \"liberalrakkasan\", \"liberated\", \"liberated\", \"liberties\", \"liberties\", \"liberties\", \"liberties\", \"licenses\", \"licenses\", \"lieb\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"liebeck\", \"lieberman\", \"lieberman\", \"lieberman\", \"lieberman\", \"lieutenant\", \"lieutenant\", \"lieutenant\", \"lieutenant\", \"lieutenant\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"limbaugh\", \"limbaugh\", \"limbaugh\", \"limbaugh\", \"limbaugh\", \"lineup\", \"lineup\", \"lineup\", \"lineup\", \"lineup\", \"lists\", \"lists\", \"lists\", \"lists\", \"lists\", \"lists\", \"lists\", \"load\", \"load\", \"load\", \"login\", \"login\", \"login\", \"login\", \"lois\", \"lois\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"luaptifer\", \"lud\", \"luntz\", \"luntz\", \"lzmd\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machines\", \"machines\", \"machines\", \"machines\", \"machines\", \"machines\", \"mad\", \"mad\", \"mad\", \"mad\", \"mad\", \"mad\", \"mad\", \"maj\", \"maj\", \"maj\", \"majette\", \"major\", \"major\", \"major\", \"major\", \"major\", \"major\", \"major\", \"major\", \"major\", \"major\", \"mall\", \"mall\", \"mall\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"management\", \"management\", \"management\", \"management\", \"management\", \"management\", \"management\", \"manufacturers\", \"manufacturers\", \"manufacturing\", \"manufacturing\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marine\", \"marines\", \"marines\", \"marines\", \"marines\", \"marines\", \"marines\", \"marines\", \"marines\", \"marines\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marked\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriages\", \"marry\", \"marry\", \"mars\", \"mars\", \"mars\", \"mars\", \"mars\", \"mars\", \"mars\", \"mars\", \"mars\", \"martinez\", \"martinez\", \"martinez\", \"martinez\", \"matched\", \"matched\", \"matched\", \"matched\", \"matched\", \"matched\", \"matched\", \"materiel\", \"matrix\", \"matrix\", \"matrix\", \"matsunaka\", \"matsunaka\", \"matsunaka\", \"matthews\", \"maximumken\", \"mcauliffe\", \"mcauliffe\", \"mcauliffe\", \"mcauliffe\", \"mcauliffe\", \"mccain\", \"mccain\", \"mccain\", \"mccain\", \"mccain\", \"mccain\", \"mccain\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcdonalds\", \"mcmahon\", \"mcmahon\", \"mcmahon\", \"mcmahon\", \"medal\", \"medal\", \"medal\", \"medal\", \"medals\", \"medals\", \"media\", \"media\", \"media\", \"media\", \"media\", \"media\", \"media\", \"media\", \"media\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"medicare\", \"meetup\", \"meetup\", \"meetup\", \"meetup\", \"meetup\", \"mehlman\", \"mehlman\", \"mel\", \"mel\", \"mel\", \"memorial\", \"memorial\", \"memorial\", \"memorial\", \"memorial\", \"memorial\", \"memorial\", \"memorial\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"men\", \"message\", \"message\", \"message\", \"message\", \"message\", \"message\", \"message\", \"message\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meteor\", \"meter\", \"meter\", \"meter\", \"meter\", \"meter\", \"mice\", \"mice\", \"mice\", \"mice\", \"michael\", \"michael\", \"michael\", \"michael\", \"michael\", \"michael\", \"michael\", \"michael\", \"michael\", \"militant\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"militiamen\", \"millers\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"million\", \"minister\", \"minister\", \"minister\", \"minister\", \"minister\", \"minister\", \"minister\", \"ministries\", \"minus\", \"minus\", \"minus\", \"minus\", \"minus\", \"minus\", \"minus\", \"mirror\", \"mirror\", \"mirror\", \"mirror\", \"mirror\", \"missiles\", \"misterajc\", \"mitakides\", \"monetary\", \"monetary\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"monkeys\", \"montclair\", \"montclair\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moores\", \"moores\", \"moores\", \"moores\", \"moqtada\", \"morrison\", \"morrison\", \"morrison\", \"morrison\", \"morrison\", \"moseley\", \"mosen\", \"mosul\", \"mosul\", \"mosul\", \"motivations\", \"motivations\", \"motivations\", \"mouse\", \"mouse\", \"movements\", \"movements\", \"movements\", \"movements\", \"movements\", \"movements\", \"movie\", \"movie\", \"movie\", \"movie\", \"movie\", \"movie\", \"movies\", \"movies\", \"movies\", \"multinational\", \"murdoch\", \"murdoch\", \"murdoch\", \"murkowski\", \"murkowski\", \"murphy\", \"murphy\", \"murphy\", \"murphy\", \"murphys\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"myers\", \"nader\", \"nader\", \"nader\", \"nader\", \"nader\", \"nader\", \"nader\", \"nader\", \"nader\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"naders\", \"nagourney\", \"nagourney\", \"najaf\", \"national\", \"national\", \"national\", \"national\", \"national\", \"national\", \"national\", \"national\", \"national\", \"national\", \"nazi\", \"nazi\", \"nazi\", \"nazi\", \"nazi\", \"nazis\", \"nazis\", \"nazis\", \"nazis\", \"nazis\", \"nazis\", \"neighbor\", \"neighbor\", \"neighbor\", \"neighbor\", \"neighbor\", \"neocon\", \"nevada\", \"nevada\", \"nevada\", \"nevada\", \"nevada\", \"nevada\", \"nevada\", \"news\", \"news\", \"news\", \"news\", \"news\", \"news\", \"news\", \"news\", \"news\", \"news\", \"newwindow\", \"newwindow\", \"night\", \"night\", \"night\", \"night\", \"night\", \"night\", \"night\", \"night\", \"night\", \"northup\", \"november\", \"november\", \"november\", \"november\", \"november\", \"november\", \"november\", \"november\", \"november\", \"nprigo\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"numbers\", \"occasionally\", \"occasionally\", \"occasionally\", \"occasionally\", \"occasionally\", \"occasionally\", \"occasionally\", \"occupation\", \"occupation\", \"occupation\", \"occupying\", \"ocean\", \"ocean\", \"ocean\", \"ocean\", \"ocean\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oceana\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oconnor\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"oct\", \"october\", \"october\", \"october\", \"october\", \"october\", \"october\", \"october\", \"october\", \"offered\", \"offered\", \"offered\", \"offered\", \"offered\", \"offered\", \"offered\", \"offered\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"official\", \"officials\", \"officials\", \"officials\", \"officials\", \"officials\", \"officials\", \"officials\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"ohio\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oklahoma\", \"oklahoma\", \"oklahoma\", \"olbermann\", \"olbermann\", \"olbermann\", \"omb\", \"online\", \"online\", \"online\", \"online\", \"online\", \"online\", \"online\", \"online\", \"openhttpwwwedwardsforprezcomdailykoshtml\", \"openhttpwwwedwardsforprezcomdailykoshtml\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"opponents\", \"oppose\", \"oppose\", \"oppose\", \"oppose\", \"oppose\", \"opted\", \"opted\", \"opted\", \"opted\", \"opted\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"order\", \"oregon\", \"oregon\", \"oregon\", \"oregon\", \"oregon\", \"oregon\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"oreilly\", \"orleans\", \"orleans\", \"orleans\", \"osama\", \"osama\", \"osama\", \"osama\", \"osama\", \"ourcongressorg\", \"ourcongressorg\", \"ourcongressorg\", \"output\", \"output\", \"outraised\", \"outreach\", \"outreach\", \"outreach\", \"outreach\", \"overt\", \"overt\", \"overt\", \"overt\", \"owners\", \"owners\", \"owners\", \"owners\", \"owners\", \"owners\", \"pacs\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"palestinian\", \"palestinian\", \"palestinians\", \"parecommend\", \"parecommend\", \"parentheses\", \"parenthesis\", \"parenthesis\", \"parenthesis\", \"parenthesis\", \"participated\", \"participated\", \"participated\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"passion\", \"passion\", \"passion\", \"passion\", \"passion\", \"passion\", \"passion\", \"passion\", \"passion\", \"password\", \"password\", \"password\", \"password\", \"payroll\", \"payroll\", \"payroll\", \"pentagon\", \"pentagon\", \"pentagon\", \"pentagon\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"persian\", \"persian\", \"persian\", \"persuaded\", \"persuaded\", \"persuaded\", \"persuaded\", \"persuaded\", \"persuaded\", \"persuaded\", \"persuasive\", \"pete\", \"pete\", \"pete\", \"pete\", \"pete\", \"pete\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petition\", \"petitions\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petraeus\", \"petroleum\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"philadelphia\", \"phrase\", \"phrase\", \"phrase\", \"phrase\", \"phrase\", \"phrase\", \"picks\", \"picks\", \"picks\", \"picks\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"plan\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"police\", \"political\", \"political\", \"political\", \"political\", \"political\", \"political\", \"political\", \"political\", \"political\", \"political\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"politics\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"poll\", \"polling\", \"polling\", \"polling\", \"polling\", \"polling\", \"polling\", \"polling\", \"polling\", \"polling\", \"polls\", \"polls\", \"polls\", \"polls\", \"polls\", \"polls\", \"polls\", \"polls\", \"polls\", \"pollsters\", \"pollsters\", \"pollsters\", \"positions\", \"positions\", \"positions\", \"positions\", \"positions\", \"positions\", \"positions\", \"positions\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"powered\", \"powered\", \"powered\", \"precinct\", \"precinct\", \"precinct\", \"precinct\", \"precinct\", \"predebate\", \"predebate\", \"preferences\", \"preferences\", \"preferences\", \"prescription\", \"prescription\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"presidential\", \"presidential\", \"presidential\", \"presidential\", \"presidential\", \"presidential\", \"presidential\", \"presidential\", \"press\", \"press\", \"press\", \"press\", \"press\", \"press\", \"press\", \"press\", \"press\", \"prices\", \"prices\", \"prices\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primetime\", \"primetime\", \"programming\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"propose\", \"propose\", \"propose\", \"propose\", \"prostate\", \"pst\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"punkmonk\", \"qaeda\", \"qaeda\", \"qaeda\", \"questionable\", \"questionable\", \"questionable\", \"questionable\", \"questionable\", \"questionable\", \"quinnipiac\", \"quinnipiac\", \"race\", \"race\", \"race\", \"race\", \"race\", \"race\", \"race\", \"race\", \"races\", \"races\", \"races\", \"races\", \"races\", \"races\", \"races\", \"races\", \"racial\", \"racial\", \"racicot\", \"racine\", \"racine\", \"rack\", \"rack\", \"rack\", \"rack\", \"rad\", \"radio\", \"radio\", \"radio\", \"radio\", \"radio\", \"radio\", \"radio\", \"radio\", \"radio\", \"raised\", \"raised\", \"raised\", \"raised\", \"raised\", \"raised\", \"raised\", \"raised\", \"ralph\", \"ralph\", \"ralph\", \"ralph\", \"ralph\", \"ralph\", \"ralph\", \"ralph\", \"ramsey\", \"ramsey\", \"rasmussen\", \"rasmussen\", \"rasmussen\", \"rasmussen\", \"rasmussen\", \"rasmussen\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rcalif\", \"rcalif\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reading\", \"reagan\", \"reagan\", \"reagan\", \"reagan\", \"reagan\", \"reagan\", \"reagan\", \"reagans\", \"reagans\", \"reagans\", \"reagans\", \"reagans\", \"reagans\", \"reagans\", \"reagans\", \"realities\", \"realities\", \"realities\", \"realities\", \"realities\", \"realities\", \"recession\", \"recession\", \"recognizing\", \"recognizing\", \"recognizing\", \"records\", \"records\", \"records\", \"records\", \"records\", \"records\", \"recruit\", \"recruit\", \"recruit\", \"recruit\", \"recruit\", \"reef\", \"reef\", \"reef\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"registered\", \"registered\", \"registered\", \"registered\", \"registered\", \"registered\", \"registered\", \"registered\", \"registered\", \"registrants\", \"registrants\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registration\", \"registrations\", \"registrations\", \"registrations\", \"rep\", \"rep\", \"rep\", \"rep\", \"rep\", \"rep\", \"rep\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"report\", \"reproductive\", \"reproductive\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republican\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicansforkerry\", \"republicansforkerry\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"researchers\", \"responders\", \"responders\", \"responsibilities\", \"responsibilities\", \"responsibilities\", \"responsibilities\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"responsibility\", \"restaurant\", \"restaurant\", \"restaurant\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"results\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retiring\", \"rewards\", \"rewards\", \"rewards\", \"rewards\", \"rewards\", \"rhode\", \"rhode\", \"rhode\", \"rhode\", \"ribbons\", \"ridge\", \"ridge\", \"ridge\", \"ridge\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rkan\", \"roads\", \"roads\", \"roads\", \"roads\", \"roads\", \"robinson\", \"robinson\", \"robinson\", \"robinson\", \"robots\", \"robots\", \"romero\", \"romero\", \"romero\", \"roosevelt\", \"roosevelt\", \"roosevelt\", \"roosevelt\", \"roosevelt\", \"roosevelt\", \"rude\", \"rude\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rumsfeld\", \"rumsfeld\", \"rumsfeld\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"ruy\", \"sacrifice\", \"sacrifice\", \"sacrifice\", \"sacrifice\", \"sacrifice\", \"sacrifice\", \"saddam\", \"saddam\", \"saddam\", \"saddam\", \"saddam\", \"saddam\", \"saddam\", \"sadr\", \"sadr\", \"sadrs\", \"sahni\", \"salazar\", \"salazar\", \"salazar\", \"salazar\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"saleh\", \"salon\", \"salon\", \"salon\", \"salon\", \"salon\", \"salon\", \"salon\", \"samesex\", \"samesex\", \"schrader\", \"schwarz\", \"schwarzenegger\", \"schwarzenegger\", \"schwarzenegger\", \"schwarzenegger\", \"schwarzenegger\", \"schwarzenegger\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientific\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scientists\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scoop\", \"scooter\", \"scoring\", \"scoring\", \"scoring\", \"scoring\", \"scoring\", \"searches\", \"searches\", \"searches\", \"searches\", \"seat\", \"seat\", \"seat\", \"seat\", \"seat\", \"seat\", \"seats\", \"seats\", \"seats\", \"seats\", \"secondplace\", \"secretaries\", \"secretaries\", \"secrets\", \"secrets\", \"secrets\", \"secrets\", \"secrets\", \"secrets\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"seemann\", \"seemann\", \"seemann\", \"seized\", \"seized\", \"seized\", \"seized\", \"seized\", \"sen\", \"sen\", \"sen\", \"sen\", \"sen\", \"sen\", \"sen\", \"sen\", \"senate\", \"senate\", \"senate\", \"senate\", \"senate\", \"senate\", \"senate\", \"senate\", \"senate\", \"senategovernors\", \"senator\", \"senator\", \"senator\", \"senator\", \"senator\", \"senator\", \"senator\", \"sens\", \"sens\", \"sens\", \"sens\", \"sens\", \"sentiments\", \"sentiments\", \"sentiments\", \"sentiments\", \"sentiments\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"service\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"sessions\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"settlements\", \"shaped\", \"shaped\", \"shaped\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shark\", \"shark\", \"shark\", \"sharks\", \"sharks\", \"sharks\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharon\", \"sharpton\", \"sharpton\", \"sharpton\", \"sharpton\", \"shia\", \"shiite\", \"shiites\", \"shooting\", \"shooting\", \"shooting\", \"shooting\", \"shooting\", \"shoulder\", \"shoulder\", \"shoulder\", \"shoulder\", \"shoulder\", \"shrine\", \"signals\", \"signals\", \"signals\", \"signals\", \"signals\", \"signals\", \"signals\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signatures\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"signs\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"similar\", \"sinclair\", \"sinclair\", \"sinclair\", \"sinclair\", \"sinclair\", \"sinclair\", \"skin\", \"skin\", \"skin\", \"skin\", \"skin\", \"skin\", \"slap\", \"slap\", \"slap\", \"slap\", \"slap\", \"slap\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"social\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"soros\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"specialist\", \"species\", \"species\", \"species\", \"species\", \"species\", \"species\", \"species\", \"species\", \"species\", \"species\", \"specter\", \"specter\", \"specter\", \"specter\", \"specter\", \"spectrum\", \"spectrum\", \"spectrum\", \"spectrum\", \"spectrum\", \"spectrum\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"speech\", \"spending\", \"spending\", \"spending\", \"spending\", \"spending\", \"spending\", \"spending\", \"spending\", \"splice\", \"splice\", \"spoken\", \"spoken\", \"spoken\", \"spoken\", \"spoken\", \"sproul\", \"sproul\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"staff\", \"stage\", \"stage\", \"stage\", \"stage\", \"stage\", \"stage\", \"stage\", \"stage\", \"stagflation\", \"startspan\", \"startspan\", \"startspan\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"states\", \"states\", \"states\", \"states\", \"states\", \"states\", \"states\", \"states\", \"states\", \"stealing\", \"stealing\", \"stealing\", \"stealing\", \"stealing\", \"steel\", \"steel\", \"steel\", \"steinhardt\", \"steinhardt\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stella\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stem\", \"stemcell\", \"stemcell\", \"stonewalling\", \"storks\", \"stretching\", \"stretching\", \"stretching\", \"stretching\", \"stretching\", \"strongholds\", \"strongholds\", \"strongholds\", \"strongholds\", \"strongholds\", \"studies\", \"studies\", \"studies\", \"studies\", \"studies\", \"studies\", \"studies\", \"studies\", \"studies\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"subjects\", \"subjects\", \"subjects\", \"subjects\", \"subjects\", \"sum\", \"sum\", \"sum\", \"sum\", \"sum\", \"sum\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"sunni\", \"sunzoo\", \"sunzoo\", \"sunzoo\", \"supervisors\", \"supervisors\", \"supervisors\", \"supervisors\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"supreme\", \"supreme\", \"supreme\", \"supreme\", \"supreme\", \"supreme\", \"supreme\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surveyusa\", \"surveyusa\", \"susa\", \"susa\", \"susa\", \"susa\", \"susa\", \"susas\", \"susas\", \"swift\", \"swift\", \"swift\", \"swift\", \"sympathetic\", \"sympathetic\", \"sympathetic\", \"sympathetic\", \"sympathetic\", \"syria\", \"talent\", \"talent\", \"tapped\", \"tapped\", \"tapped\", \"tapped\", \"tapped\", \"tapped\", \"tariffs\", \"tariffs\", \"tariffs\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"taxes\", \"taxes\", \"taxes\", \"taxes\", \"taxes\", \"taxes\", \"taxes\", \"taxes\", \"taxpayers\", \"taxpayers\", \"taxpayers\", \"taxpayers\", \"taxpayers\", \"teleprompter\", \"teleprompter\", \"terrorism\", \"terrorism\", \"terrorism\", \"terrorism\", \"terrorism\", \"terrorism\", \"terrorism\", \"terrorists\", \"terrorists\", \"terrorists\", \"terrorists\", \"terrorists\", \"terrorists\", \"terrorists\", \"terrorists\", \"theaters\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"thirdplace\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thurlow\", \"thurlow\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"timken\", \"timken\", \"tipp\", \"tips\", \"tips\", \"tips\", \"tips\", \"tips\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"tom\", \"tom\", \"tom\", \"tom\", \"tom\", \"tom\", \"tom\", \"tom\", \"toomey\", \"toomey\", \"toomey\", \"toomey\", \"toomey\", \"toomeys\", \"torture\", \"torture\", \"torture\", \"torture\", \"tracking\", \"tracking\", \"tracking\", \"tracking\", \"tracking\", \"tracking\", \"tracking\", \"tracking\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"traffic\", \"transition\", \"transition\", \"transition\", \"transition\", \"transition\", \"transition\", \"transition\", \"transition\", \"trend\", \"trend\", \"trend\", \"trend\", \"trend\", \"trend\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"trial\", \"tribal\", \"tribal\", \"tribal\", \"tribal\", \"trippi\", \"trippi\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troubles\", \"troubles\", \"troubles\", \"troubles\", \"troubles\", \"troubles\", \"troubles\", \"truck\", \"truck\", \"truck\", \"truck\", \"trump\", \"trump\", \"trump\", \"trump\", \"trump\", \"trump\", \"trump\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"tucker\", \"tucker\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"turned\", \"twoparty\", \"twoparty\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"ultimate\", \"uncommitted\", \"uncommitted\", \"undecided\", \"undecided\", \"undecided\", \"undecided\", \"undecided\", \"undecided\", \"underdog\", \"undermine\", \"undermine\", \"undermine\", \"undermine\", \"undermine\", \"unfavorable\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"united\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"uprising\", \"uranium\", \"useless\", \"useless\", \"useless\", \"useless\", \"useless\", \"useless\", \"useless\", \"username\", \"username\", \"username\", \"username\", \"username\", \"usled\", \"utility\", \"vaccines\", \"vaccines\", \"var\", \"var\", \"vault\", \"vault\", \"vault\", \"vermont\", \"vermont\", \"vermont\", \"vermont\", \"vermont\", \"vermont\", \"vermont\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"veterans\", \"vice\", \"vice\", \"vice\", \"vice\", \"vice\", \"vice\", \"vice\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"vietnam\", \"vietnam\", \"vietnam\", \"vietnam\", \"volleyball\", \"volleyball\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"vote\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voter\", \"voters\", \"voters\", \"voters\", \"voters\", \"voters\", \"voters\", \"voters\", \"voters\", \"voters\", \"votes\", \"votes\", \"votes\", \"votes\", \"votes\", \"votes\", \"votes\", \"votes\", \"voting\", \"voting\", \"voting\", \"voting\", \"voting\", \"voting\", \"voting\", \"voting\", \"wages\", \"walmart\", \"walmart\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"wars\", \"wars\", \"wars\", \"wars\", \"wars\", \"wars\", \"wars\", \"wars\", \"wars\", \"watch\", \"watch\", \"watch\", \"watch\", \"watch\", \"watch\", \"watch\", \"watchers\", \"watchers\", \"watchers\", \"watchers\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"weapons\", \"weapons\", \"weapons\", \"weapons\", \"weapons\", \"weapons\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"weber\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"west\", \"wetterling\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"wildlife\", \"williams\", \"williams\", \"williams\", \"williams\", \"williams\", \"williams\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wink\", \"wolf\", \"wolf\", \"wolf\", \"wolf\", \"womens\", \"womens\", \"womens\", \"womens\", \"womens\", \"wood\", \"wood\", \"wood\", \"wood\", \"workers\", \"workers\", \"workers\", \"workers\", \"workers\", \"workers\", \"workers\", \"workers\", \"worship\", \"worship\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"worth\", \"wounding\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"yard\", \"yard\", \"yard\", \"yard\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yesterday\", \"yup\", \"yup\", \"yup\", \"yup\", \"zahn\", \"zahn\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zimbabwe\", \"zogby\", \"zogby\", \"zogby\", \"zogby\", \"zogby\", \"zogby\", \"zogbys\", \"zogbys\", \"zogbys\"]}, \"mdsDat\": {\"y\": [0.08330005178697053, 0.10623098548743848, 0.083769633784718842, 0.098741712490759165, -0.21818803527694017, 0.066051794234657471, 0.085113370067617225, 0.068599513299481302, 0.032516433377038835, -0.035589740676785192, -0.061013110509779554, -0.053985819940893576, -0.046543096871286931, -0.050910046218658279, -0.054574857595797735, -0.052777684138580673, -0.050741103299959456], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [18.03876414187366, 15.587991226639033, 14.458113142204464, 12.404286891232113, 12.126029106748211, 7.8323507577226659, 7.4643820291960745, 6.9119549940757432, 3.5098408345083549, 0.63197350010571984, 0.27156753231834063, 0.21041171350026683, 0.17104757633256173, 0.15141369562479923, 0.10627211802988251, 0.09194654709770167, 0.031654192790417604], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], \"x\": [-0.0069094528274835079, 0.14639277013337026, 0.1028561429536503, 0.060063589518182761, 0.31423281734110203, 0.020207849012548625, 0.013555604402484649, 0.0029974497592708048, 0.039228427246819395, -0.093586776861743104, -0.085900278611403189, -0.091760934510165454, -0.083526411243571991, -0.08537661301195637, -0.084893469914174916, -0.085084459840093399, -0.082496253546836817]}, \"R\": 30, \"lambda.step\": 0.01, \"tinfo\": {\"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\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"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\", \"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\", \"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\", \"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\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\"], \"Term\": [\"november\", \"kerry\", \"dean\", \"general\", \"iraq\", \"bush\", \"edwards\", \"poll\", \"republican\", \"senate\", \"party\", \"clark\", \"account\", \"percent\", \"polls\", \"race\", \"voters\", \"nader\", \"electoral\", \"iraqi\", \"state\", \"primary\", \"voter\", \"republicans\", \"house\", \"election\", \"president\", \"voting\", \"vote\", \"war\", \"militiamen\", \"wounding\", \"counterinsurgency\", \"americanled\", \"basra\", \"syria\", \"occupying\", \"arabic\", \"iyad\", \"multinational\", \"cias\", \"specialist\", \"ministries\", \"ayatollah\", \"baathist\", \"flypaper\", \"alhusainy\", \"militant\", \"stonewalling\", \"scooter\", \"iaea\", \"kufa\", \"moqtada\", \"feith\", \"uranium\", \"declassified\", \"airplane\", \"fubar\", \"shrine\", \"dictator\", \"alsadr\", \"baghdad\", \"bin\", \"najaf\", \"iraqi\", \"insurgency\", \"sunni\", \"laden\", \"usled\", \"abu\", \"shiite\", \"shiites\", \"bombings\", \"shia\", \"cleric\", \"neocon\", \"interrogation\", \"missiles\", \"rumsfeld\", \"pentagon\", \"troops\", \"casualties\", \"iraqis\", \"torture\", \"intelligence\", \"sadr\", \"civilian\", \"insurgents\", \"afghanistan\", \"sadrs\", \"uprising\", \"saddam\", \"occupation\", \"ghraib\", \"iraq\", \"soldiers\", \"hussein\", \"qaeda\", \"chalabi\", \"forces\", \"weapons\", \"osama\", \"killed\", \"military\", \"war\", \"attacks\", \"terrorists\", \"officials\", \"administration\", \"terrorism\", \"american\", \"united\", \"army\", \"security\", \"government\", \"cia\", \"bush\", \"official\", \"people\", \"president\", \"white\", \"report\", \"country\", \"bushs\", \"time\", \"house\", \"news\", \"states\", \"parentheses\", \"inching\", \"thirdplace\", \"persuasive\", \"harts\", \"electability\", \"tipp\", \"lieb\", \"favorableunfavorable\", \"geps\", \"ruy\", \"secondplace\", \"unfavorable\", \"afscme\", \"braun\", \"gep\", \"gephardt\", \"kucinich\", \"quinnipiac\", \"uncommitted\", \"disapprove\", \"clark\", \"lieberman\", \"sharpton\", \"cnnusa\", \"clarks\", \"dubuque\", \"composite\", \"susas\", \"zogbys\", \"dean\", \"caucuses\", \"iowa\", \"parenthesis\", \"edwards\", \"deans\", \"undecided\", \"gallup\", \"arg\", \"results\", \"pollsters\", \"hampshire\", \"bounce\", \"surveyusa\", \"tracking\", \"rasmussen\", \"percent\", \"polling\", \"kerry\", \"leads\", \"poll\", \"primary\", \"voters\", \"susa\", \"numbers\", \"polls\", \"zogby\", \"democratic\", \"bush\", \"trend\", \"presidential\", \"latest\", \"states\", \"race\", \"state\", \"candidates\", \"lead\", \"general\", \"campaign\", \"vote\", \"john\", \"support\", \"election\", \"time\", \"pst\", \"outraised\", \"murphys\", \"wetterling\", \"storks\", \"downer\", \"conti\", \"majette\", \"northup\", \"underdog\", \"mosen\", \"beasley\", \"herseths\", \"toomeys\", \"emilys\", \"mitakides\", \"pacs\", \"crane\", \"earle\", \"gerlach\", \"inez\", \"keever\", \"schrader\", \"murkowski\", \"knowles\", \"lois\", \"humphreys\", \"coburn\", \"retiring\", \"chandlers\", \"dccc\", \"salazar\", \"chandler\", \"seat\", \"herseth\", \"seats\", \"carson\", \"diedrich\", \"toomey\", \"murphy\", \"district\", \"morrison\", \"matsunaka\", \"donors\", \"specter\", \"kerr\", \"ginny\", \"seemann\", \"romero\", \"delay\", \"fundraising\", \"contributions\", \"dscc\", \"demint\", \"alaska\", \"oklahoma\", \"elections\", \"dakota\", \"rep\", \"daschle\", \"race\", \"illinois\", \"senate\", \"money\", \"raised\", \"republican\", \"gop\", \"house\", \"candidate\", \"democrat\", \"candidates\", \"democrats\", \"state\", \"million\", \"races\", \"campaign\", \"democratic\", \"party\", \"committee\", \"republicans\", \"win\", \"election\", \"running\", \"percent\", \"time\", \"primary\", \"poll\", \"bush\", \"devine\", \"drills\", \"ribbons\", \"ddel\", \"boats\", \"dconn\", \"millers\", \"rkan\", \"lehane\", \"jenna\", \"hecht\", \"racicot\", \"matthews\", \"medals\", \"thurlow\", \"nagourney\", \"luntz\", \"secretaries\", \"primetime\", \"flipflopper\", \"volleyball\", \"honorably\", \"hughes\", \"tucker\", \"fineman\", \"mehlman\", \"broder\", \"swift\", \"rcalif\", \"teleprompter\", \"boat\", \"bronze\", \"hardball\", \"guard\", \"sens\", \"awol\", \"cheney\", \"duty\", \"lineup\", \"speech\", \"mccain\", \"kerrys\", \"vietnam\", \"guests\", \"records\", \"karen\", \"veterans\", \"debate\", \"president\", \"liars\", \"service\", \"bush\", \"john\", \"kerry\", \"bushs\", \"adviser\", \"vice\", \"george\", \"draft\", \"campaign\", \"debates\", \"general\", \"senator\", \"truth\", \"news\", \"sen\", \"aug\", \"national\", \"war\", \"press\", \"convention\", \"media\", \"republicans\", \"time\", \"republican\", \"white\", \"people\", \"administration\", \"iraq\", \"oct\", \"house\", \"political\", \"democratic\", \"bumblebums\", \"maximumken\", \"furiousxgeorge\", \"luaptifer\", \"buh\", \"egon\", \"nprigo\", \"lud\", \"hoodies\", \"senategovernors\", \"chedrcheez\", \"danielua\", \"punkmonk\", \"rad\", \"kingelection\", \"allegory\", \"bradnickel\", \"juppon\", \"gatana\", \"katerina\", \"lzmd\", \"misterajc\", \"bloomfield\", \"liberalrakkasan\", \"hstewart\", \"materiel\", \"duderino\", \"parecommend\", \"dryfly\", \"endspan\", \"sunzoo\", \"openhttpwwwedwardsforprezcomdailykoshtml\", \"boxrdf_feeds\", \"newwindow\", \"racine\", \"altsite\", \"republicansforkerry\", \"calculator\", \"bushsux\", \"boxblogroll\", \"montclair\", \"powered\", \"startspan\", \"calistan\", \"boxfeed_listing\", \"var\", \"login\", \"admin\", \"watchers\", \"asap\", \"username\", \"password\", \"faq\", \"ourcongressorg\", \"november\", \"account\", \"function\", \"meter\", \"electoral\", \"contact\", \"governor\", \"dkosopedia\", \"polls\", \"republicans\", \"voting\", \"poll\", \"house\", \"senate\", \"vote\", \"experience\", \"voter\", \"homepage\", \"kerry\", \"bush\", \"scoop\", \"election\", \"general\", \"challenge\", \"challengers\", \"primary\", \"create\", \"democratic\", \"democrats\", \"races\", \"media\", \"deceits\", \"programming\", \"gotcha\", \"debunking\", \"theaters\", \"cats\", \"brock\", \"mouse\", \"janeane\", \"talent\", \"steinhardt\", \"dncc\", \"freeway\", \"bug\", \"mcmahon\", \"film\", \"axelrod\", \"splice\", \"bloggers\", \"charts\", \"load\", \"rude\", \"fahrenheit\", \"mice\", \"html\", \"columns\", \"murdoch\", \"franken\", \"googlebomb\", \"documentary\", \"movie\", \"blogging\", \"blogs\", \"trippi\", \"internet\", \"blog\", \"traffic\", \"meetup\", \"limbaugh\", \"oreilly\", \"server\", \"precinct\", \"moores\", \"radio\", \"online\", \"email\", \"blogger\", \"community\", \"media\", \"reading\", \"journalists\", \"book\", \"writing\", \"guys\", \"sinclair\", \"message\", \"event\", \"ive\", \"people\", \"dkos\", \"ill\", \"time\", \"air\", \"political\", \"america\", \"read\", \"michael\", \"news\", \"tom\", \"liberal\", \"campaign\", \"party\", \"politics\", \"night\", \"long\", \"democratic\", \"election\", \"petroleum\", \"omb\", \"incomes\", \"utility\", \"wildlife\", \"wages\", \"stagflation\", \"layoffs\", \"economists\", \"emissions\", \"recession\", \"timken\", \"manufacturers\", \"output\", \"economics\", \"prices\", \"vaccines\", \"aarp\", \"aft\", \"caps\", \"responders\", \"inflation\", \"gdp\", \"colmes\", \"walmart\", \"industries\", \"manufacturing\", \"income\", \"payroll\", \"employers\", \"deficit\", \"deficits\", \"tariffs\", \"budget\", \"prescription\", \"tax\", \"cuts\", \"billion\", \"jobs\", \"companies\", \"oil\", \"health\", \"steel\", \"workers\", \"economic\", \"energy\", \"spending\", \"gas\", \"medicare\", \"taxes\", \"insurance\", \"costs\", \"industry\", \"growth\", \"cut\", \"fiscal\", \"million\", \"union\", \"federal\", \"care\", \"cost\", \"bush\", \"administration\", \"economy\", \"years\", \"year\", \"labor\", \"plan\", \"job\", \"government\", \"states\", \"percent\", \"president\", \"bushs\", \"house\", \"drake\", \"sahni\", \"communion\", \"amdt\", \"bishops\", \"schwarz\", \"marriages\", \"couples\", \"samesex\", \"catholics\", \"marry\", \"fma\", \"reproductive\", \"castro\", \"birth\", \"worship\", \"catholic\", \"justices\", \"courts\", \"marriage\", \"discrimination\", \"granholm\", \"abortions\", \"constitutional\", \"matrix\", \"licenses\", \"racial\", \"cuban\", \"mall\", \"liberties\", \"amendment\", \"gay\", \"rights\", \"judges\", \"abortion\", \"constitution\", \"ban\", \"court\", \"supreme\", \"civil\", \"oppose\", \"law\", \"dlc\", \"reagans\", \"conservatives\", \"reagan\", \"black\", \"church\", \"womens\", \"conservative\", \"social\", \"legal\", \"party\", \"issue\", \"bill\", \"federal\", \"political\", \"people\", \"republican\", \"issues\", \"american\", \"republicans\", \"president\", \"vote\", \"years\", \"bush\", \"white\", \"states\", \"support\", \"state\", \"democrats\", \"time\", \"politics\", \"petitions\", \"signatures\", \"sproul\", \"camejo\", \"registrants\", \"ramsey\", \"registrations\", \"countylevel\", \"broward\", \"applications\", \"naders\", \"petition\", \"blackwell\", \"outreach\", \"twoparty\", \"identification\", \"eminem\", \"registration\", \"boundaries\", \"supervisors\", \"mel\", \"martinez\", \"disenfranchise\", \"collecting\", \"vault\", \"machines\", \"ballot\", \"forms\", \"appealed\", \"ballots\", \"fraud\", \"counties\", \"absentee\", \"nader\", \"ralph\", \"nevada\", \"oregon\", \"gotv\", \"green\", \"county\", \"voter\", \"mcauliffe\", \"party\", \"election\", \"votes\", \"florida\", \"voters\", \"republican\", \"ohio\", \"voting\", \"state\", \"general\", \"vote\", \"republicans\", \"states\", \"gop\", \"democrats\", \"democratic\", \"people\", \"elections\", \"campaign\", \"presidential\", \"president\", \"law\", \"registered\", \"amphibians\", \"robots\", \"prostate\", \"oceana\", \"dna\", \"sharks\", \"species\", \"fishing\", \"researchers\", \"cancer\", \"cells\", \"ice\", \"discovery\", \"monkeys\", \"graph\", \"arctic\", \"shark\", \"scientists\", \"scientific\", \"mars\", \"glass\", \"lai\", \"reef\", \"stemcell\", \"ocean\", \"foundations\", \"science\", \"moon\", \"distorted\", \"fields\", \"cell\", \"study\", \"exposure\", \"brain\", \"disease\", \"water\", \"research\", \"studies\", \"space\", \"university\", \"friday\", \"environmental\", \"stem\", \"theory\", \"damage\", \"life\", \"years\", \"found\", \"similar\", \"time\", \"earth\", \"meteor\", \"gehlen\", \"petraeus\", \"saleh\", \"latif\", \"conway\", \"brigade\", \"dfa\", \"maj\", \"airborne\", \"kimmitt\", \"decentralized\", \"battalion\", \"fallujah\", \"marine\", \"administrative\", \"mosul\", \"tribal\", \"nazis\", \"marines\", \"nazi\", \"participated\", \"formation\", \"implication\", \"elite\", \"commander\", \"command\", \"authorize\", \"recruit\", \"transition\", \"movements\", \"signals\", \"fighters\", \"gen\", \"appointment\", \"myers\", \"division\", \"capable\", \"charge\", \"james\", \"general\", \"guard\", \"iraqis\", \"background\", \"positions\", \"staff\", \"iraqi\", \"force\", \"republican\", \"lead\", \"thought\", \"ethic\", \"weber\", \"exemplary\", \"ancient\", \"citizenship\", \"girly\", \"passion\", \"ideals\", \"realities\", \"japanese\", \"persian\", \"asian\", \"gold\", \"rewards\", \"katherine\", \"deadly\", \"secrets\", \"undermine\", \"monetary\", \"decorated\", \"hip\", \"motivations\", \"freedoms\", \"shaped\", \"lieutenant\", \"ridge\", \"acts\", \"medal\", \"ethically\", \"genuinely\", \"liberated\", \"wars\", \"ultimate\", \"generation\", \"harris\", \"battalion\", \"memorial\", \"sacrifice\", \"responsibility\", \"beliefs\", \"combat\", \"ends\", \"men\", \"man\", \"daniel\", \"actions\", \"machine\", \"veterans\", \"enemy\", \"history\", \"believed\", \"liebeck\", \"stella\", \"mcdonalds\", \"oconnor\", \"kurtz\", \"ashamed\", \"coffee\", \"wolf\", \"lawsuits\", \"sympathetic\", \"skin\", \"identifying\", \"restaurant\", \"degrees\", \"shark\", \"burns\", \"janklow\", \"neighbor\", \"carl\", \"dept\", \"useless\", \"familys\", \"janklows\", \"responsibilities\", \"trial\", \"albuquerque\", \"beaten\", \"sum\", \"rack\", \"lawyer\", \"ann\", \"jury\", \"caused\", \"cohen\", \"medical\", \"degree\", \"lawsuit\", \"offered\", \"hot\", \"vermont\", \"continued\", \"interests\", \"howard\", \"year\", \"extremely\", \"people\", \"edwards\", \"john\", \"major\", \"heard\", \"worth\", \"lawn\", \"blitzer\", \"charities\", \"sessions\", \"eisenhower\", \"trump\", \"truck\", \"frost\", \"olbermann\", \"childrens\", \"depression\", \"scoring\", \"doctor\", \"empire\", \"shoulder\", \"implication\", \"moseley\", \"golf\", \"signs\", \"french\", \"occasionally\", \"carter\", \"wood\", \"cop\", \"landing\", \"yard\", \"roads\", \"roosevelt\", \"surrender\", \"prostate\", \"carol\", \"eat\", \"questionable\", \"pete\", \"salon\", \"property\", \"stealing\", \"king\", \"police\", \"mad\", \"juan\", \"dallas\", \"yesterday\", \"opponents\", \"created\", \"report\", \"power\", \"activities\", \"attack\", \"called\", \"congressman\", \"page\", \"aristide\", \"indymedia\", \"zimbabwe\", \"settlements\", \"sharon\", \"ideologues\", \"williams\", \"freeper\", \"anxiety\", \"orleans\", \"jewish\", \"excerpt\", \"palestinians\", \"anchor\", \"ears\", \"grief\", \"robinson\", \"gag\", \"shooting\", \"palestinian\", \"owners\", \"farmers\", \"ditka\", \"fled\", \"rhode\", \"picks\", \"awaiting\", \"fingers\", \"edit\", \"tips\", \"propose\", \"stretching\", \"israel\", \"halfway\", \"spoken\", \"departure\", \"invented\", \"seized\", \"justified\", \"border\", \"trade\", \"minister\", \"turned\", \"rules\", \"channel\", \"issued\", \"bank\", \"west\", \"labor\", \"jim\", \"order\", \"report\", \"october\", \"couldnt\", \"wink\", \"zahn\", \"soros\", \"shares\", \"movies\", \"berg\", \"kroll\", \"ears\", \"preferences\", \"sentiments\", \"investors\", \"oreilly\", \"title\", \"films\", \"contractor\", \"chapter\", \"monkeys\", \"accidentally\", \"ladies\", \"childhood\", \"adult\", \"overt\", \"credence\", \"recognizing\", \"searches\", \"yup\", \"subjects\", \"music\", \"attached\", \"corp\", \"lists\", \"bar\", \"philadelphia\", \"bills\", \"held\", \"reference\", \"phrase\", \"investment\", \"management\", \"bill\", \"video\", \"full\", \"watch\", \"amp\", \"son\", \"capital\", \"womens\", \"rate\", \"agency\", \"boxer\", \"dreier\", \"strongholds\", \"commentator\", \"announces\", \"spectrum\", \"slap\", \"handily\", \"opted\", \"schwarzenegger\", \"minus\", \"persuaded\", \"retain\", \"transition\", \"inclined\", \"tapped\", \"mirror\", \"gray\", \"hardcore\", \"governorship\", \"taxpayers\", \"auxiliary\", \"predebate\", \"zahn\", \"guarantee\", \"bruce\", \"conservation\", \"assigned\", \"matched\", \"troubles\", \"marked\", \"league\", \"association\", \"california\", \"stage\", \"action\", \"included\", \"burden\", \"coalition\", \"war\", \"hispanic\", \"assistance\", \"summer\", \"public\", \"depending\", \"field\", \"compared\", \"arnold\"], \"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.7213000000000001, 1.7213000000000001, 1.7213000000000001, 1.7213000000000001, 1.7213000000000001, 1.7169000000000001, 1.7169000000000001, 1.7169000000000001, 1.7169000000000001, 1.7169000000000001, 1.7169000000000001, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7133, 1.7101999999999999, 1.7101999999999999, 1.7101999999999999, 1.7101999999999999, 1.7101999999999999, 1.7101999999999999, 1.7076, 1.7076, 1.7076, 1.6660999999999999, 1.6697, 1.6794, 1.6388, 1.6808000000000001, 1.6814, 1.6617999999999999, 1.6830000000000001, 1.6417999999999999, 1.6661999999999999, 1.6846000000000001, 1.6896, 1.6908000000000001, 1.6908000000000001, 1.6922999999999999, 1.6931, 1.694, 1.6278999999999999, 1.6272, 1.5925, 1.6443000000000001, 1.6095999999999999, 1.6433, 1.5847, 1.663, 1.663, 1.6365000000000001, 1.6271, 1.6972, 1.6972, 1.5785, 1.6247, 1.6133, 1.4776, 1.5693999999999999, 1.5968, 1.6104000000000001, 1.6200000000000001, 1.5368999999999999, 1.5371999999999999, 1.6134999999999999, 1.5042, 1.3458000000000001, 1.1044, 1.3955, 1.4953000000000001, 1.3239000000000001, 1.0508999999999999, 1.3628, 1.0463, 1.1919999999999999, 1.4277, 1.1742999999999999, 1.0803, 1.3776999999999999, 0.030300000000000001, 1.1980999999999999, 0.37930000000000003, 0.16270000000000001, 0.6714, 0.72950000000000004, 0.7127, 0.30349999999999999, -0.034000000000000002, -0.4632, 0.1158, -0.013899999999999999, 1.873, 1.8664000000000001, 1.8612, 1.8612, 1.8612, 1.8532, 1.8501000000000001, 1.8474999999999999, 1.8474999999999999, 1.8452, 1.8413999999999999, 1.833, 1.823, 1.8196000000000001, 1.8084, 1.8023, 1.7962, 1.7959000000000001, 1.7949999999999999, 1.7944, 1.7851999999999999, 1.7783, 1.7735000000000001, 1.7734000000000001, 1.7732000000000001, 1.7718, 1.7698, 1.7659, 1.7659, 1.7644, 1.7376, 1.7622, 1.7331000000000001, 1.7478, 1.6812, 1.7191000000000001, 1.7118, 1.7192000000000001, 1.7018, 1.5646, 1.7413000000000001, 1.6184000000000001, 1.6681999999999999, 1.6788000000000001, 1.5976999999999999, 1.6478999999999999, 1.389, 1.4879, 1.2281, 1.5677000000000001, 1.1705000000000001, 1.2075, 1.2501, 1.5885, 1.2836000000000001, 1.0301, 1.3487, 0.81499999999999995, 0.4869, 1.53, 1.0392999999999999, 1.1851, 0.67510000000000003, 0.61260000000000003, 0.51749999999999996, 0.81979999999999997, 0.85719999999999996, 0.28000000000000003, 0.28039999999999998, 0.38030000000000003, 0.51349999999999996, 0.82010000000000005, 0.1072, 0.0458, 1.9447000000000001, 1.9329000000000001, 1.9329000000000001, 1.9286000000000001, 1.9286000000000001, 1.9286000000000001, 1.9249000000000001, 1.9249000000000001, 1.9249000000000001, 1.9218, 1.9169, 1.9169, 1.9131, 1.9115, 1.9115, 1.9088000000000001, 1.9047000000000001, 1.9038999999999999, 1.9017999999999999, 1.9017999999999999, 1.9006000000000001, 1.8991, 1.8909, 1.8789, 1.8716999999999999, 1.8709, 1.8693, 1.8681000000000001, 1.8661000000000001, 1.8661000000000001, 1.8562000000000001, 1.8499000000000001, 1.8494999999999999, 1.8205, 1.8357000000000001, 1.8275999999999999, 1.8171999999999999, 1.8466, 1.8364, 1.8520000000000001, 1.7625, 1.8312999999999999, 1.8488, 1.8010999999999999, 1.7917000000000001, 1.8543000000000001, 1.8423, 1.853, 1.8524, 1.6942999999999999, 1.7161, 1.7625999999999999, 1.7809999999999999, 1.8516999999999999, 1.7906, 1.6967000000000001, 1.4750000000000001, 1.7233000000000001, 1.6181000000000001, 1.7194, 1.3494999999999999, 1.6489, 1.2202, 1.3597999999999999, 1.5587, 1.1478999999999999, 1.2427999999999999, 0.9415, 1.1920999999999999, 1.3638999999999999, 1.1516, 0.88329999999999997, 0.87039999999999995, 1.1136999999999999, 1.1101000000000001, 0.66990000000000005, 0.48370000000000002, 0.74350000000000005, 1.2675000000000001, 0.44879999999999998, 0.79449999999999998, 0.26939999999999997, 0.88870000000000005, 0.19900000000000001, 0.037999999999999999, 0.059799999999999999, -0.45910000000000001, -1.4888999999999999, 2.0781000000000001, 2.0737999999999999, 2.0737999999999999, 2.0737999999999999, 2.0737999999999999, 2.0737999999999999, 2.0701999999999998, 2.0644, 2.0600999999999998, 2.0568, 2.0552999999999999, 2.0529000000000002, 2.0465, 2.0154000000000001, 2.0091999999999999, 2.0083000000000002, 2.0074000000000001, 2.0053000000000001, 2.0011999999999999, 2.0011999999999999, 2.0011999999999999, 1.9955000000000001, 1.9955000000000001, 1.9930000000000001, 1.9930000000000001, 1.9930000000000001, 1.9901, 1.9892000000000001, 1.9867999999999999, 1.9827999999999999, 1.9827999999999999, 1.9619, 1.9619, 1.8295999999999999, 1.8909, 1.8709, 1.6353, 1.7388999999999999, 1.8814, 1.5544, 1.6697, 1.4368000000000001, 1.6196999999999999, 1.873, 1.5986, 1.8874, 1.6508, 1.3691, 1.0973999999999999, 1.7948, 1.4548000000000001, 0.75680000000000003, 1.1141000000000001, 0.73350000000000004, 1.0641, 1.5694999999999999, 1.4293, 1.1064000000000001, 1.5043, 0.73780000000000001, 1.5918000000000001, 0.60599999999999998, 1.1275999999999999, 1.3136000000000001, 0.69699999999999995, 1.1580999999999999, 1.1362000000000001, 0.54710000000000003, 0.1734, 0.872, 0.94059999999999999, 0.28320000000000001, 0.090200000000000002, 0.20280000000000001, 0.14810000000000001, 0.5615, 0.0035999999999999999, 0.050700000000000002, -0.29239999999999999, 0.58409999999999995, -0.42030000000000001, 0.073700000000000002, -0.64739999999999998, 2.0720999999999998, 2.0682999999999998, 2.0613999999999999, 2.0609000000000002, 2.0609000000000002, 2.0589, 2.0587, 2.0573999999999999, 2.0571000000000002, 2.0567000000000002, 2.0566, 2.0564, 2.0564, 2.0562999999999998, 2.0560999999999998, 2.0560999999999998, 2.056, 2.0558000000000001, 2.0558000000000001, 2.0556000000000001, 2.0554999999999999, 2.0545, 2.0543, 2.0535000000000001, 2.0525000000000002, 2.0525000000000002, 2.0524, 2.0524, 2.0520999999999998, 2.0520999999999998, 2.0518000000000001, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0520999999999998, 2.0491000000000001, 2.0491000000000001, 2.0491000000000001, 2.0491000000000001, 2.0491000000000001, 2.0461, 2.0461, 2.0461, 2.0430999999999999, 2.0430000000000001, 2.0402, 2.0402, 2.0341999999999998, 1.9523999999999999, 1.9830000000000001, 2.0282, 2.0280999999999998, 1.8605, 1.9238999999999999, 1.6493, 2.0038, 1.1403000000000001, 1.0133000000000001, 1.5992999999999999, 0.80079999999999996, 0.84179999999999999, 0.96220000000000006, 0.9899, 1.8523000000000001, 1.5454000000000001, 1.9887999999999999, -0.16880000000000001, -0.4844, 1.8925000000000001, 0.67159999999999997, 0.3725, 1.7457, 1.9267000000000001, 0.64980000000000004, 1.7897000000000001, 0.15240000000000001, 0.42299999999999999, 1.2565, 0.61299999999999999, 2.5057, 2.5013999999999998, 2.5013999999999998, 2.4977, 2.4876999999999998, 2.4327999999999999, 2.4177, 2.4177, 2.4142999999999999, 2.4104000000000001, 2.4104000000000001, 2.4056000000000002, 2.3997000000000002, 2.3923999999999999, 2.3418000000000001, 2.3349000000000002, 2.3233999999999999, 2.3233999999999999, 2.3130000000000002, 2.3102999999999998, 2.2944, 2.2944, 2.2911000000000001, 2.2869999999999999, 2.2869999999999999, 2.2869999999999999, 2.2746, 2.2645, 2.2492999999999999, 2.2492999999999999, 2.2357, 2.2313999999999998, 2.1528, 2.1861999999999999, 2.1198999999999999, 2.0377999999999998, 2.0884, 2.1692, 2.1787000000000001, 2.1398000000000001, 2.0768, 2.0977999999999999, 2.2031000000000001, 1.9124000000000001, 1.8652, 1.8443000000000001, 2.032, 1.6818, 1.2433000000000001, 1.7421, 1.8726, 1.5928, 1.8480000000000001, 1.4921, 1.9487000000000001, 1.3908, 1.6807000000000001, 1.2561, 0.71709999999999996, 1.3776999999999999, 1.2243999999999999, 0.58279999999999998, 1.2403, 0.58109999999999995, 0.96419999999999995, 1.1646000000000001, 1.6223000000000001, 0.41110000000000002, 0.92000000000000004, 1.2969999999999999, -0.086900000000000005, 0.12379999999999999, 0.95350000000000001, 1.0130999999999999, 0.81989999999999996, -0.54510000000000003, -0.4768, 2.5495999999999999, 2.5495999999999999, 2.5415999999999999, 2.5386000000000002, 2.5386000000000002, 2.5335999999999999, 2.5316000000000001, 2.5223, 2.4855, 2.4805999999999999, 2.4741, 2.4668999999999999, 2.4643999999999999, 2.4643999999999999, 2.4643999999999999, 2.4634, 2.4615999999999998, 2.4582999999999999, 2.4582999999999999, 2.4542999999999999, 2.4542999999999999, 2.4495, 2.4462000000000002, 2.4437000000000002, 2.4413999999999998, 2.4388999999999998, 2.4388999999999998, 2.4363000000000001, 2.4333999999999998, 2.4333999999999998, 2.4291999999999998, 2.4201000000000001, 2.4198, 2.3309000000000002, 2.4167000000000001, 2.2949000000000002, 2.3222999999999998, 2.2517, 2.2061000000000002, 2.2905000000000002, 2.2204000000000002, 2.1164999999999998, 2.3083999999999998, 2.1743999999999999, 2.1244000000000001, 2.1394000000000002, 2.1135999999999999, 2.2759, 2.2061999999999999, 2.1193, 2.2991000000000001, 2.0396999999999998, 2.1939000000000002, 1.9618, 1.8889, 2.1227, 1.3662000000000001, 1.7729999999999999, 1.5928, 1.7339, 1.8505, 0.23499999999999999, 0.91820000000000002, 1.2729999999999999, 1.1145, 1.1694, 1.2414000000000001, 1.5004, 1.2508999999999999, 1.0196000000000001, 0.4199, 0.35070000000000001, 0.1578, 0.28910000000000002, -0.50309999999999999, 2.6194000000000002, 2.6150000000000002, 2.6150000000000002, 2.6114000000000002, 2.6082999999999998, 2.6013999999999999, 2.6013999999999999, 2.5861000000000001, 2.5589, 2.5531999999999999, 2.5388000000000002, 2.528, 2.5240999999999998, 2.5192999999999999, 2.5192999999999999, 2.5192999999999999, 2.5169000000000001, 2.5112000000000001, 2.4965000000000002, 2.4946999999999999, 2.4925999999999999, 2.4836, 2.4721000000000002, 2.4701, 2.4651999999999998, 2.4573, 2.4573, 2.4554999999999998, 2.448, 2.4295, 2.4091, 2.4051, 2.2359, 2.3711000000000002, 2.2924000000000002, 2.2982999999999998, 2.2627000000000002, 2.1234000000000002, 2.1501999999999999, 2.0587, 2.2395, 1.8569, 2.2755000000000001, 2.1768999999999998, 1.9990000000000001, 1.8508, 1.9350000000000001, 2.2082999999999999, 2.2593999999999999, 1.5516000000000001, 1.8636999999999999, 1.8774, 1.0035000000000001, 1.2771999999999999, 1.2861, 1.2927, 0.7218, 0.44840000000000002, 0.44869999999999999, 1.1644000000000001, 0.71430000000000005, 0.22159999999999999, 0.26690000000000003, 0.31240000000000001, 0.68730000000000002, -0.84189999999999998, 0.64339999999999997, 0.1971, 0.62939999999999996, 0.013299999999999999, -0.095399999999999999, -0.061699999999999998, 1.0784, 3.1823000000000001, 3.1650999999999998, 3.1377000000000002, 3.1122000000000001, 3.1074999999999999, 3.1074999999999999, 3.0594000000000001, 3.0453999999999999, 3.0251999999999999, 3.0251999999999999, 2.9923999999999999, 2.9803000000000002, 2.9763999999999999, 2.9664000000000001, 2.9451999999999998, 2.9251, 2.9009, 2.8896000000000002, 2.8711000000000002, 2.8711000000000002, 2.8451, 2.8420999999999998, 2.8332999999999999, 2.8170000000000002, 2.8138999999999998, 2.7865000000000002, 2.7509999999999999, 2.7458999999999998, 2.7339000000000002, 2.73, 2.7035999999999998, 2.6619000000000002, 2.7092000000000001, 2.2826, 2.4655999999999998, 2.4878, 2.4773999999999998, 2.3273999999999999, 2.4655999999999998, 2.0695999999999999, 1.7141999999999999, 2.4190999999999998, 1.2614000000000001, 1.1377999999999999, 1.7016, 1.649, 1.1581999999999999, 0.98770000000000002, 1.5202, 1.3112999999999999, 0.90790000000000004, 0.67300000000000004, 0.65190000000000003, 0.42909999999999998, 0.56499999999999995, 0.81100000000000005, 0.29999999999999999, 0.031600000000000003, 0.27800000000000002, 0.60199999999999998, 0.033500000000000002, 0.94169999999999998, -0.076499999999999999, 1.2192000000000001, 1.7494000000000001, 4.3388999999999998, 4.2389000000000001, 4.2329999999999997, 4.1917, 4.1311, 4.1276000000000002, 4.1148999999999996, 4.0564999999999998, 4.0231000000000003, 4.0198999999999998, 4.0132000000000003, 3.8593999999999999, 3.7641, 3.7222, 3.7147999999999999, 3.6922999999999999, 3.6922999999999999, 3.6781000000000001, 3.6595, 3.597, 3.597, 3.597, 3.597, 3.5325000000000002, 3.5228999999999999, 3.4916, 3.4306999999999999, 3.4060000000000001, 3.3963000000000001, 3.3894000000000002, 3.2877999999999998, 3.1013999999999999, 3.2833000000000001, 3.2061000000000002, 3.1772, 2.7122999999999999, 2.2761, 3.1074999999999999, 2.2242999999999999, 2.0958000000000001, 1.6645000000000001, 2.4268999999999998, 2.7071000000000001, 2.6381999999999999, 2.0297999999999998, 1.5176000000000001, 0.55600000000000005, 1.0589, 1.6919, -0.48870000000000002, 2.8129, 0.53669999999999995, 4.6332000000000004, 4.5734000000000004, 4.5457999999999998, 4.4488000000000003, 4.4131, 4.0039999999999996, 3.9975999999999998, 3.9823, 3.9712999999999998, 3.8153000000000001, 3.5345, 3.5192999999999999, 3.4790000000000001, 3.4527000000000001, 3.4502999999999999, 3.3914, 3.3633000000000002, 3.3144999999999998, 3.2442000000000002, 3.2090999999999998, 3.2090999999999998, 3.2090999999999998, 3.2090999999999998, 3.2090999999999998, 3.1503000000000001, 3.1160000000000001, 3.1137999999999999, 3.1137999999999999, 3.0813000000000001, 3.0756000000000001, 3.0756000000000001, 3.04, 2.9054000000000002, 2.964, 2.8662000000000001, 2.7185000000000001, 2.8805999999999998, 2.2019000000000002, 2.4672000000000001, 0.79779999999999995, 1.9621, 1.8751, 2.4056000000000002, 2.1217000000000001, 1.5944, 0.67579999999999996, 0.70499999999999996, -0.62019999999999997, -0.066799999999999998, 0.79049999999999998, 4.6186999999999996, 4.6066000000000003, 4.4954000000000001, 4.2271000000000001, 4.1318000000000001, 4.1318000000000001, 3.7736999999999998, 3.6230000000000002, 3.5228999999999999, 3.5228999999999999, 3.5127000000000002, 3.5127000000000002, 3.4539, 3.4539, 3.3942000000000001, 3.3894000000000002, 3.3456999999999999, 3.3456999999999999, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2715999999999998, 3.2532000000000001, 3.2025999999999999, 3.1762999999999999, 3.1762999999999999, 3.1762999999999999, 3.0331999999999999, 3.0844, 2.9592000000000001, 2.7648000000000001, 3.0709, 2.8969, 2.8660999999999999, 2.4367999999999999, 3.0773999999999999, 2.1890000000000001, 2.5594000000000001, 1.6001000000000001, 1.1491, 2.5339999999999998, 1.8291999999999999, 2.0586000000000002, 1.5834999999999999, 1.45, 0.99670000000000003, 1.9722999999999999, 4.7380000000000004, 4.7329999999999997, 4.7217000000000002, 4.2815000000000003, 4.1741000000000001, 4.1741000000000001, 4.1307, 4.0071000000000003, 3.6817000000000002, 3.6503999999999999, 3.5653000000000001, 3.5550999999999999, 3.3879999999999999, 3.3711000000000002, 3.3138999999999998, 3.2397999999999998, 3.2086000000000001, 3.0516000000000001, 3.0377000000000001, 3.0263, 2.9775, 2.9775, 2.9775, 2.9775, 2.9590999999999998, 2.9573, 2.9085000000000001, 2.9085000000000001, 2.9085000000000001, 2.8799000000000001, 2.7703000000000002, 2.6600000000000001, 2.6673, 2.5548000000000002, 2.4131999999999998, 2.5667, 2.7341000000000002, 1.9861, 2.1970000000000001, 2.1970000000000001, 1.8406, 1.8406, 1.1783999999999999, -0.040000000000000001, 2.0299, -0.83589999999999998, -0.62229999999999996, -0.69750000000000001, 0.41739999999999999, 0.94159999999999999, 1.1229, 4.0777000000000001, 4.0289999999999999, 4.0289999999999999, 3.8653, 3.8618999999999999, 3.8466, 3.7606999999999999, 3.6061000000000001, 3.577, 3.577, 3.4900000000000002, 3.4900000000000002, 3.4310999999999998, 3.3929999999999998, 3.3357999999999999, 3.3357999999999999, 3.3357999999999999, 3.3357999999999999, 3.3155999999999999, 3.3029999999999999, 3.2667999999999999, 3.2524000000000002, 3.2404999999999999, 3.2404999999999999, 3.0733999999999999, 3.0733999999999999, 2.9992999999999999, 2.9790999999999999, 2.9790999999999999, 2.9302999999999999, 2.9302999999999999, 2.9302999999999999, 2.9302999999999999, 2.9005000000000001, 2.8837999999999999, 2.7921999999999998, 2.6707999999999998, 2.3744000000000001, 1.7197, 2.6789999999999998, 2.1657000000000002, 2.6076000000000001, 1.0845, 1.8194999999999999, 1.7263999999999999, -0.086400000000000005, 0.25459999999999999, 1.7263999999999999, 0.024199999999999999, 0.39510000000000001, 1.1228, 0.81579999999999997, 4.7228000000000003, 4.7169999999999996, 4.7169999999999996, 4.4526000000000003, 3.7825000000000002, 3.7242999999999999, 3.7014999999999998, 3.5419999999999998, 3.3877999999999999, 3.2925, 3.2543000000000002, 3.1364999999999998, 3.1255000000000002, 3.1255000000000002, 3.0514000000000001, 2.9824000000000002, 2.9824000000000002, 2.9824000000000002, 2.9824000000000002, 2.9359000000000002, 2.9178000000000002, 2.9178000000000002, 2.8914, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.8769999999999998, 2.7541000000000002, 2.8001, 2.8001, 2.8001, 2.8001, 2.746, 2.746, 2.6257000000000001, 2.2602000000000002, 2.1461000000000001, 1.4148000000000001, 1.5091000000000001, 2.0756999999999999, 1.7094, 1.6961999999999999, 0.59799999999999998, -0.0533, 0.65629999999999999, 0.63329999999999997, -0.48630000000000001, 0.59670000000000001, 0.81520000000000004, 4.5876000000000001, 4.2523, 4.0980999999999996, 3.7753000000000001, 3.6562999999999999, 3.6185, 3.4049999999999998, 3.4049999999999998, 3.3096000000000001, 3.3096000000000001, 3.2225999999999999, 3.2139000000000002, 3.2002000000000002, 3.1425999999999998, 3.0684999999999998, 2.9994999999999998, 2.9994999999999998, 2.9994999999999998, 2.9994999999999998, 2.9994999999999998, 2.9350000000000001, 2.8940999999999999, 2.8940999999999999, 2.8940999999999999, 2.8940999999999999, 2.8940999999999999, 2.8940999999999999, 2.8250999999999999, 2.8172000000000001, 2.8172000000000001, 2.7400000000000002, 2.5817999999999999, 2.5341, 2.6099999999999999, 1.8116000000000001, 2.4605000000000001, 2.3304, 2.5720000000000001, 2.1122000000000001, 0.91790000000000005, 1.7735000000000001, 0.59299999999999997, 0.35699999999999998, 0.84770000000000001, 1.4035, 1.7372000000000001, 1.9462999999999999, 0.87919999999999998, 1.1749000000000001, 4.5972999999999997, 4.5688000000000004, 2.9695, 2.9695, 2.8742000000000001, 2.7871999999999999, 2.7871999999999999, 2.7871999999999999, 2.7871999999999999, 2.7871999999999999, 2.6854, 2.6331000000000002, 2.6331000000000002, 2.5640999999999998, 2.5640999999999998, 2.5640999999999998, 2.5640999999999998, 2.5640999999999998, 2.4994999999999998, 2.4388999999999998, 2.4388999999999998, 2.3816999999999999, 2.3816999999999999, 2.3816999999999999, 2.3489, 2.2275999999999998, 2.2275999999999998, 2.1810999999999998, 2.1810999999999998, 2.1810999999999998, 2.1366000000000001, 2.1366000000000001, 1.9986999999999999, 1.5793999999999999, 1.2081999999999999, 0.079200000000000007, 0.67700000000000005, 1.7458, 0.1188, -2.496, 1.4219999999999999, 2.0139999999999998, 0.48459999999999998, -1.036, 1.9048, -0.14399999999999999, 0.67700000000000005, 1.5108999999999999], \"Freq\": [3781.0, 4679.0, 1798.0, 2252.0, 2217.0, 6781.0, 1127.0, 2640.0, 1565.0, 1988.0, 1397.0, 820.0, 727.0, 1421.0, 1619.0, 1356.0, 1194.0, 568.0, 823.0, 529.0, 1619.0, 1528.0, 672.0, 1985.0, 2450.0, 1626.0, 1817.0, 720.0, 1564.0, 2364.0, 6.9305408252589906, 6.9305408252589906, 6.9305408252589906, 6.9305408252589906, 6.9305408252589906, 7.832656049824557, 7.832656049824557, 7.832656049824557, 7.832656049824557, 7.832656049824557, 7.832656049824557, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 8.7461859506968533, 9.6692442909810445, 9.6692442909810445, 9.6692442909810445, 9.6692442909810445, 9.6692442909810445, 9.6692442909810445, 10.600337951609047, 10.600337951609047, 10.600337951609047, 231.87006285093096, 175.34469624008796, 67.660110130706443, 514.15064668874106, 55.71729027796777, 51.741337275913004, 135.59687729289791, 42.808930886065234, 171.96125955486147, 75.372215982903114, 36.868639843737903, 25.051000387092063, 23.094628912279717, 23.094628912279717, 21.144045237979398, 20.171296237483947, 19.200483688210568, 181.90745259346471, 180.76195894138601, 362.77413953565588, 82.83643615722427, 196.53640551194857, 79.94907426836761, 339.54432061085731, 47.857996835560989, 47.893432148942757, 91.513812894174734, 114.01147122772106, 16.301971115201091, 16.301971115201091, 298.00650345251353, 109.93751658043885, 135.25065244963432, 1826.6498413343061, 304.5040903609468, 130.51710906050198, 97.05651360486614, 79.066335703611557, 250.47113873183432, 213.75088281455095, 85.994469014652523, 224.38003105555643, 505.65681619131834, 1351.4150431413047, 278.20196628342342, 159.48019141455177, 374.91749577141792, 770.72451676944445, 223.39446390648899, 478.20161921054671, 299.80737276535376, 160.69768178012913, 295.64659965031342, 321.86417870870804, 173.76969130785625, 1333.7641508413835, 226.2582095982483, 467.58517803673953, 410.33409063233648, 286.27727344454411, 268.73840943542228, 266.93338734621807, 295.18704066198524, 298.98131466123635, 293.91547889895497, 263.64184466542889, 257.48472590498255, 5.1585781538676319, 6.0287999067237443, 6.9161182955400546, 6.9161182955400546, 6.9161182955400546, 8.7301035655351455, 9.6524423208979204, 10.582878409774835, 10.582878409774835, 11.520208372780973, 13.411819601008695, 20.149457832762394, 42.783012120233032, 64.645125884369023, 122.3011353381456, 44.961305519036543, 516.62923946722253, 205.5639863420503, 24.181923001327281, 23.238167759538648, 49.904978331653439, 788.06462674090403, 437.10208607001448, 183.7718663478955, 8.9430580236268877, 79.846033809122915, 8.0517352176779138, 7.1612925159568066, 7.1391383481613699, 26.254055119115318, 1668.7788270191247, 82.868013199772562, 548.09398502042802, 63.839701044555291, 988.80595939529485, 236.65089280928999, 246.12836193447765, 144.20680345673378, 111.27436121296476, 517.90534944055082, 43.159775106556431, 153.24178605206404, 89.508085730162904, 76.240568139469261, 174.90037356047443, 99.445083053162975, 934.82810974047288, 365.79170769547517, 2621.8009087950559, 157.90322111215426, 1396.3799529433695, 835.86179718175458, 693.73142084161361, 126.91768693315923, 469.95475514651969, 744.89060009358661, 234.3295307039196, 958.738826957524, 1819.5248870527264, 139.63726322757515, 298.43785544736392, 226.99679027006255, 443.1448145208048, 409.47729708051577, 452.25785638515856, 317.19739106005005, 310.54209975485867, 504.92726353536818, 437.06985883970503, 382.00399172465353, 336.70593134828368, 275.09900277389158, 302.77844115717187, 279.82843060576494, 5.1514583476789557, 6.9078286936414264, 6.9078286936414264, 7.8085719190572602, 7.8085719190572602, 7.8085719190572602, 8.7208565318751496, 8.7208565318751496, 8.7208565318751496, 9.6427801208686805, 11.509818144328353, 11.509818144328353, 13.400813123047641, 14.353358143907034, 14.353358143907034, 16.269747220597946, 20.136886130395521, 21.109169851238516, 24.036039386452835, 24.036039386452835, 25.994210871512344, 28.939680362306749, 68.612404522689573, 91.596998871096915, 194.50741915098115, 32.992058229121916, 29.05340888066301, 150.42697593330033, 23.815115270388127, 23.22780874747184, 118.67576363718695, 95.842999283425073, 94.751420347759591, 400.17922410724299, 167.01406494092086, 159.07538536219286, 206.15701459739068, 87.457108452506304, 107.83118243587155, 71.843086404093754, 451.88517032025339, 97.096724712729824, 64.840951761668606, 162.97005906624437, 135.24780865730844, 44.904356889196634, 53.983762342393064, 42.966254790452339, 41.991641039146771, 330.57636344639451, 195.84090318748278, 102.80767126345251, 83.437359685031623, 41.014152184221814, 72.315393629585628, 158.19641745812004, 696.11614670944596, 113.64623832504057, 218.79044237048342, 110.80829342248485, 793.61064400635701, 153.6366817455019, 1028.0652155780149, 464.90000438728134, 212.13638267630989, 767.59809717280689, 472.22664812026426, 959.77540052889935, 438.51558229026716, 286.92161854766556, 409.96319325237238, 673.08608755478031, 597.00248119788773, 379.19427411912341, 349.99758058991904, 598.42296586885129, 638.4339805569067, 460.31775428612042, 238.93503087812056, 480.86957624312964, 279.67428432144601, 330.30680942092687, 247.26459160000724, 263.7981826535389, 257.51542563272824, 246.0372252865493, 253.86264706488345, 234.00357740063259, 6.8889834938272525, 7.7885808659429836, 7.7885808659429836, 7.7885808659429836, 7.7885808659429836, 7.7885808659429836, 8.6998248723424041, 10.549988991408068, 12.428368502078834, 14.327679137113451, 15.283564921635428, 17.205422921138084, 24.984137505263742, 30.982026578316503, 20.27746735979672, 19.279898374511006, 18.324897972369325, 16.406083385445193, 13.546483828332859, 13.546483828332859, 13.554061322882113, 10.735719440215366, 38.956571000594067, 9.8386211590528578, 9.8165161839709967, 9.8165161839709967, 8.9025162248658152, 81.535133088651719, 8.0001286628781436, 7.1662927415033177, 89.86266176603236, 18.512481658667248, 17.530146605935929, 147.8054960991268, 46.965019651435178, 45.39380816365739, 333.32835849507381, 87.605105023984109, 30.519051866992424, 199.21238064485212, 97.360730793303148, 335.15924707843789, 118.44837848233171, 28.577982793820656, 108.46876467881944, 25.572628216790999, 81.061814709696691, 260.88554263980558, 718.49316064322761, 40.336000180926924, 157.49637626769217, 1896.6184162734148, 488.50272176593057, 1272.3464720324287, 434.31408075567572, 83.046079562728153, 111.66566833498223, 255.08109386154814, 88.188233236848262, 549.51400823009283, 63.251272301518654, 556.62489749885708, 157.0512051668766, 107.72818706973023, 324.18210668211049, 136.50387368500941, 134.76895659700457, 261.65859384683489, 366.28692630922563, 172.60903729022561, 154.45241285665841, 255.98343799727866, 288.25227905934304, 260.51154212111845, 242.32139939295084, 176.36570695682971, 220.83216983544617, 194.93017754334829, 213.9595224138757, 161.1075633964598, 210.98189825659426, 169.53749707415642, 176.74263963840158, 19.133156483839429, 24.000440283333944, 41.737082071827636, 43.718810777503968, 43.718810777503968, 55.632704213836789, 56.626936307225563, 68.569224780826076, 72.553729568247377, 77.536358604796007, 78.533120690312046, 81.523832758070427, 81.523832758070427, 82.520871024601945, 85.512358628666647, 85.512358628666647, 87.506975685487973, 90.499303673015874, 90.499303673015874, 94.489761593167387, 96.485259978491072, 122.43912816589264, 129.42965145673188, 164.3936889491805, 252.34567772687134, 252.34567772687134, 270.33957128042181, 270.33957128042181, 326.32475542503488, 326.32475542503488, 401.31123361073384, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 326.32475542503488, 327.36916343626478, 325.37363011906262, 326.19647387213803, 325.37363011906262, 326.03331296404315, 329.39282268293113, 327.33507861295158, 327.3828778426963, 326.35859722854383, 325.52012663211315, 330.41123944863, 330.51089078636983, 327.36081389816053, 3425.8780563855662, 675.10965667311405, 328.26068800028639, 324.41708508438717, 678.8239345900555, 416.09511900132151, 668.7216476818295, 340.13181969403263, 646.94043650247136, 709.24491168541067, 464.25574592480649, 750.47531168210514, 728.64275991913212, 666.17761885223024, 546.71149690498601, 360.89567812987087, 413.77897535452962, 333.00924057520047, 504.52451085052849, 535.90109290023224, 339.08702272896676, 414.19398956587713, 430.81855471076045, 343.87406676851003, 333.11126218446236, 372.26783621842822, 338.07529841714506, 384.46645680372052, 356.24810815624937, 339.78987079610829, 348.01089308020431, 6.8122427524264015, 7.7071049379818994, 7.7071049379818994, 8.6140428295259035, 12.328713618912246, 16.610039196365403, 8.8304874211127196, 8.8270956366465221, 7.9062973782680883, 7.0193818326893558, 7.0150893492659288, 6.1430983965205224, 5.2960694477640473, 4.4622330283813296, 16.555718292900529, 61.571088773866833, 7.2099195386986832, 7.2086756172297859, 127.64032740804444, 6.3556812962260985, 5.500465490250444, 5.4783602216222329, 27.10462443879452, 10.053060561023578, 10.416546027405596, 10.044493060703118, 4.6998471655456315, 12.919419118266084, 3.8897183351558136, 15.795243857635315, 47.22871273638156, 37.298167286363835, 101.77444707670284, 55.078050959422079, 125.4121171277061, 129.0252592073671, 46.642291009377338, 24.769333579648922, 22.793190859674525, 36.065135446282518, 43.403500718429292, 36.721881083903014, 18.865284965532332, 86.716842225190774, 94.790188663703745, 86.620279975255187, 38.734526003883886, 136.72587590526615, 422.19717857072897, 65.335165795673959, 45.320101267298405, 84.743752663472293, 46.720641930271874, 98.285351210939055, 35.497303108266415, 105.41050032376151, 61.622469588908068, 121.503007778433, 284.61237258901417, 91.485164207113655, 106.54167737294478, 240.53899226979951, 92.073870947922288, 177.79963336597513, 120.43237346349268, 93.95012164695963, 60.295913931709222, 153.79639732667729, 97.892785814795928, 74.158891636244945, 152.09365779000302, 134.18959807506593, 86.793193318462272, 81.592276046432843, 87.426937486586837, 123.6257457899721, 84.840378385009586, 6.8021660362737091, 6.8021660362737091, 8.602762512344734, 9.5192843950479755, 9.5192843950479755, 11.376837170065428, 12.315581382774715, 19.007422490412207, 27.877520149123406, 20.455516848739894, 14.351756414836576, 10.614014287901686, 9.7219832999198825, 9.7063155714509808, 9.7014294775307217, 60.552062093436277, 8.7964449759216574, 7.9565770860906238, 7.8894219107367318, 7.3418366144502176, 7.0301834688462268, 24.129791541613951, 39.808796763374822, 5.2855684986678479, 20.839177032575407, 19.284578462227891, 19.245214080017718, 64.825691882818091, 17.337218486221321, 17.398458351974586, 109.32462336223591, 48.781040220701549, 36.878677238555781, 143.27346094428316, 24.795004573656144, 282.91942181583829, 125.50228916454292, 174.50917281657067, 243.99451755970415, 65.747369398284164, 98.599362787952487, 197.79958687480683, 44.994324266223479, 105.86274124815682, 142.0120946551082, 122.7642516392969, 133.20311412028036, 53.016803136423, 68.493439890261541, 87.152458331511397, 38.739881814689056, 83.845432410417274, 49.239910322660393, 83.78588581245684, 98.148458415918199, 51.953908763114384, 252.01351866320297, 110.31035791172859, 155.99341849449081, 113.77873774870122, 91.614514180006751, 677.29663068839568, 279.2882204377164, 176.41844251942106, 212.8986826883926, 192.29262615533105, 155.81288554736076, 121.94289502873997, 119.75464609793585, 125.33562128160463, 164.40623230259592, 158.49094489698786, 168.95949727562416, 120.40306420817696, 116.86521557441435, 6.785077060200317, 7.6782363940726315, 7.6782363940726315, 8.583623664971908, 9.4992529154874497, 12.293285832540491, 12.293285832540491, 27.751733012210298, 37.690874974770466, 23.934515384904937, 11.542111335605465, 7.8731087484350804, 7.2252869415302303, 6.1139634649509338, 6.116514836141369, 6.1212654314101069, 59.003093865807614, 20.288779979148984, 40.891155487927222, 191.20165043311337, 14.513396133748275, 12.604683042592551, 10.777254644636217, 57.174558748826009, 9.8562432605079699, 8.9753089249747848, 8.9449114770474232, 16.627423777984241, 8.1099958357285473, 12.746943638051613, 141.44945739536269, 164.55627244514375, 197.15369641328166, 34.522196803464027, 75.20876367363735, 61.330505934046052, 69.36574100673451, 160.07025455862504, 74.80067809305136, 90.536719409741551, 35.646887265043958, 189.36895075268595, 29.652974625551355, 38.632663712675296, 61.836167699426056, 88.764387174490153, 69.340628903616903, 31.895689082332584, 29.69048563567711, 136.45865855857969, 69.92171103550811, 67.406907585848117, 285.42717553579763, 141.48457506530917, 124.27594442933865, 107.00308799587508, 180.61194333046859, 191.97714293702163, 182.38284976082318, 95.688693481997689, 131.46023278959913, 183.17034620523003, 174.4893702284875, 158.26734096496901, 128.60603796748373, 213.64736002379522, 106.66541090417195, 121.8272072123885, 100.80247725373778, 121.1246324866915, 120.91881146624488, 111.43657315986593, 86.784592900613205, 16.72975100085111, 73.898799094584774, 18.744196016257561, 6.7431377201535607, 23.554432462238275, 5.8895764116913156, 28.425050238303356, 8.6211565611502721, 6.9230499868512494, 13.258119506706976, 48.058903023183689, 38.346321846183528, 8.7634905574958548, 12.426964190370892, 7.0163980973423481, 6.1750079747970483, 5.380165901544232, 88.250700993932526, 4.5572021227209287, 4.5608554246747461, 6.6482529592410353, 21.991804365599602, 3.8121745860383474, 9.9472416390938783, 5.5086470327642028, 21.661556798634798, 207.44173199040583, 18.880911718378197, 5.6237524998526123, 43.74944074002611, 37.565718545938552, 44.800594618255765, 14.682918783817033, 215.72708065243779, 45.203452573671029, 39.864382349548521, 37.080203053814714, 60.033699776572391, 36.714084573474018, 79.184154449125288, 141.78973987920824, 27.029865177249995, 187.57067313683734, 191.08876617529938, 78.635179520194683, 78.008860256010166, 142.48073305169274, 158.76146571615993, 81.122481299335064, 100.7515614247983, 150.46563064747545, 168.4099153900942, 112.85164505620398, 114.45634835487738, 89.380738185263951, 74.444418608997609, 91.183158509724578, 98.617193059462736, 82.214475885505848, 70.581028887793309, 76.878731235467697, 60.950016593438605, 62.852496238916615, 50.821867810787161, 47.035594294380338, 5.0657519400454776, 4.376053273593147, 4.0059793428617096, 8.040690551268959, 7.9990579751104516, 3.7640819216792125, 15.797939191673001, 4.4662444425707459, 15.414306527534762, 7.8947703334426587, 14.574482772614209, 2.6193369229096257, 2.6449956779783181, 4.5535705480289401, 1.5722778548749257, 2.1340017314468449, 2.4523167377313424, 23.780232679318097, 8.9663998607458968, 8.933501310574842, 2.1729304344257816, 2.2730779596620803, 1.6396426047308168, 3.3935588242651695, 2.7879351326690682, 1.7948421820738072, 31.724005086708196, 4.7347271159122792, 1.8123158138473048, 2.8088750051310236, 19.822780308868563, 14.443712650511543, 4.5807475944856764, 5.7193158841940228, 6.0965277042495929, 11.692872530901795, 19.41182863291672, 4.5854932152561929, 9.6428484064869604, 9.8530939537353071, 10.802841376826633, 6.9202515156950675, 5.7780658587908915, 5.685234461860273, 7.2714281442938145, 8.2738662980612556, 10.311080875208027, 7.210992671293865, 6.2297019410945342, 6.6478159705683915, 5.1862013232686639, 5.1862384439704634, 5.5897270906771741, 11.769693023061565, 16.787998762529728, 3.0254041000810687, 10.447499046752654, 5.6564772003909711, 1.3366421483463931, 1.7089939626774859, 2.1067903442220257, 1.3636156049043053, 1.0960648888029814, 2.4950628200382194, 16.21359229388796, 6.6897662728678915, 0.79546485655708699, 1.163213803670391, 0.78681497586062243, 0.533651470487991, 4.4572794625722283, 0.92607350158531454, 0.55587566391295884, 0.53597554034505168, 0.61066048124193317, 0.51935484885571093, 5.1142158791514349, 6.4741828296597967, 0.52800701069108347, 0.5375847761491851, 1.5919643895936997, 0.83132903461232777, 0.91663938260254951, 2.7582331084656211, 4.6702157307634335, 1.155423417596152, 1.6638449372247055, 2.2125457214835786, 1.1697312676381435, 3.0537910625928171, 2.1483049971291197, 14.763331353879313, 3.6941614133501184, 3.8586654413149608, 2.1651465770692337, 2.1338965944255506, 2.7537247471815993, 2.9547796102181652, 2.1447132747295972, 2.4606646077958358, 2.1474229318503673, 1.8823742006967312, 4.228839941033173, 2.6688681478535554, 2.2000400936847524, 1.448763535282668, 1.4688825446151035, 1.4671262410034829, 2.5414906294189308, 3.701964718931245, 0.91092716296495946, 0.91592456141242806, 0.6449215335255295, 0.64981206477205955, 0.92851275720080573, 0.93279069531899139, 1.5071021853757138, 0.93118155866430818, 0.66860895324005698, 0.70341179953412858, 0.43452162075325323, 0.42808873460610464, 0.44308678460970174, 0.43023476436616903, 0.43544499020143068, 0.43501799459495316, 0.93594258985404166, 0.42685547444207517, 3.5625330698461131, 0.70932142179368596, 0.4559610353594894, 0.44686691340979323, 0.4362314109789544, 5.0421112353440023, 2.0455447950931855, 1.870818931667992, 3.0817176010515612, 1.2346768239766119, 1.2653489863102581, 1.2421355998052179, 2.8295619674318764, 0.71314382872769011, 2.5741948249074271, 1.5768220457247868, 3.0324317790879869, 3.2368175934775141, 1.2768654532974348, 1.519137431765234, 1.3037703947928474, 1.2854999983017596, 1.2770183061471982, 1.3108840950895775, 1.0455938885192204, 4.4654641985701824, 5.629318348659937, 10.963127201685911, 3.2777404253650784, 1.2494788930215999, 1.2453754489545916, 6.4629342473764764, 0.98847196741883037, 1.2955048583491442, 0.53977742515793181, 0.8193368871484229, 0.55255500280074155, 0.61876457203096247, 0.96857053816547656, 0.45463916276248262, 1.3120329426055408, 2.9836300700215759, 0.4233783152281777, 1.0671437951525244, 0.20499612700966546, 0.41532396124293491, 0.40121319459068355, 0.40753654890532898, 0.413173335284098, 2.9563094387430842, 0.60618472964360315, 0.40349587904045131, 0.40584630742285355, 0.20285510447962402, 2.5077540348985434, 0.84804197708049456, 1.3107105008247826, 1.1262471807332763, 1.0687190237351569, 1.3738133136122974, 0.86134167539779027, 0.65972549206499032, 1.0991811598823742, 0.87212865248286042, 0.86252033959696306, 1.0885274499091893, 1.0983817920827403, 1.2917216606638624, 1.3147131910520451, 0.8622772392255631, 1.3152496704014409, 1.0839413865053775, 1.1006230592072455, 0.89691143588368949, 0.90223825318629203, 0.9042426226364545, 2.2601818150851836, 1.4929232163037804, 0.90612449985358978, 5.3434681588091779, 0.99140363341862547, 1.389530532927328, 1.14522548474731, 1.8382370259171787, 0.50201035518414883, 0.50782275202923921, 0.51691278441482469, 0.52105007270581805, 0.96663240788294325, 0.78892955098713968, 0.53938442621633997, 0.38646248909604314, 0.32917415088984081, 0.33163227256735328, 5.2226436251324708, 1.3723260837105733, 0.54339219242267622, 2.3227498702395724, 0.34012201676257903, 0.34455422519929008, 0.3612296671553416, 0.35593812613236919, 0.39635890478891073, 0.58327109566023727, 0.55677802097658458, 0.26087945895532832, 0.36249956417580775, 0.3868671827903582, 0.36898133247410581, 0.96425772612976635, 0.56695244110839782, 0.79745503228490477, 0.79596735291910692, 1.1893071912955218, 1.3670830309743705, 0.58161906134643104, 0.77843057239426727, 0.57734134265817327, 1.1735120276112192, 0.80437176434737301, 0.8424679056622626, 0.99761212392177367, 0.63595652169965289, 0.63978954865378557, 0.62652560467604712, 0.63524696953440407, 0.61515598812641636, 0.62821242874565741, 1.7019618506666845, 1.3955286713088346, 1.3955286713088346, 2.9660976588480015, 1.7764337667601267, 0.37601801589949363, 0.86433224132060982, 0.38674257282371316, 0.24675247354193328, 0.25156129105009922, 0.40652813243363878, 0.40549783956911734, 0.25939805999650967, 0.26448495763104873, 0.3116005037180396, 0.27319945718175348, 0.44406289826716916, 0.13710615894788714, 0.70812838209222895, 0.41113118799258541, 0.27742587115591522, 0.27532041670360302, 0.42578081207648727, 0.13894932855951309, 0.13857866233888994, 0.13977994546445124, 0.13892936885851448, 0.14165867894627834, 0.1395606119168615, 0.13948391581534472, 0.14178479378826303, 0.14020622133408481, 0.85440478399446174, 0.27938627475825367, 0.28904372138755463, 0.28146974379263345, 0.28031880281691479, 0.28437072699170646, 0.27954424472448663, 0.42639754739257224, 1.1838206377202756, 0.86164020135018948, 0.88782416326219038, 0.73751755798782404, 0.45996723365519587, 0.45124766271512279, 0.47478980521790282, 0.61117826286926835, 0.60781788969719475, 0.46219823597413617, 0.46887612931985728, 0.46937708663234246, 0.33126527609988188, 0.33260427959516531, 3.1365770036145308, 0.28537574499798607, 1.308232231257777, 1.4339637035545085, 0.48346877085209677, 0.75947546020085854, 0.21540378599325777, 0.38394760578941611, 0.22618882794120582, 0.22494755104327865, 0.23176336076439435, 1.2393743588485182, 0.62792540249024908, 0.23521683683992586, 0.23599068716350483, 0.24167478196646092, 0.3216122596757599, 0.12575844242935644, 0.11981336873558283, 0.12064088978647985, 0.25593380945748723, 0.12404380694740422, 0.1237281671408636, 0.12543505701691121, 0.12194220680790269, 0.12265150616867747, 0.12343817502308854, 0.37747964561175507, 0.26585667506263494, 0.2489563719104074, 0.51789545927763492, 0.51815000770776232, 0.53318383352718679, 0.40466607485988099, 1.5109659603202805, 0.40270870912105111, 0.39483448147350331, 0.25907942246132104, 0.40141083208431416, 1.1438763530360463, 0.52533334593832948, 0.41119369322975691, 0.40959883846508588, 0.2947396024074494, 0.28160549762047443, 0.27774640507045956, 0.28880563899238865, 0.29844097985651297, 0.28544740032925475, 2.8146605385670895, 2.3352478379907269, 0.045667455878654457, 0.04647974290874448, 0.047108644280409367, 0.052345223549106458, 0.048962445041918989, 0.048057553477428974, 0.051294584503952509, 0.19361523677283154, 0.15527708204785573, 0.054850627043807838, 0.050548790598649307, 0.11062642904729558, 0.096543346164272056, 0.054550477600085454, 0.052079836719570893, 0.050978695726976393, 0.051897449110671776, 0.052014817207265779, 0.055322806339831977, 0.011777506875245577, 0.011625803509166576, 0.015134187358514038, 0.099337088595404313, 0.056990073729542852, 0.061253771028435863, 0.055900945333896765, 0.054787429818037893, 0.055683223596837597, 0.056560325323692248, 0.055517499979417503, 0.10667896496006021, 0.294856652089243, 0.10555684049855871, 0.065735322603329358, 0.063793039773879609, 0.059872881481690558, 0.063848641274650314, 0.06477039926379427, 0.059575345999500685, 0.055891143030977621, 0.064195571834047296, 0.065875137030608433, 0.0605950866167181, 0.065274991173772196, 0.062682601728073203, 0.06092490498969734], \"Total\": [3781, 4679, 1798, 2252, 2217, 6781, 1127, 2640, 1565, 1988, 1397, 820, 727, 1421, 1619, 1356, 1194, 568, 823, 529, 1619, 1528, 672, 1985, 2450, 1626, 1817, 720, 1564, 2364, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 14, 14, 14, 237, 180, 72, 529, 60, 56, 142, 47, 182, 80, 41, 29, 27, 27, 25, 24, 23, 195, 192, 397, 90, 205, 87, 375, 53, 53, 99, 124, 20, 20, 329, 118, 148, 2217, 342, 144, 108, 88, 288, 249, 96, 268, 698, 2364, 370, 194, 525, 1414, 306, 880, 481, 205, 483, 574, 237, 6781, 364, 1649, 1817, 766, 674, 688, 1146, 1606, 2450, 1226, 1358, 8, 9, 10, 10, 10, 12, 13, 14, 14, 15, 17, 24, 47, 69, 127, 50, 530, 214, 29, 28, 56, 820, 459, 196, 13, 88, 12, 11, 11, 32, 1798, 92, 597, 72, 1127, 264, 277, 163, 129, 663, 51, 190, 108, 92, 220, 122, 1421, 507, 4679, 205, 2640, 1528, 1194, 162, 795, 1619, 376, 2566, 6781, 189, 638, 426, 1358, 1356, 1619, 854, 794, 2252, 1992, 1564, 1215, 735, 1626, 1606, 8, 10, 10, 11, 11, 11, 12, 12, 12, 13, 15, 15, 17, 18, 18, 20, 24, 25, 28, 28, 30, 33, 73, 97, 202, 38, 34, 157, 28, 28, 127, 104, 103, 430, 180, 173, 224, 95, 118, 79, 511, 107, 72, 182, 153, 51, 61, 49, 48, 402, 236, 118, 97, 47, 84, 196, 1038, 138, 289, 135, 1356, 198, 1988, 783, 297, 1565, 884, 2450, 872, 482, 854, 1805, 1619, 807, 760, 1992, 2566, 1397, 440, 1985, 831, 1626, 667, 1421, 1606, 1528, 2640, 6781, 10, 11, 11, 11, 11, 11, 12, 14, 16, 18, 19, 21, 29, 36, 25, 24, 23, 21, 18, 18, 18, 15, 45, 14, 14, 14, 13, 89, 12, 11, 99, 23, 23, 174, 58, 58, 499, 121, 40, 324, 144, 614, 180, 38, 170, 34, 119, 508, 1817, 55, 278, 6781, 1215, 4679, 1146, 137, 205, 643, 153, 1992, 103, 2252, 393, 224, 1226, 331, 331, 1147, 2364, 552, 456, 1459, 1985, 1606, 1565, 766, 1649, 1414, 2217, 681, 2450, 1191, 2566, 23, 28, 46, 48, 48, 60, 61, 73, 77, 82, 83, 86, 86, 87, 90, 90, 92, 95, 95, 99, 101, 127, 134, 169, 257, 257, 275, 275, 331, 331, 406, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 333, 331, 331, 331, 331, 336, 334, 334, 334, 333, 339, 339, 338, 3781, 727, 339, 337, 823, 475, 1003, 361, 1619, 1985, 720, 2640, 2450, 1988, 1564, 442, 672, 359, 4679, 6781, 400, 1626, 2252, 470, 382, 1528, 442, 2566, 1805, 760, 1459, 10, 11, 11, 12, 16, 21, 13, 13, 12, 11, 11, 10, 9, 8, 23, 74, 12, 12, 153, 11, 10, 10, 36, 16, 16, 16, 9, 20, 8, 24, 63, 52, 143, 78, 180, 203, 73, 38, 35, 46, 68, 58, 29, 156, 178, 167, 65, 305, 1459, 140, 87, 210, 91, 269, 64, 318, 138, 417, 1649, 281, 379, 1606, 319, 1191, 545, 355, 144, 1226, 472, 244, 1992, 1397, 398, 358, 460, 2566, 1626, 10, 10, 12, 13, 13, 15, 16, 23, 33, 25, 19, 15, 14, 14, 14, 68, 13, 12, 12, 11, 11, 30, 47, 9, 26, 25, 25, 72, 23, 23, 123, 58, 45, 176, 31, 352, 156, 229, 335, 87, 137, 293, 60, 149, 212, 183, 204, 72, 96, 134, 52, 134, 70, 150, 189, 81, 807, 235, 393, 253, 183, 6781, 1414, 623, 858, 744, 562, 344, 431, 574, 1358, 1421, 1817, 1146, 2450, 10, 11, 11, 12, 13, 16, 16, 32, 43, 29, 16, 12, 11, 10, 10, 10, 67, 26, 49, 212, 20, 18, 16, 68, 15, 14, 14, 23, 13, 19, 171, 200, 283, 47, 105, 86, 100, 251, 118, 156, 55, 393, 45, 63, 116, 190, 135, 51, 43, 392, 147, 139, 1397, 534, 457, 393, 1191, 1649, 1565, 406, 880, 1985, 1817, 1564, 858, 6781, 766, 1358, 735, 1619, 1805, 1606, 398, 21, 79, 24, 11, 30, 10, 37, 14, 12, 20, 62, 52, 15, 20, 13, 12, 11, 125, 10, 10, 13, 35, 9, 19, 12, 37, 333, 34, 13, 76, 67, 83, 29, 568, 101, 89, 84, 155, 83, 263, 672, 66, 1397, 1626, 380, 396, 1194, 1565, 471, 720, 1619, 2252, 1564, 1985, 1358, 884, 1805, 2566, 1649, 1038, 1992, 638, 1817, 393, 219, 10, 10, 9, 16, 17, 10, 28, 12, 32, 19, 31, 10, 11, 15, 8, 10, 10, 71, 31, 33, 11, 11, 9, 16, 14, 10, 124, 23, 11, 16, 94, 87, 26, 34, 35, 109, 281, 31, 146, 175, 297, 87, 56, 60, 139, 264, 858, 367, 168, 1606, 46, 448, 13, 23, 31, 11, 27, 28, 10, 12, 14, 12, 13, 22, 142, 58, 11, 15, 12, 9, 56, 14, 10, 10, 10, 10, 70, 90, 11, 11, 25, 16, 16, 45, 84, 23, 31, 49, 25, 115, 63, 2252, 174, 205, 67, 89, 191, 529, 367, 1565, 794, 292, 13, 10, 10, 10, 11, 11, 23, 38, 14, 14, 11, 11, 15, 15, 23, 16, 13, 13, 10, 10, 10, 10, 10, 10, 18, 10, 55, 15, 11, 11, 11, 99, 41, 41, 83, 22, 32, 33, 106, 17, 124, 53, 266, 451, 46, 110, 74, 119, 136, 214, 66, 13, 15, 23, 19, 11, 11, 38, 11, 18, 10, 14, 11, 13, 17, 10, 28, 60, 13, 29, 8, 14, 14, 14, 14, 77, 20, 15, 15, 9, 71, 31, 50, 42, 47, 64, 38, 25, 83, 55, 55, 96, 96, 220, 744, 65, 1649, 1127, 1215, 326, 193, 161, 20, 15, 11, 53, 13, 18, 17, 29, 11, 11, 12, 12, 20, 17, 14, 10, 10, 10, 100, 31, 15, 50, 11, 11, 13, 13, 14, 20, 20, 9, 15, 15, 15, 34, 22, 31, 35, 68, 151, 27, 58, 29, 247, 82, 90, 674, 305, 70, 384, 265, 128, 174, 10, 9, 9, 20, 31, 10, 19, 12, 10, 11, 16, 18, 13, 13, 14, 15, 21, 9, 33, 22, 16, 16, 23, 10, 10, 10, 10, 10, 10, 10, 10, 10, 49, 18, 18, 18, 18, 19, 19, 30, 105, 90, 187, 144, 52, 75, 76, 293, 562, 215, 220, 674, 163, 131, 19, 6, 19, 29, 14, 21, 10, 14, 11, 11, 12, 46, 27, 13, 14, 15, 15, 9, 9, 9, 16, 10, 10, 10, 10, 10, 10, 25, 18, 18, 35, 41, 43, 31, 246, 36, 41, 23, 51, 457, 92, 233, 295, 129, 74, 53, 43, 125, 93, 36, 33, 10, 10, 11, 12, 12, 12, 12, 36, 31, 14, 14, 25, 25, 15, 15, 15, 16, 17, 17, 6, 6, 6, 31, 21, 21, 22, 22, 22, 23, 23, 44, 174, 97, 180, 99, 34, 173, 2364, 47, 26, 120, 549, 29, 225, 99, 43], \"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, -9.0318000000000005, -9.0318000000000005, -9.0318000000000005, -9.0318000000000005, -9.0318000000000005, -8.9407999999999994, -8.9407999999999994, -8.9407999999999994, -8.9407999999999994, -8.9407999999999994, -8.9407999999999994, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.8574000000000002, -8.7805, -8.7805, -8.7805, -8.7805, -8.7805, -8.7805, -8.7089999999999996, -8.7089999999999996, -8.7089999999999996, -5.9214000000000002, -6.1929999999999996, -7.0995999999999997, -5.1458000000000004, -7.2805, -7.3489000000000004, -6.4379, -7.5224000000000002, -6.2098000000000004, -7.0073999999999996, -7.6574999999999998, -7.9988000000000001, -8.0690000000000008, -8.0690000000000008, -8.1445000000000007, -8.1844999999999999, -8.2261000000000006, -6.1547000000000001, -6.1708999999999996, -5.4790999999999999, -6.9115000000000002, -6.1231, -6.9463999999999997, -5.5439999999999996, -7.4222999999999999, -7.4222999999999999, -6.8239999999999998, -6.6082000000000001, -8.3627000000000002, -8.3627000000000002, -5.681, -6.6601999999999997, -6.4451000000000001, -3.8740999999999999, -5.6513999999999998, -6.4889999999999999, -6.7630999999999997, -6.9583000000000004, -5.8556999999999997, -6.0008999999999997, -6.8777999999999997, -5.9603999999999999, -5.1616, -4.1830999999999996, -5.7465999999999999, -6.2925000000000004, -5.4683000000000002, -4.7504999999999997, -5.9692999999999996, -5.2294, -5.6877000000000004, -6.3048999999999999, -5.7012999999999998, -5.6227, -6.2098000000000004, -4.2035, -5.9603999999999999, -5.2683999999999997, -5.3879000000000001, -5.7430000000000003, -5.8129, -5.8090999999999999, -5.7081, -5.7081, -5.7149999999999999, -5.8282999999999996, -5.8556999999999997, -9.1031999999999993, -8.9918999999999993, -8.8918999999999997, -8.8918999999999997, -8.8918999999999997, -8.7174999999999994, -8.6405999999999992, -8.5691000000000006, -8.5691000000000006, -8.5023999999999997, -8.3810000000000002, -8.0446000000000009, -7.3825000000000003, -7.0019, -6.4029999999999996, -7.3413000000000004, -4.9865000000000004, -5.8937999999999997, -7.8933, -7.9291, -7.2450000000000001, -4.5679999999999996, -5.1531000000000002, -6.0041000000000002, -8.7174999999999994, -6.8064999999999998, -8.8009000000000004, -8.8918999999999997, -8.8918999999999997, -7.8254999999999999, -3.8235999999999999, -6.7716000000000003, -4.9306000000000001, -7.0311000000000003, -4.3471000000000002, -5.7605000000000004, -5.7198000000000002, -6.2427000000000001, -6.4939999999999998, -4.9942000000000002, -7.3825000000000003, -6.1901999999999999, -6.7053000000000003, -6.8550000000000004, -6.0643000000000002, -6.6036999999999999, -4.4074999999999998, -5.3391999999999999, -3.3767, -6.1649000000000003, -4.0065, -4.5164, -4.7203999999999997, -6.3795999999999999, -5.0937000000000001, -4.6359000000000004, -5.7773000000000003, -4.3905000000000003, -3.7469000000000001, -6.2839, -5.5579999999999998, -5.8160999999999996, -5.1666999999999996, -5.2306999999999997, -5.1485000000000003, -5.4859, -5.5213000000000001, -5.056, -5.1783000000000001, -5.3202999999999996, -5.4396000000000004, -5.6356000000000002, -5.5545999999999998, -5.6283000000000003, -9.0313999999999997, -8.8201000000000001, -8.8201000000000001, -8.7292000000000005, -8.7292000000000005, -8.7292000000000005, -8.6457999999999995, -8.6457999999999995, -8.6457999999999995, -8.5687999999999995, -8.4306999999999999, -8.4306999999999999, -8.3093000000000004, -8.2537000000000003, -8.2537000000000003, -8.1510999999999996, -7.9728000000000003, -7.9328000000000003, -7.8216000000000001, -7.8216000000000001, -7.7538, -7.6600000000000001, -6.8742000000000001, -6.6020000000000003, -5.8757000000000001, -7.5472000000000001, -7.6600000000000001, -6.1313000000000004, -7.8573000000000004, -7.8573000000000004, -6.3552999999999997, -6.5613000000000001, -6.5712999999999999, -5.1712999999999996, -6.0269000000000004, -6.0747, -5.8268000000000004, -6.6551999999999998, -6.4485999999999999, -6.8342000000000001, -5.0567000000000002, -6.5514000000000001, -6.9302000000000001, -6.0505000000000004, -6.2333999999999996, -7.2694999999999999, -7.1025, -7.3108000000000004, -7.3320999999999996, -5.3648999999999996, -5.8757000000000001, -6.5223000000000004, -6.6999000000000004, -7.3537999999999997, -6.8342000000000001, -6.0808, -4.6355000000000004, -6.4051, -5.7710999999999997, -6.4309000000000003, -4.4938000000000002, -6.1184000000000003, -4.2404999999999999, -5.0327000000000002, -5.8032000000000004, -4.5521000000000003, -5.0284000000000004, -4.3102999999999998, -5.0926999999999998, -5.5137999999999998, -5.1540999999999997, -4.6740000000000004, -4.7956000000000003, -5.2485999999999997, -5.3121, -4.7888000000000002, -4.7218, -5.0701000000000001, -5.7012999999999998, -5.0134999999999996, -5.5385, -5.3922999999999996, -5.6641000000000004, -5.5975000000000001, -5.6360999999999999, -5.6641000000000004, -5.6360999999999999, -5.7225999999999999, -8.6748999999999992, -8.5838999999999999, -8.5838999999999999, -8.5838999999999999, -8.5838999999999999, -8.5838999999999999, -8.5005000000000006, -8.3521000000000001, -8.2228999999999992, -8.1084999999999994, -8.0557999999999996, -7.9581999999999997, -7.6418999999999997, -7.4566999999999997, -7.8276000000000003, -7.8693, -7.9127000000000001, -8.0058000000000007, -8.1640999999999995, -8.1640999999999995, -8.1640999999999995, -8.3521000000000001, -7.2534999999999998, -8.4236000000000004, -8.4236000000000004, -8.4236000000000004, -8.5005000000000006, -6.5777000000000001, -8.5838999999999999, -8.6748999999999992, -6.4776999999999996, -7.9581999999999997, -7.9581999999999997, -6.0669000000000004, -7.1043000000000003, -7.1242999999999999, -5.2077, -6.5209000000000001, -7.4852999999999996, -5.7205000000000004, -6.4161000000000001, -5.1988000000000003, -6.2428999999999997, -7.5449999999999999, -6.3212000000000002, -7.6418999999999997, -6.6257000000000001, -5.4560000000000004, -4.4532999999999996, -7.2534999999999998, -5.9732000000000003, -3.4769000000000001, -4.8390000000000004, -3.8712, -4.9474999999999998, -6.5660999999999996, -6.3033000000000001, -5.4829999999999997, -6.5209000000000001, -4.7209000000000003, -6.8291000000000004, -4.7301000000000002, -5.9542000000000002, -6.3303000000000003, -5.2470999999999997, -6.0953999999999997, -6.1173000000000002, -5.4637000000000002, -5.1140999999999996, -5.8700999999999999, -5.9926000000000004, -5.4870000000000001, -5.3719999999999999, -5.4714, -5.5518999999999998, -5.8529, -5.6440999999999999, -5.7507000000000001, -5.6440999999999999, -5.9480000000000004, -5.6719999999999997, -5.8993000000000002, -5.8529, -7.8479999999999999, -7.6551, -7.1656000000000004, -7.1234999999999999, -7.1234999999999999, -6.9024000000000001, -6.8860000000000001, -6.7077, -6.6547999999999998, -6.5922000000000001, -6.5801999999999996, -6.5449000000000002, -6.5449000000000002, -6.5334000000000003, -6.4996999999999998, -6.4996999999999998, -6.4778000000000002, -6.4459, -6.4459, -6.4048999999999996, -6.3849999999999998, -6.1569000000000003, -6.1035000000000004, -5.8722000000000003, -5.4539999999999997, -5.4539999999999997, -5.3864000000000001, -5.3864000000000001, -5.2013999999999996, -5.2013999999999996, -4.9973999999999998, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.2013999999999996, -5.1984000000000004, -5.2043999999999997, -5.2043999999999997, -5.2043999999999997, -5.2043999999999997, -5.1924000000000001, -5.1984000000000004, -5.1984000000000004, -5.2013999999999996, -5.2043999999999997, -5.1894, -5.1894, -5.1984000000000004, -2.8654000000000002, -4.4836999999999998, -5.2013999999999996, -5.2074999999999996, -4.4821999999999997, -4.9683999999999999, -4.4954999999999998, -5.1628999999999996, -4.5258000000000003, -4.4489999999999998, -4.8771000000000004, -4.3762999999999996, -4.4099000000000004, -4.4984999999999999, -4.7107000000000001, -5.1120000000000001, -4.9999000000000002, -5.1835000000000004, -4.7736000000000001, -4.7180999999999997, -5.1717000000000004, -4.9901, -4.9635999999999996, -5.1570999999999998, -5.1835000000000004, -5.0740999999999996, -5.1745999999999999, -5.0530999999999997, -5.1342999999999996, -5.1657999999999999, -5.1570999999999998, -8.2472999999999992, -8.1563999999999997, -8.1563999999999997, -8.0730000000000004, -7.7953000000000001, -7.5782999999999996, -8.0730000000000004, -8.0730000000000004, -8.1563999999999997, -8.2472999999999992, -8.2472999999999992, -8.3474000000000004, -8.4586000000000006, -8.5838000000000001, -7.5782999999999996, -6.4166999999999996, -8.2472999999999992, -8.2472999999999992, -5.7121000000000004, -8.3474000000000004, -8.4586000000000006, -8.4586000000000006, -7.181, -7.9960000000000004, -7.9960000000000004, -7.9960000000000004, -8.5838000000000001, -7.7953000000000001, -8.7269000000000005, -7.6283000000000003, -6.6767000000000003, -6.8730000000000002, -5.9400000000000004, -6.5126999999999997, -5.7427999999999999, -5.7046000000000001, -6.6767000000000003, -7.2488000000000001, -7.3216000000000001, -7.0872000000000002, -6.7592999999999996, -6.8974000000000002, -7.4851999999999999, -6.0933999999999999, -6.0087000000000002, -6.0933999999999999, -6.8491999999999997, -5.6535000000000002, -4.5267999999999997, -6.3719000000000001, -6.7171000000000003, -6.1157000000000004, -6.6966999999999999, -5.9687999999999999, -6.9480000000000004, -5.9028, -6.4477000000000002, -5.7664, -4.9306000000000001, -6.0396000000000001, -5.8936999999999999, -5.0913000000000004, -6.0500999999999996, -5.3920000000000003, -5.7906000000000004, -6.0189000000000004, -6.4634999999999998, -5.5330000000000004, -5.9786000000000001, -6.2614000000000001, -5.5457000000000001, -5.6897000000000002, -6.1157000000000004, -6.1619999999999999, -6.1044999999999998, -5.7506000000000004, -6.1386000000000003, -8.2034000000000002, -8.2034000000000002, -8.0290999999999997, -7.9520999999999997, -7.9520999999999997, -7.8140000000000001, -7.7514000000000003, -7.3978000000000002, -7.0735999999999999, -7.3560999999999996, -7.6369999999999996, -7.8806000000000003, -7.9520999999999997, -7.9520999999999997, -7.9520999999999997, -6.3727, -8.0290999999999997, -8.1123999999999992, -8.1123999999999992, -8.2034000000000002, -8.2034000000000002, -7.2049000000000003, -6.7592999999999996, -8.4146999999999998, -7.3560999999999996, -7.3978000000000002, -7.3978000000000002, -6.3426999999999998, -7.4866999999999999, -7.4866999999999999, -5.8141999999999996, -6.5750999999999999, -6.8291000000000004, -5.5541999999999998, -7.2049000000000003, -4.8971, -5.6833999999999998, -5.3701999999999996, -5.0353000000000003, -6.2991999999999999, -5.9151999999999996, -5.2590000000000003, -6.6528, -5.8773, -5.5746000000000002, -5.7066999999999997, -5.6238999999999999, -6.5030000000000001, -6.2850999999999999, -6.0385, -6.8052999999999999, -6.1180000000000003, -6.6132, -6.0831999999999997, -5.9249000000000001, -6.5384000000000002, -4.9960000000000004, -5.8230000000000004, -5.4889999999999999, -5.7884000000000002, -5.9957000000000003, -3.9986999999999999, -4.8832000000000004, -5.3479999999999999, -5.1864999999999997, -5.2740999999999998, -5.4828000000000001, -5.7145999999999999, -5.7385999999999999, -5.6833999999999998, -5.4218999999999999, -5.4458000000000002, -5.3929, -5.7225000000000001, -5.7549000000000001, -8.1336999999999993, -8.0427, -8.0427, -7.9592999999999998, -7.8822999999999999, -7.6817000000000002, -7.6817000000000002, -7.0038, -6.7355, -7.1351000000000004, -7.7442000000000002, -8.0427, -8.1336999999999993, -8.2337000000000007, -8.2337000000000007, -8.2337000000000007, -6.3339999999999996, -7.2864000000000004, -6.6673, -5.2043999999999997, -7.5673000000000004, -7.6817000000000002, -7.8109000000000002, -6.3659999999999997, -7.8822999999999999, -7.9592999999999998, -7.9592999999999998, -7.4645999999999999, -8.0427, -7.6817000000000002, -5.5049000000000001, -5.3521999999999998, -5.1742999999999997, -6.8343999999999996, -6.1093000000000002, -6.3029999999999999, -6.1877000000000004, -5.4066999999999998, -6.1348000000000003, -5.9470999999999998, -6.8087, -5.2248999999999999, -6.9734999999999996, -6.7355, -6.3029999999999999, -5.9577999999999998, -6.2153, -6.9154999999999998, -7.0350000000000001, -5.5327000000000002, -6.2013999999999996, -6.2436999999999996, -4.8099999999999996, -5.4980000000000002, -5.6448, -5.7891000000000004, -5.2512999999999996, -5.1993, -5.2512999999999996, -5.8849, -5.5613999999999999, -5.2405999999999997, -5.2838000000000003, -5.3882000000000003, -5.6136999999999997, -5.0755999999999997, -5.7709999999999999, -5.6448, -5.8262999999999998, -5.6527000000000003, -5.6527000000000003, -5.7358000000000002, -5.9908000000000001, -6.8288000000000002, -5.5210999999999997, -6.7398999999999996, -7.5454999999999997, -6.5469999999999997, -7.6456, -6.3853, -7.3711000000000002, -7.5454999999999997, -7.0347, -5.9360999999999997, -6.1241000000000003, -7.3711000000000002, -7.0934999999999997, -7.5454999999999997, -7.6456, -7.7568000000000001, -5.3376999999999999, -7.8819999999999997, -7.8819999999999997, -7.6456, -6.6581999999999999, -8.0251000000000001, -7.2942, -7.7568000000000001, -6.6581999999999999, -4.4964000000000004, -6.7834000000000003, -7.7568000000000001, -5.9949000000000003, -6.1474000000000002, -5.9748999999999999, -6.9790999999999999, -4.4309000000000003, -5.9748999999999999, -6.0792000000000002, -6.1474000000000002, -5.6847000000000003, -6.1711999999999998, -5.4138999999999999, -4.8311000000000002, -6.4469000000000003, -4.5521000000000003, -4.5239000000000003, -5.4138999999999999, -5.4252000000000002, -4.8124000000000002, -4.7122999999999999, -5.3804999999999996, -5.1650999999999998, -4.7580999999999998, -4.6631, -5.0487000000000002, -5.0331999999999999, -5.2767999999999997, -5.4600999999999997, -5.2572999999999999, -5.1738999999999997, -5.3696999999999999, -5.5086000000000004, -5.4252000000000002, -5.6555, -5.6272000000000002, -5.8625999999999996, -5.9172000000000002, -6.4141000000000004, -6.5141999999999998, -6.6254, -6.0913000000000004, -6.0913000000000004, -6.6254, -5.6085000000000003, -6.5141999999999998, -5.5667999999999997, -6.0913000000000004, -5.6085000000000003, -6.8936999999999999, -6.8936999999999999, -6.6254, -7.2614000000000001, -7.0606999999999998, -7.0606999999999998, -5.1147999999999998, -5.9621000000000004, -5.9621000000000004, -7.0606999999999998, -7.0606999999999998, -7.2614000000000001, -6.7506000000000004, -6.8936999999999999, -7.2614000000000001, -4.8045999999999998, -6.5141999999999998, -7.2614000000000001, -6.8936999999999999, -5.2244999999999999, -5.4882999999999997, -6.5141999999999998, -6.3231000000000002, -6.3231000000000002, -5.6519000000000004, -5.1410999999999998, -6.5141999999999998, -5.8476999999999997, -5.7949999999999999, -5.6974, -6.1627999999999998, -6.3231000000000002, -6.3231000000000002, -6.0913000000000004, -5.9621000000000004, -5.7450000000000001, -6.0913000000000004, -6.2397, -6.1627999999999998, -6.4141000000000004, -6.4141000000000004, -5.8574999999999999, -5.3467000000000002, -5.0758000000000001, -6.2088999999999999, -5.3467000000000002, -5.7194000000000003, -6.7554999999999996, -6.5884, -6.4452999999999996, -6.7554999999999996, -6.9561000000000002, -6.4452999999999996, -4.6207000000000003, -5.5423999999999998, -7.2073999999999998, -6.9561000000000002, -7.2073999999999998, -7.5438999999999998, -5.7861000000000002, -7.2073999999999998, -7.5438999999999998, -7.5438999999999998, -7.5438999999999998, -7.5438999999999998, -5.6567999999999996, -5.4398, -7.5438999999999998, -7.5438999999999998, -6.7554999999999996, -7.2073999999999998, -7.2073999999999998, -6.2088999999999999, -5.7194000000000003, -6.9561000000000002, -6.7554999999999996, -6.4452999999999996, -6.9561000000000002, -6.1087999999999996, -6.4452999999999996, -4.5381999999999998, -5.9344999999999999, -5.8574999999999999, -6.4452999999999996, -6.4452999999999996, -6.2088999999999999, -6.1087999999999996, -6.4452999999999996, -6.3201000000000001, -6.4452999999999996, -6.5884, -5.8719999999999999, -6.1463999999999999, -6.2576999999999998, -6.5259, -6.5259, -6.5259, -6.1463999999999999, -5.7949999999999999, -6.8936999999999999, -6.8936999999999999, -7.1449999999999996, -7.1449999999999996, -6.8936999999999999, -6.8936999999999999, -6.5259, -6.8936999999999999, -7.1449999999999996, -7.1449999999999996, -7.4813999999999998, -7.4813999999999998, -7.4813999999999998, -7.4813999999999998, -7.4813999999999998, -7.4813999999999998, -6.8936999999999999, -7.4813999999999998, -5.7949999999999999, -7.1449999999999996, -7.4813999999999998, -7.4813999999999998, -7.4813999999999998, -5.4272999999999998, -6.2576999999999998, -6.3827999999999996, -5.8719999999999999, -6.8936999999999999, -6.6929999999999996, -6.6929999999999996, -5.9554, -7.1449999999999996, -6.0464000000000002, -6.5259, -5.8719999999999999, -5.7949999999999999, -6.6929999999999996, -6.5259, -6.6929999999999996, -6.6929999999999996, -6.6929999999999996, -6.6929999999999996, -6.8936999999999999, -5.7526999999999999, -5.6144999999999996, -5.1984000000000004, -5.8296999999999999, -6.4836, -6.4836, -5.2873000000000001, -6.6505999999999998, -6.4836, -7.1025999999999998, -6.8513000000000002, -7.1025999999999998, -7.1025999999999998, -6.8513000000000002, -7.4390999999999998, -6.4836, -5.7526999999999999, -7.4390999999999998, -6.6505999999999998, -7.9499000000000004, -7.4390999999999998, -7.4390999999999998, -7.4390999999999998, -7.4390999999999998, -5.7526999999999999, -7.1025999999999998, -7.4390999999999998, -7.4390999999999998, -7.9499000000000004, -5.9130000000000003, -6.8513000000000002, -6.4836, -6.6505999999999998, -6.6505999999999998, -6.4836, -6.8513000000000002, -7.1025999999999998, -6.6505999999999998, -6.8513000000000002, -6.8513000000000002, -6.6505999999999998, -6.6505999999999998, -6.4836, -6.4836, -6.8513000000000002, -6.4836, -6.6505999999999998, -6.6505999999999998, -6.8513000000000002, -6.8513000000000002, -6.8513000000000002, -5.9821, -6.3186, -6.6288, -5.2199999999999998, -6.6288, -6.3186, -6.4617000000000004, -6.0822000000000003, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -6.6288, -6.8293999999999997, -7.0807000000000002, -7.4172000000000002, -7.4172000000000002, -7.4172000000000002, -5.1348000000000003, -6.3186, -7.0807000000000002, -5.8912000000000004, -7.4172000000000002, -7.4172000000000002, -7.4172000000000002, -7.4172000000000002, -7.4172000000000002, -7.0807000000000002, -7.0807000000000002, -7.9279999999999999, -7.4172000000000002, -7.4172000000000002, -7.4172000000000002, -6.6288, -7.0807000000000002, -6.8293999999999997, -6.8293999999999997, -6.4617000000000004, -6.3186, -7.0807000000000002, -6.8293999999999997, -7.0807000000000002, -6.4617000000000004, -6.8293999999999997, -6.8293999999999997, -6.6288, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -7.0807000000000002, -6.0301999999999998, -6.1414, -6.1414, -5.6073000000000004, -5.8391000000000002, -7.0286999999999997, -6.4097, -7.0286999999999997, -7.3651999999999997, -7.3651999999999997, -7.0286999999999997, -7.0286999999999997, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.0286999999999997, -7.8760000000000003, -6.5766999999999998, -7.0286999999999997, -7.3651999999999997, -7.3651999999999997, -7.0286999999999997, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -7.8760000000000003, -6.4097, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.3651999999999997, -7.0286999999999997, -6.1414, -6.4097, -6.4097, -6.5766999999999998, -7.0286999999999997, -7.0286999999999997, -7.0286999999999997, -6.7774000000000001, -6.7774000000000001, -7.0286999999999997, -7.0286999999999997, -7.0286999999999997, -7.3651999999999997, -7.3651999999999997, -5.5235000000000003, -7.0115999999999996, -6.0130999999999997, -5.9130000000000003, -6.7603, -6.3925999999999998, -7.3480999999999996, -7.0115999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -6.0130999999999997, -6.5595999999999997, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -7.8589000000000002, -7.8589000000000002, -7.8589000000000002, -7.3480999999999996, -7.8589000000000002, -7.8589000000000002, -7.8589000000000002, -7.8589000000000002, -7.8589000000000002, -7.8589000000000002, -7.0115999999999996, -7.3480999999999996, -7.3480999999999996, -6.7603, -6.7603, -6.7603, -7.0115999999999996, -5.7385999999999999, -7.0115999999999996, -7.0115999999999996, -7.3480999999999996, -7.0115999999999996, -6.0130999999999997, -6.7603, -7.0115999999999996, -7.0115999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -7.3480999999999996, -4.8747999999999996, -4.9903000000000004, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -6.6848999999999998, -6.9362000000000004, -7.7835000000000001, -7.7835000000000001, -7.2727000000000004, -7.2727000000000004, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -8.8820999999999994, -8.8820999999999994, -8.8820999999999994, -7.2727000000000004, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.2727000000000004, -6.3171999999999997, -7.2727000000000004, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001, -7.7835000000000001]}};\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_el4065744266144809611862881\", ldavis_el4065744266144809611862881_data);\n",
" }(LDAvis);\n",
"}else if(typeof define === \"function\" && define.amd){\n",
" // require.js is available: use it to load d3/LDAvis\n",
" require.config({paths: {d3: \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el4065744266144809611862881\", ldavis_el4065744266144809611862881_data);\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & LDAvis\n",
" LDAvis_load_lib(\"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js\", function(){\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el4065744266144809611862881\", ldavis_el4065744266144809611862881_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data = get_vis_data(latent, docs, id_to_word)\n",
"prepared = pyLDAvis.prepare(**data)\n",
"pyLDAvis.display(prepared)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.10"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment