Skip to content

Instantly share code, notes, and snippets.

@deepnarainsingh
Created November 14, 2015 01:02
Show Gist options
  • Save deepnarainsingh/5ff1e62e475c30e44541 to your computer and use it in GitHub Desktop.
Save deepnarainsingh/5ff1e62e475c30e44541 to your computer and use it in GitHub Desktop.
Topic Modelling Using Graphlab on NY Times articles
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"Using GraphLab Library for Topic Modelling\n",
"---"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"'''Using pyLDAvis which is a library for Topic Model Visulisation\n",
"Reference taken from the below link\n",
"https://github.com/bmabey/pyLDAvis'''\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO] This non-commercial license of GraphLab Create is assigned to [email protected] and will expire on October 13, 2016. For commercial licensing options, visit https://dato.com/buy/.\n",
"\n",
"[INFO] Start server at: ipc:///tmp/graphlab_server-6158 - Server binary: /home/admin1/anaconda/lib/python2.7/site-packages/graphlab/unity_server - Server log: /tmp/graphlab_server_1447447392.log\n",
"[INFO] GraphLab Server Version: 1.6.1\n"
]
}
],
"source": [
"import graphlab as gl\n",
"import pyLDAvis \n",
"import pyLDAvis.graphlab\n",
"import pandas as pd\n",
"import ftfy"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"#Automatic Rendering of Visualisation\n",
"\n",
"pyLDAvis.enable_notebook()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"nyArticlesDF= pd.read_pickle(\"data/articles.pkl\")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"#Cleaning Data\n",
"\n",
"nyArticlesDF['content'] = nyArticlesDF['content'].apply(lambda x: ftfy.fix_encoding(x)\n",
" if isinstance(x, unicode)\n",
" else \"Warning: not Unicode\")"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1 row isn't unicode\n"
]
}
],
"source": [
"#There is one row which is not unicoded\n",
"print(\"{} row isn't unicode\".format(sum(nyArticlesDF['content'] == \"Warning: not Unicode\")))"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"#Dropping the row which is not unicoded\n",
"\n",
"nyArticlesDF = nyArticlesDF[nyArticlesDF['content'] != \"Warning: not Unicode\"]"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0 row isn't unicode\n"
]
}
],
"source": [
"print(\"{} row isn't unicode\".format(sum(nyArticlesDF['content'] == \"Warning: not Unicode\")))"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Passing the Data Frame from pandas as input to GraphLab SFrame\n",
"\n",
"nyArticlesSFrame= gl.SFrame(nyArticlesDF)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Canvas is accessible via web browser at the URL: http://localhost:40516/index.html\n",
"Opening Canvas in default web browser.\n"
]
}
],
"source": [
"nyArticlesSFrame.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"'''Constructing Bag-of-Words Classifier\n",
"One of the common techniques to perform document classification (and reviews classification) \n",
"is using Bag-of-Words model, in which the frequency of each word in the document is used \n",
"as a feature for training a classifier. GraphLab's text analytics toolkit makes it easy \n",
"to calculate the frequency of each word in each review. Namely, by using the count_ngrams \n",
"function with n=1, we can calculate the frequency of each word in each review. '''"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"nyArticlesSFrame['features'] = gl.text_analytics.count_ngrams(nyArticlesSFrame ['content'],1)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[WARNING] Column selection for SFrame.show is deprecated. To show only certain columns, use the sf[['column1', 'column2']] syntax or construct a new SFrame with the desired columns.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Canvas is accessible via web browser at the URL: http://localhost:40516/index.html\n",
"Opening Canvas in default web browser.\n"
]
}
],
"source": [
"nyArticlesSFrame.show(['content','features'])"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"PROGRESS: Learning a topic model\n",
"PROGRESS: Number of documents 1404\n",
"PROGRESS: Vocabulary size 39457\n",
"PROGRESS: Running collapsed Gibbs sampling\n",
"PROGRESS: +-----------+---------------+----------------+-----------------+\n",
"PROGRESS: | Iteration | Elapsed Time | Tokens/Second | Est. Perplexity |\n",
"PROGRESS: +-----------+---------------+----------------+-----------------+\n",
"PROGRESS: | 10 | 932.031ms | 4.72706e+06 | 0 |\n",
"PROGRESS: | 20 | 1.81s | 4.65163e+06 | 0 |\n",
"PROGRESS: | 30 | 2.66s | 4.37996e+06 | 0 |\n",
"PROGRESS: | 40 | 3.49s | 4.55774e+06 | 0 |\n",
"PROGRESS: | 50 | 4.33s | 4.27139e+06 | 0 |\n",
"PROGRESS: +-----------+---------------+----------------+-----------------+\n"
]
}
],
"source": [
"#Creating Topic Model\n",
"#gl.topic_model.create?\n",
"topicModel=gl.topic_model.create(nyArticlesSFrame['features'],num_topics=10,num_iterations=50)"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"#topicModel.get_topics(topic_ids=[0,1,2,3,4,5,6,7,8,9],num_words=5).print_rows(50,3)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Visualsation Of Topic Model\n",
"---"
]
},
{
"cell_type": "code",
"execution_count": 14,
"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_el61271397022065983527425220677\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el61271397022065983527425220677_data = {\"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [5, 10, 8, 9, 4, 6, 1, 2, 7, 3], \"token.table\": {\"Topic\": [7, 1, 3, 10, 9, 8, 2, 7, 1, 6, 7, 8, 3, 8, 6, 6, 4, 2, 4, 4, 8, 9, 8, 5, 7, 2, 7, 3, 7, 6, 2, 3, 6, 4, 1, 7, 6, 5, 1, 2, 5, 7, 2, 9, 9, 8, 10, 1, 6, 7, 10, 8, 2, 3, 1, 9, 2, 5, 10, 10, 10, 5, 6, 6, 4, 5, 3, 5, 4, 10, 3, 8, 2, 5, 6, 10, 1, 3, 5, 6, 7, 8, 7, 1, 3, 4, 10, 10, 5, 2, 3, 1, 7, 9, 10, 10, 10, 9, 9, 10, 3, 1, 6, 7, 8, 8, 9, 10, 10, 1, 1, 4, 8, 10, 7, 3, 5, 7, 8, 4, 1, 5, 8, 9, 1, 6, 7, 10, 2, 7, 8, 10, 8, 1, 5, 5, 10, 4, 7, 2, 5, 10, 7, 9, 10, 3, 9, 4, 2, 7, 10, 1, 5, 2, 8, 10, 4, 3, 5, 5, 3, 3, 8, 4, 1, 9, 3, 5, 8, 3, 1, 8, 1, 4, 8, 5, 6, 4, 9, 1, 6, 5, 2, 2, 3, 1, 3, 1, 8, 4, 8, 5, 8, 9, 10, 8, 6, 7, 5, 7, 1, 9, 8, 5, 9, 7, 10, 10, 5, 3, 5, 2, 2, 5, 4, 3, 4, 3, 1, 9, 10, 2, 7, 6, 1, 6, 8, 4, 7, 8, 7, 10, 8, 1, 2, 4, 8, 8, 10, 9, 3, 5, 8, 4, 1, 6, 2, 10, 3, 7, 1, 3, 1, 1, 8, 1, 9, 2, 3, 4, 7, 10, 9, 10, 9, 10, 3, 9, 1, 9, 3, 2, 6, 9, 8, 9, 9, 9, 7, 9, 6, 9, 2, 6, 10, 8, 8, 6, 6, 1, 7, 10, 3, 8, 10, 4, 10, 6, 6, 2, 5, 5, 9, 3, 8, 9, 1, 8, 10, 10, 4, 3, 6, 8, 9, 3, 9, 1, 10, 5, 2, 5, 8, 9, 6, 9, 4, 2, 4, 5, 7, 9, 9, 2, 5, 6, 10, 5, 5, 6, 9, 1, 3, 5, 3, 9, 9, 7, 3, 6, 6, 2, 3, 2, 1, 10, 7, 4, 8, 10, 10, 7, 9, 4, 6, 7, 9, 9, 5, 1, 8, 5, 6, 8, 1, 2, 7, 5, 6, 2, 4, 8, 2, 10, 3, 6, 8, 3, 3, 1, 4, 1, 6, 3, 4, 8, 10, 4, 6, 8, 2, 2, 1, 6, 9, 10, 7, 8, 9, 7, 8, 2, 7, 8, 2, 10, 4, 7, 4, 7, 3, 10, 1, 5, 7, 1, 4, 6, 10, 9, 5, 3, 4, 10, 4, 5, 10, 3, 4, 5, 6, 3, 1, 4, 6, 10, 6, 5, 2, 4, 6, 9, 2, 7, 5, 8, 9, 5, 10, 8, 2, 8, 6, 2, 8, 2, 4, 3, 9, 2, 6, 1, 4, 1, 7, 8, 1, 2, 4, 6, 10, 6, 6, 4, 2, 4, 5, 6, 1, 1, 2, 3, 9, 8, 1, 1, 3, 3, 8, 4, 6, 8, 4, 2, 1, 2, 4, 8, 1, 4, 1, 9, 4, 10, 3, 4, 9, 10, 2, 1, 2, 5, 7, 10, 2, 4, 5, 7, 7, 6, 4, 2, 6, 5, 2, 4, 6, 1, 6, 10, 2, 2, 9, 6, 2, 3, 6, 8, 5, 10, 1, 7, 3, 1, 3, 10, 9, 7, 7, 7, 9, 6, 6, 10, 3, 10, 5, 3, 9, 9, 5, 5, 5, 5, 2, 8, 5, 5, 1, 5, 9, 1, 4, 1, 4, 4, 6, 2, 2, 6, 4, 3, 4, 7, 4, 6, 7, 1, 5, 7, 9, 9, 10, 5, 2, 3, 2, 4, 3, 7, 6, 4, 9, 10, 10, 7, 7, 5, 3, 7, 8, 3, 3, 1, 4, 3, 2, 2, 1, 7, 6, 9, 9, 6, 2, 3, 9, 1, 4, 5, 6, 4, 5, 10, 4, 2, 3, 4, 6, 7, 10, 2, 5, 7, 9, 6, 5, 2, 5, 10, 1, 4, 8, 1, 1, 2, 7, 2, 1, 3, 6, 1, 2, 3, 7, 10, 1, 7, 1, 7, 8, 8, 2, 5, 9, 7, 2, 9, 2, 6, 9, 9, 2, 6, 7, 7, 1, 6, 9, 4, 4, 4, 1, 3, 4, 6, 9, 10, 9, 2, 4, 5, 9, 5, 10, 3, 1, 7, 9, 10, 4, 5, 2, 9, 4, 7, 6, 10, 3, 1, 5, 4, 7, 8, 1, 6, 8, 3, 5, 7, 1, 9, 2, 1, 5, 7, 10, 8, 10, 8, 9, 8, 7, 1, 5, 8, 10, 1, 2, 10, 2, 10, 8, 10, 1, 6, 2, 6, 3, 1, 2, 3, 7, 10, 7, 10, 8, 1, 2, 6, 9, 5, 10, 5, 1, 6, 1, 3, 5, 6, 9, 1, 2, 4, 7, 8, 7, 2, 3, 4, 8, 3, 4, 6, 4, 3, 4, 9, 7, 5, 2, 3, 7, 9, 5, 5, 9, 10, 10, 7, 1, 8, 2, 6, 6, 9, 8, 9, 2, 9, 10, 3, 3, 5, 1, 2, 6, 10, 9, 6, 7, 8, 10, 4, 8, 8, 8, 1, 10, 7, 6, 1, 6, 3, 10, 3, 4, 6, 4, 5, 7, 2, 8, 8, 4, 4, 2, 2, 10, 3, 1, 4, 5, 8, 9, 9, 4, 3, 6, 6, 9, 5, 3, 6, 10, 1, 2, 3, 5, 7, 8, 5, 8, 5, 4, 5, 7, 3, 8, 10, 9, 4, 7, 7, 6, 10, 6, 3, 4, 6, 7, 4, 7, 8, 4, 4, 4, 5, 5, 6, 7, 8, 3, 9, 5, 1, 3, 9, 9, 5, 6, 10, 10, 7, 2, 1, 8, 8, 3, 5, 6, 10, 6, 2, 8, 8, 3, 9, 5, 6, 8, 4, 2, 9, 6, 6, 9, 10, 5, 3, 7, 1, 7, 6, 7, 5, 4, 2, 5, 1, 7, 4, 9, 2, 3, 2, 1, 3, 7, 2, 2, 7, 9, 3, 8, 3, 7, 9, 3, 6, 9, 1, 3, 2, 7, 6, 4, 9, 10, 3, 7, 7, 9, 7, 6, 9, 10, 4, 4, 8, 3, 2, 3, 5, 4, 5, 7, 3, 5, 6, 1, 4, 9, 10, 10, 7, 3, 1, 3, 8, 2, 1, 6, 9, 10, 1, 9, 7, 8, 2, 6, 4, 1, 7, 8, 10, 9, 1, 3, 5, 5, 7, 9, 10, 1, 3, 4, 8, 6, 2, 9, 8, 2, 5, 10, 1, 8, 10, 1, 7, 6, 2, 9, 9, 5, 2, 10, 3, 4, 5, 8, 1, 1, 7, 2, 2, 3, 5, 6, 10, 8, 7, 4, 1, 2, 8, 9, 5, 8, 9, 10, 4, 10, 6, 8, 10, 10, 2, 8, 5, 2, 5, 7, 8, 2, 5, 6, 10, 7, 5, 2, 4, 6, 2, 7, 10, 4, 8, 10, 7, 4, 2, 2, 3, 4, 7, 8, 3, 6, 9, 10, 3, 5, 1, 7, 2, 5, 7, 10, 9, 2, 3, 5, 2, 7, 5, 10, 1, 10, 8, 4, 1, 2, 6, 3, 3, 4, 7, 7, 1, 9, 3, 10, 6, 7, 8, 10, 10, 1, 2, 9, 1, 2, 4, 5, 6, 8, 1, 10, 4, 7, 7, 4, 3, 3, 1, 8, 3, 4, 4, 6, 1, 7, 8, 8, 2, 4, 5, 10, 1, 3, 4, 5, 6, 1, 7, 2, 8, 6, 1, 2, 8, 1, 3, 7, 9, 4, 7, 1, 2, 4, 6, 1, 9, 4, 2, 10, 3, 2, 7, 10, 10, 5, 7, 6, 4, 4, 2, 3, 5, 7, 2, 2, 5, 6, 9, 10, 2, 10, 7, 5, 6, 9, 1, 3, 5, 1, 9, 5, 9, 3, 8, 2, 8, 3, 4, 5, 6, 3, 9, 10, 8, 8, 10, 2, 1, 2, 10, 3, 7, 5, 1, 6, 3, 2, 3, 10, 7, 1, 3, 2, 3, 2, 4, 3, 4, 9, 4, 5, 9, 10, 3, 4, 8, 9, 10, 4, 5, 6, 7, 9, 2, 4, 3, 6, 7, 8, 10, 7, 2, 4, 10, 4, 7, 8, 10, 2, 3, 4, 6, 2, 2, 8, 1, 1, 5, 9, 10, 5, 6, 1, 8, 6, 7, 6, 1, 1, 7, 1, 1, 2, 2, 10, 2, 6, 10, 7, 1, 10, 8, 10, 6, 10, 8, 6, 5, 1, 2, 7, 8, 2, 9, 10, 9, 5, 2, 3, 3, 8, 9, 8, 3, 9, 2, 7, 2, 4, 5, 4, 7, 5, 6, 10, 3, 6, 7, 4, 1, 4, 10, 4, 3, 8, 1, 5, 8, 1, 5, 6], \"Freq\": [0.99873096446700504, 0.45139412207987945, 0.41220798794272795, 0.13564431047475509, 0.5, 0.5, 0.15092879256965944, 0.84829721362229105, 0.23305785123966943, 0.085950413223140495, 0.67851239669421493, 0.001652892561983471, 0.5, 0.5, 0.5, 0.5, 0.5, 0.30118110236220474, 0.69783464566929132, 0.1811320754716981, 0.035849056603773584, 0.78113207547169816, 0.99259259259259258, 0.5, 0.99514563106796117, 0.059649122807017542, 0.93918128654970756, 0.5, 0.99838449111470118, 0.5, 0.90856031128404668, 0.050583657587548639, 0.038910505836575876, 0.5, 0.13839285714285715, 0.859375, 0.5, 0.5, 0.004830917874396135, 0.065217391304347824, 0.004830917874396135, 0.9251207729468599, 0.98295454545454541, 0.011363636363636364, 0.5, 0.5, 0.5, 0.5, 0.99876593994241059, 0.00082270670505964628, 0.5, 0.99375000000000002, 0.5, 0.5, 0.5, 0.99530516431924887, 0.99661016949152548, 0.99727520435967298, 0.99259259259259258, 0.99259259259259258, 0.99386503067484666, 0.93202416918428999, 0.066465256797583083, 0.99676375404530748, 0.015503875968992248, 0.98062015503875966, 0.99041533546325877, 0.0063897763578274758, 0.5, 0.5, 0.9971830985915493, 0.99502487562189057, 0.82210708117443865, 0.15025906735751296, 0.022452504317789293, 0.0034542314335060447, 0.0028622540250447226, 0.18819320214669052, 0.37996422182468692, 0.34203935599284435, 0.08694096601073345, 0.5, 0.5, 0.021087160262417994, 0.74929709465791938, 0.10074976569821931, 0.12839737582005623, 0.5, 0.99730458221024254, 0.99944102850754613, 0.5, 0.83049472830494731, 0.16545012165450121, 0.0032441200324412004, 0.5, 0.99411764705882355, 0.5, 0.5, 0.23013245033112584, 0.76821192052980136, 0.99630996309963105, 0.91932270916334657, 0.0079681274900398405, 0.071713147410358571, 0.99867724867724872, 0.99649122807017543, 0.5, 0.99333333333333329, 0.5, 0.5, 0.5, 0.055418719211822662, 0.31896551724137934, 0.12438423645320197, 0.99315068493150682, 0.99874371859296485, 0.076086956521739135, 0.007246376811594203, 0.91304347826086951, 0.5, 0.5, 0.5, 0.5, 0.5, 0.30927193528313629, 0.22588674548848786, 0.44057249533291848, 0.024268823895457373, 0.5, 0.99736842105263157, 0.99509803921568629, 0.5, 0.99616858237547889, 0.9948892674616695, 0.0034071550255536627, 0.5, 0.5, 0.0062500000000000003, 0.99062499999999998, 0.23049645390070922, 0.76773049645390068, 0.5, 0.99570815450643779, 0.99397590361445787, 0.5, 0.5, 0.5, 0.5, 0.9970326409495549, 0.5, 0.5, 0.007874015748031496, 0.98818897637795278, 0.3672055427251732, 0.63048498845265588, 0.99559471365638763, 0.99415204678362568, 0.5, 0.99663299663299665, 0.5, 0.5, 0.010416666666666666, 0.984375, 0.99621212121212122, 0.99812382739212002, 0.5, 0.84931506849315064, 0.0078277886497064575, 0.14090019569471623, 0.5, 0.99893276414087517, 0.5, 0.79364238410596022, 0.12662251655629139, 0.079735099337748347, 0.5, 0.99871630295250324, 0.5, 0.99826086956521742, 0.5, 0.5, 0.5, 0.99722991689750695, 0.0054054054054054057, 0.99189189189189186, 0.0096618357487922701, 0.98792270531400961, 0.99703849950641654, 0.0019743336623889436, 0.99816176470588236, 0.5, 0.0038131553860819827, 0.0019065776930409914, 0.99332697807435655, 0.5, 0.99563318777292575, 0.99547511312217196, 0.5, 0.5, 0.99598393574297184, 0.96166484118291351, 0.037239868565169768, 0.99574468085106382, 0.024193548387096774, 0.9731182795698925, 0.5, 0.5, 0.99739583333333337, 0.99887514060742411, 0.99800399201596801, 0.99740932642487046, 0.5, 0.96323529411764708, 0.033088235294117647, 0.99453551912568305, 0.70454545454545459, 0.29480519480519479, 0.99574468085106382, 0.013937282229965157, 0.97560975609756095, 0.0069686411149825784, 0.5, 0.99390243902439024, 0.5, 0.023121387283236993, 0.96820809248554918, 0.0057803468208092483, 0.83950617283950613, 0.15873015873015872, 0.5, 0.5, 0.5, 0.99652777777777779, 0.4858962693357598, 0.5004549590536852, 0.0018198362147406734, 0.010919017288444041, 0.99489795918367352, 0.9921875, 0.99473684210526314, 0.69418604651162785, 0.30523255813953487, 0.99526066350710896, 0.5, 0.5, 0.5, 0.0091324200913242004, 0.98630136986301364, 0.5, 0.5, 0.9948275862068966, 0.0034482758620689655, 0.9980732177263969, 0.5, 0.5, 0.99460431654676262, 0.0035971223021582736, 0.27102803738317754, 0.45916294189353923, 0.059325477448191791, 0.11743193823648923, 0.092238927265339291, 0.15510718789407313, 0.84426229508196726, 0.26649076517150394, 0.73087071240105539, 0.0097560975609756097, 0.98536585365853657, 0.99797160243407712, 0.99884259259259256, 0.5, 0.5, 0.98795180722891562, 0.0080321285140562242, 0.99342105263157898, 0.5, 0.99669966996699666, 0.9955357142857143, 0.5, 0.5, 0.99824561403508771, 0.99509803921568629, 0.077625570776255703, 0.92009132420091322, 0.5, 0.99692307692307691, 0.99310344827586206, 0.99695121951219512, 0.99630996309963105, 0.56732580037664782, 0.26224105461393599, 0.1699623352165725, 0.022670025188916875, 0.97481108312342568, 0.99521531100478466, 0.0039215686274509803, 0.99411764705882355, 0.99807692307692308, 0.99404761904761907, 0.5, 0.9983948635634029, 0.073903002309468821, 0.92609699769053122, 0.5, 0.99528301886792447, 0.5, 0.023529411764705882, 0.052941176470588235, 0.9205882352941176, 0.5, 0.5, 0.32270916334661354, 0.19521912350597609, 0.4807436918990704, 0.99337748344370858, 0.5, 0.99671052631578949, 0.5, 0.99264705882352944, 0.99492385786802029, 0.93610547667342803, 0.0020283975659229209, 0.0020283975659229209, 0.059837728194726165, 0.5, 0.996, 0.5, 0.029871977240398292, 0.0085348506401137988, 0.17923186344238975, 0.12091038406827881, 0.66002844950213369, 0.5, 0.5, 0.98373983739837401, 0.008130081300813009, 0.0065040650406504065, 0.99841772151898733, 0.5, 0.049356223175965663, 0.94849785407725318, 0.36099585062240663, 0.63623789764868599, 0.0027662517289073307, 0.5, 0.5, 0.5, 0.5, 0.0065789473684210523, 0.99122807017543857, 0.99386503067484666, 0.0042918454935622317, 0.99356223175965663, 0.99502487562189057, 0.998330550918197, 0.5, 0.5, 0.5, 0.86734693877551017, 0.12925170068027211, 0.5, 0.5, 0.5, 0.5, 0.98327137546468402, 0.0037174721189591076, 0.011152416356877323, 0.5, 0.5, 0.97570850202429149, 0.023785425101214574, 0.079632465543644712, 0.66768759571209801, 0.25114854517611024, 0.11038107752956636, 0.71747700394218139, 0.17082785808147175, 0.0091324200913242004, 0.98630136986301364, 0.99686520376175547, 0.5, 0.5, 0.98614958448753465, 0.011080332409972299, 0.34218916046758768, 0.36875664187035068, 0.28799149840595112, 0.5, 0.99709302325581395, 0.23599320882852293, 0.76230899830220711, 0.5, 0.5, 0.0070175438596491229, 0.1415204678362573, 0.13567251461988303, 0.71578947368421053, 0.99833610648918469, 0.5, 0.5, 0.9970149253731343, 0.5, 0.5, 0.003952569169960474, 0.99505928853754944, 0.5, 0.5, 0.99598393574297184, 0.5, 0.99845440494590421, 0.99702380952380953, 0.12842465753424659, 0.84931506849315064, 0.020547945205479451, 0.89682539682539686, 0.10158730158730159, 0.5, 0.99259259259259258, 0.010256410256410256, 0.98461538461538467, 0.074688796680497924, 0.92116182572614103, 0.37820512820512819, 0.019905533063427801, 0.60188933873144401, 0.36275565123789022, 0.51237890204520986, 0.011840688912809472, 0.11194833153928956, 0.5, 0.5, 0.99734748010610075, 0.99222797927461137, 0.0051813471502590676, 0.37939393939393939, 0.49333333333333335, 0.12606060606060607, 0.9400705052878966, 0.0023501762632197414, 0.056404230317273797, 0.5, 0.99800796812749004, 0.10876132930513595, 0.0050352467270896274, 0.43403826787512589, 0.45115810674723061, 0.99378881987577639, 0.5, 0.018272425249169437, 0.63289036544850497, 0.12292358803986711, 0.22508305647840532, 0.025925925925925925, 0.97037037037037033, 0.0092592592592592587, 0.97685185185185186, 0.0092592592592592587, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.026086956521739129, 0.9695652173913043, 0.5, 0.99964850615114231, 0.99723756906077343, 0.5, 0.41725601131541723, 0.58203677510608198, 0.061475409836065573, 0.93852459016393441, 0.5, 0.99382716049382713, 0.9942196531791907, 0.0017574692442882249, 0.75131810193321613, 0.017574692442882251, 0.19859402460456943, 0.029876977152899824, 0.5, 0.99807692307692308, 0.5, 0.99415204678362568, 0.49106302916274697, 0.13546566321730949, 0.37253057384760113, 0.5, 0.4813838550247117, 0.00065897858319604609, 0.51795716639209222, 0.5, 0.5, 0.5, 0.022392834293026232, 0.97760716570697381, 0.97389558232931728, 0.024096385542168676, 0.99734748010610075, 0.5, 0.5, 0.5, 0.5, 0.99856527977044474, 0.5, 0.5, 0.99236641221374045, 0.45430210325047798, 0.54531548757170167, 0.99925093632958806, 0.5, 0.9780564263322884, 0.018808777429467086, 0.37811484290357528, 0.27193932827735645, 0.34019501625135429, 0.0086673889490790895, 0.5, 0.5, 0.0049140049140049139, 0.0024570024570024569, 0.98894348894348894, 0.0024570024570024569, 0.54993065187239942, 0.19833564493758668, 0.058945908460471569, 0.19209431345353675, 0.5, 0.5, 0.99672131147540988, 0.99937027707808568, 0.99435028248587576, 0.5, 0.5, 0.0075949367088607592, 0.98987341772151893, 0.5, 0.99861495844875348, 0.5, 0.9956521739130435, 0.5, 0.99431818181818177, 0.99310344827586206, 0.46859333529932173, 0.1757593630197582, 0.25538189324682986, 0.10026540843409024, 0.99117647058823533, 0.0058823529411764705, 0.92436235708003522, 0.074758135444151275, 0.99749373433583954, 0.022004889975550123, 0.95354523227383858, 0.022004889975550123, 0.5, 0.99730458221024254, 0.99763033175355453, 0.5, 0.5, 0.5, 0.99772727272727268, 0.99568965517241381, 0.57616707616707619, 0.4226044226044226, 0.99555555555555553, 0.5, 0.99656357388316152, 0.99342105263157898, 0.99549549549549554, 0.99865591397849462, 0.99758454106280192, 0.99707602339181289, 0.5, 0.5, 0.99681528662420382, 0.99551569506726456, 0.1357409713574097, 0.61021170610211706, 0.25404732254047324, 0.73546756529064872, 0.26411120471777588, 0.71156558533145275, 0.28772919605077574, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99492385786802029, 0.013333333333333334, 0.98222222222222222, 0.99300699300699302, 0.5, 0.5, 0.5, 0.99448123620309048, 0.0044150110375275938, 0.99519230769230771, 0.9974025974025974, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99539170506912444, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99794238683127567, 0.99638989169675085, 0.99259259259259258, 0.5, 0.5, 0.99543378995433784, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99870298313878081, 0.5, 0.5, 0.5, 0.99965647543799385, 0.5, 0.6562287270251872, 0.3437712729748128, 0.5, 0.5, 0.78561549100968187, 0.17842323651452283, 0.034578146611341634, 0.21407185628742514, 0.68263473053892221, 0.0059880239520958087, 0.09730538922155689, 0.078947368421052627, 0.8997975708502024, 0.020242914979757085, 0.99876084262701359, 0.99415204678362568, 0.025537634408602152, 0.25268817204301075, 0.15591397849462366, 0.021505376344086023, 0.54435483870967738, 0.5, 0.33428844317096468, 0.63419293218720152, 0.030563514804202482, 0.5, 0.5, 0.83195876288659798, 0.1670103092783505, 0.5, 0.73057953144266341, 0.24445129469790383, 0.024660912453760789, 0.99772209567198178, 0.19096774193548388, 0.80129032258064514, 0.0064516129032258064, 0.9932432432432432, 0.11764705882352941, 0.8714596949891068, 0.0087145969498910684, 0.001557632398753894, 0.5280373831775701, 0.24766355140186916, 0.083333333333333329, 0.13862928348909656, 0.5, 0.5, 0.038257173219978749, 0.29649309245483529, 0.6641870350690755, 0.5, 0.99295774647887325, 0.5, 0.5, 0.5, 0.042813455657492352, 0.95412844036697253, 0.58592848904267592, 0.41349480968858132, 0.5, 0.99596774193548387, 0.0041067761806981521, 0.063655030800821355, 0.93223819301848054, 0.99354838709677418, 0.74555928948631778, 0.15794527124339894, 0.096495439270283243, 0.5, 0.5, 0.9939393939393939, 0.019561815336463225, 0.25352112676056338, 0.18779342723004694, 0.19248826291079812, 0.34663536776212833, 0.99487179487179489, 0.5, 0.5, 0.069421487603305784, 0.047933884297520664, 0.88099173553719012, 0.9427480916030534, 0.055343511450381681, 0.5, 0.11764705882352941, 0.0091135045567522777, 0.50041425020712516, 0.37282518641259321, 0.5, 0.5, 0.99310344827586206, 0.5, 0.99411764705882355, 0.5, 0.5, 0.99576271186440679, 0.99868247694334655, 0.99938080495356041, 0.99820788530465954, 0.0033955857385398981, 0.89134125636672323, 0.10526315789473684, 0.5, 0.5, 0.5, 0.085972850678733032, 0.58371040723981904, 0.33031674208144796, 0.98428571428571432, 0.014285714285714285, 0.5, 0.27323549965059402, 0.51991614255765195, 0.14255765199161424, 0.063591893780573019, 0.5, 0.5, 0.5, 0.5, 0.99489795918367352, 0.5, 0.18884068450228972, 0.81103880453121235, 0.52453058752271353, 0.47486371895820717, 0.27309236947791166, 0.72623828647925037, 0.5, 0.91581632653061229, 0.081632653061224483, 0.9985693848354793, 0.99588477366255146, 0.99801587301587302, 0.99917081260364837, 0.5, 0.5, 0.99884259259259256, 0.61332179930795849, 0.035467128027681663, 0.089100346020761251, 0.012110726643598616, 0.25, 0.5, 0.99411764705882355, 0.99625468164794007, 0.28028747433264889, 0.0071868583162217657, 0.62628336755646818, 0.086242299794661192, 0.99528301886792447, 0.99481865284974091, 0.99453551912568305, 0.98957126303592124, 0.0092699884125144842, 0.99978646166986973, 0.018847006651884702, 0.57760532150776056, 0.40243902439024393, 0.99473684210526314, 0.76842105263157889, 0.21871345029239767, 0.0076023391812865496, 0.0011695906432748538, 0.0035087719298245615, 0.5, 0.0055555555555555558, 0.097777777777777783, 0.81000000000000005, 0.085555555555555551, 0.05197132616487455, 0.79211469534050183, 0.15412186379928317, 0.5, 0.95855855855855854, 0.0036036036036036037, 0.036036036036036036, 0.5, 0.99856733524355301, 0.22779043280182232, 0.32801822323462415, 0.077448747152619596, 0.36560364464692485, 0.5, 0.99897750511247441, 0.5, 0.5, 0.5, 0.5, 0.99754901960784315, 0.5, 0.96170212765957441, 0.034042553191489362, 0.17880794701986755, 0.81986754966887421, 0.0055865921787709499, 0.99162011173184361, 0.0012658227848101266, 0.13924050632911392, 0.85886075949367091, 0.5, 0.5, 0.99826086956521742, 0.0024009603841536613, 0.83673469387755106, 0.038415366146458581, 0.1212484993997599, 0.5, 0.50132194427496446, 0.14093959731543623, 0.13300793166564978, 0.22473052674394955, 0.079734219269102985, 0.92026578073089704, 0.99532710280373837, 0.99516908212560384, 0.99797570850202433, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.0058997050147492625, 0.0058997050147492625, 0.98525073746312686, 0.5, 0.14222712238147739, 0.85667034178610801, 0.0093896713615023476, 0.9859154929577465, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.77837837837837842, 0.0027027027027027029, 0.0027027027027027029, 0.21554054054054053, 0.99922898997686971, 0.99333333333333329, 0.99378881987577639, 0.5, 0.5, 0.99844479004665632, 0.99401197604790414, 0.99669966996699666, 0.060739114526161729, 0.41346505671423345, 0.52542993047932673, 0.0010695187165775401, 0.57593582887700534, 0.42245989304812837, 0.5, 0.32382892057026474, 0.6761710794297352, 0.5, 0.5, 0.5, 0.996, 0.5, 0.99547511312217196, 0.059561128526645767, 0.93730407523510972, 0.5, 0.5, 0.98832684824902728, 0.0077821011673151752, 0.5, 0.78622327790973867, 0.21258907363420426, 0.5, 0.99640287769784175, 0.98677248677248675, 0.010582010582010581, 0.0017636684303350969, 0.95426829268292679, 0.024390243902439025, 0.019817073170731708, 0.99919028340080973, 0.99802761341222879, 0.99738219895287961, 0.5, 0.31131296449215523, 0.0016515276630883566, 0.66556564822460773, 0.020644095788604461, 0.17537942664418213, 0.82293423271500843, 0.99865771812080539, 0.47904761904761906, 0.03619047619047619, 0.4838095238095238, 0.99572649572649574, 0.994413407821229, 0.9642857142857143, 0.032967032967032968, 0.5, 0.5, 0.5, 0.5, 0.99315068493150682, 0.5, 0.030257186081694403, 0.8870398386283409, 0.032274331820474032, 0.049924357034795766, 0.5, 0.99832495812395305, 0.5, 0.99371069182389937, 0.089230769230769225, 0.90769230769230769, 0.89431704885343966, 0.089730807577268201, 0.015952143569292122, 0.5, 0.5, 0.99633699633699635, 0.5, 0.51821862348178138, 0.13866396761133604, 0.34210526315789475, 0.5, 0.5, 0.5, 0.99874213836477987, 0.9971830985915493, 0.99832214765100669, 0.5, 0.5, 0.99382716049382713, 0.5, 0.5, 0.99794661190965095, 0.99507389162561577, 0.98739495798319332, 0.0084033613445378148, 0.99824868651488619, 0.99555555555555553, 0.5, 0.24691358024691357, 0.0061728395061728392, 0.74537037037037035, 0.99230769230769234, 0.10655737704918032, 0.89139344262295084, 0.99626865671641796, 0.99710144927536237, 0.5, 0.72425828970331585, 0.094240837696335081, 0.17975567190226877, 0.97305389221556882, 0.023952095808383235, 0.99669966996699666, 0.99940511600237958, 0.99593495934959353, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.55882352941176472, 0.44057623049219685, 0.5, 0.5, 0.99766355140186913, 0.5, 0.5, 0.5, 0.99473684210526314, 0.5, 0.5, 0.5, 0.97071129707112969, 0.025104602510460251, 0.998, 0.028169014084507043, 0.0070422535211267607, 0.96126760563380287, 0.018218623481781375, 0.12753036437246965, 0.85222672064777327, 0.22087745839636913, 0.77836611195158856, 0.007575757575757576, 0.98863636363636365, 0.99583333333333335, 0.99583333333333335, 0.5, 0.99991642988467322, 0.99744897959183676, 0.5, 0.5, 0.0035735556879094698, 0.71113758189398446, 0.28528886241810603, 0.5, 0.98648648648648651, 0.012285012285012284, 0.99656357388316152, 0.5, 0.99305555555555558, 0.5, 0.99957356076759063, 0.091590341382181514, 0.9025811823480433, 0.0033305578684429643, 0.0016652789342214821, 0.99890710382513659, 0.5, 0.5, 0.5, 0.16944444444444445, 0.16111111111111112, 0.59027777777777779, 0.077777777777777779, 0.029284164859002169, 0.0043383947939262474, 0.46529284164859003, 0.5, 0.5, 0.5, 0.99618320610687028, 0.5, 0.0071174377224199285, 0.98932384341637014, 0.5, 0.017799352750809062, 0.3155339805825243, 0.66504854368932043, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.041095890410958902, 0.954337899543379, 0.053182917002417403, 0.024979854955680902, 0.082191780821917804, 0.83883964544722001, 0.99840255591054317, 0.71803499327052489, 0.28129205921938089, 0.99685534591194969, 0.028571428571428571, 0.13015873015873017, 0.020634920634920634, 0.29841269841269841, 0.52063492063492067, 0.5, 0.5, 0.99689440993788825, 0.12698412698412698, 0.86596119929453264, 0.0035273368606701938, 0.0035273368606701938, 0.5, 0.020242914979757085, 0.97773279352226716, 0.995, 0.5, 0.99487179487179489, 0.5, 1.0, 0.99259259259259258, 0.99375000000000002, 0.99711815561959649, 0.99706744868035191, 0.5, 0.029520295202952029, 0.044280442804428041, 0.077490774907749083, 0.84501845018450183, 0.0042918454935622317, 0.0042918454935622317, 0.15021459227467812, 0.84120171673819744, 0.5, 0.99708454810495628, 0.5, 0.097156398104265407, 0.90047393364928907, 0.99337748344370858, 0.5, 0.5, 0.99671052631578949, 0.5, 0.5, 0.5, 0.5, 0.5, 0.14043583535108958, 0.026634382566585957, 0.15738498789346247, 0.66707021791767551, 0.0072639225181598066, 0.0056568196103079825, 0.3834066624764299, 0.0015713387806411063, 0.60905091137649281, 0.99557522123893805, 0.5, 0.5, 0.5, 0.69599999999999995, 0.010666666666666666, 0.094, 0.19866666666666666, 0.5, 0.97505197505197505, 0.010395010395010396, 0.012474012474012475, 0.010526315789473684, 0.98421052631578942, 0.99489795918367352, 0.5, 0.98856209150326801, 0.0098039215686274508, 0.5, 0.5, 0.99778761061946908, 0.5, 0.5, 0.5, 0.30261780104712044, 0.59371727748691094, 0.10366492146596859, 0.99295774647887325, 0.15597920277296359, 0.84228769497400346, 0.0098039215686274508, 0.98529411764705888, 0.5, 0.99275362318840576, 0.5, 0.99801980198019802, 0.99652777777777779, 0.99858757062146897, 0.5, 0.5, 0.5, 0.56821963394342767, 0.13893510815307819, 0.26039933444259566, 0.031613976705490848, 0.5, 0.5, 0.5, 0.99861239592969475, 0.00092506938020351531, 0.99371069182389937, 0.99583333333333335, 0.99697885196374625, 0.5, 0.22680412371134021, 0.77113402061855674, 0.5, 0.5, 0.026119402985074626, 0.97201492537313428, 0.78851699729092017, 0.21139561303853885, 0.99543378995433784, 0.5, 0.62279888785912885, 0.2242817423540315, 0.0037071362372567192, 0.14828544949026876, 0.093953488372093025, 0.010232558139534883, 0.34511627906976744, 0.085581395348837214, 0.46511627906976744, 0.15198863636363635, 0.84659090909090906, 0.8735955056179775, 0.12546816479400749, 0.99367088607594933, 0.070707070707070704, 0.89646464646464652, 0.030303030303030304, 0.4308176100628931, 0.065513626834381555, 0.46750524109014674, 0.035639412997903561, 0.99484536082474229, 0.99270072992700731, 0.56207204525156296, 0.40041679071152131, 0.0017862459065197975, 0.035724918130395952, 0.5, 0.5, 0.99749373433583954, 0.17391304347826086, 0.82298136645962738, 0.5, 0.9939393939393939, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.16647365373480022, 0.17371163867979156, 0.13607411696583671, 0.52374059061957157, 0.5, 0.25654450261780104, 0.16753926701570682, 0.56095736724008971, 0.014958863126402393, 0.5, 0.99236641221374045, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99761904761904763, 0.99007092198581559, 0.0094562647754137114, 0.51136363636363635, 0.48721590909090912, 0.73011363636363635, 0.26988636363636365, 0.5, 0.5, 0.5, 0.5, 0.996, 0.8936170212765957, 0.019148936170212766, 0.085106382978723402, 0.23000000000000001, 0.0625, 0.70499999999999996, 0.99637681159420288, 0.5, 0.9966666666666667, 0.99333333333333329, 0.0073800738007380072, 0.06273062730627306, 0.92619926199261993, 0.5, 0.5, 0.5, 0.99827288428324701, 0.9941860465116279, 0.5, 0.015267175572519083, 0.98015267175572518, 0.0030534351145038168, 0.5, 0.96486229819563152, 0.035137701804368468, 0.9942196531791907, 0.99731182795698925, 0.5, 0.5, 0.98881789137380194, 0.0063897763578274758, 0.0031948881789137379, 0.47520661157024796, 0.32592975206611569, 0.19886363636363635, 0.5, 0.25114155251141551, 0.26560121765601219, 0.15296803652968036, 0.33028919330289191, 0.99679487179487181, 0.5, 0.41469816272965881, 0.10236220472440945, 0.051181102362204724, 0.43044619422572178, 0.5, 0.5, 0.0065146579804560263, 0.045602605863192182, 0.10912052117263844, 0.30456026058631924, 0.53257328990228014, 0.5, 0.97570850202429149, 0.0080971659919028341, 0.012145748987854251, 0.27044854881266489, 0.72823218997361483, 0.043024771838331158, 0.9569752281616688, 0.10093167701863354, 0.003105590062111801, 0.89440993788819878, 0.99514563106796117, 0.99789915966386555, 0.78594080338266381, 0.21353065539112051, 0.99815157116451014, 0.6517857142857143, 0.16454081632653061, 0.0012755102040816326, 0.18176020408163265, 0.33158637371497685, 0.66821205402136663, 0.99777777777777776, 0.5, 0.5, 0.99865951742627346, 0.99856527977044474, 0.5, 0.95982905982905986, 0.040000000000000001, 0.99932019034670294, 0.26367461430575034, 0.73492286115007011, 0.99401197604790414, 0.5, 0.5, 0.96525096525096521, 0.030888030888030889, 0.5, 0.5, 0.5, 0.5, 0.5, 0.99456521739130432, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.84636678200692039, 0.15294117647058825, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.91550053821313238, 0.08288482238966631, 0.001076426264800861, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.929623802031183, 0.070233156916034906, 0.5], \"Term\": [\"0\", \"000\", \"000\", \"000\", \"0600\", \"088\", \"1\", \"1\", \"10\", \"10\", \"10\", \"10\", \"169\", \"1835\", \"1840\", \"1841\", \"1909\", \"2\", \"2\", \"2013\", \"2013\", \"2013\", \"212\", \"2500\", \"27\", \"3\", \"3\", \"323\", \"4\", \"46th\", \"5\", \"5\", \"5\", \"521st\", \"6\", \"6\", \"685\", \"692\", \"7\", \"7\", \"7\", \"7\", \"70\", \"70\", \"803\", \"82nd\", \"950\", \"989\", \"a\", \"a\", \"abbott\\u2019s\", \"abc\", \"aboveground\", \"abysmally\", \"actions\\u201d\", \"activist\", \"actually\", \"administration\", \"afghan\", \"afghanistan\", \"africa\", \"agency\", \"agency\", \"agent\", \"agreed\", \"agreed\", \"agreement\", \"agreement\", \"aimee\", \"akwasi\", \"al\", \"album\", \"almost\", \"almost\", \"almost\", \"almost\", \"also\", \"also\", \"also\", \"also\", \"also\", \"alternating\", \"amalfitano\\u2019s\", \"american\", \"american\", \"american\", \"american\", \"ams\", \"analyst\", \"and\", \"angeles\\u201d\", \"another\", \"another\", \"another\", \"antismoking\", \"arab\", \"arapaho\", \"arch\", \"area\", \"area\", \"army\", \"around\", \"around\", \"around\", \"art\", \"artist\", \"ascendant\", \"assad\", \"assads\\u2019\", \"assane\", \"at\", \"at\", \"at\", \"at\", \"atlanta\", \"attack\", \"audience\", \"audience\", \"audience\", \"austerely\", \"ava\", \"avenida\", \"ayers\", \"azim\", \"back\", \"back\", \"back\", \"back\", \"bakti\", \"ball\", \"ballet\", \"ballpark\\u201d\", \"band\", \"bank\", \"bank\", \"barbershop\", \"barrera\", \"baseball\", \"baseball\", \"based\", \"based\", \"batiste\", \"bay\", \"beijing\", \"beji\", \"bellwether\", \"belodedici\", \"beltran\", \"benefit\", \"bewilderment\", \"bickered\", \"bond\", \"bond\", \"book\", \"book\", \"border\", \"boston\", \"bowens\", \"brand\", \"brewery\\u2019s\", \"bridging\", \"brooklyn\", \"brooklyn\", \"brown\", \"budget\", \"buffet\", \"building\", \"building\", \"building\", \"buildings\\u2019\", \"business\", \"businessday\", \"but\", \"but\", \"but\", \"byline\", \"c\", \"calatravatelaclava\", \"campaign\", \"campaign\\u201d\", \"canevari\", \"canopy\", \"can\\u2019t\", \"capital\", \"capital\", \"car\", \"car\", \"care\", \"care\", \"career\", \"carsen\", \"case\", \"case\", \"case\", \"castaing\", \"cbs\", \"ceiling\", \"celeste\", \"chameleon\", \"championship\", \"change\", \"change\", \"character\", \"charge\", \"charge\", \"chaudhry\", \"chavan\", \"chemical\", \"child\", \"china\", \"chinese\", \"chlo\\u00eb\", \"choice\", \"choice\", \"chris\", \"city\", \"city\", \"civil\", \"claim\", \"claim\", \"claim\", \"clerici\", \"cleveland\", \"cloudlike\", \"club\", \"club\", \"club\", \"coach\", \"coach\", \"coiled\", \"coincidental\", \"colloquially\", \"com\", \"come\", \"come\", \"come\", \"come\", \"comedy\", \"commander\", \"commission\", \"company\", \"company\", \"concert\", \"concussed\", \"condescendingly\", \"confesses\", \"conflict\", \"conflict\", \"confluence\", \"congenial\", \"congress\", \"congress\", \"conservative\", \"corresponding\", \"correspondingly\", \"cost\", \"cost\", \"could\", \"could\", \"could\", \"could\", \"could\", \"country\", \"country\", \"country\\u2019s\", \"country\\u2019s\", \"county\", \"county\", \"course\", \"court\", \"courted\", \"courtier\\u2019s\", \"create\", \"create\", \"creative\", \"cred\", \"crime\", \"criminal\", \"cryptic\", \"cumpston\", \"cup\", \"customer\", \"cut\", \"cut\", \"dabble\", \"dance\", \"dancer\", \"data\", \"davis\", \"day\", \"day\", \"day\", \"de\", \"de\", \"dead\", \"death\", \"death\", \"debt\", \"default\", \"definitively\", \"democrat\", \"department\", \"department\", \"desertification\", \"design\", \"diageo\\u2019s\", \"died\", \"died\", \"died\", \"differences\\u201d\", \"diplomats\", \"director\", \"director\", \"director\", \"disease\", \"disinclination\", \"district\", \"district\\u2019s\", \"document\", \"domestic\", \"don\\u2019t\", \"don\\u2019t\", \"don\\u2019t\", \"don\\u2019t\", \"doritos\", \"dr\", \"drunk\", \"e\", \"e\", \"e\", \"e\", \"e\", \"eads\", \"earthen\", \"economic\", \"economic\", \"economic\", \"economy\", \"economy\\u2019s\", \"editor\", \"editor\", \"effort\", \"effort\", \"effort\", \"electrification\", \"elements\\u201d\", \"embezzled\", \"emit\", \"employee\", \"employee\", \"employer\", \"energy\", \"energy\", \"english\", \"enough\", \"epidemiology\", \"epigram\", \"episcopal\", \"episode\", \"episode\", \"erekat\", \"erika\", \"espa\\u00f1a\", \"euphemism\", \"european\", \"european\", \"european\", \"evasion\", \"eveleigh\", \"even\", \"even\", \"event\", \"event\", \"event\", \"every\", \"every\", \"every\", \"everyone\", \"everyone\", \"everything\", \"evinced\", \"exalt\", \"example\", \"example\", \"executive\", \"executive\", \"executive\", \"exemplar\", \"expert\", \"f\", \"f\", \"factional\", \"faltered\", \"family\", \"family\", \"family\", \"family\", \"fan\", \"fantasia\", \"fantasist\", \"father\", \"fatherland\", \"fatih\", \"federal\", \"federal\", \"felonious\", \"fermin\", \"festival\", \"festoon\", \"field\", \"film\", \"final\", \"final\", \"final\", \"find\", \"find\", \"finessing\", \"finish\", \"finished\", \"finished\", \"fire\", \"fire\", \"first\", \"first\", \"first\", \"five\", \"five\", \"five\", \"five\", \"fizzled\", \"flav\", \"food\", \"football\", \"football\", \"for\", \"for\", \"for\", \"force\", \"force\", \"force\", \"forefather\", \"foreign\", \"former\", \"former\", \"former\", \"former\", \"formula\", \"fortification\", \"four\", \"four\", \"four\", \"four\", \"fourth\", \"fourth\", \"fox\", \"fox\", \"fox\", \"freetown\", \"freighted\", \"freight\\u201d\", \"frenchness\", \"fretboard\", \"freudian\", \"gallery\", \"gallery\", \"galloped\", \"game\", \"gas\", \"gerrard\", \"get\", \"get\", \"giant\", \"giant\", \"gift\\u201d\", \"girardi\", \"girl\", \"go\", \"go\", \"go\", \"go\", \"go\", \"goad\", \"goal\", \"goldfarb\", \"gone\", \"good\", \"good\", \"good\", \"gorvy\", \"government\", \"government\", \"government\", \"grande\", \"grenoble\", \"grise\", \"group\", \"group\", \"gun\", \"gun\", \"guy\", \"g\\u00f6del\", \"half\\u2019s\", \"halo\", \"handshaking\", \"hard\", \"harrisburg\", \"hatcher\", \"hbo\", \"he\", \"he\", \"health\", \"healy\", \"he\\u2019s\", \"he\\u2019s\", \"high\", \"high\", \"high\", \"high\", \"himan\", \"hinder\", \"hit\", \"hit\", \"hit\", \"hit\", \"home\", \"home\", \"home\", \"home\", \"hornless\", \"horwitz\", \"host\", \"house\", \"how\", \"hsw\", \"hydrated\", \"i\", \"i\", \"icomp\", \"if\", \"ikai\", \"image\", \"immersion\", \"immigrant\", \"improve\", \"in\", \"in\", \"in\", \"in\", \"include\", \"include\", \"including\", \"including\", \"increase\", \"industry\", \"industry\", \"industry\", \"inflating\", \"injury\", \"inning\", \"innumerable\", \"inoperable\", \"instilling\", \"insurance\", \"intelligence\", \"international\", \"international\", \"internet\", \"intrastate\", \"investigation\", \"investigator\", \"investor\", \"iran\", \"iranian\", \"iran\\u2019s\", \"irks\", \"irreducible\", \"israel\", \"israeli\", \"issue\", \"issue\", \"issue\", \"it\", \"it\", \"it\\u2019s\", \"it\\u2019s\", \"iwantgreatcare\", \"jailer\", \"javi\", \"jazziness\", \"jeez\", \"jersey\", \"jet\", \"jet\", \"jeter\", \"jeters\", \"jiaying\", \"jimmie\", \"job\", \"job\", \"johnson\", \"judge\", \"julfikar\", \"jyoti\", \"kamikaze\", \"karlton\", \"keebler\", \"kept\", \"kerr\", \"kgsr\", \"khalifa\", \"khartoum\\u2019s\", \"khaw\", \"kieffer\", \"killed\", \"killing\", \"knee\", \"kontinental\", \"kopicki\", \"korea\", \"kosuke\", \"kruglyanskaya\", \"kuijs\", \"kusuma\", \"kyah\", \"l\", \"lancashire\", \"lanza\", \"larkins\", \"last\", \"laughingly\", \"law\", \"law\", \"lawmakers\\u2019\", \"lawrie\", \"le\", \"le\", \"le\", \"lead\", \"lead\", \"lead\", \"lead\", \"leader\", \"leader\", \"leader\", \"league\", \"learned\", \"least\", \"least\", \"least\", \"least\", \"least\", \"lech\", \"left\", \"left\", \"left\", \"leonsis\", \"lien\", \"life\", \"life\", \"lightest\", \"like\", \"like\", \"like\", \"limit\", \"little\", \"little\", \"little\", \"lived\", \"local\", \"local\", \"local\", \"long\", \"long\", \"long\", \"long\", \"long\", \"louse\", \"lucroy\\u2019s\", \"m\", \"m\", \"m\", \"macchu\", \"machine\", \"macroeconomic\", \"madden\", \"maher\", \"mail\", \"mail\", \"make\", \"make\", \"malberti\", \"mall\", \"manager\", \"manager\", \"manager\", \"manning\", \"many\", \"many\", \"many\", \"mara\", \"marqise\", \"matt\", \"may\", \"may\", \"may\", \"may\", \"may\", \"mayor\", \"mcgarrybowen\", \"mcgill\", \"medium\", \"medium\", \"medium\", \"meeting\", \"meeting\", \"melded\", \"member\", \"member\", \"member\", \"member\", \"membrane\", \"memorization\", \"mental\", \"metamorphosis\", \"mets\", \"migrating\", \"mildred\", \"militant\", \"military\", \"million\", \"minister\", \"minute\", \"minute\", \"minute\", \"mistakes\", \"mobilize\", \"modem\", \"monday\", \"monday\", \"monday\", \"money\", \"money\", \"monte\", \"month\", \"month\", \"month\", \"month\", \"morgenstern\\u2019s\", \"mormon\\u201d\", \"morningstar\", \"mountain\\u201d\", \"movie\", \"moviemakers\", \"mr\", \"mr\", \"ms\", \"ms\", \"much\", \"much\", \"murkowski\", \"museum\", \"museum\", \"music\", \"muslim\", \"must\", \"n\", \"nada\", \"natasha\", \"nation\", \"national\", \"national\", \"national\", \"national\", \"national\", \"navajo\", \"navy\", \"nbc\", \"need\", \"need\", \"need\", \"need\", \"negotiation\", \"neighborhood\", \"netanyahu\", \"never\", \"never\", \"new\", \"news\", \"news\", \"news\", \"newspaper\", \"next\", \"next\", \"next\", \"next\", \"next\", \"nfc\", \"night\", \"night\", \"night\", \"night\", \"no\", \"no\", \"no\", \"noomi\", \"north\", \"north\", \"north\", \"nourishing\", \"nuclear\", \"number\", \"number\", \"number\", \"number\", \"nutcase\", \"obama\", \"oberst\", \"obligate\", \"obliquely\", \"observational\", \"oct\", \"octagonal\", \"october\", \"october\", \"office\", \"office\", \"officer\", \"officer\", \"official\", \"official\", \"official\", \"ogar\", \"ogre\", \"oil\", \"old\", \"old\", \"old\", \"old\", \"olmsted\", \"one\", \"one\", \"one\", \"one\", \"opera\", \"opera\", \"orchestra\", \"org\", \"organization\", \"osvaldo\", \"outclass\", \"outhouse\", \"outspread\", \"overcapacity\", \"overloaded\", \"overvalued\", \"owner\", \"owner\", \"owner\", \"o\\u2019flaherty\", \"p\", \"p\", \"painting\", \"painting\", \"panagiotis\", \"panamanian\", \"pandemic\", \"parlor\", \"parlous\", \"parochial\", \"parolee\", \"part\", \"part\", \"part\", \"part\", \"party\", \"party\\u2019s\", \"pass\", \"path\\u201d\", \"patronizing\", \"pay\", \"payment\", \"peace\", \"people\", \"people\", \"people\", \"percent\", \"percent\", \"percent\", \"percent\\u201d\", \"performance\", \"performance\", \"pernod\", \"persky\", \"petit\", \"pettitte\", \"phlegmatic\", \"pick\", \"piece\", \"piece\", \"pilotless\", \"pious\", \"pitch\", \"pitch\", \"plainest\", \"plan\", \"plan\", \"plangent\", \"plant\", \"play\", \"play\", \"play\", \"played\", \"played\", \"played\", \"player\", \"playing\", \"playoff\", \"plesl\", \"point\", \"point\", \"point\", \"point\", \"police\", \"police\", \"policy\", \"political\", \"political\", \"political\", \"politics\", \"poll\", \"position\", \"position\", \"postapocalyptic\", \"pp3\", \"practice\\u201d\", \"preaching\", \"premiere\", \"prescribes\", \"president\", \"president\", \"president\", \"president\", \"prey\", \"price\", \"pried\", \"producer\", \"professor\", \"professor\", \"program\", \"program\", \"program\", \"proof\\u201d\", \"propulsion\", \"protest\", \"province\\u2019s\", \"public\", \"public\", \"public\", \"pujol\", \"punjabi\", \"pupil\\u201d\", \"put\", \"quarterback\", \"race\", \"radek\", \"rambunctious\", \"ranger\", \"rarest\", \"rashid\", \"rate\", \"rating\", \"ray\", \"ray\", \"really\", \"rebel\", \"reconstructionist\", \"record\", \"record\", \"record\", \"recovery\", \"red\", \"red\", \"reform\", \"region\", \"reissued\", \"report\", \"report\", \"report\", \"reported\", \"reported\", \"representative\", \"republican\", \"resolution\", \"restrained\", \"retorted\", \"returner\\u2019s\", \"revitalized\", \"rifkind\", \"rigby\", \"right\", \"right\", \"riob\\u00f3\", \"rita\", \"rivera\", \"roared\", \"roc\", \"rondell\", \"rookie\", \"rookie\\u2019s\", \"roomba\", \"roping\", \"rose\", \"rose\", \"rouhani\", \"round\", \"round\", \"round\", \"rule\", \"rule\", \"rule\", \"run\", \"run\", \"russia\", \"russia\", \"russian\", \"ryan\", \"ryane\", \"said\", \"sale\", \"sampras\", \"sandlot\", \"say\", \"say\", \"say\", \"sa\\u2019eed\", \"school\", \"school\", \"scored\", \"scoundrel\", \"screen\", \"scrutinized\", \"season\", \"second\", \"second\", \"second\", \"second\", \"security\", \"sedgwick\", \"semantically\", \"sendhil\", \"sept\", \"sept\", \"sept\", \"sept\", \"series\", \"series\", \"series\", \"series\", \"serum\", \"seton\", \"sex\", \"shaouli\", \"share\", \"share\", \"shariah\", \"she\", \"she\", \"she\", \"shelving\", \"sheppard\", \"sherif\", \"shinde\", \"shindig\", \"shish\", \"shooed\", \"shooting\", \"shooting\", \"show\", \"show\", \"show\", \"show\", \"shutdown\", \"since\", \"since\", \"single\", \"site\", \"site\", \"site\", \"site\", \"site\", \"skit\", \"sluggishness\", \"smith\", \"so\", \"so\", \"so\", \"so\", \"soak\", \"social\", \"social\", \"society\", \"socked\", \"soldier\", \"soleil\", \"solidifying\", \"somali\", \"somalia\", \"son\", \"song\", \"sorority\\u2019s\", \"sound\", \"sound\", \"sound\", \"sound\", \"south\", \"south\", \"south\", \"south\", \"sowed\", \"speech\", \"spook\", \"sport\", \"sport\", \"square\", \"squeaked\", \"squeezebox\", \"stadium\", \"stagehand\", \"stagnating\", \"stanch\", \"standby\", \"starry\", \"start\", \"start\", \"start\", \"start\", \"start\", \"state\", \"state\", \"state\", \"state\", \"station\", \"staunchly\", \"steen\", \"stereo\", \"still\", \"still\", \"still\", \"still\", \"stoicheff\", \"story\", \"story\", \"story\", \"straight\", \"straight\", \"strategy\", \"streambed\", \"street\", \"street\", \"stringy\", \"stucker\", \"student\", \"sublimity\", \"substandard\", \"sudetenland\", \"sunday\", \"sunday\", \"sunday\", \"super\", \"support\", \"support\", \"supporter\", \"supporter\", \"support\\u201d\", \"surgery\", \"swoon\", \"syria\", \"syrian\", \"system\", \"szott\", \"tagi\", \"tailgated\", \"take\", \"take\", \"take\", \"take\", \"tamer\\u2019s\", \"taraghi\", \"tasha\", \"team\", \"team\", \"teammate\", \"team\\u2019s\", \"technology\", \"tedious\", \"television\", \"television\", \"tepco\", \"testosterone\", \"texas\", \"texas\", \"the\", \"the\", \"theater\", \"theatrically\", \"thing\", \"thing\", \"thing\", \"thing\", \"think\", \"think\", \"think\", \"think\", \"think\", \"third\", \"third\", \"this\", \"this\", \"those\", \"thought\", \"thought\", \"thought\", \"three\", \"three\", \"three\", \"three\", \"threw\", \"throw\", \"time\", \"time\", \"time\", \"time\", \"tinier\", \"toga\\u201d\", \"touchdown\", \"town\", \"town\", \"tracer\", \"train\", \"tram\", \"trample\", \"transience\", \"travails\", \"treachery\", \"treasured\", \"trotted\", \"trunk\", \"two\", \"two\", \"two\", \"two\", \"tymoshenko\\u2019s\", \"u\", \"u\", \"u\", \"u\", \"uexpectedly\", \"unable\", \"uncharted\", \"underperforming\", \"underway\", \"unfairness\", \"unfit\", \"union\", \"united\", \"united\", \"university\", \"university\", \"use\", \"use\", \"usefully\", \"vargas\", \"veered\", \"versailles\", \"vice\", \"victory\", \"victory\", \"victory\", \"view\", \"view\", \"view\", \"viewer\", \"villainous\", \"violence\", \"virginia\", \"visit\", \"visit\", \"visit\", \"vladimirovich\", \"vocation\", \"voices\\u2019\", \"vote\", \"voted\", \"wagging\", \"war\", \"war\", \"war\", \"wasabi\", \"washington\", \"washington\", \"wasn\\u2019t\", \"water\", \"waterside\", \"wavy\", \"weapon\", \"weapon\", \"weapon\", \"week\", \"week\", \"week\", \"weil\", \"well\", \"well\", \"well\", \"well\", \"western\", \"wheeler\\u2019s\", \"whether\", \"whether\", \"whether\", \"whether\", \"whitlock\", \"whoopi\", \"whose\", \"whose\", \"whose\", \"whose\", \"whose\", \"wiebe\", \"wild\", \"wild\", \"wild\", \"win\", \"win\", \"woman\", \"woman\", \"won\", \"won\", \"won\", \"wood\", \"word\", \"work\", \"work\", \"worker\", \"world\", \"world\", \"world\", \"world\", \"would\", \"would\", \"wrote\", \"wta\", \"wyden\\u2019s\", \"yankee\", \"yard\", \"yat\", \"year\", \"year\", \"york\", \"young\", \"young\", \"younger\", \"zabiullah\", \"zinsser\", \"zone\", \"zone\", \"\\u2018is\", \"\\u2018lobbyist\", \"\\u2018party\", \"\\u2018picturing\", \"\\u201994\", \"\\u2019s\", \"\\u201caiding\", \"\\u201catmosph\\u00e8res\\u201d\", \"\\u201cawol\\u201d\", \"\\u201cbernanke\", \"\\u201cbomarzo\", \"\\u201cbryan\", \"\\u201ccarl\\u2019s\", \"\\u201ccesare\\u201d\", \"\\u201ccinderella\", \"\\u201cconfronted\", \"\\u201ccool\\u201d\", \"\\u201cencouraging\\u201d\", \"\\u201cexpel\", \"\\u201cformal\", \"\\u201cfreezing\", \"\\u201cglacier\", \"\\u201cgliding\", \"\\u201cgloria\", \"\\u201cgone\", \"\\u201cgrab\", \"\\u201chorse\", \"\\u201ci\", \"\\u201ci\", \"\\u201cillegal\", \"\\u201cm\", \"\\u201cmccain\", \"\\u201corchestral\", \"\\u201cphineas\", \"\\u201cpossible\", \"\\u201cpuzzle\", \"\\u201crepublic\", \"\\u201csmooth\", \"\\u201csolomon\", \"\\u201csong\", \"\\u201cteams\", \"\\u201cthe\", \"\\u201cthe\", \"\\u201cthe\", \"\\u201cthrones\\u201d\", \"\\u201ctitle\", \"\\u201ctragic\\u201d\", \"\\u201cunclear\\u201d\", \"\\u201cusually\", \"\\u201cwhales\\u201d\", \"\\u201d\", \"\\u201d\", \"\\u20ac54\"]}, \"mdsDat\": {\"y\": [-0.08650319991088698, 0.09145931761611667, 0.071710616177459788, -0.23329670595480065, 0.1926767595673613, 0.081735822876426709, 0.16201260416338881, -0.20846912866470385, 0.0040661752338287714, -0.075392261104190408], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [21.102692774382966, 9.6237924445832181, 9.4788817291032377, 9.2227203044966739, 9.0917521609014429, 8.8897515145616612, 8.5326676468476723, 8.4980272518380549, 7.9567406644236964, 7.6029735088613606], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], \"x\": [0.31377708528413656, -0.014117052242323822, -0.035058245528538715, 0.045782268894822113, -0.019210679598996905, -0.16727386055527341, 0.20289275121947722, -0.079208277057675414, -0.11385957002773238, -0.1337244203878955]}, \"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\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"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\"], \"Term\": [\"said\", \"mr\", \"the\", \"would\", \"\\u201d\", \"year\", \"new\", \"game\", \"one\", \"a\", \"state\", \"season\", \"team\", \"first\", \"united\", \"government\", \"people\", \"last\", \"two\", \"and\", \"he\", \"time\", \"in\", \"president\", \"house\", \"but\", \"group\", \"like\", \"work\", \"official\", \"\\u201cunclear\\u201d\", \"yat\", \"district\\u2019s\", \"corresponding\", \"assane\", \"campaign\\u201d\", \"outspread\", \"gift\\u201d\", \"factional\", \"steen\", \"kyah\", \"icomp\", \"preaching\", \"actions\\u201d\", \"fatih\", \"mistakes\", \"tinier\", \"\\u2018lobbyist\", \"sedgwick\", \"condescendingly\", \"989\", \"hinder\", \"tailgated\", \"louse\", \"taraghi\", \"ava\", \"shelving\", \"gorvy\", \"grise\", \"\\u201cbomarzo\", \"said\", \"new\", \"last\", \"republican\", \"million\", \"york\", \"health\", \"business\", \"care\", \"put\", \"system\", \"hard\", \"shutdown\", \"enough\", \"vote\", \"job\", \"worker\", \"budget\", \"conservative\", \"must\", \"organization\", \"course\", \"rate\", \"student\", \"wrote\", \"limit\", \"union\", \"bank\", \"oct\", \"congress\", \"year\", \"even\", \"never\", \"cost\", \"\\u201d\", \"school\", \"money\", \"washington\", \"street\", \"\\u201cthe\", \"change\", \"the\", \"including\", \"but\", \"around\", \"like\", \"it\", \"many\", \"next\", \"another\", \"part\", \"time\", \"since\", \"government\", \"day\", \"it\\u2019s\", \"he\", \"mr\", \"world\", \"first\", \"seton\", \"\\u201cformal\", \"parlous\", \"larkins\", \"karlton\", \"\\u201cillegal\", \"szott\", \"rarest\", \"bakti\", \"galloped\", \"definitively\", \"sandlot\", \"spook\", \"lanza\", \"chlo\\u00eb\", \"sublimity\", \"earthen\", \"parlor\", \"reconstructionist\", \"monte\", \"tymoshenko\\u2019s\", \"starry\", \"\\u201cbryan\", \"jazziness\", \"whitlock\", \"waterside\", \"immersion\", \"javi\", \"mcgill\", \"lech\", \"and\", \"house\", \"price\", \"really\", \"word\", \"can\\u2019t\", \"son\", \"benefit\", \"father\", \"everything\", \"single\", \"actually\", \"courtier\\u2019s\", \"fatherland\", \"handshaking\", \"veered\", \"restrained\", \"aboveground\", \"\\u201ccinderella\", \"himan\", \"shinde\", \"zinsser\", \"irks\", \"hydrated\", \"harrisburg\", \"nada\", \"practice\\u201d\", \"propulsion\", \"frenchness\", \"clerici\", \"image\", \"kept\", \"example\", \"english\", \"wasn\\u2019t\", \"learned\", \"gone\", \"younger\", \"train\", \"square\", \"virginia\", \"lived\", \"story\", \"mental\", \"screen\", \"machine\", \"unable\", \"recovery\", \"don\\u2019t\", \"wild\", \"rose\", \"choice\", \"70\", \"this\", \"\\u201ci\", \"find\", \"5\", \"work\", \"museum\", \"life\", \"october\", \"old\", \"so\", \"much\", \"go\", \"little\", \"thought\", \"still\", \"le\", \"almost\", \"percent\", \"make\", \"in\", \"every\", \"time\", \"thing\", \"home\", \"young\", \"take\", \"long\", \"get\", \"could\", \"come\", \"two\", \"angeles\\u201d\", \"lancashire\", \"kusuma\", \"kuijs\", \"confluence\", \"semantically\", \"sudetenland\", \"\\u201cfreezing\", \"desertification\", \"\\u201ctitle\", \"path\\u201d\", \"roping\", \"wagging\", \"punjabi\", \"abysmally\", \"tepco\", \"bowens\", \"tedious\", \"323\", \"buildings\\u2019\", \"disinclination\", \"exemplar\", \"electrification\", \"usefully\", \"bellwether\", \"bridging\", \"intrastate\", \"\\u201cglacier\", \"kgsr\", \"\\u201cgrab\", \"nation\", \"united\", \"attack\", \"military\", \"foreign\", \"china\", \"increase\", \"sale\", \"food\", \"water\", \"gas\", \"al\", \"region\", \"expert\", \"technology\", \"energy\", \"plant\", \"army\", \"ogar\", \"tracer\", \"169\", \"parolee\", \"\\u201csmooth\", \"ogre\", \"courted\", \"keebler\", \"vladimirovich\", \"melded\", \"ryane\", \"overloaded\", \"group\", \"weapon\", \"capital\", \"war\", \"car\", \"vice\", \"resolution\", \"civil\", \"station\", \"agreement\", \"rebel\", \"korea\", \"gun\", \"north\", \"force\", \"reported\", \"industry\", \"american\", \"company\", \"city\", \"government\", \"building\", \"right\", \"could\", \"local\", \"percent\", \"effort\", \"000\", \"international\", \"report\", \"in\", \"two\", \"also\", \"\\u201cteams\", \"wavy\", \"pandemic\", \"diplomats\", \"evinced\", \"rookie\\u2019s\", \"trotted\", \"proof\\u201d\", \"stucker\", \"calatravatelaclava\", \"khaw\", \"whoopi\", \"revitalized\", \"beltran\", \"wheeler\\u2019s\", \"aimee\", \"standby\", \"\\u201cthrones\\u201d\", \"noomi\", \"socked\", \"hatcher\", \"\\u201cm\", \"finessing\", \"goldfarb\", \"austerely\", \"521st\", \"euphemism\", \"concussed\", \"testosterone\", \"mara\", \"game\", \"season\", \"team\", \"player\", \"league\", \"l\", \"fan\", \"career\", \"playing\", \"touchdown\", \"playoff\", \"guy\", \"smith\", \"play\", \"host\", \"stadium\", \"brown\", \"membrane\", \"jeters\", \"drunk\", \"kerr\", \"o\\u2019flaherty\", \"marqise\", \"episcopal\", \"iwantgreatcare\", \"1909\", \"halo\", \"trunk\", \"panamanian\", \"\\u201corchestral\", \"football\", \"pettitte\", \"team\\u2019s\", \"jersey\", \"threw\", \"rookie\", \"chris\", \"pitch\", \"boston\", \"mets\", \"matt\", \"ranger\", \"pass\", \"ray\", \"he\\u2019s\", \"played\", \"jet\", \"giant\", \"won\", \"victory\", \"run\", \"night\", \"coach\", \"2\", \"he\", \"no\", \"four\", \"f\", \"week\", \"sunday\", \"lead\", \"good\", \"like\", \"it\", \"five\", \"city\", \"but\", \"avenida\", \"hsw\", \"rambunctious\", \"barbershop\", \"nutcase\", \"rashid\", \"plesl\", \"economy\\u2019s\", \"pernod\", \"sendhil\", \"fortification\", \"kopicki\", \"sorority\\u2019s\", \"staunchly\", \"\\u201cexpel\", \"soak\", \"eveleigh\", \"lien\", \"macroeconomic\", \"phlegmatic\", \"canopy\", \"percent\\u201d\", \"pujol\", \"travails\", \"\\u201cpossible\", \"brewery\\u2019s\", \"voices\\u2019\", \"flav\", \"692\", \"\\u201cmccain\", \"obama\", \"child\", \"policy\", \"iran\", \"nuclear\", \"economy\", \"democrat\", \"oil\", \"minister\", \"rouhani\", \"iranian\", \"chinese\", \"analyst\", \"administration\", \"speech\", \"iran\\u2019s\", \"israel\", \"peace\", \"brand\", \"\\u201cbernanke\", \"freetown\", \"kamikaze\", \"byline\", \"shooed\", \"\\u201cusually\", \"2500\", \"chameleon\", \"memorization\", \"underway\", \"petit\", \"economic\", \"include\", \"internet\", \"israeli\", \"investor\", \"negotiation\", \"domestic\", \"strategy\", \"share\", \"netanyahu\", \"poll\", \"bond\", \"agreed\", \"president\", \"mr\", \"agency\", \"meeting\", \"leader\", \"program\", \"use\", \"based\", \"would\", \"month\", \"also\", \"news\", \"monday\", \"issue\", \"week\", \"company\", \"for\", \"two\", \"\\u201d\", \"patronizing\", \"lawrie\", \"\\u201csolomon\", \"goad\", \"province\\u2019s\", \"treasured\", \"unfairness\", \"freudian\", \"prey\", \"forefather\", \"roared\", \"1840\", \"1841\", \"\\u201cawol\\u201d\", \"instilling\", \"fantasia\", \"faltered\", \"overcapacity\", \"returner\\u2019s\", \"jeez\", \"\\u201cpuzzle\", \"substandard\", \"sherif\", \"46th\", \"soleil\", \"confesses\", \"horwitz\", \"canevari\", \"wyden\\u2019s\", \"leonsis\", \"a\", \"n\", \"c\", \"if\", \"yard\", \"pay\", \"race\", \"cup\", \"debt\", \"goal\", \"insurance\", \"data\", \"agent\", \"davis\", \"685\", \"cloudlike\", \"khartoum\\u2019s\", \"natasha\", \"plangent\", \"scrutinized\", \"g\\u00f6del\", \"doritos\", \"outhouse\", \"jiaying\", \"mildred\", \"support\\u201d\", \"serum\", \"jailer\", \"mobilize\", \"\\u20ac54\", \"employee\", \"i\", \"european\", \"ceiling\", \"wood\", \"owner\", \"\\u2019s\", \"how\", \"voted\", \"default\", \"create\", \"employer\", \"formula\", \"those\", \"improve\", \"texas\", \"everyone\", \"club\", \"position\", \"zone\", \"cut\", \"sport\", \"would\", \"say\", \"plan\", \"rule\", \"one\", \"law\", \"get\", \"u\", \"people\", \"state\", \"need\", \"also\", \"make\", \"in\", \"public\", \"think\", \"event\", \"sluggishness\", \"nfc\", \"outclass\", \"pp3\", \"chaudhry\", \"tram\", \"stereo\", \"\\u2018is\", \"khalifa\", \"maher\", \"sowed\", \"kontinental\", \"kosuke\", \"nourishing\", \"bewilderment\", \"emit\", \"wasabi\", \"squeaked\", \"congenial\", \"laughingly\", \"erika\", \"navajo\", \"stanch\", \"observational\", \"amalfitano\\u2019s\", \"hornless\", \"jimmie\", \"riob\\u00f3\", \"vocation\", \"pupil\\u201d\", \"0\", \"yankee\", \"field\", \"4\", \"rivera\", \"inning\", \"ball\", \"injury\", \"quarterback\", \"hit\", \"scored\", \"plainest\", \"\\u201cphineas\", \"cryptic\", \"epigram\", \"\\u201csong\", \"coincidental\", \"radek\", \"migrating\", \"retorted\", \"\\u201ccarl\\u2019s\", \"treachery\", \"wiebe\", \"underperforming\", \"sheppard\", \"fermin\", \"lucroy\\u2019s\", \"innumerable\", \"celeste\", \"moviemakers\", \"championship\", \"ryan\", \"bay\", \"baseball\", \"pick\", \"johnson\", \"27\", \"rating\", \"cleveland\", \"girardi\", \"teammate\", \"manning\", \"atlanta\", \"jeter\", \"super\", \"surgery\", \"throw\", \"finish\", \"knee\", \"finished\", \"3\", \"straight\", \"fourth\", \"second\", \"manager\", \"round\", \"1\", \"7\", \"minute\", \"p\", \"red\", \"third\", \"final\", \"first\", \"6\", \"10\", \"two\", \"point\", \"win\", \"record\", \"left\", \"start\", \"three\", \"the\", \"right\", \"back\", \"one\", \"day\", \"solidifying\", \"reissued\", \"morgenstern\\u2019s\", \"octagonal\", \"\\u201cgliding\", \"correspondingly\", \"tamer\\u2019s\", \"theatrically\", \"skit\", \"roomba\", \"1835\", \"macchu\", \"wta\", \"swoon\", \"\\u201catmosph\\u00e8res\\u201d\", \"coiled\", \"half\\u2019s\", \"morningstar\", \"sampras\", \"modem\", \"stagehand\", \"\\u201ctragic\\u201d\", \"shaouli\", \"ayers\", \"fantasist\", \"panagiotis\", \"persky\", \"vargas\", \"irreducible\", \"088\", \"art\", \"music\", \"song\", \"film\", \"dance\", \"com\", \"artist\", \"viewer\", \"nbc\", \"band\", \"stringy\", \"fretboard\", \"freight\\u201d\", \"\\u201ccesare\\u201d\", \"\\u201cgone\", \"pried\", \"82nd\", \"exalt\", \"scoundrel\", \"villainous\", \"prescribes\", \"businessday\", \"\\u2018picturing\", \"kruglyanskaya\", \"grenoble\", \"versailles\", \"\\u201cwhales\\u201d\", \"alternating\", \"carsen\", \"festival\", \"character\", \"cbs\", \"theater\", \"orchestra\", \"design\", \"concert\", \"org\", \"ballet\", \"album\", \"comedy\", \"movie\", \"girl\", \"abc\", \"producer\", \"creative\", \"premiere\", \"dancer\", \"212\", \"hbo\", \"de\", \"painting\", \"brooklyn\", \"fox\", \"gallery\", \"show\", \"piece\", \"opera\", \"audience\", \"m\", \"television\", \"ms\", \"episode\", \"performance\", \"series\", \"director\", \"one\", \"book\", \"work\", \"sound\", \"part\", \"in\", \"executive\", \"but\", \"at\", \"mountain\\u201d\", \"inoperable\", \"espa\\u00f1a\", \"0600\", \"madden\", \"\\u201cencouraging\\u201d\", \"mcgarrybowen\", \"grande\", \"lawmakers\\u2019\", \"rita\", \"ascendant\", \"kieffer\", \"oberst\", \"malberti\", \"roc\", \"olmsted\", \"rifkind\", \"fizzled\", \"buffet\", \"embezzled\", \"inflating\", \"stoicheff\", \"pious\", \"elements\\u201d\", \"cumpston\", \"metamorphosis\", \"cred\", \"toga\\u201d\", \"arch\", \"gerrard\", \"party\", \"security\", \"court\", \"federal\", \"case\", \"campaign\", \"judge\", \"district\", \"crime\", \"representative\", \"investigation\", \"protest\", \"reform\", \"sex\", \"julfikar\", \"tagi\", \"festoon\", \"shindig\", \"unfit\", \"azim\", \"healy\", \"diageo\\u2019s\", \"\\u201cconfronted\", \"shish\", \"belodedici\", \"eads\", \"evasion\", \"803\", \"\\u201chorse\", \"\\u201cgloria\", \"officer\", \"dr\", \"mall\", \"politics\", \"criminal\", \"activist\", \"customer\", \"newspaper\", \"commission\", \"immigrant\", \"social\", \"payment\", \"beijing\", \"investigator\", \"disease\", \"party\\u2019s\", \"charge\", \"claim\", \"county\", \"editor\", \"mail\", \"department\", \"medium\", \"office\", \"support\", \"police\", \"professor\", \"2013\", \"e\", \"member\", \"sept\", \"political\", \"law\", \"may\", \"say\", \"well\", \"university\", \"week\", \"whether\", \"number\", \"high\", \"postapocalyptic\", \"epidemiology\", \"osvaldo\", \"lightest\", \"akwasi\", \"parochial\", \"assads\\u2019\", \"trample\", \"barrera\", \"dabble\", \"\\u201ccool\\u201d\", \"\\u201994\", \"differences\\u201d\", \"\\u2018party\", \"antismoking\", \"chavan\", \"weil\", \"erekat\", \"stagnating\", \"transience\", \"mormon\\u201d\", \"overvalued\", \"batiste\", \"jyoti\", \"ams\", \"bickered\", \"abbott\\u2019s\", \"rigby\", \"sa\\u2019eed\", \"ikai\", \"syria\", \"killed\", \"chemical\", \"death\", \"western\", \"violence\", \"syrian\", \"killing\", \"shariah\", \"pilotless\", \"zabiullah\", \"tasha\", \"castaing\", \"obligate\", \"obliquely\", \"squeezebox\", \"950\", \"streambed\", \"freighted\", \"arapaho\", \"\\u201crepublic\", \"ballpark\\u201d\", \"beji\", \"uncharted\", \"felonious\", \"rondell\", \"uexpectedly\", \"colloquially\", \"murkowski\", \"\\u201caiding\", \"muslim\", \"russian\", \"militant\", \"intelligence\", \"border\", \"dead\", \"society\", \"soldier\", \"mayor\", \"neighborhood\", \"russia\", \"navy\", \"arab\", \"africa\", \"somalia\", \"assad\", \"conflict\", \"document\", \"somali\", \"afghanistan\", \"afghan\", \"commander\", \"woman\", \"supporter\", \"official\", \"country\", \"died\", \"shooting\", \"visit\", \"state\", \"south\", \"family\", \"area\", \"people\", \"ms\", \"she\", \"town\", \"fire\", \"one\", \"least\", \"former\", \"member\", \"country\\u2019s\", \"whose\", \"site\", \"view\", \"international\", \"public\", \"day\", \"still\", \"national\"], \"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.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5598000000000001, 1.5111000000000001, 1.5111000000000001, 1.5111000000000001, 1.5111000000000001, 1.5111000000000001, 1.5111000000000001, 1.5111000000000001, 1.5112000000000001, 1.5092000000000001, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5066999999999999, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5112000000000001, 1.5113000000000001, 1.5113000000000001, 1.5113000000000001, 1.5113000000000001, 1.5113000000000001, 1.5113000000000001, 1.5113000000000001, 1.5078, 1.5113000000000001, 1.5078, 1.4702, 1.4875, 1.5019, 1.5076000000000001, 1.4381999999999999, 1.4987999999999999, 1.4967999999999999, 1.4763999999999999, 1.5014000000000001, 1.4246000000000001, 1.4732000000000001, 1.2739, 1.4334, 1.2843, 1.4280999999999999, 1.2018, 1.2083999999999999, 1.2225999999999999, 1.2529999999999999, 1.3264, 1.2675000000000001, 0.94389999999999996, 1.1808000000000001, 0.78680000000000005, 0.94679999999999997, 1.1758, 0.73050000000000004, -0.15570000000000001, 1.0860000000000001, 0.53969999999999996, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3167, 2.3167, 2.3168000000000002, 2.3168000000000002, 2.3169, 2.3169, 2.3169, 2.3170000000000002, 2.3170000000000002, 2.3170000000000002, 2.3170000000000002, 2.3170000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3654000000000002, 2.3170999999999999, 2.3170999999999999, 2.3058000000000001, 2.3172000000000001, 2.3172000000000001, 2.3172000000000001, 2.3172000000000001, 2.3172999999999999, 2.3172999999999999, 2.3172999999999999, 2.3172999999999999, 2.3172999999999999, 2.2936999999999999, 2.3172999999999999, 2.3174000000000001, 2.3174000000000001, 2.3174000000000001, 2.3174000000000001, 2.2507000000000001, 2.2966000000000002, 2.2917000000000001, 2.2833999999999999, 2.3058000000000001, 2.1838000000000002, 2.1475, 2.2079, 2.2231000000000001, 2.0785, 2.2317999999999998, 2.1303000000000001, 2.2825000000000002, 2.1385999999999998, 2.1709000000000001, 1.9923, 2.032, 2.0920999999999998, 2.2075999999999998, 1.9515, 2.0754999999999999, 2.1189, 1.7622, 1.7831999999999999, 1.5587, 1.9812000000000001, 1.3903000000000001, 1.8418000000000001, 1.7138, 2.0049999999999999, 1.7457, 1.6738, 1.4444999999999999, 1.0053000000000001, 1.6154999999999999, 0.50990000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3247, 2.3151999999999999, 2.3248000000000002, 2.3248000000000002, 2.3248000000000002, 2.3248000000000002, 2.3249, 2.3249, 2.3249, 2.3249, 2.3249, 2.3249, 2.3249, 2.3249, 2.3249, 2.3205, 2.3250000000000002, 2.3250000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3734000000000002, 2.3020999999999998, 2.3151999999999999, 2.3195000000000001, 2.3062999999999998, 2.3151999999999999, 2.3250000000000002, 2.3250000000000002, 2.3250999999999999, 2.3250999999999999, 2.3184999999999998, 2.3250999999999999, 2.3250999999999999, 2.3003999999999998, 2.2844000000000002, 2.2629999999999999, 2.3007, 2.2799, 2.0360999999999998, 1.9562999999999999, 1.9754, 1.6605000000000001, 2.1661000000000001, 1.7384999999999999, 1.5472999999999999, 2.1873, 1.4681, 1.8683000000000001, 1.4331, 1.7735000000000001, 2.0023, 0.59279999999999999, 0.56779999999999997, 0.65069999999999995, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.3538999999999999, 2.3538999999999999, 2.3530000000000002, 2.3540000000000001, 2.3540000000000001, 2.3540000000000001, 2.3540999999999999, 2.3540999999999999, 2.3540999999999999, 2.3540999999999999, 2.3542000000000001, 2.3542000000000001, 2.3542000000000001, 2.3416000000000001, 2.3542000000000001, 2.3542000000000001, 2.3542999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.4026999999999998, 2.3490000000000002, 2.3542999999999998, 2.3542999999999998, 2.3544, 2.3544, 2.3544, 2.3544, 2.3464999999999998, 2.3544999999999998, 2.3544999999999998, 2.3544999999999998, 2.3544999999999998, 2.3544999999999998, 2.3458999999999999, 2.3351999999999999, 2.3088000000000002, 2.3409, 2.2907000000000002, 2.2442000000000002, 2.2440000000000002, 2.1004999999999998, 2.1461000000000001, 2.1791999999999998, 1.9971000000000001, 1.7412000000000001, 2.1233, 1.8978999999999999, 2.0804999999999998, 1.6046, 1.831, 1.9701, 1.6448, 0.93510000000000004, 1.0114000000000001, 1.6812, 1.1327, 0.27700000000000002, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.3530000000000002, 2.3530000000000002, 2.3531, 2.3531, 2.3531, 2.3531, 2.3531, 2.3531, 2.3531, 2.3531, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532000000000002, 2.3532999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.4016999999999999, 2.3382999999999998, 2.3473000000000002, 2.3534000000000002, 2.3534000000000002, 2.3534000000000002, 2.3534000000000002, 2.3534000000000002, 2.3534000000000002, 2.3460999999999999, 2.3534999999999999, 2.3534999999999999, 2.3454000000000002, 2.3376999999999999, 2.2353999999999998, 2.1436000000000002, 2.2858999999999998, 2.2961999999999998, 2.2496999999999998, 2.2446999999999999, 2.0424000000000002, 2.0956999999999999, 1.2636000000000001, 1.7002999999999999, 1.3956, 1.8138000000000001, 1.8167, 1.8632, 1.2415, 1.1758999999999999, 1.6538999999999999, 0.3649, -0.30280000000000001, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.3963999999999999, 2.3973, 2.3973, 2.3973, 2.3973, 2.3974000000000002, 2.3974000000000002, 2.3974000000000002, 2.3974000000000002, 2.3974000000000002, 2.3974000000000002, 2.3975, 2.3975, 2.3976000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.4460000000000002, 2.3908, 2.3898000000000001, 2.3824000000000001, 2.3976000000000002, 2.3976999999999999, 2.3856000000000002, 2.3976999999999999, 2.3978000000000002, 2.3978000000000002, 2.3978000000000002, 2.3895, 2.3978000000000002, 2.3978000000000002, 2.3978000000000002, 2.3978999999999999, 2.3708999999999998, 2.3885000000000001, 2.3681999999999999, 2.3639999999999999, 2.3662000000000001, 2.3166000000000002, 2.2953000000000001, 1.9871000000000001, 2.0539000000000001, 2.1553, 2.2374999999999998, 1.7027000000000001, 1.9729000000000001, 1.8561000000000001, 1.8151999999999999, 1.5087999999999999, 1.4329000000000001, 1.9228000000000001, 1.3129, 1.5142, 1.0311999999999999, 1.7361, 1.6258999999999999, 1.9958, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4182000000000001, 2.4182000000000001, 2.4182000000000001, 2.4182000000000001, 2.4182999999999999, 2.4182999999999999, 2.4182999999999999, 2.4182999999999999, 2.4182999999999999, 2.4083000000000001, 2.4184000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4668000000000001, 2.4184000000000001, 2.4184999999999999, 2.4184999999999999, 2.4121000000000001, 2.4184999999999999, 2.4184999999999999, 2.4184999999999999, 2.4184999999999999, 2.4186999999999999, 2.4186999999999999, 2.4186999999999999, 2.4186999999999999, 2.4186999999999999, 2.4186999999999999, 2.4186999999999999, 2.4188000000000001, 2.4188000000000001, 2.4188000000000001, 2.4188000000000001, 2.4083000000000001, 2.3578999999999999, 2.4079999999999999, 2.3921999999999999, 2.3166000000000002, 2.3502999999999998, 2.3826000000000001, 2.2572999999999999, 2.3431000000000002, 2.3069999999999999, 2.2648000000000001, 2.3079000000000001, 2.2534000000000001, 2.2589000000000001, 1.9098999999999999, 2.2692999999999999, 2.0327000000000002, 1.7763, 2.0123000000000002, 2.1065, 2.1263999999999998, 1.9628000000000001, 2.0206, 1.6589, 0.86280000000000001, 1.6052999999999999, 1.6027, 0.47449999999999998, 1.0814999999999999, 2.5457999999999998, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4506999999999999, 2.4506999999999999, 2.4508000000000001, 2.4508000000000001, 2.4508000000000001, 2.4508999999999999, 2.4508999999999999, 2.4508999999999999, 2.4508999999999999, 2.4508999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4508999999999999, 2.4508999999999999, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510000000000001, 2.4510999999999998, 2.4510999999999998, 2.4512, 2.4512, 2.4512, 2.4512, 2.4512999999999998, 2.4512999999999998, 2.4279000000000002, 2.4416000000000002, 2.4405999999999999, 2.4323000000000001, 2.4245000000000001, 2.2719999999999998, 2.3894000000000002, 2.3677999999999999, 2.3599000000000001, 2.0335000000000001, 2.1855000000000002, 1.7972999999999999, 2.3086000000000002, 2.0503999999999998, 1.7511000000000001, 1.7128000000000001, 0.42099999999999999, 1.9896, 0.89929999999999999, 2.2826, 0.89410000000000001, 0.14199999999999999, 1.1987000000000001, -0.1051, 1.2927, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.4988999999999999, 2.4988999999999999, 2.4988999999999999, 2.4948999999999999, 2.4931000000000001, 2.4988999999999999, 2.4990000000000001, 2.4990999999999999, 2.4990999999999999, 2.4990999999999999, 2.4990999999999999, 2.4990999999999999, 2.4990999999999999, 2.4992000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.5476000000000001, 2.4935, 2.4992000000000001, 2.4992000000000001, 2.4992000000000001, 2.4992000000000001, 2.4992000000000001, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4992999999999999, 2.4784999999999999, 2.4994000000000001, 2.4994000000000001, 2.4994000000000001, 2.4994000000000001, 2.4994000000000001, 2.4746000000000001, 2.4780000000000002, 2.4895, 2.4483999999999999, 2.4552999999999998, 2.4222000000000001, 2.3740999999999999, 2.3035000000000001, 2.3273000000000001, 2.3060999999999998, 2.4056000000000002, 2.2544, 2.0813999999999999, 1.8049999999999999, 1.9695, 1.7669999999999999, 1.4371, 1.4418, 1.2509999999999999, 1.3957999999999999, 1.7742, 0.88129999999999997, 1.6531, 1.496, 1.4239999999999999, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5434000000000001, 2.5434000000000001, 2.5434999999999999, 2.5394999999999999, 2.5434999999999999, 2.5436000000000001, 2.5436000000000001, 2.5436000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5920000000000001, 2.5436000000000001, 2.5436000000000001, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.5436999999999999, 2.536, 2.5438000000000001, 2.5438000000000001, 2.5438000000000001, 2.5438999999999998, 2.5438999999999998, 2.5345, 2.544, 2.544, 2.544, 2.544, 2.544, 2.5007000000000001, 2.5339, 2.3919000000000001, 2.3748, 2.464, 2.5017, 2.4708999999999999, 2.0514999999999999, 2.3731, 2.2122999999999999, 2.2818999999999998, 1.9046000000000001, 1.8088, 2.1427999999999998, 2.3525, 2.4661, 1.0568, 1.9378, 1.752, 1.5568, 2.2336999999999998, 1.9196, 1.8969, 2.1976, 1.6851, 1.4767999999999999, 0.76300000000000001, 0.93410000000000004, 1.1503000000000001], \"Freq\": [11966.0, 8298.0, 11443.0, 4961.0, 6991.0, 5850.0, 4683.0, 2845.0, 4917.0, 2431.0, 3182.0, 2345.0, 2162.0, 2964.0, 2115.0, 3035.0, 2733.0, 2911.0, 3454.0, 1789.0, 2615.0, 3359.0, 3391.0, 1983.0, 1588.0, 3775.0, 1563.0, 3244.0, 1892.0, 1580.0, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 1.3941168609324868, 11965.087417303494, 4682.0875373858253, 2910.0876574531962, 1680.0878895425396, 1614.0879119835561, 1470.0879679308121, 1334.0880318438406, 936.08832536296575, 1010.0297676738699, 794.08850112791595, 707.08864359610175, 696.08866413835131, 625.0888140693196, 598.08888039773876, 578.08893351121355, 901.09347476038931, 540.08904522565001, 532.08907077039726, 518.0891173649527, 503.08917015446895, 493.08920712485917, 492.08921090421882, 486.08923390564104, 451.08938022413514, 449.08938927111308, 438.08944049958319, 419.08953529031584, 584.09268103816601, 407.08959969566598, 577.06592467874611, 5614.7917891049046, 1927.7496162784305, 853.92479012236879, 553.06796893580156, 6499.2332137740159, 802.97852149857295, 688.98102431459552, 1015.6601583863547, 605.03136355482991, 1701.0323199045986, 877.72046980210735, 9023.4490006437336, 1051.0462499618704, 2995.5205263191647, 922.90913420756601, 2369.894702986523, 1746.4075674309759, 1553.2319078230653, 1314.185710557786, 1023.9641052835547, 1151.8926059609425, 1887.5914898292579, 1066.9235809398585, 1460.567705717534, 1204.7407654799154, 1009.0005032322292, 1187.8355158077889, 1567.116617137845, 1022.3585795989172, 1120.7113681759392, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1788.1083275299729, 1587.1083900838294, 596.10931326581783, 570.10938055088502, 475.10968876547759, 360.11027831235003, 346.11037668861144, 336.11045194698283, 334.11046753622941, 318.11059926553492, 317.11060793738091, 294.11082356208613, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 1.4036649760877553, 229.11166508666506, 216.11189361293472, 356.15700083212465, 200.11221525695774, 172.11292047712888, 170.11297963636397, 170.11297963636397, 166.11310218069084, 164.11316566761531, 150.11365685833633, 149.11369542883867, 147.11377412309955, 469.28637364437884, 144.11389620722119, 143.11393802460168, 141.11402341403414, 130.11453931126681, 129.1145905074323, 922.63733287423599, 241.16824772691825, 232.17794604537184, 262.32018152452741, 173.13982838297272, 933.12817706498242, 1222.8342745309581, 564.74003550955513, 467.34556084028429, 1487.3226108335261, 359.45682247328597, 807.07469605525466, 226.13601541049965, 697.04702239016603, 490.51718348556773, 1085.4661885872717, 855.49272886852054, 620.82825017991217, 354.63484997195479, 1044.403196947809, 568.21129715342875, 475.77852174968933, 1076.83028006889, 1016.014330829695, 1588.6629271498778, 546.4016153990824, 1345.0963050069179, 672.24839705981162, 793.25643690131164, 524.21232674119608, 682.69844492922925, 677.74336113571678, 590.27339862947179, 667.29302742375546, 550.02075703488902, 574.93207139652566, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 863.10170672581842, 2094.3742630029037, 795.10179537306965, 758.10185027159071, 501.10245447419686, 500.10245803345538, 398.10291456191459, 391.10295458191155, 376.10304533021275, 371.10307720160296, 361.10314357838735, 354.10319226091519, 344.10326522441301, 343.10327275340052, 330.10337475758251, 463.09254913484085, 277.10388899726325, 270.10397189775904, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1.4003116761267853, 1527.5735139660144, 619.10605838328809, 367.0941857616545, 642.05341294311972, 409.16436944936845, 249.10424834291265, 245.10430632872371, 234.10447592496453, 225.10462691116123, 310.13621212507189, 224.10464442971917, 218.10475288552908, 484.93059372291913, 532.1555367231316, 799.77080984977215, 325.06176835053378, 390.27601868700089, 1598.8996798644246, 1194.3089268198366, 1084.7977121523909, 1571.6000819077422, 434.28231344041274, 931.3681819717068, 1130.0910119987575, 399.83065958055971, 790.41031301242663, 459.68228966365729, 547.10781741932408, 468.9078980580183, 414.90905854095428, 595.63336826855755, 599.99947384944153, 525.66026141857242, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 2844.1028485032589, 2344.10291554173, 2159.1308800884531, 1234.1032582258688, 806.10364187333369, 770.1036935378977, 600.10402099508462, 543.10417652067292, 506.10429615666038, 398.10477195301752, 381.10487129021971, 376.1049022075054, 321.10530547278245, 1119.0648348947368, 304.10545944704029, 303.10546903888377, 263.10591207403178, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 1.4011835139022175, 383.11751371986543, 249.10610049668762, 239.10624848735546, 196.10705518816056, 193.10712474643469, 189.10722088985349, 182.10739919945755, 254.14038990934159, 170.10773863983255, 169.10776907701305, 164.10792676369479, 161.10802601931019, 160.1080599214468, 235.12007507219053, 312.14623888211287, 626.16961852790189, 221.12521752756149, 457.5867639990812, 575.90090189850423, 420.09633583288075, 1028.7798854641867, 729.48519414063537, 476.2963047267267, 709.26649185403198, 1426.3602967666429, 441.90699804339891, 762.26158914560597, 448.95223869940037, 919.72044939608804, 566.63112117414323, 455.65914408227547, 522.43003953430684, 793.30811703075756, 626.78485305070876, 476.36976151731096, 454.40410088825803, 478.13896002256593, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 977.08811880906171, 888.08821324293228, 744.08841375585291, 743.08841541931304, 697.08849708344837, 631.08863498485994, 622.08865604973619, 574.08877951306954, 557.08882832403799, 499.089019784811, 413.08940217832662, 385.08956335180744, 370.08965967490013, 366.0896866871995, 342.08986195255693, 341.0898697875287, 313.09010936273239, 302.09021555550822, 296.09027678304943, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 1.3940402255973576, 604.94986161829866, 337.07300005342404, 224.09126507870542, 222.09130160002465, 221.09132010632925, 211.09151472604617, 196.09184351302898, 195.09186721227934, 278.05657651628792, 182.09219874255024, 178.09231038539093, 251.09842115292059, 253.04621001852203, 1759.2585917002134, 6730.0706979661509, 617.27163573147413, 493.82992795173828, 888.91421026284479, 897.04941129278643, 513.63460196452922, 433.27449923928214, 1644.7023698458554, 743.82393669455678, 1061.9558177188644, 520.81261615141409, 515.6356200825378, 489.91996285394924, 630.60638806399982, 524.88757702542887, 406.64838206802017, 469.85079102575168, 490.95421831751401, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 2428.1500302139461, 1205.1097541373008, 778.11015460242015, 721.11024384719974, 696.11028758810278, 642.11039365859665, 595.1105015981783, 569.11056894339549, 519.11071734581412, 519.11071734581412, 439.1110247859076, 327.11170639402485, 308.11187088837374, 270.11226882184292, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 1.4042232561950463, 452.14227543404627, 391.13803614561652, 529.21906939544124, 220.11299997878186, 205.11328820596881, 334.15249909725128, 183.11379548994145, 176.11398319670766, 171.1141265735418, 167.11424738369743, 246.13870985475609, 162.11440668412993, 160.11447315779708, 157.11457600402613, 144.11507051425536, 521.22490092728151, 216.16443794872686, 335.28960483337858, 351.26267734866809, 250.22201767092176, 403.22522994459479, 380.44704956913785, 3315.4988583559575, 1193.6586591478874, 661.78275144850261, 421.496618485044, 2464.6818221773315, 963.53422150912627, 822.93566203647663, 749.63569993246824, 1130.3962780631862, 1220.4640800985308, 609.68419211452522, 955.90541025654295, 717.19446767211127, 865.90026851711013, 512.05891750287617, 499.76195360071893, 436.29801816431012, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 787.09002166272955, 745.09008731366441, 646.09027573387323, 618.09033994021161, 427.09100149701339, 421.09103195721042, 379.09127204033979, 370.09133053964666, 354.09144184147021, 805.00811381421317, 290.09200901870958, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 1.3948177853784358, 248.09253903880386, 239.09267664812586, 232.09279099550449, 317.07093100107835, 220.09300379557538, 207.09326190328164, 205.09330448945954, 202.0933699343091, 163.09443726568242, 161.09450576736813, 158.09461173068951, 154.094759354351, 145.09512087945819, 142.09525142941411, 141.09529616322021, 137.09548153444743, 136.0955295562058, 134.09562771815595, 134.09562771815595, 192.07699258531258, 803.25149871139331, 187.06679688844099, 261.98892632415135, 1084.2137506985096, 453.55403152077287, 273.02563721404266, 1096.1262149058257, 382.71134050877754, 524.63471341005845, 777.41667134038062, 435.3277187766621, 596.37893943403878, 495.74646516274811, 1783.55977706919, 385.31006601882711, 821.25277144044162, 1808.6126207993293, 806.35644035522853, 552.33451416038713, 483.48875006080704, 663.60680386365266, 551.4985501141756, 892.17604609824889, 2418.7388177718553, 733.82763206238053, 707.61507960699691, 692.74897702386124, 557.38143436506255, 0.55476498086009263, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 755.11832457978221, 698.11841791576705, 340.119715510334, 335.11975315518788, 324.11984003880099, 287.12018082550907, 284.12021232162107, 275.1203109035684, 266.12041610711572, 260.12049025847978, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 1.4080627439923976, 248.12064923973804, 234.12085515339206, 228.12095107647488, 218.12112257622789, 213.12121430913194, 211.12125220826937, 210.12127142601409, 206.12135014500564, 203.12141120039249, 200.12147406945985, 195.12158310670753, 195.12158310670753, 172.12216539864542, 159.12256812042037, 158.12260180993678, 151.12284996874004, 145.12308148935557, 144.12312192639311, 134.12355900732763, 130.12375238494238, 387.28628273624804, 210.14891991769053, 189.16424951816731, 211.23086958586342, 223.20107535975458, 1041.1957145112015, 299.47203838940976, 276.52081040388327, 251.84899977268614, 625.45917211628262, 373.90922295111261, 866.23855151126133, 254.87074693040486, 331.50026970499937, 461.22691470915282, 362.16396131653289, 654.00407823040211, 273.43104803847075, 403.88817743179578, 229.15436003849737, 319.30024638098985, 340.21178576045378, 271.18723093558663, 300.63560848213649, 259.46114540348071, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1296.1004578924194, 914.10074719459885, 863.10080515308903, 1007.0674505711081, 1042.1205141835426, 574.10132745023748, 384.10209693862259, 303.10271645953776, 302.10272617099952, 302.10272617099952, 290.10284789685142, 272.10305047708397, 267.1031115607517, 261.10318792694648, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 1.3998899559940186, 355.07279524426809, 249.10335161224609, 247.10338042699286, 233.10359586319197, 223.10376616036069, 212.1039718697709, 203.10415659771465, 189.10447855515849, 189.10447855515849, 175.10485144365552, 482.9489180136747, 166.10512397563596, 165.1051560702179, 151.10564944568452, 150.10568816452448, 149.10572739619599, 362.23495642924127, 280.17346972596971, 202.11207210361772, 441.94759901801433, 312.03688799040822, 400.54269385163997, 533.43309054178246, 619.25277062970611, 486.19793302449222, 488.19912161059477, 295.16776351859863, 413.84794301576227, 463.97045555463495, 603.76794943309517, 425.19171217152132, 507.60693840265725, 504.67186979309946, 442.73734098515297, 478.66359265530667, 434.19111129659342, 342.78144547370067, 384.97037244073795, 328.24863007130472, 321.31884163921745, 314.41715636831981, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 504.10051868240998, 485.100588260611, 383.10107917890082, 507.09686160224737, 311.1016183486704, 299.10173328785703, 287.10185777212456, 276.10198132346352, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 1.3994100454015812, 242.10243363884223, 239.10247967627967, 235.10254287252732, 231.10260823859144, 226.10269317145284, 208.10303241736634, 199.10322482535298, 194.10333935386723, 194.10333935386723, 192.10338681825098, 261.10767016553677, 169.10401245930427, 169.10401245930427, 162.10423770308401, 159.1043402319269, 149.10471141777828, 216.09392603815706, 135.10532211249196, 134.10537054464351, 134.10537054464351, 134.10537054464351, 127.10573059430833, 733.56805799776032, 201.10911154633479, 1357.0299155964778, 1339.0409983766865, 312.95034836653042, 209.06537386690673, 251.04889092944492, 1937.7974508342554, 391.6602165825023, 611.51594290957757, 464.22055774608071, 1436.2730979840192, 783.97026485065794, 411.10702252991445, 264.85406711988782, 222.14498665890139, 1104.9696379158097, 404.58204001838976, 448.19277805534335, 450.13546523003424, 277.29142220763703, 326.91342991828884, 328.4744459309124, 282.24980346059505, 344.29290408478084, 337.89834951679535, 361.16840606945527, 298.31672233137522, 288.74724115902319], \"Total\": [11966, 8298, 11443, 4961, 6991, 5850, 4683, 2845, 4917, 2431, 3182, 2345, 2162, 2964, 2115, 3035, 2733, 2911, 3454, 1789, 2615, 3359, 3391, 1983, 1588, 3775, 1563, 3244, 1892, 1580, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 11966, 4683, 2911, 1681, 1615, 1471, 1335, 937, 1013, 795, 708, 697, 626, 599, 579, 906, 541, 533, 519, 504, 494, 493, 487, 452, 450, 439, 420, 587, 408, 580, 5850, 1976, 863, 556, 6991, 814, 700, 1053, 612, 1858, 913, 11443, 1137, 3775, 1004, 3244, 2374, 2083, 1710, 1233, 1480, 3359, 1486, 3035, 2124, 1418, 2615, 8298, 1568, 2964, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1789, 1588, 597, 571, 476, 361, 347, 337, 335, 319, 318, 295, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 230, 217, 361, 201, 173, 171, 171, 167, 165, 151, 150, 148, 481, 145, 144, 142, 131, 130, 986, 247, 239, 272, 176, 1068, 1445, 630, 514, 1892, 392, 970, 235, 833, 567, 1494, 1138, 775, 396, 1500, 723, 579, 1870, 1734, 3391, 761, 3359, 1079, 1442, 713, 1202, 1284, 1414, 2461, 1099, 3454, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 864, 2115, 796, 759, 502, 501, 399, 392, 377, 372, 362, 355, 345, 344, 331, 466, 278, 271, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1563, 626, 370, 655, 414, 250, 246, 235, 226, 313, 225, 219, 498, 555, 851, 334, 409, 2134, 1720, 1540, 3035, 511, 1666, 2461, 459, 1870, 723, 1327, 814, 573, 3391, 3454, 2795, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2845, 2345, 2162, 1235, 807, 771, 601, 544, 507, 399, 382, 377, 322, 1134, 305, 304, 264, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 386, 250, 240, 197, 194, 190, 183, 257, 171, 170, 165, 162, 161, 238, 319, 656, 225, 488, 644, 470, 1322, 900, 567, 1016, 2615, 558, 1204, 589, 1936, 955, 668, 1063, 3244, 2374, 929, 1540, 3775, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 978, 889, 745, 744, 698, 632, 623, 575, 558, 500, 414, 386, 371, 367, 343, 342, 314, 303, 297, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 615, 340, 225, 223, 222, 212, 197, 196, 281, 183, 179, 254, 258, 1983, 8298, 662, 524, 988, 1003, 704, 564, 4961, 1431, 2795, 902, 884, 803, 1936, 1720, 825, 3454, 6991, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2431, 1206, 779, 722, 697, 643, 596, 570, 520, 520, 440, 328, 309, 271, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 456, 395, 538, 221, 206, 339, 184, 177, 172, 168, 249, 163, 161, 158, 145, 536, 219, 346, 364, 259, 438, 422, 4961, 1679, 842, 494, 4917, 1469, 1414, 1337, 2733, 3182, 974, 2795, 1734, 3391, 988, 1075, 653, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 788, 746, 647, 619, 428, 422, 380, 371, 355, 814, 291, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 249, 240, 233, 320, 221, 208, 206, 203, 164, 162, 159, 155, 146, 143, 142, 138, 137, 135, 135, 195, 855, 190, 270, 1201, 487, 284, 1292, 414, 589, 907, 488, 704, 584, 2964, 448, 1210, 3454, 1211, 758, 648, 1047, 826, 1908, 11443, 1666, 1607, 4917, 2124, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 756, 699, 341, 336, 325, 288, 285, 276, 267, 261, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 249, 235, 229, 219, 214, 212, 211, 207, 204, 201, 196, 196, 173, 160, 159, 152, 146, 145, 135, 131, 397, 213, 192, 216, 230, 1241, 319, 301, 276, 941, 485, 1651, 294, 491, 922, 753, 4917, 433, 1892, 271, 1480, 3391, 941, 3775, 812, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1297, 915, 864, 1012, 1049, 575, 385, 304, 303, 303, 291, 273, 268, 262, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 358, 250, 248, 234, 224, 213, 204, 190, 190, 176, 494, 167, 166, 152, 151, 150, 372, 287, 205, 466, 327, 433, 605, 755, 577, 593, 325, 530, 703, 1207, 720, 1050, 1469, 1278, 1679, 1314, 704, 1936, 762, 878, 923, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 505, 486, 384, 510, 312, 300, 288, 277, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 243, 240, 236, 232, 227, 209, 200, 195, 195, 193, 264, 170, 170, 163, 160, 150, 219, 136, 135, 135, 135, 128, 767, 204, 1580, 1586, 340, 219, 271, 3182, 466, 855, 604, 2733, 1651, 618, 322, 241, 4917, 744, 993, 1207, 379, 614, 630, 400, 814, 988, 2124, 1500, 1156], \"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, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -11.702500000000001, -3.0546000000000002, -3.9927000000000001, -4.4680999999999997, -5.0171999999999999, -5.0571999999999999, -5.1505999999999998, -5.2476000000000003, -5.6016000000000004, -5.5255999999999998, -5.7659000000000002, -5.8818000000000001, -5.8975, -6.0049000000000001, -6.0490000000000004, -6.0829000000000004, -5.6397000000000004, -6.1508000000000003, -6.1657000000000002, -6.1923000000000004, -6.2215999999999996, -6.2416999999999998, -6.2436999999999996, -6.2558999999999996, -6.3304999999999998, -6.3349000000000002, -6.3597000000000001, -6.4039000000000001, -6.0726000000000004, -6.4329000000000001, -6.0846, -3.8109999999999999, -4.8791000000000002, -5.6932, -6.1271000000000004, -3.6648000000000001, -5.7546999999999997, -5.9076000000000004, -5.5197000000000003, -6.0373999999999999, -5.0035999999999996, -5.6654999999999998, -3.3363999999999998, -5.4859, -4.4349999999999996, -5.6155999999999997, -4.6691000000000003, -4.9747000000000003, -5.0911999999999997, -5.2582000000000004, -5.5118, -5.3880999999999997, -4.8921000000000001, -5.4707999999999997, -5.1505999999999998, -5.3475999999999999, -5.5225999999999997, -5.3559000000000001, -5.0873999999999997, -5.5118, -5.4214000000000002, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -4.1493000000000002, -4.2685000000000004, -5.2466999999999997, -5.2911999999999999, -5.4732000000000003, -5.7496, -5.7892000000000001, -5.8183999999999996, -5.8243999999999998, -5.8733000000000004, -5.8764000000000003, -5.9515000000000002, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -10.8969, -6.2003000000000004, -6.2584, -5.7607999999999997, -6.335, -6.4848999999999997, -6.4965000000000002, -6.4965000000000002, -6.5202, -6.5321999999999996, -6.6208, -6.6275000000000004, -6.6409000000000002, -5.4858000000000002, -6.6614000000000004, -6.6683000000000003, -6.6822999999999997, -6.7628000000000004, -6.7705000000000002, -4.8110999999999997, -6.1494, -6.1872999999999996, -6.0663, -6.4791999999999996, -4.7980999999999998, -4.5320999999999998, -5.3018000000000001, -5.4901, -4.3315000000000001, -5.7523999999999997, -4.9478, -6.2134, -5.0918999999999999, -5.4442000000000004, -4.6539999999999999, -4.8864000000000001, -5.2104999999999997, -5.7664, -4.6908000000000003, -5.2965, -5.4752999999999998, -4.6596000000000002, -4.7141000000000002, -4.2679, -5.3396999999999997, -4.4458000000000002, -5.1299000000000001, -4.9679000000000002, -5.3808999999999996, -5.1180000000000003, -5.1238999999999999, -5.2568000000000001, -5.1418999999999997, -5.3377999999999997, -5.2983000000000002, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -4.8691000000000004, -3.9834999999999998, -4.9511000000000003, -4.9987000000000004, -5.4119999999999999, -5.4139999999999997, -5.6416000000000004, -5.6593, -5.6982999999999997, -5.7115999999999998, -5.7389000000000001, -5.7584, -5.7869999999999999, -5.7899000000000003, -5.8284000000000002, -5.4907000000000004, -6.0027999999999997, -6.0282999999999998, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -10.8889, -4.2990000000000004, -5.2008999999999999, -5.7225000000000001, -5.1645000000000003, -5.6143999999999998, -6.109, -6.1250999999999998, -6.1707999999999998, -6.2098000000000004, -5.8906999999999998, -6.2142999999999997, -6.2412999999999998, -5.4443999999999999, -5.3521000000000001, -4.9461000000000004, -5.8436000000000003, -5.6618000000000004, -4.2535999999999996, -4.5490000000000004, -4.6405000000000003, -4.2770000000000001, -5.5529000000000002, -4.7988, -4.5998999999999999, -5.6391, -4.9535999999999998, -5.5037000000000003, -5.3316999999999997, -5.4800000000000004, -5.6022999999999996, -5.2336999999999998, -5.2404000000000002, -5.3691000000000004, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -3.6482000000000001, -3.8414999999999999, -3.9236, -4.4825999999999997, -4.9081000000000001, -4.9537000000000004, -5.2027999999999999, -5.3023999999999996, -5.3727999999999998, -5.6123000000000003, -5.6558999999999999, -5.6689999999999996, -5.8266999999999998, -4.5804, -5.8808999999999996, -5.8841999999999999, -6.0251999999999999, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -10.8596, -5.6505999999999998, -6.0796999999999999, -6.1204999999999998, -6.3178000000000001, -6.3331999999999997, -6.3540000000000001, -6.3914999999999997, -6.0598999999999998, -6.4592999999999998, -6.4652000000000003, -6.4950000000000001, -6.5133000000000001, -6.5194999999999999, -6.1372999999999998, -5.8550000000000004, -5.1604000000000001, -6.1984000000000004, -5.4744999999999999, -5.2435, -5.5587, -4.6680000000000001, -5.0069999999999997, -5.4359000000000002, -5.0347, -4.3452000000000002, -5.5077999999999996, -4.9641999999999999, -5.4965000000000002, -4.7824999999999998, -5.2628000000000004, -5.4809999999999999, -5.3418000000000001, -4.9356999999999998, -5.1717000000000004, -5.4401000000000002, -5.4832000000000001, -5.4421999999999997, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -4.7168999999999999, -4.8122999999999996, -4.9889999999999999, -4.9904000000000002, -5.0541999999999998, -5.1535000000000002, -5.1677999999999997, -5.2480000000000002, -5.2779999999999996, -5.3876999999999997, -5.5763999999999996, -5.6463999999999999, -5.6860999999999997, -5.6969000000000003, -5.7645, -5.7674000000000003, -5.8528000000000002, -5.8884999999999996, -5.9085000000000001, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -10.8606, -5.1955, -5.7792000000000003, -6.1859999999999999, -6.1948999999999996, -6.1993999999999998, -6.2454999999999998, -6.3188000000000004, -6.3239000000000001, -5.9710000000000001, -6.3925000000000001, -6.4146000000000001, -6.0727000000000002, -6.0648, -4.1276999999999999, -2.7879999999999998, -5.1742999999999997, -5.3978000000000002, -4.8101000000000003, -4.7999999999999998, -5.3562000000000003, -5.5247000000000002, -4.1825000000000001, -4.9889999999999999, -4.6242000000000001, -5.3369999999999997, -5.3543000000000003, -5.4038000000000004, -5.1456, -5.3295000000000003, -5.5861000000000001, -5.4432, -5.4058999999999999, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -3.7629999999999999, -4.4630999999999998, -4.9001000000000001, -4.9760999999999997, -5.0113000000000003, -5.0918999999999999, -5.1677999999999997, -5.2123999999999997, -5.3041999999999998, -5.3041999999999998, -5.4711999999999996, -5.7648999999999999, -5.8246000000000002, -5.9558, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -10.8163, -5.4420999999999999, -5.5867000000000004, -5.2851999999999997, -6.1596000000000002, -6.2298999999999998, -5.7438000000000002, -6.3428000000000004, -6.3815, -6.4101999999999997, -6.4337, -6.0484999999999998, -6.4638999999999998, -6.4762000000000004, -6.4950000000000001, -6.5808, -5.3003999999999998, -6.1779000000000002, -5.7408000000000001, -5.6943000000000001, -6.0324, -5.5566000000000004, -5.6151999999999997, -3.4590000000000001, -4.4756, -5.0643000000000002, -5.5153999999999996, -3.7523, -4.6901999999999999, -4.8452000000000002, -4.9420999999999999, -4.5335000000000001, -4.4573, -5.1512000000000002, -4.7069999999999999, -4.9829999999999997, -4.7953999999999999, -5.3235999999999999, -5.3494999999999999, -5.4781000000000004, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -4.8677999999999999, -4.9225000000000003, -5.0648999999999997, -5.1090999999999998, -5.4779999999999998, -5.4922000000000004, -5.5970000000000004, -5.6208999999999998, -5.665, -4.8452000000000002, -5.8636999999999997, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -10.795500000000001, -6.0194999999999999, -6.0563000000000002, -6.0858999999999996, -5.7750000000000004, -6.1387999999999998, -6.1993999999999998, -6.2089999999999996, -6.2237, -6.4368999999999996, -6.4492000000000003, -6.4679000000000002, -6.4932999999999996, -6.5530999999999997, -6.5739000000000001, -6.5808999999999997, -6.6093999999999999, -6.6166999999999998, -6.6314000000000002, -6.6314000000000002, -6.2742000000000004, -4.8464, -6.3003999999999998, -5.9649000000000001, -4.548, -5.4169, -5.9238999999999997, -4.5342000000000002, -5.5865, -5.2699999999999996, -4.8804999999999996, -5.4572000000000003, -5.1452999999999998, -5.3266, -4.0513000000000003, -5.5812999999999997, -4.8243, -4.0319000000000003, -4.8440000000000003, -5.2183000000000002, -5.3551000000000002, -5.0389999999999997, -5.2183000000000002, -4.7427000000000001, -3.7475000000000001, -4.9320000000000004, -4.9706000000000001, -4.9805000000000001, -5.2129000000000003, -11.409599999999999, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -4.8766999999999996, -4.9550999999999998, -5.6726999999999999, -5.6875, -5.7207999999999997, -5.8415999999999997, -5.8521000000000001, -5.8841999999999999, -5.9173, -5.9400000000000004, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -10.763, -5.9870999999999999, -6.0449000000000002, -6.0708000000000002, -6.1154000000000002, -6.1384999999999996, -6.1478999999999999, -6.1525999999999996, -6.1717000000000004, -6.1863000000000001, -6.2011000000000003, -6.2263000000000002, -6.2263000000000002, -6.3510999999999997, -6.4291, -6.4353999999999996, -6.4804000000000004, -6.5206, -6.5274999999999999, -6.5989000000000004, -6.6289999999999996, -5.5437000000000003, -6.1525999999999996, -6.2573999999999996, -6.1478999999999999, -6.0928000000000004, -4.5598000000000001, -5.8007999999999997, -5.8804999999999996, -5.9751000000000003, -5.0750000000000002, -5.5857999999999999, -4.7489999999999997, -5.9633000000000003, -5.7085999999999997, -5.3777999999999997, -5.6185, -5.0339999999999998, -5.8951000000000002, -5.5106999999999999, -6.0708000000000002, -5.7615999999999996, -5.6844999999999999, -5.9097999999999997, -5.8243999999999998, -5.9633000000000003, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -4.2888000000000002, -4.6375999999999999, -4.6950000000000003, -4.5407999999999999, -4.5067000000000004, -5.1021000000000001, -5.5031999999999996, -5.7393000000000001, -5.7426000000000004, -5.7426000000000004, -5.7830000000000004, -5.8468, -5.8653000000000004, -5.8879000000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -10.714700000000001, -5.5815000000000001, -5.9348000000000001, -5.9428000000000001, -6.0008999999999997, -6.0446, -6.0949, -6.1380999999999997, -6.2091000000000003, -6.2091000000000003, -6.2855999999999996, -5.2744, -6.3380999999999998, -6.3441000000000001, -6.4321000000000002, -6.4386999999999999, -6.4454000000000002, -5.5620000000000003, -5.8179999999999996, -6.1429999999999998, -5.3628999999999998, -5.7100999999999997, -5.4625000000000004, -5.1760999999999999, -5.0251999999999999, -5.2702999999999998, -5.2641, -5.766, -5.4280999999999997, -5.3186999999999998, -5.0545999999999998, -5.4066999999999998, -5.2319000000000004, -5.226, -5.3605999999999998, -5.2785000000000002, -5.3788, -5.6245000000000003, -5.5057999999999998, -5.6664000000000003, -5.6818, -5.7038000000000002, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -5.1875, -5.2257999999999996, -5.4612999999999996, -5.1814999999999998, -5.6688999999999998, -5.7081, -5.7488999999999999, -5.7877999999999998, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -10.670299999999999, -5.9187000000000003, -5.9311999999999996, -5.9480000000000004, -5.9649999999999999, -5.9867999999999997, -6.0693999999999999, -6.1134000000000004, -6.1387, -6.1387, -6.149, -5.8434999999999997, -6.2758000000000003, -6.2758000000000003, -6.3178999999999998, -6.3364000000000003, -6.4009, -6.0319000000000003, -6.4988000000000001, -6.5061999999999998, -6.5061999999999998, -6.5061999999999998, -6.5594000000000001, -4.8121999999999998, -6.1035000000000004, -4.1984000000000004, -4.2117000000000004, -5.6624999999999996, -6.0646000000000004, -5.8823999999999996, -3.8386, -5.4382000000000001, -4.9920999999999998, -5.2699999999999996, -4.1376999999999997, -4.7374999999999998, -5.3860999999999999, -5.8282999999999996, -6.0045999999999999, -4.3982000000000001, -5.4055999999999997, -5.3026999999999997, -5.3026999999999997, -5.7842000000000002, -5.6158999999999999, -5.6128, -5.7664, -5.5683999999999996, -5.5830000000000002, -5.5313999999999997, -5.7081, -5.7523999999999997]}};\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_el61271397022065983527425220677\", ldavis_el61271397022065983527425220677_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_el61271397022065983527425220677\", ldavis_el61271397022065983527425220677_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_el61271397022065983527425220677\", ldavis_el61271397022065983527425220677_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"PreparedData(topic_coordinates= Freq cluster topics x y\n",
"topic \n",
"4 21.102693 1 1 0.313777 -0.086503\n",
"9 9.623792 1 2 -0.014117 0.091459\n",
"7 9.478882 1 3 -0.035058 0.071711\n",
"8 9.222720 1 4 0.045782 -0.233297\n",
"3 9.091752 1 5 -0.019211 0.192677\n",
"5 8.889752 1 6 -0.167274 0.081736\n",
"0 8.532668 1 7 0.202893 0.162013\n",
"1 8.498027 1 8 -0.079208 -0.208469\n",
"6 7.956741 1 9 -0.113860 0.004066\n",
"2 7.602974 1 10 -0.133724 -0.075392, topic_info= Category Freq Term Total loglift logprob\n",
"34721 Default 11966.000000 said 11966 30.0000 30.0000\n",
"17196 Default 8298.000000 mr 8298 29.0000 29.0000\n",
"12525 Default 11443.000000 the 11443 28.0000 28.0000\n",
"7177 Default 4961.000000 would 4961 27.0000 27.0000\n",
"17066 Default 6991.000000 ” 6991 26.0000 26.0000\n",
"3142 Default 5850.000000 year 5850 25.0000 25.0000\n",
"9942 Default 4683.000000 new 4683 24.0000 24.0000\n",
"23771 Default 2845.000000 game 2845 23.0000 23.0000\n",
"14299 Default 4917.000000 one 4917 22.0000 22.0000\n",
"33220 Default 2431.000000 a 2431 21.0000 21.0000\n",
"34099 Default 3182.000000 state 3182 20.0000 20.0000\n",
"37838 Default 2345.000000 season 2345 19.0000 19.0000\n",
"10257 Default 2162.000000 team 2162 18.0000 18.0000\n",
"5570 Default 2964.000000 first 2964 17.0000 17.0000\n",
"19109 Default 2115.000000 united 2115 16.0000 16.0000\n",
"21911 Default 3035.000000 government 3035 15.0000 15.0000\n",
"10110 Default 2733.000000 people 2733 14.0000 14.0000\n",
"1533 Default 2911.000000 last 2911 13.0000 13.0000\n",
"25850 Default 3454.000000 two 3454 12.0000 12.0000\n",
"38252 Default 1789.000000 and 1789 11.0000 11.0000\n",
"14577 Default 2615.000000 he 2615 10.0000 10.0000\n",
"30085 Default 3359.000000 time 3359 9.0000 9.0000\n",
"15042 Default 3391.000000 in 3391 8.0000 8.0000\n",
"24648 Default 1983.000000 president 1983 7.0000 7.0000\n",
"35866 Default 1588.000000 house 1588 6.0000 6.0000\n",
"17015 Default 3775.000000 but 3775 5.0000 5.0000\n",
"5506 Default 1563.000000 group 1563 4.0000 4.0000\n",
"6985 Default 3244.000000 like 3244 3.0000 3.0000\n",
"32035 Default 1892.000000 work 1892 2.0000 2.0000\n",
"12040 Default 1580.000000 official 1580 1.0000 1.0000\n",
"... ... ... ... ... ... ...\n",
"23107 Topic10 127.105731 commander 128 2.5440 -6.5594\n",
"5878 Topic10 733.568058 woman 767 2.5007 -4.8122\n",
"16776 Topic10 201.109112 supporter 204 2.5339 -6.1035\n",
"12040 Topic10 1357.029916 official 1580 2.3919 -4.1984\n",
"19938 Topic10 1339.040998 country 1586 2.3748 -4.2117\n",
"15225 Topic10 312.950348 died 340 2.4640 -5.6625\n",
"36931 Topic10 209.065374 shooting 219 2.5017 -6.0646\n",
"10033 Topic10 251.048891 visit 271 2.4709 -5.8824\n",
"34099 Topic10 1937.797451 state 3182 2.0515 -3.8386\n",
"21224 Topic10 391.660217 south 466 2.3731 -5.4382\n",
"23364 Topic10 611.515943 family 855 2.2123 -4.9921\n",
"33043 Topic10 464.220558 area 604 2.2819 -5.2700\n",
"10110 Topic10 1436.273098 people 2733 1.9046 -4.1377\n",
"17195 Topic10 783.970265 ms 1651 1.8088 -4.7375\n",
"14332 Topic10 411.107023 she 618 2.1428 -5.3861\n",
"15972 Topic10 264.854067 town 322 2.3525 -5.8283\n",
"11247 Topic10 222.144987 fire 241 2.4661 -6.0046\n",
"14299 Topic10 1104.969638 one 4917 1.0568 -4.3982\n",
"26010 Topic10 404.582040 least 744 1.9378 -5.4056\n",
"959 Topic10 448.192778 former 993 1.7520 -5.3027\n",
"19402 Topic10 450.135465 member 1207 1.5568 -5.3027\n",
"22305 Topic10 277.291422 country’s 379 2.2337 -5.7842\n",
"24507 Topic10 326.913430 whose 614 1.9196 -5.6159\n",
"21861 Topic10 328.474446 site 630 1.8969 -5.6128\n",
"39187 Topic10 282.249803 view 400 2.1976 -5.7664\n",
"5393 Topic10 344.292904 international 814 1.6851 -5.5684\n",
"25816 Topic10 337.898350 public 988 1.4768 -5.5830\n",
"36494 Topic10 361.168406 day 2124 0.7630 -5.5314\n",
"3104 Topic10 298.316722 still 1500 0.9341 -5.7081\n",
"16801 Topic10 288.747241 national 1156 1.1503 -5.7524\n",
"\n",
"[1039 rows x 6 columns], token_table= Topic Freq Term\n",
"term \n",
"5351 7 0.998731 0\n",
"3966 1 0.451394 000\n",
"3966 3 0.412208 000\n",
"3966 10 0.135644 000\n",
"21929 9 0.500000 0600\n",
"5316 8 0.500000 088\n",
"27752 2 0.150929 1\n",
"27752 7 0.848297 1\n",
"25430 1 0.233058 10\n",
"25430 6 0.085950 10\n",
"25430 7 0.678512 10\n",
"25430 8 0.001653 10\n",
"34773 3 0.500000 169\n",
"32681 8 0.500000 1835\n",
"28290 6 0.500000 1840\n",
"28289 6 0.500000 1841\n",
"18462 4 0.500000 1909\n",
"10470 2 0.301181 2\n",
"10470 4 0.697835 2\n",
"21612 4 0.181132 2013\n",
"21612 8 0.035849 2013\n",
"21612 9 0.781132 2013\n",
"30567 8 0.992593 212\n",
"5315 5 0.500000 2500\n",
"25922 7 0.995146 27\n",
"32866 2 0.059649 3\n",
"32866 7 0.939181 3\n",
"22517 3 0.500000 323\n",
"15719 7 0.998384 4\n",
"28084 6 0.500000 46th\n",
"... ... ... ...\n",
"12416 9 0.500000 “gloria\n",
"31776 8 0.500000 “gone\n",
"22397 3 0.500000 “grab\n",
"12420 9 0.500000 “horse\n",
"38758 2 0.846367 “i\n",
"38758 7 0.152941 “i\n",
"3484 2 0.500000 “illegal\n",
"35240 4 0.500000 “m\n",
"10553 5 0.500000 “mccain\n",
"29887 4 0.500000 “orchestral\n",
"8664 7 0.500000 “phineas\n",
"4996 5 0.500000 “possible\n",
"28129 6 0.500000 “puzzle\n",
"8861 10 0.500000 “republic\n",
"34796 3 0.500000 “smooth\n",
"8832 6 0.500000 “solomon\n",
"30253 7 0.500000 “song\n",
"20448 4 0.500000 “teams\n",
"10535 1 0.915501 “the\n",
"10535 4 0.082885 “the\n",
"10535 10 0.001076 “the\n",
"7898 4 0.500000 “thrones”\n",
"13820 3 0.500000 “title\n",
"32634 8 0.500000 “tragic”\n",
"28070 1 0.500000 “unclear”\n",
"12167 5 0.500000 “usually\n",
"18070 8 0.500000 “whales”\n",
"17066 1 0.929624 ”\n",
"17066 5 0.070233 ”\n",
"5015 6 0.500000 €54\n",
"\n",
"[1419 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[5, 10, 8, 9, 4, 6, 1, 2, 7, 3])"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pyLDAvis.graphlab.prepare(topicModel, nyArticlesSFrame['features'])"
]
},
{
"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