forked from insightcampus/sesac-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path28 실습 - 통계기반 자연어처리 - 토픽모델링 (LDA)
1 lines (1 loc) · 510 KB
/
28 실습 - 통계기반 자연어처리 - 토픽모델링 (LDA)
1
{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"name":"28 실습 - 통계기반 자연어처리 - 토픽모델링 (LDA)","provenance":[],"collapsed_sections":[]},"kernelspec":{"name":"python3","display_name":"Python 3"}},"cells":[{"cell_type":"markdown","metadata":{"id":"ATfiKPg2wHkQ"},"source":["# 잠재디리클레할당(LDA, Latent Dirichlet Allocation)"]},{"cell_type":"markdown","metadata":{"id":"62T28EFBhxY2"},"source":["## 환경준비"]},{"cell_type":"code","metadata":{"id":"pX2qNArwVPbY","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1638110444620,"user_tz":-540,"elapsed":3459,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}},"outputId":"ef09c691-cd45-457a-f2ec-a9bf79a3c5c9"},"source":["!pip install pyLDAvis==2.1.2"],"execution_count":9,"outputs":[{"output_type":"stream","name":"stdout","text":["Requirement already satisfied: pyLDAvis==2.1.2 in /usr/local/lib/python3.7/dist-packages (2.1.2)\n","Requirement already satisfied: wheel>=0.23.0 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (0.37.0)\n","Requirement already satisfied: future in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (0.16.0)\n","Requirement already satisfied: pytest in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (3.6.4)\n","Requirement already satisfied: numexpr in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (2.7.3)\n","Requirement already satisfied: pandas>=0.17.0 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (1.1.5)\n","Requirement already satisfied: scipy>=0.18.0 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (1.4.1)\n","Requirement already satisfied: numpy>=1.9.2 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (1.19.5)\n","Requirement already satisfied: joblib>=0.8.4 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (1.1.0)\n","Requirement already satisfied: funcy in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (1.16)\n","Requirement already satisfied: jinja2>=2.7.2 in /usr/local/lib/python3.7/dist-packages (from pyLDAvis==2.1.2) (2.11.3)\n","Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib/python3.7/dist-packages (from jinja2>=2.7.2->pyLDAvis==2.1.2) (2.0.1)\n","Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.17.0->pyLDAvis==2.1.2) (2018.9)\n","Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.17.0->pyLDAvis==2.1.2) (2.8.2)\n","Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil>=2.7.3->pandas>=0.17.0->pyLDAvis==2.1.2) (1.15.0)\n","Requirement already satisfied: atomicwrites>=1.0 in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (1.4.0)\n","Requirement already satisfied: py>=1.5.0 in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (1.11.0)\n","Requirement already satisfied: pluggy<0.8,>=0.5 in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (0.7.1)\n","Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (57.4.0)\n","Requirement already satisfied: attrs>=17.4.0 in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (21.2.0)\n","Requirement already satisfied: more-itertools>=4.0.0 in /usr/local/lib/python3.7/dist-packages (from pytest->pyLDAvis==2.1.2) (8.11.0)\n"]}]},{"cell_type":"code","metadata":{"id":"XSHppaPoqOl2","executionInfo":{"status":"ok","timestamp":1638110451139,"user_tz":-540,"elapsed":461,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}}},"source":["import warnings\n","warnings.filterwarnings(action='ignore')"],"execution_count":10,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"RS7TS1QP9Q7e"},"source":["##1) sklearn 활용"]},{"cell_type":"code","metadata":{"id":"SaZrFgPaOuqJ","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1638110489197,"user_tz":-540,"elapsed":803,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}},"outputId":"762e3fca-cee6-4e65-9d3c-c995a1d88007"},"source":["import nltk\n","nltk.download('stopwords')\n","from nltk.corpus import stopwords\n","import pandas as pd\n","from sklearn.datasets import fetch_20newsgroups\n","\n","#뉴스 다운로드 및 전처리\n","def get_news(apply_split=True) :\n"," #20newsgroup 다운로드\n"," dataset = fetch_20newsgroups(shuffle=True, random_state=1, remove=('headers', 'footers', 'quotes'))\n"," documents = dataset.data\n","\n"," news_df = pd.DataFrame({'document':documents})\n"," news_df['clean_doc'] = news_df['document'].str.replace(\"[^a-zA-Z]\", \" \") # 특수 문자 제거\n"," news_df['clean_doc'] = news_df['clean_doc'].apply(lambda x: ' '.join([w for w in x.split() if len(w)>3])) # 길이가 3이하인 단어는 제거 (길이가 짧은 단어 제거)\n"," news_df['clean_doc'] = news_df['clean_doc'].apply(lambda x: x.lower())# 전체 단어에 대한 소문자 변환\n"," tokenized_doc = news_df['clean_doc'].apply(lambda x: x.split()) # 토큰화\n","\n"," stop_words = stopwords.words('english') # NLTK 불용어 조회\n","\n"," if apply_split :\n"," return tokenized_doc.apply(lambda x: [item for item in x if item not in stop_words])\n"," else :\n"," return tokenized_doc.apply(lambda x: ' '.join([item for item in x if item not in stop_words]))"],"execution_count":11,"outputs":[{"output_type":"stream","name":"stdout","text":["[nltk_data] Downloading package stopwords to /root/nltk_data...\n","[nltk_data] Package stopwords is already up-to-date!\n"]}]},{"cell_type":"code","metadata":{"id":"cz82Rew1s9kF","executionInfo":{"status":"ok","timestamp":1638110511063,"user_tz":-540,"elapsed":6445,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}}},"source":["#공백으로 토큰 분리\n","def my_tokenizer(text):\n"," return text.split()\n","\n","tokenized_docs = get_news(False)"],"execution_count":12,"outputs":[]},{"cell_type":"code","metadata":{"id":"ZIuciWdLLeuf","executionInfo":{"status":"ok","timestamp":1638110905943,"user_tz":-540,"elapsed":230949,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}}},"source":["from sklearn.feature_extraction.text import TfidfVectorizer\n","from sklearn.decomposition import LatentDirichletAllocation\n","\n","tfidf_vect = TfidfVectorizer(tokenizer=my_tokenizer)\n","tfidf = tfidf_vect.fit_transform(tokenized_docs)\n","lda = LatentDirichletAllocation(n_components=20, max_iter=20, learning_method='online', random_state=0)\n","lda_output = lda.fit_transform(tfidf)"],"execution_count":13,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"RpHv_KHAdtyK"},"source":["\\"]},{"cell_type":"code","metadata":{"id":"oyAE2FJjI1CV","colab":{"base_uri":"https://localhost:8080/","height":882},"executionInfo":{"status":"ok","timestamp":1638111028430,"user_tz":-540,"elapsed":27271,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}},"outputId":"151b1654-4f98-4156-bde9-daeb17cddddd"},"source":["#!pip install pyLDAvis\n","import pyLDAvis\n","import pyLDAvis.sklearn\n","\n","pyLDAvis.enable_notebook()\n","vis = pyLDAvis.sklearn.prepare(lda, tfidf, tfidf_vect, mds='tsne')\n","pyLDAvis.display(vis)\n"],"execution_count":14,"outputs":[{"output_type":"execute_result","data":{"text/html":["\n","<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css\">\n","\n","\n","<div id=\"ldavis_el611400430562213921429027471\"></div>\n","<script type=\"text/javascript\">\n","\n","var ldavis_el611400430562213921429027471_data = {\"mdsDat\": {\"x\": [-10.878067970275879, -60.88402557373047, -2.3361191749572754, -61.385318756103516, -28.737743377685547, 1.0666056871414185, 45.14072036743164, -140.7959747314453, 61.531681060791016, -72.56305694580078, 15.984491348266602, -160.85162353515625, 85.96183013916016, -99.02083587646484, -176.76412963867188, -117.18988037109375, 108.82991790771484, 47.588096618652344, -106.46783447265625, -50.61380386352539], \"y\": [10.538727760314941, -75.5918197631836, -53.2890739440918, -12.914633750915527, 126.2969970703125, -123.55281066894531, -7.947869300842285, -98.53054809570312, -83.24056243896484, -140.39688110351562, 63.57818603515625, 68.94514465332031, 51.922935485839844, 109.93634796142578, -8.681683540344238, -37.42020034790039, -22.946203231811523, 121.934814453125, 30.176889419555664, 59.32884216308594], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [83.71057645690723, 1.1612081632670939, 1.0864230194793905, 1.0737976993743978, 1.0036613405563208, 0.9557109184069323, 0.8928354321708961, 0.838595672161989, 0.8136309108129482, 0.8047218460490351, 0.7941238923938968, 0.7896338408797925, 0.7882916131450061, 0.7811133674391424, 0.7692818223344453, 0.7660514774599563, 0.7559898034317619, 0.7516399573866488, 0.7317336064135793, 0.7309791599295334]}, \"tinfo\": {\"Term\": [\"soon\", \"banks\", \"gordon\", \"surrender\", \"pitt\", \"skepticism\", \"traded\", \"intellect\", \"cadre\", \"shameful\", \"chastity\", \"captain\", \"lemieux\", \"part\", \"ditto\", \"would\", \"begin\", \"account\", \"names\", \"policy\", \"range\", \"connect\", \"fall\", \"lives\", \"germany\", \"owners\", \"changes\", \"starting\", \"reality\", \"specifically\", \"would\", \"like\", \"know\", \"people\", \"think\", \"anyone\", \"thanks\", \"could\", \"also\", \"good\", \"time\", \"please\", \"well\", \"much\", \"even\", \"need\", \"windows\", \"system\", \"make\", \"want\", \"problem\", \"right\", \"first\", \"used\", \"many\", \"drive\", \"really\", \"something\", \"work\", \"mail\", \"suck\", \"chop\", \"mormons\", \"mormon\", \"viper\", \"viola\", \"bonds\", \"kong\", \"kingman\", \"garrett\", \"panicking\", \"hong\", \"ites\", \"gurus\", \"yankee\", \"infield\", \"boggs\", \"wagons\", \"intrepid\", \"drivel\", \"canseco\", \"gibson\", \"eddie\", \"farr\", \"snapped\", \"dividians\", \"eggs\", \"ampere\", \"authur\", \"mule\", \"intellect\", \"cadre\", \"shameful\", \"chastity\", \"migraine\", \"skepticism\", \"shrink\", \"erzurum\", \"pitt\", \"succesfully\", \"fmgs\", \"surrender\", \"pittsburg\", \"biscayne\", \"erzincan\", \"ingles\", \"neurologic\", \"starvation\", \"peppers\", \"tremor\", \"ermeni\", \"mufti\", \"antidepressants\", \"prolactin\", \"goucher\", \"gordon\", \"garth\", \"ampr\", \"vaginal\", \"eugenics\", \"banks\", \"soon\", \"howell\", \"jagr\", \"kirk\", \"savard\", \"tocchet\", \"stevens\", \"amour\", \"brind\", \"recchi\", \"otto\", \"greenberg\", \"hank\", \"neely\", \"denis\", \"prozac\", \"courtnall\", \"powerplay\", \"primeau\", \"saddle\", \"pneumonia\", \"muller\", \"wdve\", \"chelios\", \"niedermayer\", \"omnipotence\", \"cassels\", \"omnipotent\", \"teal\", \"ysebaert\", \"dineen\", \"spacewalk\", \"captain\", \"traded\", \"lemieux\", \"nrhj\", \"wwiz\", \"gizw\", \"bhjn\", \"bxom\", \"pnei\", \"tbxn\", \"nriz\", \"woof\", \"melittin\", \"pmfq\", \"wmbxn\", \"bxlt\", \"mbxn\", \"wwhj\", \"tbxom\", \"prostitutes\", \"rchz\", \"gizwt\", \"eqtm\", \"jpwu\", \"nkjz\", \"nrizwt\", \"fijh\", \"chzd\", \"massage\", \"rlhz\", \"parlors\", \"zbhj\", \"bizw\", \"pitcher\", \"champs\", \"keller\", \"quakers\", \"kkeller\", \"nolan\", \"techno\", \"clockwise\", \"upenn\", \"beef\", \"blomberg\", \"paganism\", \"lazarus\", \"anarchal\", \"underdog\", \"inguiry\", \"eridan\", \"chuvashia\", \"bedouin\", \"saul\", \"meaddata\", \"curran\", \"sheffield\", \"betting\", \"nanosecond\", \"azerbadjan\", \"rectum\", \"stanky\", \"spirituality\", \"wharton\", \"tiger\", \"koufax\", \"kirlian\", \"handshaking\", \"vinyl\", \"anas\", \"aura\", \"bernoulli\", \"omran\", \"rays\", \"mating\", \"shining\", \"equalizer\", \"deterrent\", \"fluorescent\", \"jasmine\", \"krillean\", \"unlock\", \"parametric\", \"maureen\", \"stalk\", \"unlv\", \"assuring\", \"sluggish\", \"freq\", \"bogota\", \"paula\", \"squids\", \"todamhyp\", \"hams\", \"andresen\", \"phigs\", \"rainer\", \"manta\", \"decnet\", \"convertibles\", \"premises\", \"transferable\", \"kadett\", \"prefix\", \"magnets\", \"westford\", \"adresses\", \"meningitis\", \"abbott\", \"vertically\", \"runway\", \"maria\", \"phonetic\", \"atonement\", \"strains\", \"vanagon\", \"sirtf\", \"guage\", \"adelaide\", \"dipl\", \"compatability\", \"forks\", \"pelkey\", \"fairings\", \"immer\", \"harware\", \"dortmund\", \"volvo\", \"lssu\", \"dubinski\", \"regal\", \"marquette\", \"guzzi\", \"robb\", \"admirals\", \"hummingbird\", \"drdos\", \"mussack\", \"epsilon\", \"datadesk\", \"trinomials\", \"pettit\", \"romanick\", \"astounded\", \"safty\", \"filth\", \"precompiled\", \"prefereably\", \"weirdness\", \"keysearch\", \"elided\", \"scand\", \"kspt\", \"atmanager\", \"cjackson\", \"shits\", \"photosynthetic\", \"aliases\", \"overcomes\", \"inherit\", \"moncton\", \"neon\", \"adirondack\", \"binghamton\", \"utica\", \"breton\", \"fredericton\", \"halifax\", \"neuharth\", \"pollard\", \"charlottetown\", \"shorting\", \"skipjacks\", \"springfield\", \"kourou\", \"stillwater\", \"arhgghrghh\", \"nabbing\", \"replugged\", \"citadels\", \"vandenberg\", \"ballast\", \"chryco\", \"storables\", \"cape\", \"providence\", \"misrepresents\", \"reionizes\", \"bimetalic\", \"shavit\", \"rochester\", \"lunatics\", \"whatta\", \"bilinsky\", \"whirrr\", \"hausmann\", \"chlorine\", \"rears\", \"titanium\", \"pigment\", \"basalts\", \"whirr\", \"magnesium\", \"madhaus\", \"centigram\", \"jewelry\", \"oxalic\", \"sulfate\", \"evades\", \"wingo\", \"oxalate\", \"ores\", \"ejeklint\", \"corrados\", \"regolith\", \"gaea\", \"chirps\", \"spoilsport\", \"diabolical\", \"anodise\", \"glycine\", \"quattro\", \"yassin\", \"pagemaker\", \"irgun\", \"pivot\", \"deir\", \"hizbollah\", \"lizard\", \"loyal\", \"joplin\", \"janis\", \"settlers\", \"woodstock\", \"eastwick\", \"rawley\", \"bctel\", \"indiscriminately\", \"mcconnell\", \"secretive\", \"sabra\", \"patrols\", \"reverted\", \"mahesh\", \"hassan\", \"radiusware\", \"shatila\", \"niet\", \"jammer\", \"fmjs\", \"rolex\", \"primitives\", \"libxmu\", \"specint\", \"xwininfo\", \"specfp\", \"lxmu\", \"rvenkate\", \"venkateswar\", \"scrollbar\", \"xtwidgettoapplicationcontext\", \"struct\", \"termcap\", \"triumf\", \"ucblib\", \"libtermcap\", \"applicationcontext\", \"lxext\", \"lxaw\", \"wgep\", \"rindex\", \"pmax\", \"xtvasetvalues\", \"reformatory\", \"parentcvtargs\", \"rtheta\", \"wesbrook\", \"meson\", \"mattress\", \"suresh\", \"juvi\", \"attendendence\", \"celp\", \"ornaments\", \"beamers\", \"fiddle\", \"yuppies\", \"quiche\", \"persistance\", \"coder\", \"bimmers\", \"heathkit\", \"outdoorsey\", \"ooooo\", \"ppppp\", \"venuti\", \"purists\", \"disappering\", \"suspendered\", \"reganomics\", \"vanoy\", \"tremain\", \"netfone\", \"jpcampb\", \"intellibit\", \"hamfests\", \"taces\", \"unblanking\", \"atal\", \"fenichel\", \"gersho\", \"dellamorte\", \"roadtrips\", \"toneau\", \"chipboard\", \"hofs\", \"moan\", \"psxop\", \"mymz\", \"hflf\", \"fjev\", \"beku\", \"cyhuz\", \"dlmd\", \"uckxt\", \"fywed\", \"akoq\", \"dtcohbnvj\", \"maitf\", \"ecopii\", \"ytklyn\", \"bofx\", \"smxj\", \"pghgc\", \"cigz\", \"mbqyhb\", \"gqevzd\", \"cllwca\", \"lryxrorrze\", \"moor\", \"wmxps\", \"ntykw\", \"edth\", \"ihmf\", \"mlaz\", \"bcwg\", \"upis\", \"tabgs\", \"ixuy\", \"rwsm\", \"mngf\", \"mydisplay\", \"speedo\", \"magnet\", \"untrustworthy\", \"tesrt\", \"behavoir\", \"myhint\", \"enabler\", \"xtwindow\", \"drawindex\", \"kmart\", \"xsizehints\", \"xclrp\", \"usposition\", \"pposition\", \"xwid\", \"ywid\", \"monsters\", \"ussize\", \"fixation\", \"exposuremask\", \"xclrs\", \"xstorecolors\", \"mysstem\", \"expressmodem\", \"sleepp\", \"aftwer\", \"filesharing\", \"psize\", \"programarea\", \"algorythm\", \"ruin\", \"sparky\", \"sing\", \"miner\", \"miners\", \"connectivity\", \"israels\", \"sandiego\", \"nettles\", \"graig\", \"clipperclones\", \"distsq\", \"avec\", \"mbps\", \"nsfnet\", \"clementine\", \"cavern\", \"niner\", \"dwelt\", \"portage\", \"perdre\", \"vrai\", \"procurer\", \"serait\", \"temps\", \"bien\", \"suis\", \"reiss\", \"basebal\", \"excavating\", \"inkjet\", \"xtvaappinitialize\", \"thud\", \"opcode\", \"iiip\", \"rasterizer\", \"xfontstruct\", \"xgetfontproperty\", \"execellent\", \"apkp\", \"oooo\", \"magenta\", \"mainwindow\", \"stoploop\", \"badpixmap\", \"xtrealizewidget\", \"inkjets\", \"vertisoft\", \"emulaser\", \"ntxes\", \"hardcoded\", \"datefield\", \"callbackdata\", \"xgetatomname\", \"xtappnextevent\", \"xmnwidth\", \"xmnheight\", \"xmpushbuttonwidgetclass\", \"datekeys\", \"mainpane\", \"geoworks\", \"requirments\", \"sunshade\", \"fatima\", \"drenching\", \"ditto\", \"icarus\", \"destructors\", \"xtgetapplicationnameandclass\", \"xtscreenofobject\", \"inited\", \"recomending\", \"donestr\", \"xtappaddactionhook\", \"xtva\", \"basetranslation\", \"xtresource\", \"adaption\", \"selectionrequest\", \"xtcachebydisplay\", \"xtgeterrordatabasetext\", \"traversed\", \"decrement\", \"xtspecificationrelease\", \"xenvironment\", \"xtallocategc\", \"xtrvisual\", \"unmapnotify\", \"xtdirectconvert\", \"xtownselectionincremental\", \"xtregistergrabaction\", \"furled\", \"glues\", \"mast\", \"akita\", \"medjurgorje\", \"predicte\", \"weathermen\", \"falsly\", \"prophtets\", \"wavelengths\", \"attested\", \"focal\", \"fingerprints\", \"beneath\", \"stero\", \"lumbar\", \"litre\", \"recliner\", \"headrest\", \"cerullo\", \"hinn\", \"fluke\", \"reflective\", \"roofs\", \"humanist\", \"critus\", \"soooooooooooooooorry\", \"crimp\", \"terminating\", \"snugly\", \"heatshrinking\", \"destructors\", \"xtgetapplicationnameandclass\", \"xtscreenofobject\", \"inited\", \"recomending\", \"donestr\", \"xtappaddactionhook\", \"xtva\", \"basetranslation\", \"xtresource\", \"adaption\", \"selectionrequest\", \"xtcachebydisplay\", \"xtgeterrordatabasetext\", \"traversed\", \"decrement\", \"xtspecificationrelease\", \"xenvironment\", \"xtallocategc\", \"xtrvisual\", \"unmapnotify\", \"xtdirectconvert\", \"xtownselectionincremental\", \"ormation\", \"mitigated\", \"paganus\", \"thos\", \"harwood\", \"economos\", \"ather\", \"kaczmarczik\", \"interconnected\", \"paisano\", \"dialectical\", \"uproarious\", \"whoops\", \"presuption\", \"undone\", \"tenses\", \"dout\", \"adherent\", \"exhaustively\", \"presuppostitons\", \"calused\", \"criticezed\", \"presupposed\"], \"Freq\": [17.0, 5.0, 5.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 36.0, 2.0, 174.0, 7.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 9.0, 9.0, 10.0, 9.0, 10.0, 174.57987553544584, 131.2524670977984, 127.27602490617986, 109.94544664208102, 105.83798340279769, 95.02099629216055, 93.55375991410428, 92.40442880571257, 91.94932512066185, 90.53546162067555, 87.8559875611119, 82.2251619601045, 80.08089039361151, 76.58438067655294, 72.11368047208813, 71.4947372592121, 70.07302046800659, 69.48291669572554, 68.89466107841746, 67.9294346758715, 67.46252023838362, 66.61012940055977, 66.43142553356549, 64.89862945949405, 62.90707756436254, 61.920298530427964, 61.77154163965993, 61.43263927190287, 61.05021488757701, 57.89109192369774, 0.9311126956312318, 0.8206551869979516, 0.7531855419028333, 0.7067460708443334, 0.7015916307069814, 0.6380444668127871, 0.608622646941062, 0.5746645842960518, 0.5728182409138293, 0.5524221225774937, 0.49802530267695455, 0.4741155307362946, 0.4644152552321964, 0.45971762794226945, 0.45905915290028726, 0.45556209035797696, 0.4311356319047006, 0.41882579553660626, 0.4171960102010526, 0.41346950189962095, 0.4048208779129549, 0.39775766118167566, 0.404484115295882, 0.37299583113491586, 0.363269246818991, 0.3593204947583224, 0.35402671574361927, 0.3398197073998719, 0.33399689268103533, 0.32281348701265294, 2.488160826942168, 2.4698451783097397, 2.4663044025419167, 2.4171358947454666, 0.6389541315080712, 2.371722001709796, 0.5641844960675774, 0.2897003021831676, 2.6392785508648857, 0.24980211429323884, 0.22613287184875935, 2.4360739407645475, 0.2166021594853952, 0.21487198135549965, 0.18309278283994118, 0.18197706436614142, 0.17937060084226802, 0.17541095007157942, 0.1731525537564075, 0.1724499376669334, 0.17016252338714782, 0.1671275708711419, 0.16510535476372823, 0.16430592383369666, 0.16386504351314773, 2.354837195286888, 0.15722842562673345, 0.15495794262743648, 0.15410841066505895, 0.15151185174538187, 2.247849838883321, 1.5805112478331629, 0.19485061179777333, 0.7751901805894074, 0.4823249582827626, 0.44151414741020534, 0.4246102997554588, 0.4214228352710948, 0.40847022081718926, 0.4033852556497624, 0.39786327044234365, 0.3952953752325667, 0.38821643904913883, 0.4134355601571267, 0.3386682931232076, 0.33580929330864373, 0.33157640600478083, 0.31092712435929054, 0.2975166867457625, 0.2954060743006717, 0.28355600361843, 0.2691986169710353, 0.2685760815909627, 0.2665320775632729, 0.2654775075161861, 0.25008290452429854, 0.24704442665354429, 0.24630252712237177, 0.24099358904813561, 0.23909099003866183, 0.23555266097713487, 0.2352712157223754, 0.2334368343089564, 0.9640930316794445, 0.6356683431612549, 0.4615526309220206, 0.6176392921483398, 0.4820503428319318, 0.3804458541117144, 0.34065715100858207, 0.29233863619694206, 0.2767339880006567, 0.2634074594535714, 0.26028306305638604, 0.2558126340705094, 0.23691077934909197, 0.233118435095952, 0.22292597727387142, 0.21249014815176498, 0.18331288491496778, 0.18193686071643253, 0.18127212244867935, 0.1631737717800804, 0.15009641145079866, 0.14992885328053793, 0.14641677806448203, 0.14426050907689736, 0.14293419024731394, 0.14088486703545022, 0.11620986179968419, 0.11597871282891459, 0.1825139774661548, 0.10277335801954819, 0.10232151165674482, 0.10033451474182885, 0.09921568749026458, 1.1013923162107346, 0.7020817255208688, 0.6671531573054403, 0.6450438435492885, 0.6435865945283524, 0.5597777743551082, 0.364966719251891, 0.3369623105182833, 0.7022335020001442, 0.27077071227407823, 0.2693583185768818, 0.25849083931745087, 0.24391038120978792, 0.22838994635794366, 0.21978242351636165, 0.21890220293557552, 0.21890220293556806, 0.21890220293473692, 0.21785338996005915, 0.20099017201115588, 0.20062937517406715, 0.20026452090344854, 0.1999577647159853, 0.1966411181014477, 0.18837886058209438, 0.1827975635071139, 0.1823353300889752, 0.17493863815086905, 0.17264346303585187, 0.16774528221539017, 0.22191932841544226, 0.44227577807607593, 0.41854066161421927, 0.4080531626555496, 0.36581655680599323, 0.3406127888890605, 0.3046147855900604, 0.27045319712571814, 0.24601527660460365, 0.26327241438596694, 0.2448927638836786, 0.2427972898154181, 0.2424644400616347, 0.22947668602013305, 0.2201057923746836, 0.21593558773967902, 0.21334948931030104, 0.21268550724158042, 0.19368963531031053, 0.19153273406457252, 0.18291736244066115, 0.18255791823766218, 0.18128803849567532, 0.17876450822473475, 0.17707003441638816, 0.17308697746639776, 0.17127248915477103, 0.16986826921037176, 0.15664607326138688, 0.1530205371625552, 0.14949688903579378, 0.34000917418099813, 0.32497587377624915, 0.2987158641399104, 0.29782356978782304, 0.23518729878143327, 0.22691509320504413, 0.20713247789546205, 0.20426971580736733, 0.19080818311658856, 0.189951821937845, 0.18937991965197856, 0.18431244215687867, 0.17464226855040044, 0.17094799439285893, 0.15590336970909, 0.1544152951747211, 0.14731573305274642, 0.1463349098640523, 0.13883669234169727, 0.13585717854258253, 0.13058198003548302, 0.12962809014950435, 0.12800604713427086, 0.12474099759231663, 0.12061720668099196, 0.1158283512406391, 0.11369874758318949, 0.11276706509089114, 0.11127364334399237, 0.10961107754211998, 0.10926841564413514, 0.25551279059992593, 0.7389788346893214, 0.3872773186949995, 0.3364310338786805, 0.22755873737185475, 0.1973185831980705, 0.19113374420208326, 0.1687392954997844, 0.1652913784529365, 0.15485539124884293, 0.151046332098706, 0.14765720778517935, 0.14632147034525952, 0.14287454796150492, 0.1386716682749999, 0.13001316761751125, 0.129290874738804, 0.12651399518232737, 0.12509172761109594, 0.12401514353570846, 0.11587792073173649, 0.11587792073075164, 0.1150505335714166, 0.11457048611156827, 0.10775325282118974, 0.10671454759697896, 0.10320671001988695, 0.09397895252781135, 0.08784550549005601, 0.08144103286796528, 0.07856409152109231, 0.10849972705755714, 0.09807738854924192, 0.09199288288538213, 0.290957961518068, 0.28141607379759975, 0.20863136395852658, 0.2066539592314278, 0.20056093322692872, 0.1887187798175847, 0.14880804224077518, 0.1476891180946759, 0.1407199257417826, 0.13445409891143553, 0.09851972546747674, 0.0955079760681187, 0.08402318062572596, 0.18288269818873898, 0.07302299721803816, 0.0722241485628927, 0.06161817815411034, 0.061618178116866616, 0.06059641625735019, 0.05934954678752466, 0.07606816079352449, 0.05241217704214744, 0.045880996249699185, 0.044300314808099366, 0.16264235017712825, 0.13662014095134192, 0.030067685215382885, 0.030067685208504395, 0.03006768505477255, 0.028025882888886043, 0.14476722196901687, 0.1788447532682776, 0.1720165892142356, 0.16616550182530299, 0.16430176422647624, 0.1341955176205185, 0.128721980350899, 0.1277954637853588, 0.12087541771305348, 0.11451998530253299, 0.1111204769147298, 0.09445767129351187, 0.08556069930487774, 0.08253883629768968, 0.07999132748743078, 0.07751558158519985, 0.06577301603196686, 0.061077421386412194, 0.06107742135764433, 0.05958145503736803, 0.05682868364813325, 0.054555654014932196, 0.0522293909325611, 0.04873245743619277, 0.04649291124287744, 0.040710823226856374, 0.0376683067589437, 0.027893549320345535, 0.02789354930013054, 0.027893549214700164, 0.025523502794203765, 0.2958116377596588, 0.29238860102212205, 0.26098888374308526, 0.2025218181343547, 0.18983922820108848, 0.18821731295346442, 0.18803607137712688, 0.1412561985634156, 0.13509038923671404, 0.11885469850688024, 0.11885469850607305, 0.10807948059725729, 0.1013773369720252, 0.09472040984298455, 0.09472040984328299, 0.09240769634298049, 0.09031162793493608, 0.08301714500164777, 0.08254461530754825, 0.07562517060733158, 0.07488131035927471, 0.07199021967438005, 0.06748829199493633, 0.06685629635518596, 0.06052695653579933, 0.058623348239870414, 0.055529735584488725, 0.05712400741782752, 0.05454531524512089, 0.051175236404807055, 0.05216506057662311, 0.3947339929047721, 0.22133838076839604, 0.2154947648419644, 0.18177450310922427, 0.16667495488229958, 0.15147100311650932, 0.15147100311545075, 0.1464676208295079, 0.14389513133573995, 0.13632408016782674, 0.13050876306651207, 0.12398917754862052, 0.11884165131872103, 0.1188416513134847, 0.10412235390097348, 0.09464423983071646, 0.08772240791425101, 0.08492821370372003, 0.07753167653143368, 0.07618274382041387, 0.07533226956293561, 0.07199474676116407, 0.07010588841180769, 0.06900053643110364, 0.06578353375606133, 0.06578353375608814, 0.06576611096386537, 0.06572509805707426, 0.058437500527197955, 0.05843749943197584, 0.26488158435783676, 0.1934505067233075, 0.18640533953238864, 0.16931164745159455, 0.14674737259818202, 0.10995221643583546, 0.10677548701794391, 0.09989440139656047, 0.09397042786830556, 0.08992104843845006, 0.08364150858797388, 0.08110873709729031, 0.08110873709252876, 0.07697324539909638, 0.07392560229920468, 0.04274319395458521, 0.0427431939546828, 0.04274319395449317, 0.038733638855698464, 0.03742072269959351, 0.029717444046834827, 0.028327512371957214, 0.028327512354496803, 0.026452461958356998, 0.026452461938321063, 0.02645246191057996, 0.017921240507729752, 0.017921240495769614, 0.01792124045955992, 0.01792124045727191, 0.052818143632914774, 0.05281814363244022, 0.05281814363208414, 0.05127096759595355, 0.04673213166193769, 0.03747131779299376, 0.019440343147314396, 0.01944034314734184, 0.013430015597442516, 0.013430015597446016, 0.013430015597471997, 0.01343001559732565, 0.013430015597259398, 0.01343001559738996, 0.013430015597319928, 0.013430015597406607, 0.013430015597403505, 0.01343001559734462, 0.013430015597464756, 0.013430015597437846, 0.013430015597124024, 0.0134300155973588, 0.01343001559726318, 0.013430015597204676, 0.013430015597401373, 0.01343001559722084, 0.013430015597235908, 0.013430015597285606, 0.013430015597382407, 0.013430015597237173, 0.013430015597363744, 0.013430015597303353, 0.013430015597318122, 0.01343001559731763, 0.013430015597344795, 0.013430015597337214, 0.01343001559737671, 0.013430015597369168, 0.013430015597355885, 0.4905456155625164, 0.2959784120444837, 0.19367382509352613, 0.16761460072727058, 0.15293175997390174, 0.14916097641554651, 0.14833813615093644, 0.13958941590678217, 0.14018777924955939, 0.13244051861616304, 0.12651016724370553, 0.12468723910086736, 0.11753435413933647, 0.11452884923704917, 0.10054915929763453, 0.09584155178729965, 0.09584155177718282, 0.06813050213653725, 0.06657777926450573, 0.0663594260844544, 0.06027505484082991, 0.05983987104332091, 0.05886622098734043, 0.05764332849812975, 0.05764332849677274, 0.057643328494690255, 0.05764332849063461, 0.05717274582818725, 0.05647448839940862, 0.05635587756800777, 0.29083969681726135, 0.18564574133331577, 0.1756683391178027, 0.16991687098218078, 0.14763442015002456, 0.13311986809240686, 0.12145564341358162, 0.11731891986922392, 0.09375095315998933, 0.09050373545438004, 0.09050373545417738, 0.07465517289704622, 0.07347729796559489, 0.06484858193065426, 0.059428653890927406, 0.05803807100083272, 0.11721434351546726, 0.051234924987476275, 0.050321391656604375, 0.05032139165677364, 0.04896016703198211, 0.048960167030925296, 0.04896016703033461, 0.04896016702802373, 0.04896016702664371, 0.04896016702477764, 0.04896016702072682, 0.048960167016496754, 0.04752005691360906, 0.047520056892963826, 0.04899311026032384, 0.23200529011839868, 0.16583797875974968, 0.14459587767621385, 0.1191416560719538, 0.11001438217146169, 0.1050356352371476, 0.10372304936858319, 0.08036816629182164, 0.07372729107750178, 0.058896266757684126, 0.058896266747887296, 0.056249442036150725, 0.05103164357504069, 0.050917121766648483, 0.05074679976484795, 0.05495048547569271, 0.04903631201609742, 0.04831163406804733, 0.048311633943774614, 0.04825329662823538, 0.04248790759051902, 0.041288349265944636, 0.04128834925726921, 0.03957949274009494, 0.03569385195563528, 0.03554726063899905, 0.035547260630286175, 0.035547260613615135, 0.0344858022051219, 0.0344858021974757, 0.04528828152151904, 0.10698336354567937, 0.10595798840481463, 0.10036154478856825, 0.05089404355490114, 0.3711166156854889, 0.035953377352931165, 0.007116217768034929, 0.007116217768053068, 0.007116217768325696, 0.007116217768230281, 0.007116217768128728, 0.007116217767984157, 0.0071162177679337055, 0.007116217768131755, 0.007116217768244611, 0.007116217768043896, 0.007116217767921063, 0.007116217767996541, 0.007116217767920113, 0.007116217768062793, 0.007116217767791392, 0.007116217768208615, 0.007116217768188862, 0.007116217768072381, 0.007116217767773154, 0.007116217767965913, 0.007116217767942322, 0.0071162177681287336, 0.0071162177680597636, 0.007116217768064961, 0.007116234041345041, 0.007116228646080772, 0.007116222733036146, 0.007116220385830687, 0.007116219067540523, 0.007116219062107195, 0.007116219060983114, 0.007116219060324518, 0.0071162190598613945, 0.007116218325348531, 0.007116218254469867, 0.007116218231674401, 0.0071162180770172456, 0.007116217962173529, 0.007116217902714918, 0.007116217902581944, 0.0071162179023681734, 0.007116217902116534, 0.007116217901899029, 0.007116217900434177, 0.007116217900264133, 0.007116217875322464, 0.007116217867994795, 0.007116217858941992, 0.30132852856887643, 0.18174033237739717, 0.07774143074665936, 0.059617469194461786, 0.0577088938155352, 0.02991914099743309, 0.029919140996218924, 0.007109496864620827, 0.0071094968647526305, 0.0071094968648404006, 0.007109496864675539, 0.007109496864483293, 0.007109496865163611, 0.007109496864536968, 0.0071094968646082226, 0.007109496864662946, 0.007109496864768011, 0.007109496864615692, 0.007109496864776579, 0.007109496864799872, 0.007109496864492762, 0.007109496864689415, 0.00710949686455382, 0.007109496864557433, 0.007109496864660267, 0.007109496864614067, 0.007109496864719352, 0.007109496864789802, 0.007109496864780357, 0.007109496864633228, 0.007109498425924855, 0.007109498425801368, 0.007109498425601217, 0.007109498425519906, 0.007109498425473707, 0.007109498425451112, 0.007109498425408719, 0.0071094984252715, 0.007109498425179957, 0.007109498425120147, 0.007109498424776518, 0.007109497982783244, 0.007109497799975397, 0.00710949765361274, 0.007109497653455634, 0.0071094976534419535, 0.007109497653416362, 0.007109497653374812, 0.007109497653367592, 0.007109497653287709, 0.00710949765328609, 0.007109497653284929, 0.007109497653253229], \"Total\": [17.0, 5.0, 5.0, 4.0, 4.0, 3.0, 3.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 36.0, 2.0, 174.0, 7.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 9.0, 9.0, 10.0, 9.0, 10.0, 174.73348466781658, 131.40607623009635, 127.42963403842506, 110.09905577431445, 105.99159253508134, 95.17460542435225, 93.70736904624509, 92.55803793794489, 92.10293425286817, 90.68907075290268, 88.00959669327442, 82.37877109227335, 80.23449952587323, 76.73798980878226, 72.26728960432794, 71.64834639138452, 70.2266296000883, 69.63652582788546, 69.04827021056042, 68.08304380809318, 67.61612937054389, 66.76373853274366, 66.58503466574079, 65.0522385916168, 63.06068669647916, 62.07390766249959, 61.925150771819304, 61.58624840406208, 61.20382401973747, 58.044701055868316, 1.1154185505472338, 1.0049592383256307, 0.9374848707620269, 0.8910462862827214, 0.8858910220632559, 0.8223437885778851, 0.793161191383141, 0.7589641663882006, 0.7571175601481264, 0.7367470688017099, 0.6823326328216439, 0.6584151244794049, 0.648714573536664, 0.6440572706760485, 0.6433584784075724, 0.6398614505641878, 0.6154349732844804, 0.60312522864629, 0.6014962085752477, 0.5977688408065541, 0.5891202471788454, 0.5821371237792015, 0.6020638581615346, 0.557295150854765, 0.5476833043678914, 0.543619816891372, 0.5383537349946852, 0.524119026728008, 0.5182962539855007, 0.5071128075333137, 2.6729762706091273, 2.654660233586209, 2.6511192900648775, 2.6019507252453433, 0.8237689645724579, 3.1109862914990556, 0.7490795486359865, 0.47451653193318216, 4.4289037198626025, 0.4346171657518655, 0.41094770253530316, 4.495955841184575, 0.4014169899479893, 0.3996868110611534, 0.36790761446259523, 0.3667919136206532, 0.36418544013282345, 0.36022632691517975, 0.3579690160848613, 0.3572647672982761, 0.3550046744908597, 0.35194240515945674, 0.34992018498164823, 0.34912078380206274, 0.3486798732909013, 5.083298085242506, 0.34204325548603276, 0.33977277512458604, 0.3389374727652123, 0.336327200200345, 5.273282221586661, 17.679638485629837, 0.8636600975153973, 0.9600870469083134, 0.6672226583211953, 0.6264110103801072, 0.6095071732132917, 0.606401304209359, 0.593367072542256, 0.5882821073145764, 0.5827601227924616, 0.5801923313226829, 0.5731257676610454, 0.6365542798113222, 0.5235651523162039, 0.5207061877835609, 0.5164732569727292, 0.49582398019097784, 0.4824135481747444, 0.4803029270047206, 0.46845287555088405, 0.45411350434447345, 0.4534729544293393, 0.4514289308452447, 0.45037436614418064, 0.43497975547560136, 0.43194127864919285, 0.43119937832168787, 0.42589757958623337, 0.4239889330805681, 0.42044951290726895, 0.4201680679821564, 0.41833370325825764, 2.294058093182507, 3.5539085168216276, 2.7640118170723347, 0.8030073726172691, 0.6674184233030633, 0.5658139345793078, 0.526025231476398, 0.4777067166659885, 0.4621020684670328, 0.44877553992137303, 0.4456511435249997, 0.441180810884292, 0.4222788598184041, 0.4184865155645645, 0.4082940577433671, 0.3978582286206075, 0.36868096538337786, 0.3673049411851434, 0.36664020291739446, 0.3485549334125908, 0.33546449192454636, 0.33529693374966585, 0.33178485853307305, 0.3296285895454555, 0.3283022707145042, 0.3262529475034231, 0.30157794226856915, 0.30134679330535263, 0.4977776558836742, 0.28814143849626983, 0.28768959674732997, 0.2857025952095137, 0.28458376795967855, 1.2871284898770652, 0.8878282596340721, 0.8528878335686689, 0.830779597419161, 0.8293212655173542, 0.7763189311598807, 0.5507021588207449, 0.523284032349452, 1.1097936011469833, 0.45650904280528665, 0.45509299152552185, 0.4442257672509104, 0.4296567899663926, 0.4141246181335974, 0.40551709575013506, 0.40463687305752344, 0.4046368730599392, 0.40463687306208973, 0.40358806437228273, 0.3867266784135906, 0.3863644832468188, 0.38599919212332134, 0.38569320686837544, 0.38237618955575137, 0.37411354030465066, 0.3685322495911141, 0.3680700008536428, 0.36067330857082575, 0.358383943780724, 0.35348042531824225, 1.8809275113998, 0.6284803244918408, 0.6047450788639608, 0.5942575861015372, 0.5522690208617691, 0.5268172039462624, 0.49101687944891126, 0.4566576306400515, 0.432219690125448, 0.4629285655756817, 0.43109722516863536, 0.42920587590648407, 0.4286731018389321, 0.4156823452679628, 0.40634171832780075, 0.40214000821431967, 0.3995539061355977, 0.3988902822753709, 0.37989405285245714, 0.3777371479491065, 0.3691217879212238, 0.3688238263130709, 0.36749435450863227, 0.36496907155998576, 0.3642110991809361, 0.35929138997547133, 0.3574769123062483, 0.3560726870960759, 0.3428504868158757, 0.33922539231921617, 0.33570130181376096, 1.0949051748261784, 0.5116214996775231, 0.4853983365875369, 0.5008255141035827, 0.4218136655079889, 0.4135420731971873, 0.3937596144448732, 0.39089607960676864, 0.3774346073182043, 0.3765782371424368, 0.37600639575095546, 0.3709388519469365, 0.361268633486243, 0.3575744005928656, 0.3425333591262891, 0.3410416762430868, 0.3344223995512589, 0.3330856642449081, 0.3255675357986269, 0.3231826796376698, 0.31720834411926147, 0.3162544551529653, 0.3146324279690294, 0.31148069226352976, 0.3072435704792125, 0.30245497374173136, 0.3003251182437127, 0.2993934301721066, 0.29790001247416703, 0.29623744140414543, 0.2958948179287978, 0.9981432741198757, 0.9258023722855012, 0.5741008443441755, 0.5232545591673307, 0.4143823169347043, 0.38415222228969165, 0.37795727709774496, 0.3556971374109588, 0.35214497942866274, 0.34167891645985177, 0.3378698698564386, 0.33448073790316624, 0.3331450653796107, 0.3296980779850052, 0.32549519308747005, 0.31683669556186417, 0.31611440054777845, 0.3133375257573278, 0.31191525915858115, 0.3111944251929007, 0.30270144549044137, 0.30270144549381983, 0.3018740876040569, 0.30139407576040855, 0.29457687976527636, 0.29353807283361566, 0.2900302377610327, 0.28080252819767654, 0.2746690308762952, 0.26826455892342427, 0.2653876173745201, 0.8104706734882153, 0.5943041129731224, 0.9456019944337617, 0.47782432263729074, 0.46959203549288275, 0.3954976006469768, 0.3935202229171272, 0.3874419071282165, 0.3755850907707012, 0.3356743430398687, 0.33455543764242, 0.3275861577467505, 0.32132038335436064, 0.28538596013916306, 0.2823747723564474, 0.27088942821990586, 0.5973956180888362, 0.2598894514420148, 0.2590903940887506, 0.2484844115402431, 0.24848441170305668, 0.24746265131797804, 0.24621581678741342, 0.33370953660950975, 0.23927841650563214, 0.23274726269585025, 0.231166561246081, 1.1168273980403707, 0.9705531419091173, 0.21693396108557322, 0.21693396111215307, 0.2169339617764713, 0.2148921308469668, 1.6754005134939185, 0.3657993732887099, 0.35897118081488494, 0.3531200845629308, 0.3512563477787001, 0.32115030694547525, 0.31567767960424586, 0.31475006432963315, 0.3078300013009973, 0.3014745685998481, 0.29807506071867557, 0.28141225708122664, 0.27251528369012085, 0.26949387458884094, 0.2669459132348567, 0.264472006626288, 0.25272760306927333, 0.2480320052999926, 0.2480320054248811, 0.2465360402088215, 0.24378327187350296, 0.2415109127298897, 0.2391839855298004, 0.23568704659349465, 0.23344749829115802, 0.2276654097574544, 0.22462289309466568, 0.2148481545153019, 0.21484815460015041, 0.2148481549730598, 0.2124781876809603, 0.48283058816464197, 0.47939380243457597, 0.4480649989386452, 0.3895270222601257, 0.37684445263645183, 0.3752225145816739, 0.37504131605256985, 0.32839269799511384, 0.3222563871001954, 0.30585991497355275, 0.3058599149775313, 0.30079844171719405, 0.28838263721708984, 0.28172561061526497, 0.281725610617136, 0.27941289764778043, 0.27734516882157967, 0.2700224246931996, 0.26955028730751984, 0.26263037257703326, 0.26188673853964145, 0.258995728256166, 0.2544934957263299, 0.25387232346382593, 0.24753216126416563, 0.2456285502179808, 0.24253493642268542, 0.2528930654231212, 0.24155052031540591, 0.23818043726757102, 0.2557023792586159, 0.6034848198191822, 0.4083524979667816, 0.40251044987563783, 0.3687893322264397, 0.35368681909722055, 0.33848255044080805, 0.3384825504454936, 0.33372649381699443, 0.3309068822026672, 0.3235453436666431, 0.31785237991913856, 0.311000731513903, 0.3058531976766797, 0.30585319770055125, 0.2911339003799018, 0.28165578856018003, 0.2747339573912583, 0.2719397598706723, 0.26471372842582724, 0.2631942930053831, 0.2623442405555457, 0.25900629426427485, 0.2571174356289359, 0.25601208324334906, 0.2527950960325849, 0.2527950960374913, 0.25829155010281074, 0.2591683803680531, 0.24544905146639953, 0.2454490562955523, 0.45195609860288294, 0.38154033624688555, 0.3734794943355568, 0.3563863070304477, 0.33382153066264614, 0.29702637242276897, 0.29384972419390354, 0.2869685579188548, 0.2810445832045564, 0.27699520519527404, 0.27071566500792077, 0.2681828920691407, 0.2681828920920436, 0.2640474007622802, 0.2610007075141465, 0.2298173490239596, 0.22981734902535103, 0.2298173490268053, 0.22580780855801066, 0.2276138247865012, 0.21679164294708966, 0.2154017245275713, 0.21540172460726192, 0.21352665376235613, 0.21352665385140224, 0.2135266539788634, 0.2049962753943975, 0.20499627544818874, 0.20499627560901917, 0.20499627561555506, 0.23998789127482087, 0.23998789127714004, 0.23998789127867726, 0.23844101896183087, 0.234361999681633, 0.22464106463979663, 0.20661008999634342, 0.20661008999676475, 0.200599762453343, 0.2005997624536957, 0.20059976245432, 0.20059976245255778, 0.20059976245180008, 0.20059976245380334, 0.20059976245288055, 0.20059976245419367, 0.20059976245455724, 0.20059976245372524, 0.20059976245568367, 0.200599762455307, 0.2005997624506964, 0.20059976245427158, 0.20059976245285677, 0.2005997624521318, 0.2005997624550711, 0.20059976245240246, 0.20059976245263147, 0.2005997624534608, 0.2005997624549224, 0.200599762452909, 0.20059976245490357, 0.20059976245400618, 0.20059976245429367, 0.20059976245429306, 0.20059976245492891, 0.20059976245478664, 0.20059976245578592, 0.2005997624557608, 0.20059976245638786, 0.6777447156299813, 0.4831777031972635, 0.3808729530833454, 0.35481373074790984, 0.34013085944926624, 0.33636007756028163, 0.3355372358676831, 0.32684780955920667, 0.3296415510590466, 0.3196396190368128, 0.31370935248363085, 0.31188633929388515, 0.3047334538791191, 0.30172794951781867, 0.28774825922572494, 0.28304065226968833, 0.28304065231448516, 0.2553372700759274, 0.2537768802684475, 0.2535587243209533, 0.24747442651475138, 0.2470389709716395, 0.2460656252068238, 0.2448424281074875, 0.24484242810890708, 0.2448424281192699, 0.24484242814084362, 0.24484156105585947, 0.2436735884586917, 0.24355498250323154, 0.4781150962408111, 0.37292675842516393, 0.36294790707188423, 0.35753151480518885, 0.33490910221764086, 0.32039452496904797, 0.30873070728360535, 0.30459431930443065, 0.28102572729793324, 0.27777839830292095, 0.27777839830781015, 0.2619298382915189, 0.2607519365341422, 0.25212388390368456, 0.24670460451801993, 0.26531236886444504, 0.5391385197401504, 0.2385905312783981, 0.2375960290521193, 0.23759602905372307, 0.23623480456346968, 0.23623480456760174, 0.2362348045696093, 0.23623480457957804, 0.23623480458885762, 0.23623480459680074, 0.2362348046160853, 0.23623480463424734, 0.2347946993578617, 0.23479469945099987, 0.24336529733913734, 0.4193237262651141, 0.35315223073830415, 0.33190970199462877, 0.31110307945595655, 0.29732820923227865, 0.29234946108406595, 0.2910369031616695, 0.2676819914526023, 0.26104112149139946, 0.24621009184950854, 0.24621009189326393, 0.24969114613268176, 0.23835100569461912, 0.2382309538308111, 0.2380606263819438, 0.26049502948309267, 0.23635016109262655, 0.23562546131952145, 0.23562546189539813, 0.23556713950946406, 0.2298019639864864, 0.22860217599357832, 0.22860217603356042, 0.22689332005366833, 0.22302147279086618, 0.22286109799680023, 0.22286109803548676, 0.22286109811328803, 0.22179963093157634, 0.22179963097179703, 0.3053242187860349, 0.29445659328370294, 0.29343127772977207, 0.29527500817612684, 0.23836727568485647, 2.0819435748327018, 0.22342666484008739, 0.19596593505642304, 0.19596594323057223, 0.19596594626818914, 0.19596595262606523, 0.19596596204087185, 0.1959659662246686, 0.19596596639407673, 0.19596598370527565, 0.19596598870543666, 0.1959659955974943, 0.1959659956307756, 0.1959659974481492, 0.1959660044908872, 0.19596600491475247, 0.19596600762788827, 0.19596601449951398, 0.19596601843839712, 0.19596601862375929, 0.19596601906954345, 0.19596602088609053, 0.19596602436847516, 0.19596602494596718, 0.19596602677079708, 0.19596602700764165, 0.36065456753262226, 0.3606545932079538, 0.3660342936834881, 0.3389198933021709, 0.27627392239780096, 0.27627392242395254, 0.27627392243255317, 0.27627392243416743, 0.27627392243513105, 0.5088628837041058, 0.2615675380440064, 0.4739247408934866, 0.6752765509599029, 0.6248113395048032, 0.27638848144082384, 0.2763884814432216, 0.2763884814426333, 0.27638848144211464, 0.27638848144508643, 0.29288545201794897, 0.29288545202185284, 2.351200696278405, 0.7472202369229598, 0.37057838654627623, 0.4888199883609996, 0.3692202760598611, 0.26522137504259374, 0.25122790871171086, 0.24951909667667685, 0.21739913686801948, 0.217399136872332, 0.19596593505642304, 0.19596594323057223, 0.19596594626818914, 0.19596595262606523, 0.19596596204087185, 0.1959659662246686, 0.19596596639407673, 0.19596598370527565, 0.19596598870543666, 0.1959659955974943, 0.1959659956307756, 0.1959659974481492, 0.1959660044908872, 0.19596600491475247, 0.19596600762788827, 0.19596601449951398, 0.19596601843839712, 0.19596601862375929, 0.19596601906954345, 0.19596602088609053, 0.19596602436847516, 0.19596602494596718, 0.19596602677079708, 0.2751902957870001, 0.2751902957895866, 0.275190295794748, 0.2751902957919304, 0.2751902957951965, 0.27519029579558807, 0.27519029579481347, 0.27519029579052434, 0.27519029579329485, 0.2751902957936393, 0.27519029579910204, 0.2205375977187296, 0.9095744346460642, 0.24580375792636894, 0.24580375792593923, 0.245803757923268, 0.24580375791896397, 0.24580375791731493, 0.24580375792942036, 0.2458037579262893, 0.24580375793043657, 0.24580375793114126, 0.24580375792780385], \"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\", \"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\", \"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\", \"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\", \"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\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\"], \"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, -5.7046, -5.9898, -6.0206, -6.167, -6.205, -6.3128, -6.3284, -6.3408, -6.3457, -6.3612, -6.3912, -6.4575, -6.4839, -6.5285, -6.5887, -6.5973, -6.6174, -6.6259, -6.6344, -6.6485, -6.6554, -6.6681, -6.6708, -6.6941, -6.7253, -6.7411, -6.7435, -6.749, -6.7552, -6.8084, -6.6604, -6.7867, -6.8725, -6.9361, -6.9434, -7.0384, -7.0856, -7.143, -7.1462, -7.1825, -7.2861, -7.3353, -7.356, -7.3662, -7.3676, -7.3753, -7.4304, -7.4593, -7.4632, -7.4722, -7.4933, -7.5109, -7.4942, -7.5752, -7.6016, -7.6126, -7.6274, -7.6684, -7.6857, -7.7197, -5.6109, -5.6183, -5.6197, -5.6399, -6.9704, -5.6588, -7.0948, -7.7614, -5.552, -7.9095, -8.0091, -5.6321, -8.0522, -8.0602, -8.2202, -8.2263, -8.2408, -8.2631, -8.276, -8.2801, -8.2935, -8.3115, -8.3236, -8.3285, -8.3312, -5.666, -8.3725, -8.3871, -8.3926, -8.4096, -5.7125, -6.0647, -8.158, -6.7654, -7.2399, -7.3283, -7.3674, -7.3749, -7.4061, -7.4186, -7.4324, -7.4389, -7.457, -7.394, -7.5935, -7.602, -7.6147, -7.679, -7.7231, -7.7302, -7.7711, -7.8231, -7.8254, -7.833, -7.837, -7.8967, -7.909, -7.912, -7.9338, -7.9417, -7.9566, -7.9578, -7.9656, -6.5473, -6.9639, -7.2839, -6.9251, -7.1729, -7.4096, -7.5201, -7.6731, -7.7279, -7.7773, -7.7892, -7.8065, -7.8833, -7.8994, -7.9441, -7.9921, -8.1398, -8.1473, -8.151, -8.2562, -8.3397, -8.3408, -8.3645, -8.3794, -8.3886, -8.403, -8.5956, -8.5976, -8.1442, -8.7185, -8.7229, -8.7425, -8.7537, -6.2977, -6.748, -6.799, -6.8327, -6.835, -6.9745, -7.4022, -7.4821, -6.7478, -7.7008, -7.706, -7.7472, -7.8052, -7.871, -7.9094, -7.9134, -7.9134, -7.9134, -7.9182, -7.9988, -8.0006, -8.0024, -8.0039, -8.0206, -8.0636, -8.0936, -8.0962, -8.1376, -8.1508, -8.1796, -7.8997, -7.142, -7.1972, -7.2226, -7.3318, -7.4032, -7.5149, -7.6339, -7.7286, -7.6608, -7.7332, -7.7417, -7.7431, -7.7982, -7.8399, -7.859, -7.871, -7.8742, -7.9677, -7.9789, -8.0249, -8.0269, -8.0339, -8.0479, -8.0574, -8.0802, -8.0907, -8.0989, -8.18, -8.2034, -8.2267, -7.405, -7.3875, -7.4718, -7.4748, -7.7109, -7.7467, -7.8379, -7.8519, -7.92, -7.9245, -7.9275, -7.9547, -8.0086, -8.0299, -8.1221, -8.1317, -8.1787, -8.1854, -8.238, -8.2597, -8.2993, -8.3066, -8.3192, -8.3451, -8.3787, -8.4192, -8.4377, -8.446, -8.4593, -8.4744, -8.4775, -7.628, -6.5358, -7.1819, -7.3227, -7.7137, -7.8563, -7.8881, -8.0127, -8.0334, -8.0986, -8.1235, -8.1462, -8.1553, -8.1791, -8.209, -8.2734, -8.279, -8.3007, -8.312, -8.3207, -8.3885, -8.3885, -8.3957, -8.3999, -8.4612, -8.4709, -8.5043, -8.598, -8.6655, -8.7412, -8.7772, -8.4543, -8.5553, -8.6194, -7.4569, -7.4902, -7.7895, -7.799, -7.8289, -7.8898, -8.1274, -8.135, -8.1833, -8.2288, -8.5398, -8.5709, -8.699, -7.9212, -8.8393, -8.8503, -9.0091, -9.0091, -9.0258, -9.0466, -8.7984, -9.1709, -9.304, -9.3391, -8.0385, -8.2129, -9.7266, -9.7266, -9.7266, -9.7969, -8.1549, -7.9303, -7.9692, -8.0038, -8.0151, -8.2175, -8.2592, -8.2664, -8.322, -8.3761, -8.4062, -8.5687, -8.6676, -8.7035, -8.7349, -8.7663, -8.9306, -9.0047, -9.0047, -9.0295, -9.0768, -9.1176, -9.1612, -9.2305, -9.2775, -9.4103, -9.488, -9.7884, -9.7884, -9.7884, -9.8772, -7.4214, -7.4331, -7.5467, -7.8003, -7.865, -7.8735, -7.8745, -8.1606, -8.2052, -8.3332, -8.3332, -8.4283, -8.4923, -8.5602, -8.5602, -8.5849, -8.6079, -8.6921, -8.6978, -8.7854, -8.7952, -8.8346, -8.8992, -8.9086, -9.0081, -9.04, -9.0942, -9.0659, -9.1121, -9.1759, -9.1567, -7.1312, -7.7097, -7.7365, -7.9067, -7.9934, -8.089, -8.089, -8.1226, -8.1404, -8.1944, -8.238, -8.2892, -8.3316, -8.3316, -8.4639, -8.5593, -8.6353, -8.6676, -8.7588, -8.7763, -8.7875, -8.8328, -8.8594, -8.8753, -8.9231, -8.9231, -8.9233, -8.924, -9.0415, -9.0415, -7.521, -7.8353, -7.8724, -7.9685, -8.1116, -8.4002, -8.4296, -8.4962, -8.5573, -8.6014, -8.6738, -8.7045, -8.7045, -8.7568, -8.7972, -9.3451, -9.3451, -9.3451, -9.4436, -9.4781, -9.7086, -9.7565, -9.7565, -9.8249, -9.8249, -9.8249, -10.2143, -10.2143, -10.2143, -10.2143, -9.1182, -9.1182, -9.1182, -9.1479, -9.2406, -9.4615, -10.1177, -10.1177, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -10.4875, -6.8853, -7.3905, -7.8146, -7.9592, -8.0508, -8.0758, -8.0813, -8.1421, -8.1378, -8.1947, -8.2405, -8.255, -8.3141, -8.34, -8.4702, -8.5181, -8.5181, -8.8594, -8.8824, -8.8857, -8.9819, -8.9891, -9.0056, -9.0265, -9.0265, -9.0265, -9.0265, -9.0347, -9.047, -9.0491, -7.3948, -7.8438, -7.899, -7.9323, -8.0729, -8.1763, -8.268, -8.3027, -8.527, -8.5622, -8.5622, -8.7547, -8.7706, -8.8955, -8.9828, -9.0065, -8.3036, -9.1312, -9.1492, -9.1492, -9.1766, -9.1766, -9.1766, -9.1766, -9.1766, -9.1766, -9.1766, -9.1766, -9.2064, -9.2064, -9.1759, -7.6151, -7.9508, -8.0879, -8.2815, -8.3612, -8.4075, -8.4201, -8.6752, -8.7615, -8.9861, -8.9861, -9.032, -9.1294, -9.1316, -9.135, -9.0554, -9.1693, -9.1842, -9.1842, -9.1854, -9.3126, -9.3412, -9.3412, -9.3835, -9.4868, -9.491, -9.491, -9.491, -9.5213, -9.5213, -9.2488, -8.3623, -8.3719, -8.4262, -9.1052, -7.1185, -9.4528, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -11.0726, -7.3258, -7.8314, -8.6806, -8.946, -8.9785, -9.6355, -9.6355, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725, -11.0725], \"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, 0.1769, 0.1766, 0.1766, 0.1764, 0.1764, 0.1762, 0.1762, 0.1761, 0.1761, 0.1761, 0.1761, 0.1759, 0.1759, 0.1758, 0.1757, 0.1757, 0.1756, 0.1756, 0.1756, 0.1755, 0.1755, 0.1755, 0.1755, 0.1754, 0.1754, 0.1753, 0.1753, 0.1753, 0.1753, 0.1752, 4.2751, 4.2531, 4.2368, 4.224, 4.2225, 4.202, 4.1909, 4.1775, 4.1768, 4.1678, 4.1408, 4.1273, 4.1215, 4.1185, 4.1182, 4.116, 4.0998, 4.091, 4.0898, 4.0871, 4.0805, 4.0748, 4.058, 4.0542, 4.0452, 4.0417, 4.0366, 4.0224, 4.0163, 4.0041, 4.4506, 4.4501, 4.45, 4.4486, 4.2682, 4.251, 4.2388, 4.0288, 4.0046, 3.9685, 3.9249, 3.9095, 3.9053, 3.9016, 3.8244, 3.8214, 3.8141, 3.8027, 3.796, 3.7939, 3.7869, 3.7776, 3.7712, 3.7686, 3.7672, 3.7528, 3.745, 3.7372, 3.7341, 3.7249, 3.6696, 2.1076, 3.0333, 4.3201, 4.2095, 4.1842, 4.1725, 4.1701, 4.1606, 4.1567, 4.1523, 4.1502, 4.1444, 4.1024, 4.0983, 4.0953, 4.0908, 4.0673, 4.0506, 4.0479, 4.0319, 4.0111, 4.0102, 4.007, 4.0054, 3.9805, 3.9752, 3.974, 3.9645, 3.9611, 3.9546, 3.9541, 3.9506, 3.6671, 2.8128, 2.7441, 4.3391, 4.2761, 4.2046, 4.167, 4.1104, 4.0888, 4.0687, 4.0637, 4.0565, 4.0235, 4.0164, 3.9964, 3.9743, 3.9028, 3.899, 3.8971, 3.8425, 3.7973, 3.7967, 3.7835, 3.7752, 3.77, 3.7618, 3.6479, 3.6467, 3.5982, 3.5706, 3.5678, 3.5551, 3.5478, 4.4946, 4.4157, 4.4049, 4.3974, 4.3969, 4.3234, 4.2391, 4.2103, 4.1928, 4.1281, 4.126, 4.109, 4.0843, 4.0554, 4.0379, 4.0361, 4.0361, 4.0361, 4.0339, 3.996, 3.9951, 3.9943, 3.9935, 3.9854, 3.9644, 3.9493, 3.948, 3.9269, 3.9201, 3.9051, 2.5133, 4.3672, 4.3505, 4.3426, 4.3066, 4.2824, 4.2411, 4.1947, 4.155, 4.1541, 4.153, 4.1488, 4.1487, 4.1244, 4.1054, 4.0967, 4.0911, 4.0897, 4.0449, 4.0394, 4.0164, 4.0153, 4.0119, 4.0048, 3.9973, 3.9882, 3.9827, 3.9784, 3.9352, 3.9224, 3.9096, 3.5491, 4.3274, 4.2957, 4.2614, 4.197, 4.181, 4.1388, 4.1322, 4.0991, 4.0968, 4.0953, 4.0818, 4.0543, 4.0432, 3.9941, 3.9888, 3.9614, 3.9587, 3.9289, 3.9146, 3.8936, 3.8893, 3.8819, 3.8661, 3.8462, 3.8214, 3.8099, 3.8048, 3.7964, 3.787, 3.785, 3.4186, 4.586, 4.4178, 4.3697, 4.212, 4.1452, 4.1296, 4.0657, 4.0551, 4.02, 4.0063, 3.9937, 3.9886, 3.9752, 3.9582, 3.9207, 3.9174, 3.9045, 3.8977, 3.8914, 3.8512, 3.8512, 3.8468, 3.8442, 3.8057, 3.7996, 3.7782, 3.7168, 3.6714, 3.6193, 3.5941, 2.8006, 3.0098, 2.4813, 4.3264, 4.3104, 4.1829, 4.1783, 4.164, 4.1342, 4.0089, 4.0047, 3.9774, 3.9512, 3.7588, 3.7384, 3.6518, 3.6387, 3.5529, 3.545, 3.428, 3.428, 3.4154, 3.3997, 3.3438, 3.3039, 3.1985, 3.1703, 2.8957, 2.8618, 2.8463, 2.8463, 2.8463, 2.7854, 2.3737, 4.1201, 4.1, 4.0819, 4.0759, 3.9631, 3.9386, 3.9343, 3.9009, 3.8677, 3.849, 3.744, 3.6772, 3.6524, 3.6306, 3.6084, 3.4896, 3.4343, 3.4343, 3.4155, 3.3794, 3.348, 3.3141, 3.2595, 3.222, 3.1143, 3.0501, 2.7941, 2.7941, 2.7941, 2.7164, 4.3514, 4.3469, 4.3009, 4.1873, 4.1557, 4.1514, 4.151, 3.9977, 3.972, 3.8961, 3.8961, 3.8178, 3.7959, 3.7514, 3.7514, 3.7349, 3.7194, 3.6619, 3.6579, 3.5964, 3.5893, 3.5611, 3.514, 3.5071, 3.4329, 3.4087, 3.3671, 3.3536, 3.3533, 3.3036, 3.2518, 4.4185, 4.2306, 4.2183, 4.1356, 4.0907, 4.039, 4.039, 4.0195, 4.0103, 3.9788, 3.9529, 3.9235, 3.8977, 3.8977, 3.8148, 3.7525, 3.7014, 3.6793, 3.6151, 3.6033, 3.5953, 3.5628, 3.5435, 3.5319, 3.4968, 3.4968, 3.4751, 3.4711, 3.4079, 3.4079, 4.3179, 4.173, 4.1573, 4.1079, 4.0303, 3.8584, 3.8399, 3.7969, 3.7567, 3.7271, 3.6777, 3.6563, 3.6563, 3.6195, 3.5907, 3.1701, 3.1701, 3.1701, 3.0892, 3.0468, 2.865, 2.8235, 2.8235, 2.7638, 2.7638, 2.7638, 2.4152, 2.4152, 2.4152, 2.4152, 3.3537, 3.3537, 3.3537, 3.3305, 3.255, 3.0765, 2.504, 2.504, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 2.1636, 4.5484, 4.3816, 4.1954, 4.1218, 4.0723, 4.0585, 4.0554, 4.0209, 4.0167, 3.9906, 3.9635, 3.9548, 3.919, 3.903, 3.8202, 3.7888, 3.7888, 3.5505, 3.5336, 3.5312, 3.4593, 3.4538, 3.4413, 3.4253, 3.4253, 3.4253, 3.4253, 3.4171, 3.4096, 3.408, 4.3878, 4.1874, 4.1592, 4.141, 4.0658, 4.0066, 3.952, 3.9308, 3.7871, 3.7635, 3.7635, 3.6297, 3.6183, 3.527, 3.4615, 3.3651, 3.3589, 3.3466, 3.3328, 3.3328, 3.3111, 3.3111, 3.3111, 3.3111, 3.3111, 3.3111, 3.3111, 3.3111, 3.2873, 3.2873, 3.282, 4.2988, 4.1348, 4.0597, 3.9309, 3.8964, 3.867, 3.8589, 3.6875, 3.6264, 3.4603, 3.4603, 3.4002, 3.3494, 3.3476, 3.345, 3.3345, 3.3179, 3.3061, 3.3061, 3.3051, 3.2027, 3.1793, 3.1793, 3.1445, 3.0584, 3.055, 3.055, 3.055, 3.0294, 3.0294, 2.9823, 3.9051, 3.8989, 3.8384, 3.3734, 3.193, 3.0906, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 1.6019, 0.992, 0.992, 0.9772, 1.0541, 1.2585, 1.2585, 1.2585, 1.2585, 1.2585, 0.6477, 1.3132, 0.7188, 0.3648, 0.4424, 1.2581, 1.2581, 1.2581, 1.2581, 1.2581, 1.2001, 1.2001, -0.8828, 0.2635, 0.9648, 4.4347, 4.2097, 3.6914, 3.4801, 3.4544, 2.9353, 2.9353, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.602, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.2625, 1.4839, 0.067, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754, 1.3754]}, \"token.table\": {\"Topic\": [1, 1, 1, 1, 1, 3, 1, 2, 3, 1, 1, 4, 6, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 3, 4, 6, 2, 6, 1, 2, 1, 1, 1, 1, 1, 1, 3, 2, 2, 1, 1, 1, 6, 5, 1, 1, 1, 1, 6, 1, 3, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 3, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 4, 6, 1, 2, 2, 9, 1, 1, 1, 1, 1, 1], \"Freq\": [0.9969218095074854, 1.2338509371302262, 0.9988823998529128, 0.9981654200343281, 0.5689056405362161, 0.37927042702414404, 1.0156261974073968, 1.2607777723670097, 0.7533920818553035, 0.8953935064224242, 0.43590875181923455, 0.43590875181923455, 1.1263439625273481, 1.0006625697842193, 0.768654064273802, 0.9950652343532924, 0.9943541145120509, 0.9939709402837706, 0.9606408282033837, 1.0018601797239595, 0.9988093602403536, 0.9963013749956393, 0.9940021734948029, 1.4808747595018723, 0.9912137213913353, 0.8506292139015174, 1.3573179213681306, 0.9992291071560893, 1.0034285194954142, 0.5901680266812213, 0.3934453511208142, 1.1578629172249932, 1.0575273803211598, 0.7482296128069378, 1.0415722232897682, 1.1724871203939933, 1.320798846356641, 1.2058053272951725, 0.9966284605487016, 1.3175852619746906, 0.723585907862875, 0.9969097606309674, 0.9936840939320395, 0.9992298856733659, 0.999300920784645, 0.9990376461206131, 1.2139325988312843, 1.1222761548918105, 1.066683880655224, 1.0034143478591324, 0.9956854034614894, 0.9909509929532375, 1.2881303802625583, 1.2453185787580832, 1.0003198158626179, 0.9883944038666972, 0.9991003031441296, 0.9133211012166007, 0.7769232115245238, 0.45157901966359426, 0.6773685294953914, 0.9954020788699423, 0.9979691159731079, 0.9908878343631972, 1.0303402841321594, 1.2036886836250273, 0.9982140756398858, 1.0041558632554464, 1.0012087048194118, 1.3382935185454599, 1.0035387692847737, 0.5968722057477333, 0.75439834318095, 1.3349717020320733, 0.32144146784978, 0.64288293569956, 0.9904808553978518, 0.9049958806004398, 0.11312448507505497, 0.9886846472963232, 0.9898834696215097, 0.8965244477146194, 0.4448442268225323, 0.4448442268225323, 0.9908593109676564, 1.0031228168791133, 1.0000793219982602, 1.0633051980358272, 0.9998909585586687, 0.8441410311492752, 0.28138034371642506, 0.9010684499951067, 0.9991969747275764, 1.2160364240475914, 1.128807014739784, 1.0801441321988938, 0.9987802571176568, 0.9970773230062012, 1.0994152450965955, 0.9967728822901104, 0.9966697502484202, 1.0015252676537074], \"Term\": [\"account\", \"aliases\", \"also\", \"anyone\", \"banks\", \"banks\", \"begin\", \"bonds\", \"cadre\", \"cape\", \"captain\", \"captain\", \"champs\", \"changes\", \"chastity\", \"chop\", \"connect\", \"could\", \"ditto\", \"dortmund\", \"drive\", \"even\", \"fall\", \"fingerprints\", \"first\", \"fluke\", \"garrett\", \"germany\", \"good\", \"gordon\", \"gordon\", \"howell\", \"inherit\", \"intellect\", \"jagr\", \"keller\", \"kingman\", \"kkeller\", \"know\", \"kong\", \"lemieux\", \"like\", \"lives\", \"mail\", \"make\", \"many\", \"migraine\", \"mormon\", \"mormons\", \"much\", \"names\", \"need\", \"nolan\", \"nrhj\", \"owners\", \"part\", \"people\", \"phigs\", \"pitcher\", \"pitt\", \"pitt\", \"please\", \"policy\", \"problem\", \"providence\", \"quakers\", \"range\", \"reality\", \"really\", \"reflective\", \"right\", \"rochester\", \"shameful\", \"shrink\", \"skepticism\", \"skepticism\", \"something\", \"soon\", \"soon\", \"specifically\", \"starting\", \"suck\", \"surrender\", \"surrender\", \"system\", \"thanks\", \"think\", \"tiger\", \"time\", \"traded\", \"traded\", \"upenn\", \"used\", \"viola\", \"viper\", \"volvo\", \"want\", \"well\", \"whoops\", \"windows\", \"work\", \"would\"]}, \"R\": 30, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [3, 19, 10, 8, 7, 6, 1, 5, 4, 17, 13, 18, 11, 2, 9, 14, 15, 20, 12, 16]};\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_el611400430562213921429027471\", ldavis_el611400430562213921429027471_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_el611400430562213921429027471\", ldavis_el611400430562213921429027471_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_el611400430562213921429027471\", ldavis_el611400430562213921429027471_data);\n"," })\n"," });\n","}\n","</script>"],"text/plain":["<IPython.core.display.HTML object>"]},"metadata":{},"execution_count":14}]},{"cell_type":"markdown","metadata":{"id":"xf_J97e1NsTl"},"source":["##2) gensim 활용"]},{"cell_type":"code","metadata":{"id":"r-FAziaL9KJ6","executionInfo":{"status":"ok","timestamp":1638111242555,"user_tz":-540,"elapsed":22191,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}}},"source":["from gensim import corpora\n","from gensim.models import LdaModel, TfidfModel\n","\n","tokenized_docs = get_news()\n","id2word = corpora.Dictionary(tokenized_docs)\n","corpus_TDM = [id2word.doc2bow(d) for d in tokenized_docs]\n","\n","n = 20\n","lda = LdaModel(corpus=corpus_TDM, id2word=id2word, num_topics=n, random_state=0)\n"],"execution_count":15,"outputs":[]},{"cell_type":"code","metadata":{"id":"shGD7kDtDF7_","executionInfo":{"status":"ok","timestamp":1638104895406,"user_tz":-540,"elapsed":1153,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}}},"source":[""],"execution_count":7,"outputs":[]},{"cell_type":"code","metadata":{"id":"42GDOBDWYR0D","colab":{"base_uri":"https://localhost:8080/","height":882},"executionInfo":{"status":"ok","timestamp":1638111337133,"user_tz":-540,"elapsed":28375,"user":{"displayName":"이민호","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GiFPPatrtQJJCEfMd6D3DoTVRog9gVm7Ovj5Lex=s64","userId":"15829449822908558555"}},"outputId":"43987a6f-e396-4ff4-f9a6-62603797b563"},"source":["import pyLDAvis\n","import pyLDAvis.gensim \n","\n","pyLDAvis.enable_notebook()\n","vis = pyLDAvis.gensim.prepare(lda, corpus_TDM, id2word, mds='tsne')\n","pyLDAvis.display(vis)\n"],"execution_count":16,"outputs":[{"output_type":"execute_result","data":{"text/html":["\n","<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css\">\n","\n","\n","<div id=\"ldavis_el611400426542149927769393870\"></div>\n","<script type=\"text/javascript\">\n","\n","var ldavis_el611400426542149927769393870_data = {\"mdsDat\": {\"x\": [-10.878067970275879, -60.88402557373047, -2.3361191749572754, -61.385318756103516, -28.737743377685547, 1.0666056871414185, 45.14072036743164, -140.7959747314453, 61.531681060791016, -72.56305694580078, 15.984491348266602, -160.85162353515625, 85.96183013916016, -99.02083587646484, -176.76412963867188, -117.18988037109375, 108.82991790771484, 47.588096618652344, -106.46783447265625, -50.61380386352539], \"y\": [10.538727760314941, -75.5918197631836, -53.2890739440918, -12.914633750915527, 126.2969970703125, -123.55281066894531, -7.947869300842285, -98.53054809570312, -83.24056243896484, -140.39688110351562, 63.57818603515625, 68.94514465332031, 51.922935485839844, 109.93634796142578, -8.681683540344238, -37.42020034790039, -22.946203231811523, 121.934814453125, 30.176889419555664, 59.32884216308594], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [15.235667348279028, 14.725431812534964, 10.438854999728205, 8.550549852238646, 6.175970361855536, 5.3485308876357704, 4.762425649795504, 4.5090951055559545, 3.724049195183648, 3.610830545395427, 3.3522622152611175, 3.3124856705509687, 3.2806897340233663, 2.608765507978007, 2.5061697116372255, 2.37843939641514, 1.6722221584100159, 1.577124472006207, 1.3885985417791098, 0.8418368337361598]}, \"tinfo\": {\"Term\": [\"file\", \"output\", \"team\", \"armenian\", \"drive\", \"windows\", \"game\", \"armenians\", \"program\", \"scsi\", \"would\", \"jesus\", \"window\", \"data\", \"entry\", \"space\", \"card\", \"system\", \"games\", \"government\", \"disk\", \"play\", \"people\", \"like\", \"chip\", \"period\", \"could\", \"encryption\", \"players\", \"available\", \"judas\", \"arafat\", \"zionist\", \"riots\", \"ceremonial\", \"balloon\", \"migraines\", \"toner\", \"thief\", \"onset\", \"panicking\", \"journalist\", \"snapped\", \"tongues\", \"unto\", \"shine\", \"pagan\", \"similarity\", \"semitic\", \"singled\", \"rode\", \"semitism\", \"vertices\", \"spacewalk\", \"honors\", \"stalin\", \"honorary\", \"flee\", \"quicken\", \"instructed\", \"wipe\", \"koran\", \"scripture\", \"palestine\", \"zionism\", \"church\", \"sabbath\", \"teachings\", \"christians\", \"secular\", \"romans\", \"jews\", \"christian\", \"racist\", \"bible\", \"truth\", \"jewish\", \"islam\", \"palestinian\", \"messiah\", \"israel\", \"catholic\", \"christ\", \"jesus\", \"christianity\", \"arab\", \"islamic\", \"religion\", \"religious\", \"passages\", \"faith\", \"muslims\", \"lord\", \"human\", \"acts\", \"words\", \"people\", \"rights\", \"world\", \"claim\", \"israeli\", \"life\", \"word\", \"believe\", \"history\", \"many\", \"true\", \"said\", \"would\", \"fact\", \"right\", \"even\", \"think\", \"point\", \"time\", \"know\", \"never\", \"also\", \"could\", \"well\", \"find\", \"first\", \"make\", \"like\", \"cluster\", \"phillies\", \"males\", \"tigers\", \"ghetto\", \"twins\", \"ninth\", \"wrist\", \"giants\", \"obfuscation\", \"gangs\", \"contests\", \"serpent\", \"wont\", \"recognition\", \"pitching\", \"fielding\", \"wealth\", \"justifiable\", \"fielder\", \"tvtwm\", \"waving\", \"dodgers\", \"karina\", \"cardinals\", \"fran\", \"clubs\", \"tempted\", \"grandfather\", \"inning\", \"aunt\", \"cincinnati\", \"swing\", \"moore\", \"mets\", \"atlanta\", \"shaft\", \"apartment\", \"clemens\", \"sumgait\", \"innings\", \"hitting\", \"income\", \"watching\", \"threw\", \"prison\", \"mamma\", \"guns\", \"went\", \"skip\", \"floor\", \"home\", \"militia\", \"year\", \"young\", \"ride\", \"took\", \"ball\", \"back\", \"bike\", \"last\", \"going\", \"riding\", \"think\", \"well\", \"said\", \"would\", \"good\", \"people\", \"years\", \"like\", \"road\", \"time\", \"know\", \"thought\", \"really\", \"great\", \"right\", \"came\", \"first\", \"even\", \"take\", \"still\", \"make\", \"little\", \"something\", \"much\", \"also\", \"could\", \"want\", \"many\", \"auth\", \"magellan\", \"imprisonment\", \"aerospace\", \"vertex\", \"inflammatory\", \"ctrl\", \"gifs\", \"servant\", \"gsfc\", \"wysiwyg\", \"nail\", \"tamu\", \"ariane\", \"repairs\", \"blaster\", \"theta\", \"carb\", \"carroll\", \"neurologist\", \"kilometers\", \"moderated\", \"rosicrucian\", \"examiner\", \"coated\", \"troff\", \"locking\", \"uuencoded\", \"rationale\", \"queries\", \"telescope\", \"ncsu\", \"satellite\", \"curt\", \"satellites\", \"karl\", \"mime\", \"xstuff\", \"nasa\", \"space\", \"shuttle\", \"astronomy\", \"uuencode\", \"echo\", \"monthly\", \"anonymous\", \"orbital\", \"formats\", \"mailer\", \"request\", \"archive\", \"directory\", \"spacecraft\", \"images\", \"format\", \"available\", \"sites\", \"users\", \"data\", \"user\", \"imake\", \"image\", \"send\", \"flight\", \"files\", \"requests\", \"launch\", \"export\", \"mail\", \"systems\", \"version\", \"software\", \"information\", \"graphics\", \"program\", \"info\", \"also\", \"system\", \"file\", \"based\", \"subject\", \"list\", \"please\", \"using\", \"name\", \"ciphertext\", \"pseudo\", \"vram\", \"amongst\", \"dealership\", \"adjective\", \"sega\", \"flaws\", \"simms\", \"nintendo\", \"brigham\", \"zephyr\", \"upgraded\", \"crashes\", \"cube\", \"debugger\", \"appointment\", \"imperfect\", \"ergo\", \"smartdrive\", \"brewer\", \"polio\", \"nubus\", \"stacks\", \"prototype\", \"snes\", \"zinc\", \"slots\", \"disarm\", \"freewill\", \"ethernet\", \"ghostscript\", \"macs\", \"centris\", \"apps\", \"microsoft\", \"accelerator\", \"simm\", \"batteries\", \"torque\", \"eggs\", \"windows\", \"gateway\", \"memory\", \"socket\", \"mouse\", \"drivers\", \"driver\", \"motherboard\", \"apple\", \"card\", \"thanks\", \"screen\", \"fine\", \"anyone\", \"running\", \"port\", \"monitor\", \"work\", \"know\", \"need\", \"cards\", \"like\", \"fast\", \"works\", \"color\", \"system\", \"problem\", \"hardware\", \"problems\", \"using\", \"would\", \"speed\", \"also\", \"software\", \"much\", \"think\", \"something\", \"good\", \"time\", \"please\", \"could\", \"want\", \"help\", \"even\", \"ingr\", \"laptop\", \"catbyte\", \"dtmedin\", \"qemm\", \"fluke\", \"censorship\", \"targa\", \"floptical\", \"generates\", \"revenues\", \"verified\", \"unaware\", \"untrue\", \"util\", \"multitasking\", \"tele\", \"escrowed\", \"challenges\", \"steep\", \"patents\", \"legalization\", \"medin\", \"statutes\", \"sided\", \"pierce\", \"quantization\", \"denmark\", \"shearson\", \"pinouts\", \"skipjack\", \"crypto\", \"escrow\", \"encrypted\", \"encryption\", \"clipper\", \"keys\", \"algorithm\", \"secure\", \"phones\", \"privacy\", \"chip\", \"security\", \"enforcement\", \"secret\", \"agencies\", \"freeware\", \"scheme\", \"decrypt\", \"administration\", \"communications\", \"government\", \"technology\", \"phone\", \"unit\", \"private\", \"drug\", \"session\", \"public\", \"chips\", \"cryptography\", \"used\", \"legal\", \"system\", \"serial\", \"information\", \"number\", \"would\", \"people\", \"like\", \"know\", \"also\", \"even\", \"need\", \"time\", \"could\", \"using\", \"smokeless\", \"yalcin\", \"onur\", \"glutamate\", \"aged\", \"losses\", \"erzurum\", \"invaded\", \"thumbs\", \"neck\", \"offenses\", \"fighters\", \"cigarettes\", \"henrik\", \"athens\", \"mercedes\", \"pilots\", \"awarded\", \"columns\", \"armies\", \"azeris\", \"itar\", \"tass\", \"davidsson\", \"yassin\", \"hugged\", \"emma\", \"vesselin\", \"detained\", \"coercion\", \"hillary\", \"armenian\", \"armenians\", \"azeri\", \"homeland\", \"karabakh\", \"villages\", \"kurds\", \"turks\", \"argic\", \"armenia\", \"massacres\", \"cyprus\", \"serdar\", \"turkish\", \"turkey\", \"azerbaijan\", \"troops\", \"killed\", \"genocide\", \"lebanese\", \"civilians\", \"russian\", \"greece\", \"deaths\", \"population\", \"soldiers\", \"greek\", \"attack\", \"army\", \"koresh\", \"government\", \"children\", \"people\", \"forces\", \"military\", \"women\", \"would\", \"said\", \"israeli\", \"like\", \"even\", \"time\", \"israel\", \"separated\", \"capitol\", \"quran\", \"accusing\", \"allocated\", \"premises\", \"drastically\", \"preferences\", \"quacks\", \"camry\", \"admitting\", \"outlines\", \"repaired\", \"splinter\", \"gurus\", \"satisfaction\", \"glock\", \"hypercard\", \"faults\", \"therapies\", \"relax\", \"agnostic\", \"salesman\", \"refund\", \"surviving\", \"potent\", \"diagnoses\", \"millenia\", \"techno\", \"modifiers\", \"investigated\", \"grips\", \"allah\", \"metaphysical\", \"anal\", \"quack\", \"implication\", \"myers\", \"implies\", \"cursor\", \"label\", \"corrupt\", \"patterns\", \"eternal\", \"subjective\", \"chronic\", \"stephanopoulos\", \"pain\", \"treatments\", \"fallacy\", \"surgery\", \"president\", \"doctors\", \"table\", \"handler\", \"atheists\", \"diseases\", \"atheism\", \"republicans\", \"know\", \"something\", \"things\", \"believe\", \"people\", \"going\", \"think\", \"mean\", \"exist\", \"would\", \"different\", \"time\", \"like\", \"well\", \"problem\", \"jobs\", \"work\", \"health\", \"could\", \"anything\", \"want\", \"even\", \"thing\", \"tell\", \"must\", \"also\", \"take\", \"good\", \"make\", \"much\", \"right\", \"said\", \"sleeve\", \"nords\", \"fleet\", \"bounced\", \"habs\", \"isles\", \"canadiens\", \"pittsburg\", \"pens\", \"potvin\", \"leagues\", \"czech\", \"bure\", \"islanders\", \"rychel\", \"winnipeg\", \"assure\", \"drake\", \"gilmour\", \"stauber\", \"occurrence\", \"hawks\", \"sundin\", \"resembles\", \"devils\", \"adlib\", \"capitals\", \"jets\", \"pork\", \"halifax\", \"puck\", \"calgary\", \"goaltender\", \"hockey\", \"penguins\", \"bruins\", \"players\", \"montreal\", \"leafs\", \"rangers\", \"detroit\", \"kings\", \"quebec\", \"team\", \"season\", \"vancouver\", \"teams\", \"flames\", \"game\", \"league\", \"playoffs\", \"games\", \"pittsburgh\", \"player\", \"chicago\", \"play\", \"toronto\", \"tobacco\", \"played\", \"goal\", \"minnesota\", \"division\", \"period\", \"year\", \"series\", \"york\", \"would\", \"first\", \"think\", \"last\", \"like\", \"fuse\", \"toshiba\", \"extracting\", \"uudecode\", \"prints\", \"fujitsu\", \"quantities\", \"burnt\", \"ergonomic\", \"endometriosis\", \"needles\", \"stuart\", \"restarting\", \"irish\", \"squid\", \"xservers\", \"acupuncture\", \"viral\", \"netware\", \"humorous\", \"subdirectory\", \"seniors\", \"teenagers\", \"massey\", \"singer\", \"patchlevel\", \"notepad\", \"cdrom\", \"kelvin\", \"iigs\", \"font\", \"apology\", \"char\", \"conclusive\", \"conner\", \"erase\", \"attending\", \"combustion\", \"digit\", \"borland\", \"hicnet\", \"illness\", \"drive\", \"disks\", \"cmos\", \"pacific\", \"fonts\", \"floppy\", \"bytes\", \"formatted\", \"keyboard\", \"disk\", \"obscure\", \"entry\", \"file\", \"drives\", \"norton\", \"disc\", \"printer\", \"rectangle\", \"compass\", \"hard\", \"prevention\", \"price\", \"newsletter\", \"tape\", \"program\", \"postscript\", \"health\", \"page\", \"number\", \"information\", \"problem\", \"computer\", \"time\", \"write\", \"machine\", \"windows\", \"size\", \"open\", \"please\", \"email\", \"also\", \"case\", \"using\", \"name\", \"like\", \"available\", \"yankees\", \"financial\", \"retail\", \"grounded\", \"bone\", \"beef\", \"summaries\", \"yorn\", \"hawk\", \"telepathy\", \"transformer\", \"inserted\", \"kirlian\", \"trends\", \"accelerators\", \"inject\", \"spreadsheets\", \"unbiased\", \"saab\", \"leftover\", \"darren\", \"placebo\", \"electricity\", \"shaky\", \"pulse\", \"phosphor\", \"folding\", \"colony\", \"sideways\", \"overly\", \"unclear\", \"chamber\", \"exhaust\", \"pole\", \"objective\", \"absurd\", \"impulse\", \"autos\", \"neutral\", \"wire\", \"symbol\", \"ground\", \"cylinder\", \"intake\", \"diet\", \"moon\", \"therapy\", \"doctor\", \"patient\", \"honda\", \"patients\", \"engines\", \"cycle\", \"would\", \"medicine\", \"weight\", \"much\", \"context\", \"long\", \"could\", \"high\", \"like\", \"better\", \"know\", \"think\", \"cost\", \"current\", \"around\", \"power\", \"every\", \"also\", \"might\", \"article\", \"side\", \"less\", \"first\", \"back\", \"question\", \"must\", \"terminals\", \"confess\", \"santo\", \"filename\", \"ultrasound\", \"techworks\", \"ensuing\", \"forehead\", \"champaign\", \"defaults\", \"wage\", \"cruelties\", \"palette\", \"departed\", \"tuning\", \"prolog\", \"mindset\", \"xserver\", \"newcastle\", \"troy\", \"organizers\", \"commits\", \"xdefaults\", \"ramsey\", \"refreshed\", \"leary\", \"heretics\", \"umpires\", \"infallibility\", \"vpic\", \"correspond\", \"triumph\", \"graphing\", \"trinity\", \"enables\", \"xview\", \"pixmap\", \"infallible\", \"routes\", \"entries\", \"prisoners\", \"hanging\", \"colormap\", \"openwindows\", \"contrib\", \"patches\", \"courtesy\", \"xlib\", \"client\", \"clients\", \"motif\", \"patch\", \"jpeg\", \"defines\", \"widgets\", \"window\", \"sunos\", \"file\", \"libraries\", \"server\", \"display\", \"header\", \"string\", \"application\", \"color\", \"source\", \"code\", \"program\", \"editor\", \"package\", \"would\", \"section\", \"read\", \"stream\", \"like\", \"problem\", \"using\", \"also\", \"version\", \"files\", \"example\", \"available\", \"based\", \"vitamin\", \"rows\", \"intentional\", \"inkjet\", \"judicial\", \"outlets\", \"methanol\", \"weaver\", \"queen\", \"defects\", \"darken\", \"drawings\", \"stereo\", \"olney\", \"ratios\", \"uniforms\", \"underneath\", \"rewritten\", \"viper\", \"mccartney\", \"wagons\", \"distributors\", \"iici\", \"onkyo\", \"conductor\", \"restraints\", \"incorporates\", \"gravis\", \"degan\", \"glorious\", \"wiring\", \"spots\", \"spiderman\", \"wagon\", \"udel\", \"amplifier\", \"wired\", \"comics\", \"hulk\", \"ghost\", \"candida\", \"deck\", \"speakers\", \"baud\", \"sale\", \"warranty\", \"cable\", \"shipping\", \"interior\", \"condition\", \"offer\", \"boxes\", \"forsale\", \"mini\", \"asking\", \"sell\", \"music\", \"channel\", \"modem\", \"panel\", \"card\", \"coli\", \"cover\", \"monitor\", \"video\", \"excellent\", \"used\", \"price\", \"problem\", \"selling\", \"best\", \"good\", \"equipment\", \"tape\", \"like\", \"system\", \"also\", \"please\", \"would\", \"make\", \"since\", \"apple\", \"scanned\", \"bindings\", \"uranium\", \"execution\", \"heterosexual\", \"advisor\", \"keller\", \"drill\", \"damaging\", \"kkeller\", \"minimize\", \"shah\", \"sentra\", \"quakers\", \"bugging\", \"wider\", \"lust\", \"inet\", \"razor\", \"commentary\", \"relaxed\", \"sauce\", \"secured\", \"teeth\", \"crown\", \"circumcision\", \"pizza\", \"adcom\", \"dobbs\", \"demonstrating\", \"feast\", \"baptism\", \"carbs\", \"chevron\", \"plants\", \"upenn\", \"iniquity\", \"smallest\", \"xerox\", \"categories\", \"biological\", \"water\", \"mormon\", \"temperature\", \"linked\", \"contest\", \"rules\", \"obfuscate\", \"jesus\", \"mormons\", \"list\", \"prog\", \"keywords\", \"texts\", \"nuclear\", \"entry\", \"john\", \"mailing\", \"would\", \"child\", \"many\", \"matthew\", \"also\", \"cases\", \"people\", \"rather\", \"point\", \"must\", \"like\", \"good\", \"paul\", \"even\", \"used\", \"make\", \"well\", \"done\", \"might\", \"time\", \"could\", \"system\", \"think\", \"much\", \"mail\", \"babies\", \"kidney\", \"volvo\", \"deaf\", \"smoked\", \"compatibles\", \"sockets\", \"chastity\", \"shameful\", \"cadre\", \"drunk\", \"cone\", \"grams\", \"intellect\", \"kilograms\", \"levy\", \"ashtray\", \"violating\", \"skepticism\", \"localtalk\", \"memphis\", \"airspace\", \"bargain\", \"vaginal\", \"quattro\", \"sociology\", \"seal\", \"painless\", \"elevated\", \"visa\", \"pitt\", \"surrender\", \"cigarette\", \"maine\", \"gordon\", \"dose\", \"oral\", \"subsequently\", \"liver\", \"outbreak\", \"banks\", \"christopher\", \"health\", \"countersteering\", \"outlet\", \"meeting\", \"medical\", \"senior\", \"treatment\", \"patent\", \"japanese\", \"soon\", \"brain\", \"president\", \"june\", \"university\", \"training\", \"summer\", \"jobs\", \"april\", \"program\", \"conference\", \"also\", \"years\", \"would\", \"sure\", \"good\", \"well\", \"office\", \"rockefeller\", \"aspi\", \"corn\", \"darkness\", \"royals\", \"bronx\", \"journals\", \"majors\", \"winmarks\", \"manhattan\", \"winfield\", \"doubled\", \"pexlib\", \"ether\", \"deletion\", \"installations\", \"gopher\", \"analgesics\", \"bobbe\", \"omran\", \"queens\", \"beauchaine\", \"sank\", \"pentium\", \"averages\", \"garvey\", \"dell\", \"jays\", \"louisville\", \"yount\", \"scsi\", \"pitcher\", \"kingman\", \"technician\", \"quest\", \"asynchronous\", \"blah\", \"nissan\", \"sampling\", \"nolan\", \"filters\", \"burst\", \"pointer\", \"adaptec\", \"balls\", \"could\", \"would\", \"like\", \"someone\", \"speed\", \"controller\", \"faster\", \"really\", \"maybe\", \"much\", \"time\", \"world\", \"data\", \"know\", \"fast\", \"also\", \"thanks\", \"well\", \"want\", \"good\", \"help\", \"think\", \"chip\", \"anyone\", \"tell\", \"going\", \"said\", \"since\", \"need\", \"people\", \"astros\", \"expos\", \"profile\", \"alomar\", \"lssu\", \"suck\", \"braille\", \"compensate\", \"studio\", \"executables\", \"converse\", \"tippett\", \"emulate\", \"baerga\", \"frozen\", \"muenchen\", \"czar\", \"trades\", \"clay\", \"kawasaki\", \"gallon\", \"xtpointer\", \"maynard\", \"workgroups\", \"undo\", \"dice\", \"franchise\", \"schmidt\", \"projector\", \"spacewalks\", \"output\", \"scores\", \"xtsetarg\", \"redesign\", \"circuits\", \"emulation\", \"emacs\", \"null\", \"perror\", \"widget\", \"oname\", \"input\", \"fprintf\", \"jagr\", \"timer\", \"printf\", \"graph\", \"xvoid\", \"args\", \"voltage\", \"tool\", \"argv\", \"return\", \"define\", \"line\", \"character\", \"contest\", \"program\", \"count\", \"doug\", \"build\", \"check\", \"code\", \"entry\", \"file\", \"data\", \"remark\", \"window\", \"size\", \"info\", \"year\", \"function\", \"version\", \"would\", \"using\", \"also\", \"cryptosystems\", \"creed\", \"cassels\", \"sanderson\", \"expn\", \"epson\", \"sydor\", \"adelaide\", \"irbe\", \"turgeon\", \"spies\", \"sendmail\", \"dylan\", \"verbeek\", \"shuchuk\", \"mcsorley\", \"hatcher\", \"mutually\", \"resigned\", \"derek\", \"rivest\", \"fallible\", \"willis\", \"ciphers\", \"zalapski\", \"csmes\", \"maciver\", \"unicity\", \"enigma\", \"niedermayer\", \"ripem\", \"ncsl\", \"plaintext\", \"overtime\", \"mullen\", \"cryptanalysis\", \"cryptology\", \"scorer\", \"cipher\", \"nist\", \"sutter\", \"cryptosystem\", \"stevens\", \"murphy\", \"hartford\", \"fips\", \"crypt\", \"period\", \"cryptography\", \"fleury\", \"cryptologia\", \"sandberg\", \"games\", \"play\", \"power\", \"mike\", \"third\", \"steve\", \"boston\", \"public\", \"second\", \"first\", \"game\", \"security\", \"smith\", \"year\", \"last\", \"feustel\", \"flood\", \"rickey\", \"goose\", \"lance\", \"seagate\", \"ditto\", \"attr\", \"defaultscreen\", \"rivers\", \"cmap\", \"xtrap\", \"filler\", \"comeback\", \"rectangular\", \"domi\", \"padded\", \"inactive\", \"iftccu\", \"nets\", \"condone\", \"newman\", \"henderson\", \"vent\", \"defective\", \"flags\", \"spoofing\", \"rectangles\", \"pedals\", \"blinking\", \"bond\", \"compress\", \"falkland\", \"stderr\", \"interrupt\", \"programmers\", \"printf\", \"stream\", \"controller\", \"buffer\", \"rabin\", \"jumpers\", \"jumper\", \"bios\", \"ships\", \"xterm\", \"substitution\", \"reserve\", \"interface\", \"drives\", \"vesa\", \"controllers\", \"comp\", \"disk\", \"width\", \"window\", \"system\", \"card\", \"drive\", \"info\", \"number\", \"mode\", \"hard\", \"using\", \"also\", \"size\", \"open\", \"data\", \"function\", \"used\", \"know\", \"check\", \"would\", \"help\", \"nrhj\", \"bxom\", \"wwiz\", \"gizw\", \"tbxn\", \"bxlt\", \"wmbxn\", \"bhjn\", \"mbxn\", \"nriz\", \"pnei\", \"tbxom\", \"jpwu\", \"pmfq\", \"rchz\", \"gizwt\", \"wwhj\", \"eqtm\", \"nrizwt\", \"chzd\", \"rlhz\", \"nrizw\", \"nkjz\", \"znkj\", \"fijh\", \"mbxlt\", \"wmbxlt\", \"zrck\", \"chzv\", \"eqtcv\", \"hemisphere\", \"libxmu\", \"part\", \"undefined\", \"promo\", \"cabinet\", \"forty\", \"couples\", \"scam\", \"trinomials\", \"lobbying\", \"caste\", \"commissioner\", \"afterlife\", \"cubic\", \"symptom\", \"sing\", \"dances\", \"moron\", \"ericsson\", \"amish\", \"offend\", \"invokes\", \"carbonneau\", \"blvd\", \"ceremonies\", \"noah\", \"chorus\", \"myriad\", \"penis\", \"shooter\", \"stink\", \"attributable\", \"augustine\", \"cview\", \"soundblaster\", \"lipman\", \"captain\", \"absent\", \"kitchen\", \"wollt\", \"parse\", \"gaza\", \"temp\", \"wanna\", \"ssto\", \"strip\", \"navy\", \"traders\", \"shared\", \"char\", \"traded\", \"master\", \"errors\", \"reality\", \"segment\", \"boys\", \"bold\", \"time\", \"would\", \"test\", \"well\", \"program\", \"file\", \"memory\"], \"Freq\": [1657.0, 775.0, 726.0, 649.0, 801.0, 1246.0, 802.0, 593.0, 1551.0, 435.0, 5802.0, 915.0, 762.0, 1168.0, 708.0, 1165.0, 694.0, 1835.0, 537.0, 1143.0, 583.0, 567.0, 4068.0, 3790.0, 605.0, 452.0, 2376.0, 473.0, 355.0, 1446.0, 199.75155879577298, 45.24442289596993, 68.52245989001588, 35.48272760048812, 42.72962497472291, 59.51749533634967, 26.32705421226206, 26.32286403280472, 23.317262494109947, 37.813758944948184, 23.00281694515142, 24.943052123557624, 22.636840022957557, 22.217432490048203, 42.146053028450574, 24.758161248998125, 56.680055714209125, 19.267046464182386, 27.93816868566182, 22.27660315963628, 29.14667657309209, 27.416511457778324, 19.10775824247693, 17.648294811751484, 17.365606969554268, 39.33240363186973, 21.928684873415968, 20.04573594836892, 15.583791910995254, 18.160349986153914, 28.63709231300331, 25.191468998247768, 116.14975886727882, 80.44143488436494, 59.65523134143246, 416.7727717805809, 78.81005552587867, 60.494304720487044, 384.9868961726306, 107.82461123078583, 59.4578673252948, 513.6459604710957, 502.4232074017195, 40.070175876029445, 417.89244532272966, 364.3219050569714, 303.4740118630044, 182.8231490952577, 126.03404284907748, 55.96785224575776, 476.2831952627681, 109.50196187597132, 288.4742958208236, 652.2405479342132, 201.782510618368, 215.65377893766674, 116.89643656611139, 303.5570108699411, 222.878554535767, 95.48521662379997, 257.97339728740883, 167.10943833054728, 147.07051380578332, 366.503830379327, 146.2971493854347, 284.54607139252016, 1499.8119751075958, 266.75374366123106, 562.0517943680679, 248.4517342730593, 238.56836497419422, 390.5868899863674, 335.78613505207903, 533.4082611627406, 260.4371465847466, 654.6479256611253, 402.58793660078993, 571.3625890890798, 1077.0111040232132, 401.8554788338601, 499.59375431667496, 551.3648083577544, 607.3790087734573, 397.4202151660377, 531.4401345068248, 522.2164379273779, 365.1388524252482, 484.00156087354895, 435.6769643719376, 416.76518329994667, 371.23819536643265, 391.84522268581895, 376.7556305761267, 375.612141400559, 65.03374320104959, 65.01297210430147, 47.91400061990776, 38.76533319855224, 34.69685448060973, 34.60734026248599, 36.51622247135881, 39.47748099423202, 42.344346649262526, 27.547743802689798, 24.958384093041023, 40.051659593580986, 28.867320323823304, 23.79909290715835, 48.191924033637925, 108.38039042663503, 33.05963366024055, 30.823384641723166, 26.718183034012682, 26.77452284333015, 21.602953592706285, 25.047773479942926, 56.208020289824084, 163.1522131843422, 25.28570792800266, 21.790982155406788, 20.85782784391362, 22.021621139436277, 20.788478984150064, 49.2113244409389, 47.63781256480246, 37.002184278725736, 31.155012084217937, 37.71177405756462, 60.51114896220261, 61.98198818158573, 41.028330887571556, 166.9203643538552, 58.60801717518814, 108.96064687399797, 47.72327488425021, 60.20396183581254, 72.82339971365228, 95.86259381315838, 70.30753899028973, 62.46492129701303, 78.5233652014134, 240.78770506517333, 381.6159047304558, 52.945550167901146, 106.81823205244524, 347.9984719643019, 108.68013270081134, 678.5880226596319, 225.82514831803033, 102.30497355186083, 273.13002578212894, 111.54383460061302, 603.316875048643, 193.3239276877449, 521.2012765654856, 506.68706445325404, 87.8470623670907, 873.0742477146509, 752.3046163688955, 606.01499754154, 1309.0049783317397, 693.8832771235159, 973.8056602764519, 462.91349444898964, 857.5163974739474, 155.76631404990727, 693.1238448981354, 757.796011395517, 269.113341789181, 435.1254587299195, 309.0001504990535, 465.68512411382665, 238.81050948175417, 499.42079046478045, 517.4636742562934, 380.27388314635346, 388.93158732581475, 462.5309297287454, 319.6402563378085, 380.3570821325004, 408.3683570044826, 462.39521158723454, 402.70846847817126, 352.7831503766002, 362.09970146643076, 35.81260426778106, 45.4023190240915, 36.17532038964286, 50.77037487856853, 32.144982970136965, 26.955943743548588, 44.68942664853215, 30.46642790100108, 25.932659166181637, 39.22415344963589, 25.070921863113107, 22.071588206363103, 26.720222075539084, 25.88908588064465, 26.191864798309958, 19.726618352626517, 18.908904052717705, 21.42808435858773, 23.27987355740511, 17.957555435862222, 19.511342878729348, 26.51960159333504, 18.289832928174917, 16.339832654062278, 16.69431023921598, 37.368279073961666, 15.810731166702626, 28.245524984462985, 20.187780563509005, 15.392418341054718, 73.92322496808117, 31.68375547766408, 182.9852727545419, 66.54759482886736, 99.88126271520514, 46.047069024892444, 33.67849975383482, 45.50469216345006, 348.63131408622985, 926.868043667843, 138.46726685818024, 60.92616516433747, 162.67426085819147, 116.72513162731865, 71.60251955614414, 298.93044895383736, 45.7402542542386, 108.39766108326836, 49.43113900929617, 302.1137998083004, 188.30209561687536, 259.919331094197, 76.06393307757158, 198.65553534713428, 267.59623722379496, 825.556678912341, 163.28931208746783, 259.55860533549134, 645.6077950959605, 305.4609291167515, 100.20956238260965, 358.55200360444906, 439.78586145894076, 120.34272981829453, 473.89648472154744, 120.3178937999035, 143.23655996553597, 218.67768345948804, 507.2952659168492, 319.6015831168578, 411.68745796800044, 430.9426605479461, 527.301955348597, 288.14481608111015, 489.0540228017578, 336.869811380592, 607.7816570595903, 448.17876446639696, 389.3623842475298, 302.84428049501474, 278.1101362018457, 282.42652014204714, 310.1497836991221, 305.6955482512343, 275.93011406791624, 52.76538051013068, 46.960548597988144, 71.42714419806543, 30.165183249859158, 33.36937759042478, 28.57755578523305, 28.49892956499056, 26.47015729078667, 136.65591661388817, 32.705175679127166, 25.69961367803305, 22.95713567897662, 42.190130121883094, 39.270676583508646, 19.268319679809032, 33.120888884823465, 19.61194696746655, 21.126842088836067, 18.497228269214585, 21.314692781818383, 18.914949670900032, 19.531036869892027, 85.80241473544997, 16.696781937568332, 16.0597405799535, 17.59377060073912, 16.23495270930235, 79.30948219145733, 16.09329408891534, 14.439548256698664, 64.91575051035245, 22.216239693400038, 81.27110704616143, 64.45368956716464, 67.78720459974137, 142.49973367041645, 58.233714824517996, 46.099591011020244, 39.97610473838462, 38.4478176828153, 29.25693680633265, 880.764930216828, 90.29405283012217, 403.1716438705199, 58.09022743867104, 233.9780945370819, 243.66547988867035, 268.47824569913695, 120.67018221512046, 257.95860689212725, 374.90149179511417, 551.5681349215524, 223.01154775449007, 221.4937033180643, 587.8450998697909, 279.9419695242487, 143.3042954102572, 182.1345829313177, 526.4602569866502, 798.1574911329, 483.2354377473867, 138.4494518994558, 788.1506006111568, 178.13129056993978, 234.05121663671983, 210.9009994489359, 449.19426750248164, 383.3933137063669, 206.4721691691763, 250.22949068786224, 358.31125475516404, 708.652010524731, 191.78384820756187, 462.30951269656055, 275.18929922287373, 350.79344354709656, 404.2196892736506, 317.87952480701006, 359.6163492449054, 344.37459323431534, 274.79473267742765, 303.84312367755496, 276.4210054378875, 245.9002859416707, 244.6814511934939, 44.48171529906762, 54.289316042766806, 38.3869544605371, 38.342800945821175, 30.815126207508147, 30.61454545194654, 31.340498445823815, 30.1131433434611, 24.7499280713506, 39.984861266293684, 23.491044798364005, 25.745934686335822, 21.54222208949485, 22.775698466776973, 21.270784916063562, 22.645963829688096, 25.072062309692086, 35.71931109017713, 25.883445368120412, 21.392700594302777, 60.563722395996045, 18.374773017176377, 19.214311193728125, 17.734315317364153, 22.188670605198475, 16.63627944308008, 19.354231934398538, 16.979767764427013, 23.168591278717134, 15.657345795102266, 32.522814285333084, 131.3726669120103, 156.99915949194056, 122.64682556228507, 405.6251324351722, 309.3731756627233, 341.55390234469445, 216.66484313672044, 164.8877559975011, 82.06582146811394, 216.75237427824885, 421.2346512639804, 319.29012167068674, 126.30286429328572, 180.16989132865672, 117.08965547998282, 39.35208005034001, 75.40196745122364, 45.242507719687545, 180.79344428494502, 111.78199172187733, 429.2008365598823, 213.37689112011077, 213.6866008526007, 145.0474920879958, 156.38605699042213, 116.71780605257351, 71.08232484233638, 250.24485962057122, 116.92952045623586, 85.43121808350766, 289.5991849394459, 113.71200258222103, 272.7795556318981, 118.83930330097377, 223.0564566272175, 210.6698662889541, 373.6667903321016, 220.01242179539418, 216.1481567231642, 201.89515086757848, 192.15120726328234, 162.86885447523184, 155.88664609867996, 155.44238504446184, 150.11890141264428, 145.78064436033972, 122.11685060617219, 62.31802097033295, 62.31802097033295, 47.10015586141477, 59.04656987352347, 34.53600319611375, 38.080837340418, 35.460534416155916, 27.071296180000754, 39.24167022276348, 27.70030612338398, 34.14171021504128, 33.661456922177955, 178.47774942403368, 34.726063134244285, 22.227122508880466, 25.10134164536301, 17.71128202645993, 18.964225224225874, 18.10788516118007, 85.50709948566495, 15.96931319562802, 15.785227844054749, 15.237769000287985, 37.67381918867367, 17.245500642065135, 23.78302882961182, 15.82465952069857, 19.652536544159478, 15.036763334160144, 16.93052442281476, 583.2869066811917, 530.7852785963995, 87.4674120276651, 51.85082480004798, 103.82976947266415, 105.0128059939296, 49.49634117697478, 185.73426016063803, 77.5260686695412, 191.85544781965496, 40.4242994196406, 67.6736290622187, 70.80381887188766, 306.19893169165357, 215.63265518100147, 132.29546488025338, 101.0666711051712, 233.12193946948105, 130.56657800057945, 52.716784556950984, 65.45085690194068, 192.9157637463756, 80.07983797948204, 62.175421756369445, 143.89957180128903, 126.17719092853983, 178.8660930905, 130.91178690627302, 120.84118197802532, 111.6212011921186, 248.85655354182262, 177.17105278627665, 414.22537920311737, 89.92268019172774, 126.70576121873688, 125.28186219128715, 318.00774736294596, 194.34546640306635, 109.65052417699646, 159.93220461369242, 140.76890628430522, 114.22949250668108, 106.62617924487849, 31.352647024112294, 39.07195871309733, 25.79495778573371, 23.701062830940415, 32.963324046849756, 27.350850271929037, 19.837216210312487, 21.518622838867884, 17.238334054883776, 15.507331721893259, 18.69470421179387, 15.427800956718297, 13.874907933164426, 14.250661445975306, 14.16872687490587, 15.888792950021855, 15.840531516699967, 12.3777180812247, 12.057898060636797, 16.84015340370831, 18.01878999840871, 13.126597598751452, 14.067678340666713, 10.51000061166759, 12.393295166999028, 10.839670809328032, 10.1198692686663, 11.72722517411894, 10.445924491713411, 14.49456435231992, 18.49523200404724, 19.852249262924573, 59.21888598716066, 17.704113804751383, 14.586693919534314, 22.826045716991757, 25.37716414340272, 139.59054376287642, 49.90159138255711, 61.87990970179753, 37.77885145212585, 23.611094835876727, 27.609248816131796, 80.24704108952115, 45.682229018017324, 36.09297077955981, 90.62928524209671, 133.65082411325548, 27.245374022537334, 40.559083289694776, 43.29529741734362, 196.89847289537596, 52.57031892445491, 87.97696076332905, 35.01121576923304, 62.519819774031966, 53.528865645873246, 58.89333442498516, 37.15414254007432, 326.97819450023707, 198.63745173404934, 171.6760153696619, 178.00568104685178, 315.1515542150473, 164.36199647341127, 240.4689478456439, 119.63751467308967, 86.81489004460296, 282.91037528723825, 124.332528805317, 184.70596699937522, 200.0666467064806, 163.63427865458218, 137.69791195711568, 69.77998600562908, 122.37081140635998, 80.72492723185069, 134.89175978528155, 102.17945608106199, 120.17810626301451, 128.56769592887662, 99.38837270124476, 95.37470517193505, 105.87865920577997, 126.611485045625, 103.01861730620584, 111.9252476178989, 108.17807426982422, 107.14736042430523, 102.81956735290873, 101.85260201613309, 98.43369205439085, 42.35731682896413, 36.76994719327623, 33.803393793597834, 52.100239931179914, 38.938310301871816, 27.66175034043732, 41.87199042228972, 83.48223284152516, 36.77487755853017, 31.368618009991906, 24.638854922366427, 30.07235054047729, 83.18843621105, 27.231041452259767, 73.01598229471328, 19.182614955341364, 28.371289305489988, 54.524977019899204, 24.793062309836078, 17.12874309926441, 55.844144243841875, 20.79057074174832, 19.627885590820775, 67.56814174505779, 16.907444394270843, 17.56757819189202, 67.02386651782307, 19.862877526817012, 15.961684035084131, 124.68341786981921, 115.87053159794522, 34.722451976348246, 299.3416195232888, 41.154265095813884, 58.537096210224064, 319.1092008850883, 135.8544173827004, 65.59180470768956, 100.18889205863073, 149.74361975142395, 158.13660032487357, 81.73193563059321, 562.4569905762105, 299.19996990395447, 120.11156812325314, 203.74857984349242, 144.2219014257163, 491.6578077796033, 235.48306755081853, 85.90792742873302, 337.12316637627293, 152.65921768834318, 175.57548520551344, 149.51926432023458, 318.7582852086514, 132.41304750085686, 131.0864057730061, 125.6841190912332, 138.33586244473187, 95.55327592057498, 122.53473110450955, 161.65907183262274, 232.79695844012684, 131.07162720994702, 121.35702801590077, 227.93260543800736, 177.43467656392485, 147.62459037385432, 130.61617876658065, 131.62603387406858, 30.54672920918335, 26.85010041692205, 17.477070093891598, 14.992829951540191, 24.263806270562718, 14.61459687938144, 13.705435811078647, 26.1071605994776, 16.68792153673229, 13.048286939191755, 17.25639678626782, 15.86055499922911, 10.855677426634957, 10.779708283625485, 10.726085319898411, 11.603221246369838, 10.543487152619392, 12.495837716513853, 12.841123397281713, 9.341717311049768, 12.848639058394756, 8.847383266563973, 8.59974011099068, 9.977990841616203, 8.299397276322297, 9.70113483607825, 10.80041076784556, 31.86320474540747, 8.523443367548449, 8.242513834354472, 126.5729080259002, 16.264774600502868, 187.9171065366327, 14.351661563322802, 13.746890462996753, 17.256190806848803, 15.309548667556797, 16.570424251660242, 33.71354167311984, 59.39560836507568, 47.98952805401107, 47.458246063086605, 507.1235322584674, 131.44797509146932, 31.574887382548937, 36.84285346192542, 95.93896982189268, 122.13024454954689, 90.08156931079117, 24.696625958906367, 185.52555920298465, 275.71362504877084, 37.01996263996295, 295.5947999753634, 520.0734645426138, 110.20940614426743, 60.28235493931389, 22.971286451292226, 88.48850999308539, 23.48173657393944, 41.31282214970445, 151.52761895132994, 35.923440000932274, 122.69582470141913, 47.658482900111856, 83.80416951880312, 168.22469570394776, 60.55149447968207, 88.23882567462614, 65.44642665585323, 132.129367430453, 132.96774299861286, 129.67487113023688, 97.65377850232544, 156.04234003187628, 79.88173345952943, 77.66369739205707, 99.84433132590942, 77.90617760621295, 81.1394293010438, 92.29627658524059, 82.31525505146918, 101.90792630216089, 87.06127756363169, 90.21031576333003, 86.79040324182493, 98.36166869621806, 87.31372759569706, 66.65520896914109, 60.268830130464316, 46.299772285902876, 50.36299618327506, 37.30988770683986, 29.753613526273934, 27.3596663550821, 36.795588750388355, 27.491774784424823, 21.94151863938351, 22.421566593232278, 23.460870955261107, 18.741350156751068, 16.716369020717238, 45.55738622034687, 17.36354014927344, 15.54404495677292, 19.49883444321529, 21.439941369201115, 14.85269115889584, 28.160297591379212, 18.999986976334572, 26.62898030676539, 12.290062215743818, 14.505953952167516, 15.942341323361562, 16.592425914779806, 37.07677856254361, 15.551811849328669, 21.299972712116226, 28.6411082843858, 42.13045538609456, 55.1675182392992, 19.9138167324854, 194.26638773277662, 30.902485368323596, 28.64529532092057, 57.87375290099392, 88.81395772788002, 123.17984490544958, 52.87435901898003, 180.7880321037737, 39.714703911030625, 37.158664632760505, 54.79327424988991, 68.93009456500555, 37.52944418062664, 89.33378453601742, 48.02321754274661, 51.49205487209619, 58.21839859666317, 33.993963520966695, 39.37346645507185, 264.6146713148331, 50.16706856571422, 50.56537095392779, 144.2189447679249, 60.359174576499775, 109.41599199525805, 127.48073029556522, 86.73470669716315, 132.88561237154266, 92.06345937635693, 111.59708877562699, 104.05078038432048, 66.69875334621936, 71.74228975338794, 76.11858194529562, 74.32785506589893, 70.97919732690544, 77.95427029083748, 67.25197608621941, 62.45448327369707, 61.300358567500005, 62.099215431651025, 64.31370814388262, 63.42664651775465, 61.86132110274361, 61.67565433406375, 58.63031245069559, 20.70621229260376, 21.337087663621826, 144.3059748465544, 14.4764055870749, 16.90461367320822, 13.478451009347442, 14.604529668658701, 14.080370790751735, 40.79209647661594, 11.266305271147237, 14.090758726157468, 25.366229493814366, 14.072614080530842, 18.73958203948894, 11.64436499797113, 11.123857597224003, 10.149700513280546, 10.018563194356881, 8.843589774413577, 9.286014822410976, 10.013508521330053, 12.25220130909346, 8.606199035649654, 8.96727692457733, 9.575267904035599, 8.340913023936386, 8.270039520073034, 8.77844179419075, 27.78892635580876, 12.918362490655122, 9.918783482938817, 9.879595557992209, 31.57844034678808, 18.447557040397996, 65.83971665229761, 62.57805587628542, 27.208154208264357, 12.284761789018903, 199.59368094079932, 25.312796242433254, 70.085157491612, 51.30036012075975, 65.70663479833118, 167.272396528619, 55.07102134602021, 43.80621710312113, 81.60748637731864, 103.19127749065427, 68.10838434991282, 206.5317968811694, 64.14183101850446, 123.75118658177995, 29.2805030642024, 66.33913511861354, 257.23122765691704, 52.276894997433985, 405.26025942379425, 65.2567921923676, 184.3472739510579, 175.2230496619318, 54.748621721920124, 74.3056650497839, 121.92490014052485, 139.81574807219704, 161.99153503653903, 119.87691993312941, 153.99518952253763, 70.68527808893982, 96.86242062374974, 194.34661541185838, 85.9056262592869, 91.89325123458568, 71.32430802186218, 97.33332793898349, 87.68571345494529, 86.0348246335896, 90.25815721823474, 78.33328069483026, 77.97181147637794, 76.14231240607279, 77.12675586609296, 72.31100255838611, 39.9541240550704, 44.734809899729534, 38.76547285930727, 24.863410789320277, 19.4396308550646, 52.78945707926307, 30.899141845440745, 61.27356896937497, 24.453422172261618, 17.81814893766572, 22.220701740371695, 14.905443634708087, 74.0213304651938, 21.785576680783258, 12.610887480540399, 19.60316043711918, 12.470182510117045, 18.717041453996693, 14.379439038614201, 13.148026797019426, 14.422819703002087, 12.352631755252311, 10.699503257416977, 11.457348309858144, 34.48330282733379, 10.145305556673362, 11.269789864951589, 9.422500716166882, 13.713839813818847, 9.510504044099223, 93.83996900950493, 32.1869062311246, 18.926352837429768, 22.211658808039722, 22.48673077839434, 30.795773266267485, 19.13561082134388, 26.189210363407554, 27.704292818591348, 33.088360083003074, 64.06041252681823, 42.18042733787116, 48.5230822567263, 46.10385940145137, 190.91876247040662, 49.07975935237624, 136.68400137634256, 156.3310470112357, 34.60182766307892, 172.06476966389712, 175.7270928106502, 68.30294906754484, 40.08522908093812, 32.3865136330082, 136.85314159061372, 142.35726938728143, 67.58225442871877, 66.47820280189477, 118.60874296168375, 73.8210049318483, 193.52535134818356, 56.238635125394055, 101.54894453052663, 119.99601090618557, 132.4024353113422, 86.64099203910864, 211.9708562482535, 114.42955666407445, 165.89026798889367, 64.81140863061172, 115.4072613463066, 137.69686872113047, 65.05981582737658, 74.97686514024271, 128.14398203123918, 107.58471793798972, 109.83480426171894, 81.3707909627532, 90.21587991832935, 82.53283814989643, 78.7447941218773, 70.68928886731491, 23.59955993268777, 22.315269728105058, 25.169189805132728, 19.59207341792344, 19.363930071256387, 16.27648312110794, 19.07600076668537, 16.17821552644921, 19.361778119625157, 16.30100442757705, 13.216526441204572, 16.52695023041729, 20.333692484368495, 16.3107520389914, 12.324163162991718, 15.469160229773035, 14.386733118482908, 11.135357605449721, 10.75414849241609, 33.70803539871876, 12.985577350821716, 11.277932607614042, 11.581942279565048, 15.865772210160381, 9.405112810894554, 11.699811782790134, 11.165081893278067, 21.015788203956106, 9.0265252491066, 8.946222803193008, 18.837528052188407, 32.555585057929825, 25.25155848934987, 13.142594136856992, 29.73512235770434, 23.533243348689364, 31.59145966387885, 18.937931185287965, 14.677247500543137, 29.74526023831283, 18.606780479310004, 94.19465781168525, 37.62282203774822, 35.22742631901357, 43.4978469492964, 69.66578668548907, 106.48732770966024, 31.720266734822847, 154.57382489074033, 30.977405736970276, 141.32406173896015, 39.96251503561478, 21.487413935570117, 23.775627873566833, 46.29245522725411, 91.9524409279622, 75.64522137228411, 42.524136252047334, 179.77815351284812, 49.520689053656355, 114.20028709356025, 45.320936602768384, 116.20999107459214, 52.312510736620396, 108.78358411095672, 61.72631797921147, 67.52565984610193, 68.32731653937053, 82.51335372476763, 70.6770069938832, 45.45390532932464, 64.14567330856572, 60.968863831398636, 60.59969105799732, 60.51509747463602, 50.6449451807005, 53.00625982139748, 57.208116808033274, 55.01588356016516, 51.27047375139189, 51.72206991964503, 49.16942124730202, 47.191259770858075, 31.66555784894326, 40.02570880497372, 28.073364421038008, 55.1932446493932, 37.66336810051759, 22.156240450439803, 37.466344438949655, 60.52090877959579, 61.58034855079799, 60.589583261917646, 32.110944263707616, 13.825488890053212, 14.301141905048567, 63.818821116433206, 11.705098990495797, 9.945242872253624, 9.752565384845635, 13.823245469490834, 69.47937579410488, 9.384722722060207, 9.236337201379035, 10.018130837732544, 14.443230041248732, 8.623860910139369, 8.394361306888081, 10.041058102820568, 24.91028644557658, 9.429178558550145, 7.556342214597803, 17.172773881361646, 91.00707129038233, 78.21103545505503, 15.34495459158356, 49.355194365288014, 90.57299333944823, 16.482676253786178, 22.078677846187244, 14.701780273081667, 19.7835309954853, 45.52717059562789, 70.98795793304917, 29.220728296116672, 186.01097540923797, 24.4586497770153, 36.544961317739855, 62.55201793666259, 109.45112649158997, 57.90738618194761, 64.16498946523978, 31.083924602455312, 45.342183385687434, 96.90239768213561, 51.08953393116736, 112.39664052827241, 49.51296759315118, 95.97897851537341, 54.52565953688582, 57.59974607974815, 63.418277009768275, 65.93744542805611, 78.03300038356062, 51.45604533339929, 82.11302684540331, 63.216772307775166, 70.67899527134558, 59.75331380563804, 61.758691059370115, 59.57927541615392, 53.19264717211464, 67.28966115314535, 55.265630105521076, 29.726999327131818, 25.46403073666248, 20.643117974398038, 25.36344857089363, 18.60119747393765, 17.90970797085309, 17.61170902923948, 19.68128481894164, 27.22735181707954, 15.182901466930632, 14.561895266884154, 14.42326914168685, 28.768586338673984, 25.266519227067857, 13.456547446109079, 14.350822899625967, 15.092705185061709, 13.279959556942755, 14.152131397588255, 13.936010278719964, 16.278435985735072, 21.16026533544527, 13.199101515151792, 13.75931511751336, 12.357350353357903, 28.600236106315208, 9.955436727433508, 15.331463490716033, 393.7755205905207, 52.686475902756705, 16.60368759815356, 32.96700781004858, 28.897948060392483, 21.285422550442107, 31.996588711939566, 21.056353556997575, 19.581020289863496, 31.62665899131577, 22.972090095789863, 38.06313465394229, 32.046415878078356, 45.88668795056268, 28.82401115491471, 211.1826150527273, 285.6078340030062, 205.32202864177717, 95.0013114035087, 68.27956196828407, 48.62856130014278, 44.28733984600359, 86.99989827781579, 63.66862516943755, 88.0752600804739, 92.771574278237, 67.74957679098765, 66.22270836393055, 85.43474627066884, 49.47062731234061, 78.4112975076325, 61.840592579006874, 70.19885659526958, 64.12554833529902, 67.38631186829507, 55.45384934876929, 65.03868137761127, 49.46229631492658, 55.24764183819501, 50.64966127278501, 52.85893033551376, 53.61839409040853, 51.347860154388954, 51.044517114768624, 51.74286645585764, 39.843316771033926, 30.937635909949652, 28.727694847031582, 29.447748130188828, 21.86570917138895, 19.152955640711696, 15.643150040393403, 15.542057897577074, 22.45754396634905, 16.68764589047999, 12.70177339147735, 13.974429610819778, 14.520978468167959, 14.863592526587963, 11.512431821166075, 10.696193517621753, 10.804533631651106, 16.770902365353283, 12.063822355015917, 13.954725759125557, 8.985511010273775, 13.427287112633461, 11.747188346638952, 7.8431047471636655, 12.146347686496142, 7.655575060751216, 25.147765587976256, 16.109237426725336, 8.955799220218193, 17.08223194824563, 646.7222821322699, 52.817296302104715, 11.700298653266106, 20.331368402185525, 44.211928953838566, 23.921348569150634, 37.16023470514374, 125.07411150224573, 26.055708179612704, 195.94697935264367, 134.56637826268346, 189.17256693881532, 92.47236149831278, 31.41075311440265, 25.476282990235504, 107.21778644461338, 39.039624914557464, 47.90405500916118, 43.85396220630407, 45.91625461230069, 67.93458104254807, 34.039323350100744, 108.0595665088069, 81.42074172507296, 171.02038926856054, 61.60483073714085, 63.26520581934187, 173.815858518871, 63.026268687342984, 46.13111293150651, 93.13099873645226, 95.50700057725356, 94.1243912331412, 99.33976794775575, 128.19858205803763, 101.91396385581669, 53.721306849526, 78.52056427917935, 60.585936805071235, 61.56658387262965, 63.89731035293866, 51.119737355913344, 55.8777752842537, 64.12635787810183, 55.0163640860633, 54.91054529292107, 29.65324889328904, 27.391723706540926, 24.414820911239374, 32.7968336748909, 21.59798160630669, 14.965813647036365, 32.04910351965238, 13.27082241637907, 16.53723421222317, 19.350656439762037, 13.765665605374332, 13.171148983128443, 12.11631318015887, 15.064013721291019, 18.499577355077253, 18.499577355077253, 16.6518141343441, 10.363009468002264, 10.436058328153416, 21.165394109448542, 10.9465219111981, 10.289721709894037, 16.932170647394937, 36.30711659539974, 13.291140827062973, 12.95791814819573, 11.126845249716647, 13.979848313879206, 11.051695574845684, 18.41010867580631, 176.82367865583186, 62.80765982477242, 41.302541665593644, 27.605501125126406, 22.502079305309667, 34.96348755619482, 38.27929452574745, 86.59289816966174, 48.55946961299882, 82.33603775331817, 20.073913033078803, 20.118612049280934, 29.692363088767003, 46.12917649825515, 47.49970340238593, 24.6324690344679, 43.708361218415554, 132.68919784711588, 58.67963698372343, 24.3267465780214, 26.868905287902876, 22.287227310699368, 74.10066557536557, 73.81656849663662, 89.36676187011376, 44.916422638710216, 56.21747841384918, 41.76913447399166, 39.870064895893364, 61.4624542449636, 56.78965110537822, 64.38290647552857, 41.9017795435749, 36.26264253369416, 32.02762687218047, 32.688717941071545, 32.069888571482004, 18.867044270992363, 17.624943612007087, 19.409083711299076, 16.090166974369836, 14.073347026054822, 26.855882153763176, 11.9880874445241, 15.387139000822865, 11.729237205555235, 11.203830529244788, 12.046430993500879, 10.663668104946721, 10.79880887406607, 9.33357563571407, 14.929515308970316, 7.469635616686045, 17.568671706574644, 7.354245158936496, 8.13093088773722, 7.8195995967788745, 8.59203245091452, 7.1984024199338545, 8.296661494583626, 8.183713524736964, 14.709794848382503, 30.622542166656395, 7.529229340734439, 6.211098574641417, 5.832373115946253, 5.23416171407678, 9.268032621317865, 28.715748145050814, 10.264375688262394, 64.4519990603549, 21.871793590485925, 20.01716325524856, 106.80880017366765, 110.39228937445526, 99.20230019446058, 57.477912327262615, 12.818817382504129, 24.41792679303503, 25.906062958154816, 51.84161111126654, 31.794645295439807, 67.47484874066792, 24.806245548168583, 23.17015388109509, 66.3592016244453, 55.265032314455674, 30.409444302485817, 19.095498423069255, 52.570251016469996, 65.40588439339814, 22.992751759011373, 66.63829400382687, 85.24183889250902, 44.95242055856338, 46.18440935269872, 46.05567814174808, 50.64364180764938, 37.12232334866563, 43.11184373412404, 47.973306429507254, 53.73557198932493, 37.010375694216386, 38.20668628027709, 41.397522318109225, 32.85280189238037, 37.677131056674305, 38.00637772462314, 33.6613302640816, 35.86999510034973, 32.62299060775729, 143.01631955658087, 94.80445814367147, 94.37323058176271, 84.20122622802073, 72.33611398006096, 72.14511460313007, 64.5253757030108, 61.25961364384821, 59.70013738612522, 55.53139844719879, 54.292539313635245, 45.074086844411845, 38.07490140006889, 36.893496459941005, 38.537418772611616, 34.16277966475513, 30.82229751309776, 30.708253656222247, 28.381497764398777, 27.30416371012334, 24.534513732858414, 20.939581877792147, 20.586064755881537, 22.34423625130166, 22.667846810571586, 20.149529597319958, 20.0684289646954, 19.77455051826343, 20.16837326362143, 18.503188144464655, 22.399090679535643, 25.260924255210664, 29.244215334822144, 21.70054118010185, 28.759946090755335, 17.1995119967741, 16.134852582254258, 20.17550845480013, 8.856227895425977, 9.977462392262684, 7.858281554416369, 7.1069031016930895, 6.673079534029339, 7.751832646886072, 11.157109201541127, 7.986664911873513, 7.247733857033922, 6.746206534205754, 7.1972455939310525, 5.827980818553249, 7.556112418731624, 7.012070954381774, 7.7363158673444605, 6.313579084779183, 5.437695299571958, 6.788414158730037, 5.426084154931555, 7.485317755524732, 5.856993237313166, 5.392387407707571, 5.092940423738659, 4.916268706086694, 5.024709740117642, 9.108665935186158, 39.7586033193418, 17.251057392544332, 11.892784624699948, 23.028035186625033, 14.79130388101091, 14.986261794373352, 9.175963964798296, 16.60471927305796, 23.790067327841115, 21.485501266248836, 14.48358234200687, 13.579913141959086, 18.79766635110885, 22.02769660914107, 9.27292535232055, 21.352339051421556, 24.678667122774023, 13.611845193614839, 18.487160421059738, 21.254015886094063, 19.967662788600485, 10.883202804876097, 13.580415736241845, 9.81489887985894, 17.396665601360656, 17.390406103105377, 12.488540420142265, 13.857728917244378, 12.834556461331273, 12.440099503396066, 12.132835634046158], \"Total\": [1657.0, 775.0, 726.0, 649.0, 801.0, 1246.0, 802.0, 593.0, 1551.0, 435.0, 5802.0, 915.0, 762.0, 1168.0, 708.0, 1165.0, 694.0, 1835.0, 537.0, 1143.0, 583.0, 567.0, 4068.0, 3790.0, 605.0, 452.0, 2376.0, 473.0, 355.0, 1446.0, 201.7411828443725, 46.05692604008312, 70.11317959395775, 36.41241421074651, 43.870574542526526, 61.20025571401865, 27.13955752214698, 27.190965497268362, 24.129765671355887, 39.14708308857628, 23.815320096022763, 25.829002400907967, 23.449343225484398, 23.038591383838636, 43.70498719397909, 25.746250920304433, 58.9449541069191, 20.07954965365704, 29.148253927803715, 23.262986826352623, 30.472093412022385, 28.702564963478736, 20.015814534396842, 18.501177842736993, 18.207452008187186, 41.249135517175965, 23.011587058966978, 21.03835898246195, 16.39680266523721, 19.111860060422163, 30.156090707317194, 26.557491339469355, 124.54860054236865, 85.97329729771033, 63.889049445199255, 465.75851318522973, 85.20014673227855, 64.92811432804305, 442.7203307236603, 118.68156192752849, 64.29427676732544, 620.5058625645769, 623.8685064124007, 42.807623340085044, 519.3488664765102, 450.3965650120839, 372.88703521183726, 217.8316175083674, 146.37104736968138, 61.45195335085644, 624.0610571953448, 127.2788555864111, 371.5634162572582, 915.5913910556385, 253.37588494291373, 275.3853687987681, 139.04092771793918, 413.43104274582765, 295.13596139520206, 111.13940234484494, 354.99520070372307, 216.20501437417343, 186.2115977133841, 575.548727655844, 191.54118931219713, 457.2203976654081, 4068.297508192544, 421.2571469666755, 1142.7515949821263, 388.9107041004944, 370.6755663186491, 771.9356706065082, 644.6642290602889, 1310.6044341930758, 446.53735226279053, 2100.2951619180003, 971.1099916471364, 1819.3385949106244, 5802.02840806378, 984.0338184836905, 1761.155186289317, 2214.1567174859697, 2959.082647599311, 1218.9122959110907, 2872.647507262863, 3398.5766117683756, 1159.26502404551, 3288.5538550023516, 2376.002454747289, 2398.7014550045574, 1296.1854300986058, 2074.9267629087108, 1961.8818914159042, 3790.0114916185457, 65.92889922320522, 66.11347629821063, 48.72913417417235, 39.58265352884074, 35.56889984571041, 35.49859028444408, 37.54381146355605, 40.60820667955116, 43.56676850328001, 28.362877516003643, 25.773517605134785, 41.38592522474262, 29.84707408716066, 24.614226457677855, 49.855820131573324, 112.17390900243558, 34.222237843572, 31.951882472680776, 27.70820531416085, 27.785901333744047, 22.46507402589321, 26.052238744488474, 58.54773857686609, 170.01735364952958, 26.35441001321264, 22.719473043110053, 21.76784814625563, 22.98357753670261, 21.71730519491102, 51.44563151546915, 50.021235447157736, 38.91677542879431, 32.69911877142377, 39.871227990184416, 65.32540355111209, 67.80797030135372, 43.87734581143116, 198.68147828402175, 64.67684404464221, 129.48208450017944, 52.298924765620654, 67.74959871032577, 83.73171076633572, 115.89021979722355, 81.76463822252829, 71.67499358419035, 93.56833347051673, 350.8109694001555, 605.208319333205, 59.301103310477046, 139.9496650803323, 597.5482933237714, 145.74931065183168, 1463.279981275099, 365.427119755685, 136.38608000866896, 492.8938565900818, 155.32365134299297, 1436.0033757835265, 323.6810504229635, 1290.7343754912063, 1323.3674126219353, 115.29218341412128, 2959.082647599311, 2398.7014550045574, 1819.3385949106244, 5802.02840806378, 2339.4052007454106, 4068.297508192544, 1352.043551650727, 3790.0114916185457, 271.2801090002725, 2872.647507262863, 3398.5766117683756, 650.1337586217294, 1415.214494843704, 825.1225011024262, 1761.155186289317, 568.1326138590247, 2074.9267629087108, 2214.1567174859697, 1318.5496653087587, 1375.9933570580836, 1961.8818914159042, 971.4450229975539, 1554.5435864798642, 1986.492999164182, 3288.5538550023516, 2376.002454747289, 1724.432022658204, 2100.2951619180003, 36.671301832470036, 46.50998812710023, 37.141515335712135, 52.15558320833374, 33.07608837210144, 27.76902723989397, 46.05820667404846, 31.416807761781627, 26.74805559850985, 40.53457034892387, 25.940077912556774, 22.884671813905662, 27.725917905482103, 26.90538772550049, 27.250547168637212, 20.584900289841066, 19.73527857558901, 22.365651003681055, 24.35065550706051, 18.797242906841394, 20.43318324713515, 27.78238423338017, 19.165301435805016, 17.15291612115568, 17.56535552739666, 39.33241164870694, 16.655663123298556, 29.7615580424416, 21.286895608846944, 16.23219213366825, 78.18578266493228, 33.448533961837754, 197.41762821822462, 71.0555080050251, 108.10419079877268, 49.08325920354318, 35.87406807264552, 49.139308659726396, 410.05435055996344, 1165.1365161401352, 158.24120302548445, 66.99586106145108, 188.8862262893044, 134.77169159052184, 80.72693318083536, 384.60838485005377, 50.20114053579748, 131.10021121690895, 54.8834439125761, 417.28677608835113, 245.57948412462605, 355.1992146247291, 89.32486857305693, 269.1482304396683, 387.2202000807394, 1446.8204356950548, 220.10381720688636, 383.69887382564053, 1168.142140289774, 486.41365532065635, 127.4917826600566, 615.053226719179, 808.8131160720673, 161.0097316228992, 926.6751554950386, 160.9955241124015, 203.1781966002916, 359.82531803863657, 1107.8553408310347, 614.8152300261648, 939.7750930681142, 1035.8297058944165, 1426.2037623363556, 604.6689060884207, 1551.858457667317, 843.3036695856377, 3288.5538550023516, 1835.0141858170755, 1657.2748108769115, 976.7238815294457, 822.0941450273665, 870.6212496964164, 1376.0513800917, 1433.6886656180902, 1095.132583737087, 53.579668245131465, 47.81659484235989, 73.36171133505627, 30.985546661881006, 34.30376585348443, 29.411022657772396, 29.338798384361333, 27.2844450321799, 141.25919004471075, 33.80719951144565, 26.63897909326623, 23.79782133693568, 43.83699863143614, 40.88498823188549, 20.082607382910048, 34.5327905696852, 20.458126201885666, 22.05343682012372, 19.311516040274153, 22.287550944184286, 19.778418791411415, 20.466975928259906, 89.99191032835218, 17.515043461338315, 16.877397311613006, 18.492083534203648, 17.073168093821643, 83.6695520752228, 16.98804709134874, 15.253835954915603, 69.48426916704565, 23.557730491213892, 89.45441390431259, 71.18771425721458, 75.17288316103185, 163.40858450335406, 64.72313532770583, 50.759145794949006, 43.657980417210474, 41.903629909388705, 31.439663024969324, 1246.4289433300853, 106.29516915139003, 540.5783366018667, 66.70435793882324, 319.4422623389713, 345.35282885991904, 391.0386989511189, 160.45978543384223, 426.0328153122685, 694.0368619703868, 1170.930021802925, 388.5887607046225, 418.6099818793315, 1526.6601517571435, 571.697305887404, 246.33096239175808, 344.6551332860751, 1641.5714865217549, 3398.5766117683756, 1604.1369907982562, 244.99130565560682, 3790.0114916185457, 375.9945040394446, 589.6276934860649, 497.00637891914926, 1835.0141858170755, 1518.7993184113402, 498.11567909115195, 727.5758293092471, 1433.6886656180902, 5802.02840806378, 443.2746871384009, 3288.5538550023516, 1035.8297058944165, 1986.492999164182, 2959.082647599311, 1554.5435864798642, 2339.4052007454106, 2872.647507262863, 1376.0513800917, 2376.002454747289, 1724.432022658204, 1123.666105189686, 2214.1567174859697, 45.459494584416134, 55.487393991317845, 39.307465282486866, 39.30517486834456, 31.628900929201492, 31.456454261526495, 32.27068021702312, 31.095564299204373, 25.56370278655666, 41.38752704552056, 24.315918386552454, 26.705486918670502, 22.356775574864923, 23.639077963856717, 22.08455964502102, 23.513125365833393, 26.062504725655987, 37.21265873478772, 26.99476647638585, 22.324478476452786, 63.266835634272596, 19.1974523497669, 20.08664412779302, 18.550527923046133, 23.238557171030436, 17.450054213678712, 20.310208260232464, 17.837993009715838, 24.362279231316258, 16.4711205433819, 34.21535925098855, 142.29776268539894, 171.36572234925316, 136.01508431641852, 473.0731371471029, 366.88811411132644, 418.09101302955656, 269.4262612666973, 205.15391316198583, 97.22220171266993, 284.2528583720468, 605.3020055011411, 472.7946709019008, 171.75574815762462, 266.0234634086364, 161.5030096631716, 44.50318365831379, 101.40065782761815, 54.49224473136217, 327.3448578762179, 180.01412137264145, 1143.5006621965865, 439.2600336619813, 450.4736537855426, 287.7744284172351, 328.6158790497792, 218.3634889671754, 104.91161047776697, 799.8924769196107, 240.1357217550273, 158.51615969891918, 1856.0442323751638, 281.2217201717433, 1835.0141858170755, 311.1098642984701, 1426.2037623363556, 1298.215292536888, 5802.02840806378, 4068.297508192544, 3790.0114916185457, 3398.5766117683756, 3288.5538550023516, 2214.1567174859697, 1604.1369907982562, 2872.647507262863, 2376.002454747289, 1433.6886656180902, 123.23188084988853, 63.29591985323124, 63.29591985323124, 47.96860065501006, 60.194979047376016, 35.3542140295022, 39.1707373544152, 36.50318871618605, 27.889507077663932, 40.5072460672227, 28.60447987787729, 35.27583553812261, 34.86825510484307, 185.65349125368647, 36.140639382180666, 23.249471528294464, 26.283722988256745, 18.551379572292124, 19.86791724079462, 18.98700660890588, 89.74993120040783, 16.827146515034258, 16.640138445611488, 16.09093285413409, 39.7924597082661, 18.238409307472157, 25.19070108767223, 16.783886659223477, 20.854361080228152, 15.997471943896802, 18.015680641500737, 649.6363874299855, 593.6651590921238, 94.85484683144095, 56.03067087663411, 114.65554587151935, 116.18969899391713, 53.678774751865525, 210.89380719332564, 85.57043209380804, 220.33489510436425, 43.658791398742736, 77.20406466621802, 81.74370181457314, 425.7257924251066, 292.93343359716437, 174.8879997937763, 129.51442107713385, 356.64063623725406, 179.93391286719202, 60.79739682278226, 80.50506711518908, 339.61294563426105, 106.86931301544804, 76.70108542442865, 250.61510104058803, 211.7408488258234, 354.7830013318009, 224.31183319294144, 203.19016323552802, 194.9933588299084, 1143.5006621965865, 576.9243831276974, 4068.297508192544, 152.46730519647576, 363.3681653743365, 378.00643208581164, 5802.02840806378, 1819.3385949106244, 370.6755663186491, 3790.0114916185457, 2214.1567174859697, 2872.647507262863, 624.0610571953448, 32.47076409065753, 40.509077389287846, 26.90912538695844, 24.737756931682913, 34.449065515478495, 28.584440979045436, 20.771967638021536, 22.561276063200243, 18.079648225504176, 16.323937021483527, 19.791347796327443, 16.347982286480732, 14.702606324023407, 15.128092171174742, 15.052381361122343, 16.906785187670025, 16.878934848502162, 13.19432349582111, 12.874503437622387, 18.00383949140605, 19.266208910070166, 14.086744035320773, 15.120247190510469, 11.336955197322288, 13.37527540947959, 11.711207304054259, 10.936474639496083, 12.712815234832897, 11.32787150101765, 15.747443228497822, 20.102164641511617, 21.608049195548876, 65.20397798861609, 19.44772023749513, 15.949923534210974, 25.445076680745743, 28.84292907367448, 185.79834967028313, 60.94434089652582, 78.03722045442875, 46.052744658795845, 27.352518557243556, 33.71760671054633, 130.44664512843016, 64.64815477616034, 48.764665688516075, 165.99645474942938, 276.9639062058545, 34.548478203002766, 58.85843334518996, 64.51203900426229, 561.5237876130013, 90.55208525943408, 195.1057565505584, 50.93138467994937, 136.19727513605815, 111.61884596611158, 140.12481522865514, 61.464253692935465, 3398.5766117683756, 1554.5435864798642, 1190.9069906947086, 1310.6044341930758, 4068.297508192544, 1323.3674126219353, 2959.082647599311, 769.4476624840249, 382.81973773156915, 5802.02840806378, 885.4738635692061, 2872.647507262863, 3790.0114916185457, 2398.7014550045574, 1518.7993184113402, 240.9257624055114, 1641.5714865217549, 423.6481774439034, 2376.002454747289, 959.9063484240503, 1724.432022658204, 2214.1567174859697, 935.672069683243, 820.6435408710444, 1293.8519584890284, 3288.5538550023516, 1318.5496653087587, 2339.4052007454106, 1961.8818914159042, 1986.492999164182, 1761.155186289317, 1819.3385949106244, 99.25340363220349, 43.19933712140052, 37.58965878571549, 34.62765577077757, 53.48384882054912, 40.02686684487746, 28.49563200124425, 43.22512109156162, 86.3142778110137, 38.074070271261874, 32.4783442534785, 25.56494811680883, 31.211194024914697, 86.5452837270342, 28.358584308996523, 76.0536962584735, 20.00240578909713, 29.592723252386328, 56.96450139770324, 25.960283082528047, 17.964213876559214, 58.56809867844962, 21.811255784334215, 20.624199014587617, 71.00639354945416, 17.77601243694776, 18.518185263180232, 70.6879072141053, 20.95013384539765, 16.848417756541558, 132.03768417099607, 123.67391402827005, 36.75256573520262, 329.17242168920797, 43.71398751287884, 62.73461327827593, 355.36989046525656, 149.14491243091464, 71.4913004062308, 111.14981894960098, 170.48265052005104, 181.23481431082254, 91.0715960064135, 726.8793057676918, 395.7101841498066, 145.49501887490752, 265.0331094361777, 184.76105483314362, 802.2746374962118, 346.1839521095466, 103.23964847242159, 537.256409368933, 209.74270264806037, 256.32820277985417, 210.33881316713348, 567.1421881502428, 183.02389979836585, 180.7900776660372, 178.75512350451902, 232.74792963075384, 132.47212413324385, 231.52398673146058, 452.7384498746531, 1463.279981275099, 345.6043852979882, 284.8568504235961, 5802.02840806378, 2074.9267629087108, 2959.082647599311, 1290.7343754912063, 3790.0114916185457, 31.58619910029862, 27.767198567217033, 18.424404342840678, 15.819887619771343, 25.65442579447836, 15.475423794714999, 14.532493490508228, 27.689629486188647, 17.705262405984715, 13.875344579000878, 18.38644523760499, 17.06220259383838, 11.682735057738963, 11.606765937722328, 11.649368806419673, 12.605978263788026, 11.464472508024832, 13.62335184648142, 14.007204091395606, 10.20639312159862, 14.047448436492271, 9.684970811125268, 9.42679772857, 10.970414147488384, 9.12645491943223, 10.670159073370293, 11.884624620560896, 35.16476965412387, 9.408870590235257, 9.109741451284055, 142.02803918070862, 18.001695354096288, 216.00840012222739, 15.874814430965163, 15.199299384546558, 19.192389160905304, 17.00371592175876, 18.56064907496988, 39.27761584568836, 71.65064655132949, 57.88650741013393, 57.21885421415127, 801.7115707261655, 187.79674796375022, 38.4727818265393, 46.325543327524876, 142.4561243858008, 190.19669990729, 135.2025884376763, 29.915023336975832, 338.26076950598025, 583.7649758899393, 50.510115722907464, 708.0993241413931, 1657.2748108769115, 225.2462024345707, 101.62484205237091, 28.068131645996438, 195.06105285170656, 29.345025515854463, 75.72176273662181, 688.8550632249131, 60.800126264629256, 561.4440065155158, 102.71723303438341, 310.68737238777885, 1551.858457667317, 178.86045156558072, 423.6481774439034, 213.73140942714667, 1298.215292536888, 1426.2037623363556, 1518.7993184113402, 707.7660304169864, 2872.647507262863, 469.27463257814736, 451.56385831187816, 1246.4289433300853, 489.87537859332895, 630.3321952768385, 1376.0513800917, 711.0232748900814, 3288.5538550023516, 1087.2952252574385, 1433.6886656180902, 1095.132583737087, 3790.0114916185457, 1446.8204356950548, 67.51003289635086, 61.08694942329351, 47.117891557301654, 51.33802185292849, 38.242986376877255, 30.571732789487793, 28.177785599050136, 37.99928781945443, 28.442367730613466, 22.778337001694457, 23.38546891503022, 24.486775906650653, 19.630703942551083, 17.534488527517567, 47.80516533558269, 18.270855209031737, 16.36216460474144, 20.53457163612543, 22.61394686897869, 15.670810393933147, 29.753636632698406, 20.254792624217302, 28.43233859217874, 13.137779819991547, 15.521248628253643, 17.06271550787096, 17.77244313875554, 39.72512192063969, 16.677498552697074, 22.848367052659007, 31.247799110164596, 47.02406323624376, 62.285231970934426, 21.56645193865502, 244.77751259031172, 34.55862084771068, 32.28527308711047, 72.00499524925195, 122.38932051766868, 189.9824206511485, 69.37275373308567, 310.4059231800829, 49.776456144160775, 47.41390427758141, 81.61734476179234, 117.68713853963528, 50.97985637777165, 202.14421463071193, 77.72157975588067, 94.6049091360275, 149.46416992739043, 46.0288756615738, 65.16111735563037, 5802.02840806378, 115.12947460317997, 124.56942886810147, 1986.492999164182, 203.89559266531913, 1116.4597679376816, 2376.002454747289, 755.5612511772603, 3790.0114916185457, 1126.8405149488742, 3398.5766117683756, 2959.082647599311, 416.0338437531139, 670.8364255180827, 1033.6723768788156, 996.0444561542364, 916.7269387959977, 3288.5538550023516, 1166.1497540175399, 538.9181124473954, 454.32268702590727, 671.1727372287745, 2074.9267629087108, 1436.0033757835265, 1039.7233796129437, 1293.8519584890284, 59.45420530306303, 21.530105167886493, 22.24511343723883, 150.62952272369952, 15.300298442567591, 17.887068969419275, 14.334404691822257, 15.563511509383732, 15.058167631379543, 43.682404646072456, 12.090198146176945, 15.144344474512398, 27.28838646949651, 15.157422190791069, 20.208474499466508, 12.558801468041677, 12.00301659689931, 10.973593343025149, 10.895935824361516, 9.667482644523764, 10.152598243942885, 10.963759245957023, 13.416779434154439, 9.430091940197563, 9.84951374414582, 10.518606177302578, 9.164805879362502, 9.09393238414678, 9.66275317865635, 30.588540583017505, 14.258726878267456, 10.935414967940412, 10.891666415026785, 35.79585415308134, 20.723456036625723, 77.168558217076, 73.83835057147579, 31.047856504680126, 13.636771485332972, 261.0340001124431, 29.429375521729902, 90.33124336647542, 64.85990443613787, 92.93058555210644, 273.20187553177317, 78.16072096972924, 59.95484887503944, 126.4100319750435, 172.85922556229406, 108.5114582035922, 450.43666380695913, 102.61407377728126, 238.95495355649888, 38.408601659691044, 117.59457313234947, 762.4262996671451, 87.78094670755935, 1657.2748108769115, 121.50764936158414, 598.1256086208444, 557.117590571152, 96.63264857236771, 159.7257085953725, 391.07439776439094, 497.00637891914926, 688.3987547727196, 614.1553795196435, 1551.858457667317, 195.79135761377364, 479.2109635382342, 5802.02840806378, 459.8585776260499, 1066.0737187068605, 243.6604098731002, 3790.0114916185457, 1518.7993184113402, 1433.6886656180902, 3288.5538550023516, 939.7750930681142, 926.6751554950386, 771.5836461437251, 1446.8204356950548, 976.7238815294457, 40.775263387064115, 45.664612253982874, 39.77502582177359, 25.81624849198935, 20.260770265015974, 55.11306229837982, 32.3150206448693, 64.10048195715444, 25.70984986125976, 18.734172545206402, 23.435919539395847, 15.726583046283123, 78.43484434501336, 23.1142588735467, 13.432026844499434, 20.884726057254444, 13.29347280825559, 19.977202833751505, 15.36014889860525, 14.0625242473441, 15.431544505001883, 13.235893189778716, 11.520642591108654, 12.36505750068023, 37.256322736649864, 10.96644518982454, 12.247413768768208, 10.24364278311651, 14.915962719968865, 10.346991686095945, 102.67322688897758, 35.26221538283847, 20.74718628627048, 24.58933296479893, 24.932538655581336, 34.6283001248938, 21.14361632923841, 29.814684474998042, 31.753392755890584, 38.94848006599793, 82.59840146900089, 52.113882708426715, 61.149185875908294, 57.876404030001105, 298.6842394115824, 62.71531442659362, 214.34288310522373, 271.14686112137247, 42.40207968061583, 319.04374510272817, 336.8416921854657, 103.90214582539926, 52.140074838579054, 39.918122916344444, 313.11483695501266, 333.11144958366486, 114.45414607618393, 113.71493155576736, 286.06071759949975, 142.02658418985095, 694.0368619703868, 92.84671009608383, 256.39788452542814, 344.6551332860751, 434.94714834497523, 236.13412470097018, 1856.0442323751638, 561.4440065155158, 1518.7993184113402, 139.46376938753448, 927.7307881382754, 2339.4052007454106, 169.7399010631523, 310.68737238777885, 3790.0114916185457, 1835.0141858170755, 3288.5538550023516, 1376.0513800917, 5802.02840806378, 1961.8818914159042, 1440.8819614007, 426.0328153122685, 24.42506627762235, 23.166240653135304, 26.207614183246502, 20.417579748012123, 20.271197036890612, 17.14596390935013, 20.09537152752935, 17.09338064807839, 20.544716118298922, 17.30764936945664, 14.07886563878237, 17.6169775705157, 21.68958175073667, 17.405793759953387, 13.152127112268168, 16.524747031934293, 15.434308792593, 11.960863996018414, 11.57965482300057, 36.353642540963904, 14.022843486080244, 12.194128021199472, 12.544004506594359, 17.212633147921114, 10.230619171520924, 12.738546451582044, 12.161959244444434, 22.901187201304978, 9.852031604734838, 9.771729132527184, 20.689630092124897, 36.002252162015075, 27.902400904515847, 14.480510119761414, 36.79050269394689, 28.98599987292437, 41.280470027853696, 22.55691979315536, 16.788668572422395, 40.757506053134236, 22.671589074346702, 189.00467539593583, 59.852561120637716, 57.17404302605931, 85.8713198795254, 191.08065266621594, 389.13263067931007, 56.03131158040171, 915.5913910556385, 54.009430377916395, 870.6212496964164, 92.62171028745207, 29.093118437684815, 36.214363679275166, 149.4864445152863, 708.0993241413931, 472.5373823959656, 148.01524448726474, 5802.02840806378, 229.01733772153145, 2100.2951619180003, 191.1539745773558, 3288.5538550023516, 344.8949094995978, 4068.297508192544, 791.0872623686815, 1218.9122959110907, 1293.8519584890284, 3790.0114916185457, 2339.4052007454106, 289.18192997367333, 2214.1567174859697, 1856.0442323751638, 1961.8818914159042, 2398.7014550045574, 709.6138492168527, 1166.1497540175399, 2872.647507262863, 2376.002454747289, 1835.0141858170755, 2959.082647599311, 1986.492999164182, 1107.8553408310347, 32.487756644351826, 41.15248323364863, 28.91296935727489, 56.84843332878843, 38.93202488681614, 23.044255338530593, 39.01476017929654, 63.61725106404027, 64.98253144191324, 63.975954298973285, 34.00982537226092, 14.666047428777587, 15.340150567169768, 68.70069507236855, 12.646901113643052, 10.770195453082032, 10.574764460300473, 15.027075202604102, 75.6168304267823, 10.218120669359287, 10.058535970214828, 10.938908545955519, 15.830663112932646, 9.457610108633059, 9.21656011264094, 11.027376987351218, 27.446723113079543, 10.412521361172423, 8.378540967752926, 19.0600806708414, 101.22357028095112, 88.73022311623365, 17.05972101664289, 57.33635461593384, 108.58172819677206, 18.45813437924555, 25.13127472586732, 16.434283489155142, 23.0203390949729, 60.03639680387306, 110.92839295612563, 38.897183595671784, 423.6481774439034, 32.75701380906633, 57.90544731097006, 126.2315759045969, 291.3978547575673, 119.18458932275345, 139.39696602142237, 47.52688565254888, 86.01190810191947, 329.4313332595582, 113.40840250323748, 561.5237876130013, 114.39575587574528, 486.8357659543739, 149.96630417677707, 173.561644212689, 240.9257624055114, 521.5011062114007, 1551.858457667317, 204.2201668385541, 3288.5538550023516, 1352.043551650727, 5802.02840806378, 1141.1862708613032, 2339.4052007454106, 2398.7014550045574, 371.3693357349251, 68.21294623732128, 56.68336422147635, 30.553489245800133, 26.290520668623564, 21.46960789152312, 26.39400667082333, 19.42768751885427, 18.736197866562087, 18.438198935254945, 20.642799606751964, 28.611355713964606, 16.01715307141492, 15.394462801435198, 15.249759041316173, 30.457524462046184, 26.754348365893566, 14.283037384271035, 15.252605915619004, 16.05445155653251, 14.13991561761492, 15.111114112209311, 14.897630447111112, 17.438116123269037, 22.721667716139926, 14.181867132352531, 14.87725456562361, 13.36724683611393, 30.95763163665292, 10.808094215485898, 16.713383409133847, 435.0965746268451, 59.777403597938914, 18.14755996696455, 37.2509143452325, 33.11937005590015, 23.793786875427035, 37.464403114756166, 24.018720028315457, 22.074929527157476, 39.138863014038215, 28.407758667863426, 57.04201494757382, 45.51531986081343, 77.67440426154344, 40.183527437482766, 2376.002454747289, 5802.02840806378, 3790.0114916185457, 965.7750563353596, 443.2746871384009, 213.8142312443905, 173.84255746583395, 1415.214494843704, 678.39723972172, 1986.492999164182, 2872.647507262863, 1142.7515949821263, 1168.142140289774, 3398.5766117683756, 375.9945040394446, 3288.5538550023516, 1170.930021802925, 2398.7014550045574, 1724.432022658204, 2339.4052007454106, 1123.666105189686, 2959.082647599311, 605.3020055011411, 1526.6601517571435, 820.6435408710444, 1323.3674126219353, 1819.3385949106244, 1440.8819614007, 1604.1369907982562, 4068.297508192544, 40.79104575011468, 31.77168796488246, 29.556025588992014, 30.433115823020234, 22.755906000295365, 19.981286256171888, 16.471494482815164, 16.483269093526513, 23.846544602929676, 17.734587728132635, 13.53010402707412, 14.936894933469526, 15.526113106554385, 15.901349707278182, 12.377582779783667, 11.524524152709285, 11.641895085257177, 18.09595917355581, 13.04536760317486, 15.13611354042732, 9.847578224085929, 14.78521875622599, 12.951670823445532, 8.7071438197339, 13.50123675320974, 8.512138389187893, 28.002675100437358, 17.95437820693722, 10.04942673042752, 19.195219624434234, 775.2635738207974, 66.12582083190412, 13.305888737351895, 24.093999765798937, 56.41334587019635, 28.752764931954992, 47.371389472108625, 194.69280220984507, 32.16945079060586, 336.85573449431377, 229.3761519979642, 349.9207224231622, 165.47521354261653, 42.37236769024489, 32.699477695046276, 233.0653375462781, 60.386777430070175, 81.47088288646644, 72.23243808137195, 81.12515583199038, 161.8801333417608, 56.42986141446293, 371.9729806417016, 238.38037040349997, 971.1661485009587, 176.19935987480656, 191.08065266621594, 1551.858457667317, 202.36026321899897, 106.7312080151898, 497.04459613996687, 580.3286618547019, 614.1553795196435, 708.0993241413931, 1657.2748108769115, 1168.142140289774, 180.35114932430434, 762.4262996671451, 489.87537859332895, 843.3036695856377, 1463.279981275099, 276.34111601428907, 939.7750930681142, 5802.02840806378, 1433.6886656180902, 3288.5538550023516, 30.66569061910954, 28.49598735308382, 25.520473470477924, 34.41264583685172, 22.682455291899405, 15.794632619409072, 33.87073608921021, 14.099642548938702, 17.57898532862143, 20.593297852283584, 14.664141446788518, 14.134343523739235, 13.03996316582511, 16.21391156362642, 19.944831025286458, 19.944831025286458, 17.975481360746873, 11.19182850452778, 11.273969209095934, 22.88629834829342, 11.838761450208525, 11.12855510583525, 18.314166097743975, 39.31712333464101, 14.399177232986716, 14.043132213422117, 12.062061700922289, 15.17045198425773, 12.015039866541697, 20.066292049549016, 206.1119485012066, 71.00295596421991, 46.31219271343631, 30.84960315838877, 25.455655788770997, 40.88001334530503, 45.51127019962582, 113.25985478711306, 60.411262875411076, 114.14319444423468, 22.893898490304228, 23.090688555348976, 36.711500229319284, 67.68511448302168, 72.97481920556939, 31.185690895025164, 79.36120634070335, 452.7384498746531, 158.51615969891918, 33.05458231039492, 40.868276657427536, 29.338282796492482, 537.256409368933, 567.1421881502428, 996.0444561542364, 208.3511907234309, 436.19909753910605, 204.2562304981955, 174.20361506151752, 799.8924769196107, 939.6369630239205, 2074.9267629087108, 802.2746374962118, 472.7946709019008, 188.9848663784059, 1463.279981275099, 1290.7343754912063, 19.69589298667383, 18.462764336162138, 20.346547479609537, 16.919015729379645, 14.902195781106245, 28.482208248775358, 12.8169361835137, 16.5280852812007, 12.641201362074158, 12.127787379911284, 13.050255989281943, 11.56770370363766, 11.720926039865486, 10.162424443149266, 16.35503333901479, 8.298484815558583, 19.646723210325966, 8.232617705765026, 9.103932200923843, 8.763753268569483, 9.66307916894942, 8.103956882726001, 9.341602454231893, 9.24525366569753, 16.627671686782087, 34.68398181858817, 8.644998880682392, 7.146468160588802, 6.734729128102468, 6.0755950281800315, 10.939534237418924, 35.37642196598914, 12.222884317456959, 99.04487064009508, 30.304911993613622, 27.633076969391507, 233.0653375462781, 243.6604098731002, 213.8142312443905, 115.91051371043123, 16.56715220006269, 39.83044170378992, 43.793255771114595, 115.04229251179801, 58.66382154831752, 174.24675829173896, 42.193960480484975, 43.64299461770046, 312.22004725951086, 225.2462024345707, 76.58011575507086, 32.22012462337285, 344.345961505757, 583.7649758899393, 49.91581730599517, 762.4262996671451, 1835.0141858170755, 694.0368619703868, 801.7115707261655, 843.3036695856377, 1298.215292536888, 360.6245748967003, 688.8550632249131, 1433.6886656180902, 3288.5538550023516, 489.87537859332895, 630.3321952768385, 1168.142140289774, 276.34111601428907, 1856.0442323751638, 3398.5766117683756, 580.3286618547019, 5802.02840806378, 1123.666105189686, 143.84497493008809, 95.63311351717869, 95.20188595526993, 85.02988160152795, 73.16476935356818, 72.97376997663729, 65.35403107651801, 62.08826901735543, 60.52879275963244, 56.36005382070601, 55.12119468714246, 45.90274221791906, 38.903556773576106, 37.72215183344822, 39.40762109983668, 34.991435038262345, 31.650952886604973, 31.53690902972946, 29.21015313790599, 28.174366037348406, 25.398780792245088, 21.76823725129936, 21.41472012938875, 23.247027186437993, 23.59605228047629, 20.978184970827172, 20.897084338202614, 20.626947011684823, 21.044510876815572, 19.33184351797187, 25.390752142565685, 38.365696366788846, 1073.2594459364022, 70.48043265079806, 29.638040854273328, 18.034586605769494, 16.96992709658535, 21.502660390112126, 9.723492950095968, 11.026759596254259, 8.693356104672628, 7.941977602267417, 7.533321354399126, 8.765726192599905, 12.622316812912901, 9.071179687363415, 8.238451094492246, 7.69700878261116, 8.234950803871174, 6.67346278727658, 8.671145940632577, 8.062110962754714, 8.9123914600899, 7.289057013867716, 6.28370260069458, 7.863757054950156, 6.2937086519906735, 8.703012933792746, 6.864077110340586, 6.3409547628256036, 5.990314639692139, 5.812572944935212, 5.943757236928481, 10.819303138660791, 49.24801317224788, 21.663176328932387, 15.789764155319455, 33.78509711355214, 20.470117395726675, 21.315998559668103, 11.849764280710309, 25.122949124515593, 47.492397889632606, 41.47965222092114, 26.46201742392865, 24.246152663764306, 46.302954492403885, 96.00485981368743, 15.340737851714062, 131.2773352990534, 216.00840012222739, 43.83613462399558, 102.7992104496882, 218.86899570844585, 215.9457151184376, 27.615388198097314, 66.92058115694918, 22.581795722597985, 2872.647507262863, 5802.02840806378, 312.33096279984693, 2398.7014550045574, 1551.858457667317, 1657.2748108769115, 540.5783366018667], \"Category\": [\"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"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\", \"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\", \"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\", \"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\", \"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\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\"], \"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, -6.59089994430542, -8.075900077819824, -7.660799980163574, -8.318900108337402, -8.133000373840332, -7.801700115203857, -8.617300033569336, -8.617500305175781, -8.738699913024902, -8.25529956817627, -8.752300262451172, -8.671299934387207, -8.768400192260742, -8.787099838256836, -8.14680004119873, -8.678799629211426, -7.850500106811523, -8.929499626159668, -8.557900428771973, -8.78439998626709, -8.515600204467773, -8.576800346374512, -8.937800407409668, -9.01729965209961, -9.03339958190918, -8.215900421142578, -8.800100326538086, -8.889900207519531, -9.14169979095459, -8.988699913024902, -8.53320026397705, -8.661399841308594, -7.1331000328063965, -7.500400066375732, -7.7993998527526855, -5.855400085449219, -7.520899772644043, -7.785399913787842, -5.934700012207031, -7.207399845123291, -7.802700042724609, -5.646399974822998, -5.668499946594238, -8.19729995727539, -5.852700233459473, -5.9899001121521, -6.172599792480469, -6.6793999671936035, -7.051400184631348, -7.8632001876831055, -5.72189998626709, -7.191999912261963, -6.223299980163574, -5.40749979019165, -6.580699920654297, -6.5142998695373535, -7.126699924468994, -6.172399997711182, -6.481299877166748, -7.328999996185303, -6.335100173950195, -6.7692999839782715, -6.896999835968018, -5.98390007019043, -6.902299880981445, -6.236999988555908, -4.57480001449585, -6.301599979400635, -5.556300163269043, -6.372700214385986, -6.413300037384033, -5.920300006866455, -6.071499824523926, -5.608699798583984, -6.3256001472473145, -5.403800010681152, -5.889999866485596, -5.539899826049805, -4.906000137329102, -5.8917999267578125, -5.674099922180176, -5.575500011444092, -5.478799819946289, -5.902900218963623, -5.612299919128418, -5.629899978637695, -5.98769998550415, -5.705900192260742, -5.810999870300293, -5.855400085449219, -5.971099853515625, -5.917099952697754, -5.956299781799316, -5.959400177001953, -7.678999900817871, -7.679299831390381, -7.984499931335449, -8.196399688720703, -8.30720043182373, -8.309800148010254, -8.256099700927734, -8.178099632263184, -8.107999801635742, -8.538000106811523, -8.636699676513672, -8.163700103759766, -8.49120044708252, -8.684200286865234, -7.978700160980225, -7.1682000160217285, -8.355600357055664, -8.425600051879883, -8.568499565124512, -8.566399574279785, -8.781000137329102, -8.633099555969238, -7.82480001449585, -6.759200096130371, -8.623600006103516, -8.77239990234375, -8.816100120544434, -8.761899948120117, -8.819499969482422, -7.957799911499023, -7.990200042724609, -8.242899894714355, -8.414899826049805, -8.223899841308594, -7.750999927520752, -7.7270002365112305, -8.139599800109863, -6.736400127410889, -7.7829999923706055, -7.162899971008301, -7.988500118255615, -7.756100177764893, -7.565800189971924, -7.290999889373779, -7.60099983215332, -7.719299793243408, -7.490499973297119, -6.369999885559082, -5.9095001220703125, -7.8846001625061035, -7.182700157165527, -6.001699924468994, -7.165500164031982, -5.333899974822998, -6.434100151062012, -7.225900173187256, -6.243899822235107, -7.139500141143799, -5.451399803161621, -6.5894999504089355, -5.597700119018555, -5.625999927520752, -7.378300189971924, -5.081900119781494, -5.2307000160217285, -5.447000026702881, -4.6768999099731445, -5.311600208282471, -4.972700119018555, -5.716300010681152, -5.099800109863281, -6.805500030517578, -5.312699794769287, -5.223499774932861, -6.258699893951416, -5.778200149536133, -6.120500087738037, -5.710400104522705, -6.378200054168701, -5.640399932861328, -5.604899883270264, -5.913000106811523, -5.890500068664551, -5.717199802398682, -6.086699962615967, -5.912799835205078, -5.841700077056885, -5.71750020980835, -5.8557000160217285, -5.98799991607666, -5.961999893188477, -7.93149995803833, -7.694300174713135, -7.921500205993652, -7.582499980926514, -8.039600372314453, -8.21560001373291, -7.710100173950195, -8.093199729919434, -8.254300117492676, -7.8404998779296875, -8.288100242614746, -8.415499687194824, -8.22439956665039, -8.255999565124512, -8.244400024414062, -8.527899742126465, -8.570199966430664, -8.445099830627441, -8.362199783325195, -8.621800422668457, -8.538800239562988, -8.232000350952148, -8.603500366210938, -8.71619987487793, -8.69480037689209, -7.888999938964844, -8.749099731445312, -8.168899536132812, -8.504799842834473, -8.776000022888184, -7.2067999839782715, -8.053999900817871, -6.3003997802734375, -7.3119001388549805, -6.905900001525879, -7.680200099945068, -7.993000030517578, -7.691999912261963, -5.655799865722656, -4.677999973297119, -6.57919979095459, -7.400199890136719, -6.418099880218506, -6.75, -7.238699913024902, -5.809599876403809, -7.6869001388549805, -6.823999881744385, -7.609300136566162, -5.798999786376953, -6.2718000411987305, -5.94950008392334, -7.178299903869629, -6.218299865722656, -5.920400142669678, -4.793799877166748, -6.414299964904785, -5.950900077819824, -5.039599895477295, -5.788000106811523, -6.902599811553955, -5.627799987792969, -5.423500061035156, -6.7195000648498535, -5.348800182342529, -6.719699859619141, -6.545300006866455, -6.122200012207031, -5.280700206756592, -5.742800235748291, -5.48960018157959, -5.443900108337402, -5.242099761962891, -5.846399784088135, -5.317399978637695, -5.690100193023682, -5.099999904632568, -5.404600143432617, -5.545300006866455, -5.796599864959717, -5.881800174713135, -5.866399765014648, -5.772799968719482, -5.787199974060059, -5.889699935913086, -7.344399929046631, -7.460999965667725, -7.041600227355957, -7.903600215911865, -7.802700042724609, -7.957699775695801, -7.960400104522705, -8.034299850463867, -6.3927998542785645, -7.822800159454346, -8.063799858093262, -8.1766996383667, -7.5680999755859375, -7.639800071716309, -8.351799964904785, -7.810100078582764, -8.334199905395508, -8.25979995727539, -8.3927001953125, -8.250900268554688, -8.37030029296875, -8.338299751281738, -6.8582000732421875, -8.495100021362305, -8.534000396728516, -8.44279956817627, -8.523099899291992, -6.9369001388549805, -8.531900405883789, -8.640299797058105, -7.137199878692627, -8.209500312805176, -6.912499904632568, -7.1442999839782715, -7.093900203704834, -6.35099983215332, -7.245800018310547, -7.479499816894531, -7.622000217437744, -7.660999774932861, -7.934199810028076, -4.5295000076293945, -6.807199954986572, -5.3109002113342285, -7.248300075531006, -5.855100154876709, -5.814499855041504, -5.71750020980835, -6.517199993133545, -5.757500171661377, -5.383600234985352, -4.997499942779541, -5.90310001373291, -5.909900188446045, -4.933800220489502, -5.6757001876831055, -6.345300197601318, -6.105599880218506, -5.044099807739258, -4.627999782562256, -5.129799842834473, -6.379799842834473, -4.640600204467773, -6.127799987792969, -5.854800224304199, -5.958899974822998, -5.2027997970581055, -5.361199855804443, -5.980100154876709, -5.787899971008301, -5.428899765014648, -4.7469000816345215, -6.053899765014648, -5.174099922180176, -5.692800045013428, -5.450099945068359, -5.308300018310547, -5.548600196838379, -5.425300121307373, -5.468599796295166, -5.694300174713135, -5.593800067901611, -5.688399791717529, -5.8053998947143555, -5.810299873352051, -7.189899921417236, -6.990600109100342, -7.337200164794922, -7.338399887084961, -7.557000160217285, -7.563499927520752, -7.54010009765625, -7.579999923706055, -7.776100158691406, -7.296500205993652, -7.8282999992370605, -7.736700057983398, -7.914999961853027, -7.859300136566162, -7.927599906921387, -7.864999771118164, -7.763199806213379, -7.409299850463867, -7.731400012969971, -7.921899795532227, -6.88129997253418, -8.074000358581543, -8.02929973602295, -8.10949993133545, -7.88539981842041, -8.173399925231934, -8.022100448608398, -8.152899742126465, -7.842199802398682, -8.234000205993652, -7.502999782562256, -6.106900215148926, -5.928699970245361, -6.1757001876831055, -4.979499816894531, -5.250400066375732, -5.151500225067139, -5.606599807739258, -5.879700183868408, -6.577400207519531, -5.606200218200684, -4.941800117492676, -5.218900203704834, -6.146299839019775, -5.791100025177002, -6.2220001220703125, -7.312399864196777, -6.662099838256836, -7.172900199890137, -5.787600040435791, -6.268400192260742, -4.922999858856201, -5.6219000816345215, -5.620500087738037, -6.007900238037109, -5.932600021362305, -6.225200176239014, -6.721099853515625, -5.462500095367432, -6.223400115966797, -6.537300109863281, -5.316500186920166, -6.251299858093262, -5.376299858093262, -6.207200050354004, -5.577499866485596, -5.634699821472168, -5.061600208282471, -5.591300010681152, -5.609000205993652, -5.677199840545654, -5.7266998291015625, -5.892000198364258, -5.935800075531006, -5.938700199127197, -5.973499774932861, -6.002900123596191, -6.036099910736084, -6.708899974822998, -6.708899974822998, -6.988800048828125, -6.762800216674805, -7.299099922180176, -7.201399803161621, -7.27269983291626, -7.542600154876709, -7.17140007019043, -7.519700050354004, -7.3105998039245605, -7.32480001449585, -5.656700134277344, -7.293600082397461, -7.739799976348877, -7.618199825286865, -7.966899871826172, -7.898600101470947, -7.944799900054932, -6.392499923706055, -8.070500373840332, -8.081999778747559, -8.117300033569336, -7.212200164794922, -7.993599891662598, -7.6722002029418945, -8.07960033416748, -7.8628997802734375, -8.130599975585938, -8.01200008392334, -4.472400188446045, -4.566800117492676, -6.369900226593018, -6.8927998542785645, -6.198400020599365, -6.186999797821045, -6.939199924468994, -5.616799831390381, -6.490499973297119, -5.584400177001953, -7.14169979095459, -6.626399993896484, -6.581200122833252, -5.1168999671936035, -5.46750020980835, -5.956099987030029, -6.225299835205078, -5.389599800109863, -5.969200134277344, -6.876200199127197, -6.659800052642822, -5.57889986038208, -6.458099842071533, -6.71120023727417, -5.872000217437744, -6.003399848937988, -5.6545000076293945, -5.966599941253662, -6.046599864959717, -6.125999927520752, -5.32420015335083, -5.664000034332275, -4.814700126647949, -6.342199802398682, -5.999300003051758, -6.0106000900268555, -5.078999996185303, -5.571499824523926, -6.143799781799316, -5.76639986038208, -5.894000053405762, -6.10290002822876, -6.171800136566162, -7.279799938201904, -7.059700012207031, -7.474899768829346, -7.559500217437744, -7.229700088500977, -7.416299819946289, -7.737500190734863, -7.656099796295166, -7.877900123596191, -7.983699798583984, -7.796800136566162, -7.988900184631348, -8.095000267028809, -8.068300247192383, -8.074000358581543, -7.959400177001953, -7.962500095367432, -8.209199905395508, -8.235300064086914, -7.901299953460693, -7.833600044250488, -8.150400161743164, -8.081199645996094, -8.372699737548828, -8.207900047302246, -8.34179973602295, -8.410599708557129, -8.263099670410156, -8.378800392150879, -8.051300048828125, -7.807499885559082, -7.736700057983398, -6.643799781799316, -7.85129976272583, -8.044899940490723, -7.5971999168396, -7.491199970245361, -5.786300182342529, -6.815000057220459, -6.599899768829346, -7.093299865722656, -7.563300132751465, -7.406899929046631, -6.339900016784668, -6.903299808502197, -7.138999938964844, -6.218299865722656, -5.829800128936768, -7.420199871063232, -7.022299766540527, -6.956999778747559, -5.442399978637695, -6.762899875640869, -6.248000144958496, -7.169400215148926, -6.589600086212158, -6.744800090789795, -6.6493000984191895, -7.110000133514404, -4.935200214385986, -5.433599948883057, -5.579400062561035, -5.5432000160217285, -4.9720001220703125, -5.623000144958496, -5.242499828338623, -5.9405999183654785, -6.261300086975098, -5.079899787902832, -5.902100086212158, -5.50629997253418, -5.426400184631348, -5.627399921417236, -5.800000190734863, -6.479700088500977, -5.918000221252441, -6.334000110626221, -5.8206000328063965, -6.098299980163574, -5.936100006103516, -5.868599891662598, -6.125999927520752, -6.167200088500977, -6.06279993057251, -5.883900165557861, -6.090099811553955, -6.007199764251709, -6.041299819946289, -6.050899982452393, -6.092100143432617, -6.101500034332275, -6.080999851226807, -6.924300193786621, -7.065700054168701, -7.149799823760986, -6.717199802398682, -7.008399963378906, -7.350299835205078, -6.935800075531006, -6.245800018310547, -7.0655999183654785, -7.224599838256836, -7.466100215911865, -7.2667999267578125, -6.249300003051758, -7.366000175476074, -6.379700183868408, -7.716400146484375, -7.324999809265137, -6.6717000007629395, -7.459799766540527, -7.829599857330322, -6.647799968719482, -7.635900020599365, -7.693399906158447, -6.457300186157227, -7.842599868774414, -7.804299831390381, -6.4653000831604, -7.68149995803833, -7.900199890136719, -5.844600200653076, -5.917900085449219, -7.123000144958496, -4.968800067901611, -6.953100204467773, -6.6006999015808105, -4.904900074005127, -5.758800029754639, -6.4868998527526855, -6.063300132751465, -5.661499977111816, -5.606900215148926, -6.267000198364258, -4.338099956512451, -4.969299793243408, -5.881999969482422, -5.353499889373779, -5.698999881744385, -4.472599983215332, -5.208799839019775, -6.217100143432617, -4.849899768829346, -5.642199993133545, -5.502299785614014, -5.663000106811523, -4.906000137329102, -5.7845001220703125, -5.79449987411499, -5.836599826812744, -5.740699768066406, -6.1107001304626465, -5.861999988555908, -5.58489990234375, -5.220200061798096, -5.7947001457214355, -5.871699810028076, -5.241300106048584, -5.491799831390381, -5.6757001876831055, -5.798099994659424, -5.79040002822876, -7.059899806976318, -7.188799858093262, -7.618199825286865, -7.771500110626221, -7.29010009765625, -7.797100067138672, -7.861299991607666, -7.216899871826172, -7.664400100708008, -7.9105000495910645, -7.630899906158447, -7.7153000831604, -8.094400405883789, -8.101400375366211, -8.106399536132812, -8.027799606323242, -8.123600006103516, -7.953700065612793, -7.926499843597412, -8.244600296020508, -7.925899982452393, -8.298999786376953, -8.327400207519531, -8.17870044708252, -8.362899780273438, -8.206899642944336, -8.099499702453613, -7.0177001953125, -8.336299896240234, -8.369799613952637, -5.638299942016602, -7.690100193023682, -5.243100166320801, -7.815199851989746, -7.85830020904541, -7.630899906158447, -7.7505998611450195, -7.671500205993652, -6.96120023727417, -6.394899845123291, -6.608099937438965, -6.61929988861084, -4.250400066375732, -5.600500106811523, -7.026800155639648, -6.872399806976318, -5.91540002822876, -5.673999786376953, -5.978400230407715, -7.27239990234375, -5.255899906158447, -4.8597002029418945, -6.867700099945068, -4.79010009765625, -4.225100040435791, -5.776700019836426, -6.380099773406982, -7.344900131225586, -5.996200084686279, -7.32289981842041, -6.757900238037109, -5.4583001136779785, -6.89769983291626, -5.669400215148926, -6.615099906921387, -6.050600051879883, -5.353799819946289, -6.3755998611450195, -5.999100208282471, -6.297900199890137, -5.595300197601318, -5.589000225067139, -5.614099979400635, -5.89769983291626, -5.428999900817871, -6.098599910736084, -6.126699924468994, -5.875500202178955, -6.123600006103516, -6.082900047302246, -5.954100131988525, -6.068600177764893, -5.855000019073486, -6.012499809265137, -5.9770002365112305, -6.015600204467773, -5.890500068664551, -6.0096001625061035, -6.248700141906738, -6.349400043487549, -6.613100051879883, -6.5289998054504395, -6.828999996185303, -7.055300235748291, -7.139200210571289, -6.842899799346924, -7.134399890899658, -7.359899997711182, -7.338200092315674, -7.292900085449219, -7.517499923706055, -7.631800174713135, -6.629300117492676, -7.593900203704834, -7.704599857330322, -7.47790002822876, -7.382999897003174, -7.750100135803223, -7.110300064086914, -7.503799915313721, -7.166200160980225, -7.9394001960754395, -7.77370023727417, -7.679299831390381, -7.6392998695373535, -6.83519983291626, -7.704100131988525, -7.389500141143799, -7.093400001525879, -6.707499980926514, -6.437900066375732, -7.4567999839782715, -5.178999900817871, -7.017399787902832, -7.093200206756592, -6.389999866485596, -5.961699962615967, -5.6346001625061035, -6.480299949645996, -5.250899791717529, -6.766499996185303, -6.833000183105469, -6.444699764251709, -6.215099811553955, -6.8231000900268555, -5.955900192260742, -6.576600074768066, -6.506800174713135, -6.383999824523926, -6.922100067138672, -6.775100231170654, -4.869999885559082, -6.532899856567383, -6.525000095367432, -5.476900100708008, -6.347899913787842, -5.7530999183654785, -5.600299835205078, -5.985400199890137, -5.558700084686279, -5.92579984664917, -5.73330020904541, -5.803400039672852, -6.2480998039245605, -6.17519998550415, -6.115900039672852, -6.139800071716309, -6.1859002113342285, -6.092100143432617, -6.239799976348877, -6.313799858093262, -6.332499980926514, -6.319499969482422, -6.2845001220703125, -6.298399925231934, -6.323299884796143, -6.326300144195557, -6.302700042724609, -7.343500137329102, -7.313499927520752, -5.4019999504089355, -7.701399803161621, -7.546299934387207, -7.772799968719482, -7.692599773406982, -7.7291998863220215, -6.66540002822876, -7.952099800109863, -7.728400230407715, -7.140500068664551, -7.729700088500977, -7.443299770355225, -7.919099807739258, -7.964799880981445, -8.056500434875488, -8.069499969482422, -8.194199562072754, -8.145400047302246, -8.069999694824219, -7.868199825286865, -8.221500396728516, -8.180399894714355, -8.114800453186035, -8.252799987792969, -8.261300086975098, -8.201600074768066, -7.049300193786621, -7.815299987792969, -8.079500198364258, -8.083499908447266, -6.921500205993652, -7.459000110626221, -6.186699867248535, -6.237500190734863, -7.070400238037109, -7.865600109100342, -5.077700138092041, -7.142600059509277, -6.124199867248535, -6.436200141906738, -6.188700199127197, -5.254300117492676, -6.365300178527832, -6.594200134277344, -5.9720001220703125, -5.737400054931641, -6.1528000831604, -5.043499946594238, -6.212800025939941, -5.555699825286865, -6.997000217437744, -6.179200172424316, -4.823999881744385, -6.417399883270264, -4.3694000244140625, -6.1956000328063965, -5.157100200653076, -5.207900047302246, -6.371200084686279, -6.065700054168701, -5.570499897003174, -5.433599948883057, -5.286399841308594, -5.587500095367432, -5.336999893188477, -6.115699768066406, -5.800600051879883, -5.104300022125244, -5.9207000732421875, -5.853300094604492, -6.1066999435424805, -5.79580020904541, -5.900199890136719, -5.9191999435424805, -5.871300220489502, -6.013000011444092, -6.017600059509277, -6.041299819946289, -6.028500080108643, -6.0929999351501465, -6.674300193786621, -6.561200141906738, -6.704500198364258, -7.148600101470947, -7.394700050354004, -6.395699977874756, -6.931300163269043, -6.246699810028076, -7.165200233459473, -7.481800079345703, -7.261000156402588, -7.660299777984619, -6.057600021362305, -7.280799865722656, -7.827400207519531, -7.386300086975098, -7.838699817657471, -7.432600021362305, -7.696199893951416, -7.785699844360352, -7.69320011138916, -7.848100185394287, -7.991799831390381, -7.923399925231934, -6.821499824523926, -8.045000076293945, -7.939899921417236, -8.118900299072266, -7.743599891662598, -8.109600067138672, -5.820400238037109, -6.890399932861328, -7.42140007019043, -7.26140022277832, -7.249100208282471, -6.934599876403809, -7.410399913787842, -7.096700191497803, -7.04040002822876, -6.862800121307373, -6.202199935913086, -6.619999885559082, -6.480000019073486, -6.531099796295166, -5.110199928283691, -6.468599796295166, -5.444300174713135, -5.309999942779541, -6.8180999755859375, -5.214099884033203, -5.1930999755859375, -6.138000011444092, -6.671000003814697, -6.884300231933594, -5.4430999755859375, -5.40369987487793, -6.14870023727417, -6.16510009765625, -5.58620023727417, -6.060400009155273, -5.09660005569458, -6.332399845123291, -5.741499900817871, -5.57450008392334, -5.476200103759766, -5.900199890136719, -5.0055999755859375, -5.622000217437744, -5.250699996948242, -6.190499782562256, -5.613500118255615, -5.4369001388549805, -6.186699867248535, -6.0447998046875, -5.508800029754639, -5.683700084686279, -5.663000106811523, -5.9629998207092285, -5.859799861907959, -5.948800086975098, -5.995800018310547, -6.103700160980225, -7.191100120544434, -7.247099876403809, -7.126699924468994, -7.377200126647949, -7.388899803161621, -7.562600135803223, -7.403900146484375, -7.568699836730957, -7.389100074768066, -7.561100006103516, -7.770899772644043, -7.547399997711182, -7.340099811553955, -7.560500144958496, -7.840799808502197, -7.613500118255615, -7.685999870300293, -7.942200183868408, -7.977099895477295, -6.83459997177124, -7.78849983215332, -7.929500102996826, -7.902900218963623, -7.588200092315674, -8.111100196838379, -7.8927998542785645, -7.939599990844727, -7.30709981918335, -8.152199745178223, -8.161100387573242, -7.416500091552734, -6.8694000244140625, -7.123499870300293, -7.776500225067139, -6.960000038146973, -7.193900108337402, -6.899499893188477, -7.411200046539307, -7.666100025177002, -6.959700107574463, -7.428800106048584, -5.807000160217285, -6.724699974060059, -6.790500164031982, -6.579599857330322, -6.10860013961792, -5.684299945831299, -6.895400047302246, -5.311699867248535, -6.919099807739258, -5.401299953460693, -6.664400100708008, -7.284900188446045, -7.183700084686279, -6.517399787902832, -5.831099987030029, -6.026299953460693, -6.60230016708374, -5.160600185394287, -6.449999809265137, -5.6143999099731445, -6.538599967956543, -5.5970001220703125, -6.395100116729736, -5.663000106811523, -6.229599952697754, -6.139800071716309, -6.127999782562256, -5.9394001960754395, -6.094200134277344, -6.535699844360352, -6.191199779510498, -6.242000102996826, -6.2480998039245605, -6.249499797821045, -6.427499771118164, -6.381899833679199, -6.305699825286865, -6.344699859619141, -6.415200233459473, -6.406499862670898, -6.457099914550781, -6.4980998039245605, -6.667900085449219, -6.433700084686279, -6.788400173187256, -6.112299919128418, -6.494500160217285, -7.025100231170654, -6.49970006942749, -6.020199775695801, -6.002799987792969, -6.019100189208984, -6.6539998054504395, -7.496699810028076, -7.462800025939941, -5.967100143432617, -7.6631999015808105, -7.826099872589111, -7.845600128173828, -7.496799945831299, -5.8821001052856445, -7.884099960327148, -7.900000095367432, -7.81879997253418, -7.453000068664551, -7.968599796295166, -7.99560022354126, -7.816500186920166, -6.907899856567383, -7.87939977645874, -8.100799560546875, -7.279900074005127, -5.612199783325195, -5.763800144195557, -7.392399787902832, -6.224100112915039, -5.617000102996826, -7.320899963378906, -7.028600215911865, -7.435200214385986, -7.138299942016602, -6.304900169372559, -5.8607001304626465, -6.748300075531006, -4.89739990234375, -6.926199913024902, -6.524600028991699, -5.987199783325195, -5.427700042724609, -6.064300060272217, -5.961699962615967, -6.686500072479248, -6.308899879455566, -5.549499988555908, -6.189599990844727, -5.401100158691406, -6.220900058746338, -5.559000015258789, -6.124499797821045, -6.069699764251709, -5.973400115966797, -5.934500217437744, -5.765999794006348, -6.182400226593018, -5.715099811553955, -5.976600170135498, -5.864999771118164, -6.0329999923706055, -5.999899864196777, -6.035900115966797, -6.1493000984191895, -5.874000072479248, -6.070899963378906, -6.690999984741211, -6.845799922943115, -7.055699825286865, -6.849699974060059, -7.159800052642822, -7.197700023651123, -7.2144999504089355, -7.103400230407715, -6.778800010681152, -7.3628997802734375, -7.404600143432617, -7.4141998291015625, -6.723800182342529, -6.853600025177002, -7.48360013961792, -7.4191999435424805, -7.368800163269043, -7.496799945831299, -7.433199882507324, -7.448599815368652, -7.2932000160217285, -7.030900001525879, -7.502900123596191, -7.461299896240234, -7.56879997253418, -6.729599952697754, -7.784900188446045, -7.353099822998047, -4.1072998046875, -6.11870002746582, -7.273399829864502, -6.587500095367432, -6.719299793243408, -7.025000095367432, -6.617400169372559, -7.035900115966797, -7.108500003814697, -6.6290998458862305, -6.948800086975098, -6.44379997253418, -6.615900039672852, -6.256899833679199, -6.721799850463867, -4.730299949645996, -4.428400039672852, -4.758500099182129, -5.529200077056885, -5.859399795532227, -6.198800086975098, -6.292399883270264, -5.617099761962891, -5.9293999671936035, -5.604899883270264, -5.5528998374938965, -5.867199897766113, -5.889999866485596, -5.635300159454346, -6.181700229644775, -5.721099853515625, -5.958499908447266, -5.831699848175049, -5.9222002029418945, -5.872600078582764, -6.067500114440918, -5.908100128173828, -6.18179988861084, -6.071199893951416, -6.158100128173828, -6.1153998374938965, -6.101200103759766, -6.144400119781494, -6.150400161743164, -6.1367998123168945, -6.345799922943115, -6.598800182342529, -6.672900199890137, -6.648099899291992, -6.945799827575684, -7.0782999992370605, -7.280700206756592, -7.287199974060059, -6.919099807739258, -7.216100215911865, -7.488999843597412, -7.393499851226807, -7.355199813842773, -7.3317999839782715, -7.587299823760986, -7.660900115966797, -7.6508002281188965, -7.211100101470947, -7.540500164031982, -7.394899845123291, -7.835100173950195, -7.433499813079834, -7.5671000480651855, -7.971099853515625, -7.533699989318848, -7.995299816131592, -6.806000232696533, -7.251399993896484, -7.838399887084961, -7.192699909210205, -3.558799982070923, -6.063899993896484, -7.571100234985352, -7.018599987030029, -6.241799831390381, -6.855999946594238, -6.415500164031982, -5.2017998695373535, -6.770500183105469, -4.752900123596191, -5.128699779510498, -4.788099765777588, -5.503799915313721, -6.583600044250488, -6.793000221252441, -5.355899810791016, -6.366199970245361, -6.161499977111816, -6.249899864196777, -6.20389986038208, -5.81220006942749, -6.503200054168701, -5.348100185394287, -5.631100177764893, -4.888999938964844, -5.909999847412109, -5.883399963378906, -4.872700214385986, -5.887199878692627, -6.1992998123168945, -5.496699810028076, -5.471499919891357, -5.486100196838379, -5.432199954986572, -5.177199840545654, -5.406599998474121, -6.046899795532227, -5.667399883270264, -5.926700115203857, -5.910600185394287, -5.873499870300293, -6.09660005569458, -6.007599830627441, -5.869900226593018, -6.023099899291992, -6.025000095367432, -6.288899898529053, -6.368199825286865, -6.48330020904541, -6.1880998611450195, -6.605899810791016, -6.972700119018555, -6.21120023727417, -7.092899799346924, -6.872799873352051, -6.715700149536133, -7.056300163269043, -7.100399971008301, -7.183899879455566, -6.966100215911865, -6.760700225830078, -6.760700225830078, -6.865900039672852, -7.340199947357178, -7.333199977874756, -6.626100063323975, -7.285399913787842, -7.347300052642822, -6.8491997718811035, -6.086400032043457, -7.091400146484375, -7.116700172424316, -7.269100189208984, -7.040800094604492, -7.275899887084961, -6.765600204467773, -4.503300189971924, -5.538400173187256, -5.957499980926514, -6.360400199890137, -6.564799785614014, -6.124100208282471, -6.0335001945495605, -5.217199802398682, -5.7957000732421875, -5.267600059509277, -6.678999900817871, -6.676799774169922, -6.287600040435791, -5.8470001220703125, -5.817699909210205, -6.474400043487549, -5.900899887084961, -4.79040002822876, -5.606400012969971, -6.4868998527526855, -6.387499809265137, -6.574399948120117, -5.373000144958496, -5.3769001960754395, -5.185699939727783, -5.873700141906738, -5.649199962615967, -5.946300029754639, -5.992800235748291, -5.559999942779541, -5.639100074768066, -5.513599872589111, -5.9430999755859375, -6.087699890136719, -6.211900234222412, -6.191400051116943, -6.2104997634887695, -6.682499885559082, -6.7505998611450195, -6.654200077056885, -6.841700077056885, -6.975599765777588, -6.329400062561035, -7.136000156402588, -6.88640022277832, -7.157800197601318, -7.20359992980957, -7.131100177764893, -7.2530999183654785, -7.240499973297119, -7.386300086975098, -6.916600227355957, -7.609099864959717, -6.753799915313721, -7.624599933624268, -7.524199962615967, -7.563300132751465, -7.469099998474121, -7.645999908447266, -7.5040998458862305, -7.5177998542785645, -6.931399822235107, -6.198200225830078, -7.601099967956543, -7.793600082397461, -7.856500148773193, -7.964700222015381, -7.3933000564575195, -6.262499809265137, -7.291200160980225, -5.453999996185303, -6.5346999168396, -6.623300075531006, -4.94890022277832, -4.915900230407715, -5.02269983291626, -5.56850004196167, -7.068999767303467, -6.424600124359131, -6.3653998374938965, -5.6717000007629395, -6.160600185394287, -5.408100128173828, -6.40880012512207, -6.4770002365112305, -5.424799919128418, -5.607800006866455, -6.2052001953125, -6.670499801635742, -5.657800197601318, -5.439300060272217, -6.4847002029418945, -5.420599937438965, -5.1743998527526855, -5.814300060272217, -5.787300109863281, -5.79010009765625, -5.695099830627441, -6.00570011138916, -5.856100082397461, -5.749300003051758, -5.635799884796143, -6.008699893951416, -5.976900100708008, -5.896699905395508, -6.127900123596191, -5.990900039672852, -5.9822001457214355, -6.103600025177002, -6.039999961853027, -6.134900093078613, -4.529600143432617, -4.940800189971924, -4.945300102233887, -5.0594000816345215, -5.211299896240234, -5.213900089263916, -5.325500011444092, -5.377500057220459, -5.403299808502197, -5.475599765777588, -5.498199939727783, -5.684299945831299, -5.853000164031982, -5.8846001625061035, -5.841000080108643, -5.96150016784668, -6.0644001960754395, -6.0680999755859375, -6.146900177001953, -6.1855998039245605, -6.292500019073486, -6.451000213623047, -6.4679999351501465, -6.386000156402588, -6.371600151062012, -6.4893999099731445, -6.4934000968933105, -6.508200168609619, -6.488500118255615, -6.574699878692627, -6.383600234985352, -6.263299942016602, -6.1168999671936035, -6.415299892425537, -5.6331000328063965, -6.147299766540527, -6.211100101470947, -5.98769998550415, -6.810999870300293, -6.691800117492676, -6.930600166320801, -7.031099796295166, -7.093999862670898, -6.944200038909912, -6.580100059509277, -6.914400100708008, -7.01140022277832, -7.083199977874756, -7.018400192260742, -7.229499816894531, -6.969799995422363, -7.04449987411499, -6.946199893951416, -7.149400234222412, -7.298799991607666, -7.076900005340576, -7.300899982452393, -6.9791998863220215, -7.2245001792907715, -7.30709981918335, -7.364299774169922, -7.399600028991699, -7.377799987792969, -6.782899856567383, -5.309299945831299, -6.1442999839782715, -6.516200065612793, -5.855400085449219, -6.298099994659424, -6.284999847412109, -6.7754998207092285, -6.182400226593018, -5.82289981842041, -5.924799919128418, -6.3190999031066895, -6.383500099182129, -6.0584001541137695, -5.899799823760986, -6.764999866485596, -5.931000232696533, -5.786200046539307, -6.381199836730957, -6.075099945068359, -5.9355998039245605, -5.998000144958496, -6.604899883270264, -6.383500099182129, -6.708199977874756, -6.135900020599365, -6.136199951171875, -6.467299938201904, -6.36329984664917, -6.440000057220459, -6.471199989318848, -6.496200084686279], \"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.8716, 1.8637, 1.8586, 1.8557, 1.8552, 1.8536, 1.8511, 1.8491, 1.8473, 1.8469, 1.8468, 1.8466, 1.8463, 1.8452, 1.8452, 1.8424, 1.8423, 1.8402, 1.8391, 1.8382, 1.8371, 1.8357, 1.8351, 1.8343, 1.8342, 1.8339, 1.8333, 1.8332, 1.8307, 1.8305, 1.8298, 1.8287, 1.8117, 1.815, 1.813, 1.7704, 1.8036, 1.8108, 1.7418, 1.7856, 1.8033, 1.6925, 1.665, 1.8154, 1.6642, 1.6694, 1.6756, 1.7063, 1.7319, 1.7881, 1.6113, 1.7311, 1.6284, 1.5424, 1.6538, 1.637, 1.7081, 1.5726, 1.6007, 1.7297, 1.5623, 1.624, 1.6456, 1.4302, 1.6121, 1.4073, 0.8836, 1.4246, 1.1719, 1.4334, 1.4409, 1.2003, 1.2293, 0.9826, 1.3424, 0.7158, 1.001, 0.7233, 0.1975, 0.986, 0.6216, 0.4913, 0.298, 0.7608, 0.1941, 0.0085, 0.7263, -0.0346, 0.1853, 0.1314, 0.6312, 0.2147, 0.2315, -0.43, 1.9019, 1.8988, 1.8987, 1.8947, 1.8908, 1.8902, 1.8878, 1.8874, 1.8871, 1.8864, 1.8835, 1.8828, 1.8822, 1.8819, 1.8817, 1.8812, 1.881, 1.8796, 1.8792, 1.8785, 1.8765, 1.8763, 1.8748, 1.8744, 1.8742, 1.8739, 1.8729, 1.8728, 1.8719, 1.8712, 1.8668, 1.8651, 1.8672, 1.8599, 1.839, 1.8258, 1.8485, 1.7414, 1.8171, 1.743, 1.824, 1.7975, 1.776, 1.7259, 1.7646, 1.7781, 1.7403, 1.5393, 1.4544, 1.8022, 1.6454, 1.375, 1.6221, 1.1472, 1.4343, 1.6281, 1.3252, 1.5845, 1.0484, 1.4002, 1.0088, 0.9556, 1.6437, 0.695, 0.7561, 0.8163, 0.4267, 0.7002, 0.4858, 0.8438, 0.4295, 1.3608, 0.4938, 0.4149, 1.0335, 0.7362, 0.9334, 0.5854, 1.0489, 0.4914, 0.4619, 0.6722, 0.6521, 0.4706, 0.804, 0.5078, 0.3336, -0.0462, 0.1406, 0.3288, 0.1577, 2.2359, 2.2355, 2.2333, 2.2327, 2.2311, 2.2299, 2.2295, 2.2289, 2.2287, 2.2268, 2.2256, 2.2235, 2.2227, 2.2211, 2.22, 2.217, 2.2169, 2.2168, 2.2147, 2.2139, 2.2135, 2.2131, 2.2129, 2.2111, 2.2088, 2.2084, 2.2076, 2.2074, 2.2066, 2.2065, 2.2036, 2.2054, 2.1837, 2.1941, 2.1805, 2.1958, 2.1965, 2.1828, 2.0974, 2.0309, 2.1261, 2.1647, 2.1102, 2.1159, 2.1397, 2.0076, 2.1666, 2.0695, 2.155, 1.9367, 1.9941, 1.9473, 2.0989, 1.9559, 1.8901, 1.6986, 1.9611, 1.8688, 1.6667, 1.7944, 2.0188, 1.72, 1.6504, 1.9685, 1.589, 1.9684, 1.91, 1.7616, 1.4785, 1.6054, 1.4343, 1.3827, 1.2646, 1.5184, 1.1049, 1.342, 0.5712, 0.85, 0.8112, 1.0887, 1.1758, 1.1338, 0.7697, 0.7142, 0.8812, 2.4439, 2.4411, 2.4325, 2.4323, 2.4316, 2.4304, 2.4301, 2.4289, 2.426, 2.426, 2.4233, 2.4232, 2.4209, 2.4189, 2.4178, 2.4174, 2.4169, 2.4163, 2.4161, 2.4145, 2.4145, 2.4124, 2.4115, 2.4113, 2.4095, 2.4094, 2.4088, 2.4057, 2.4051, 2.4043, 2.3912, 2.4005, 2.3632, 2.3598, 2.3558, 2.3223, 2.3535, 2.3629, 2.3711, 2.3731, 2.3872, 2.1119, 2.296, 2.1659, 2.3209, 2.1478, 2.1104, 2.0831, 2.1742, 1.9575, 1.8433, 1.7064, 1.9039, 1.8226, 1.5048, 1.7451, 1.9175, 1.8214, 1.3219, 1.0104, 1.2593, 1.8885, 0.8887, 1.7121, 1.5352, 1.602, 1.0518, 1.0826, 1.5785, 1.3918, 1.0726, 0.3566, 1.6214, 0.4972, 1.1337, 0.7252, 0.4685, 0.8719, 0.5866, 0.3379, 0.8482, 0.4025, 0.6284, 0.9397, 0.2565, 2.7628, 2.7627, 2.7608, 2.7597, 2.7584, 2.7574, 2.7553, 2.7524, 2.7522, 2.75, 2.75, 2.7479, 2.7474, 2.7473, 2.747, 2.7469, 2.7458, 2.7435, 2.7425, 2.7419, 2.7408, 2.7407, 2.7401, 2.7395, 2.7383, 2.7367, 2.7363, 2.7352, 2.7343, 2.7338, 2.7338, 2.7046, 2.6969, 2.681, 2.6307, 2.614, 2.5823, 2.5666, 2.566, 2.615, 2.5134, 2.422, 2.3919, 2.4771, 2.3948, 2.4629, 2.6615, 2.4883, 2.5985, 2.1908, 2.308, 1.8046, 2.0625, 2.0387, 2.0994, 2.0419, 2.1581, 2.3952, 1.6225, 2.0649, 2.1664, 0.9268, 1.879, 0.8784, 1.8221, 0.9292, 0.9661, 0.0419, -0.1328, -0.0797, -0.0389, -0.0554, 0.1748, 0.4533, -0.1322, 0.0228, 0.4986, 2.9193, 2.9128, 2.9128, 2.9101, 2.9091, 2.9049, 2.9001, 2.8994, 2.8986, 2.8966, 2.8962, 2.8957, 2.8931, 2.8889, 2.8884, 2.8834, 2.8823, 2.882, 2.8818, 2.8809, 2.8799, 2.876, 2.8756, 2.8739, 2.8736, 2.8724, 2.8708, 2.8695, 2.869, 2.8664, 2.8662, 2.8206, 2.8164, 2.8473, 2.8508, 2.8292, 2.8272, 2.8472, 2.8013, 2.8296, 2.7899, 2.8514, 2.7966, 2.7847, 2.5988, 2.622, 2.6492, 2.6803, 2.5032, 2.6076, 2.7857, 2.7213, 2.3628, 2.6398, 2.7184, 2.3735, 2.4107, 2.2435, 2.3898, 2.4087, 2.3705, 1.4034, 1.7478, 0.6438, 2.4003, 1.8748, 1.824, 0.0245, 0.6918, 1.7103, -0.237, 0.1728, -0.2964, 1.1614, 3.0094, 3.0083, 3.0021, 3.0016, 3.0003, 3.0003, 2.9984, 2.9971, 2.9968, 2.9931, 2.9874, 2.9865, 2.9865, 2.9847, 2.9839, 2.9823, 2.9809, 2.9805, 2.9789, 2.9776, 2.9775, 2.9738, 2.9723, 2.9687, 2.9682, 2.9671, 2.9668, 2.9637, 2.9634, 2.9615, 2.9611, 2.9597, 2.9481, 2.9505, 2.9551, 2.9358, 2.9164, 2.7585, 2.8445, 2.8124, 2.8464, 2.8973, 2.8445, 2.5586, 2.6972, 2.7435, 2.4392, 2.3158, 2.8069, 2.672, 2.6456, 1.9964, 2.5006, 2.2479, 2.6696, 2.2658, 2.3095, 2.1776, 2.541, 0.7032, 0.987, 1.1076, 1.048, 0.4865, 0.9585, 0.5344, 1.1832, 1.5606, 0.0236, 1.0812, 0.3002, 0.1029, 0.3594, 0.6438, 1.8053, 0.4481, 1.3866, 0.1757, 0.8043, 0.3807, 0.1982, 0.8022, 0.8921, 0.5413, -0.2127, 0.495, 0.0046, 0.1465, 0.1245, 0.2037, 0.1617, 3.0908, 3.0794, 3.077, 3.075, 3.0729, 3.0715, 3.0694, 3.0673, 3.0657, 3.0644, 3.0643, 3.0622, 3.0619, 3.0595, 3.0585, 3.0583, 3.0572, 3.0569, 3.0553, 3.0531, 3.0514, 3.0514, 3.0511, 3.0496, 3.0494, 3.049, 3.0464, 3.0458, 3.0458, 3.045, 3.0418, 3.0339, 3.0423, 3.0041, 3.0387, 3.0298, 2.9914, 3.0057, 3.0129, 2.9953, 2.9694, 2.9627, 2.9909, 2.8426, 2.8195, 2.9074, 2.8361, 2.8514, 2.6094, 2.7137, 2.9153, 2.633, 2.7814, 2.7207, 2.7578, 2.5229, 2.7754, 2.7776, 2.7468, 2.5788, 2.7724, 2.4628, 2.0692, 1.2608, 2.1295, 2.2458, -0.1378, 0.64, 0.1011, 0.8084, -0.2611, 3.2569, 3.2568, 3.2376, 3.2367, 3.2346, 3.2331, 3.2318, 3.2315, 3.2312, 3.2289, 3.2269, 3.2173, 3.2169, 3.2164, 3.2078, 3.2075, 3.2066, 3.204, 3.2034, 3.2018, 3.2012, 3.1999, 3.1985, 3.1955, 3.1954, 3.1952, 3.1947, 3.1918, 3.1915, 3.1903, 3.1752, 3.1889, 3.151, 3.1895, 3.1899, 3.184, 3.1854, 3.1769, 3.1376, 3.1028, 3.1029, 3.1033, 2.8324, 2.9336, 3.0928, 3.0613, 2.895, 2.8474, 2.8843, 3.0987, 2.6897, 2.5402, 2.9796, 2.4168, 2.1314, 2.5755, 2.7681, 3.09, 2.4999, 3.0675, 2.6845, 1.7761, 2.7642, 1.7696, 2.5224, 1.9801, 1.0685, 2.2072, 1.7215, 2.1069, 1.0054, 0.9177, 0.8297, 1.3097, 0.3775, 1.5197, 1.53, 0.7659, 1.4517, 1.2403, 0.5884, 1.1342, -0.1838, 0.7655, 0.5245, 0.7552, -0.3611, 0.4827, 3.3085, 3.3077, 3.3037, 3.3021, 3.2965, 3.2941, 3.2918, 3.289, 3.2872, 3.2838, 3.2791, 3.2784, 3.2749, 3.2735, 3.2731, 3.2703, 3.2699, 3.2695, 3.2679, 3.2676, 3.2662, 3.2573, 3.2557, 3.2545, 3.2536, 3.2533, 3.2525, 3.2522, 3.2513, 3.2511, 3.2341, 3.2113, 3.1999, 3.2415, 3.0901, 3.2094, 3.2016, 3.1028, 3.0006, 2.8879, 3.0497, 2.7807, 3.0954, 3.0775, 2.9228, 2.7863, 3.0149, 2.5046, 2.8398, 2.713, 2.3784, 3.0181, 2.8175, 0.2335, 2.4905, 2.4196, 0.6984, 2.1039, 0.9985, 0.396, 1.1566, -0.0294, 0.8165, -0.095, -0.0265, 1.4907, 1.0858, 0.7127, 0.7259, 0.7628, -0.4208, 0.4682, 1.1661, 1.3182, 0.9409, -0.1527, 0.2015, 0.4994, 0.2777, 3.3816, 3.3565, 3.3539, 3.3526, 3.3402, 3.339, 3.334, 3.3319, 3.3284, 3.3271, 3.325, 3.3234, 3.3225, 3.3213, 3.3201, 3.3199, 3.3195, 3.3175, 3.3116, 3.3065, 3.3063, 3.3049, 3.3047, 3.3041, 3.3017, 3.3016, 3.3013, 3.3006, 3.2996, 3.2995, 3.2968, 3.298, 3.298, 3.2702, 3.2792, 3.2368, 3.2301, 3.2635, 3.2911, 3.1272, 3.2449, 3.1418, 3.161, 3.0489, 2.9049, 3.0454, 3.0817, 2.9579, 2.8796, 2.9298, 2.6158, 2.9257, 2.7375, 3.1242, 2.8231, 2.309, 2.8772, 1.9871, 2.7739, 2.2186, 2.2388, 2.8274, 2.6303, 2.23, 2.1273, 1.9487, 1.7618, 1.0852, 2.3767, 1.7967, -0.0008, 1.7179, 0.9444, 2.167, -0.2664, 0.5436, 0.5823, -0.2, 0.9109, 0.9203, 1.0797, 0.4639, 0.7923, 3.3871, 3.3869, 3.3818, 3.3699, 3.3661, 3.3644, 3.3627, 3.3624, 3.3574, 3.3573, 3.3542, 3.3538, 3.3496, 3.3483, 3.3444, 3.3441, 3.3435, 3.3423, 3.3415, 3.3402, 3.3399, 3.3384, 3.3335, 3.3312, 3.3301, 3.3296, 3.3243, 3.3239, 3.3234, 3.3232, 3.3175, 3.3162, 3.3156, 3.3058, 3.3042, 3.2902, 3.3077, 3.2778, 3.2711, 3.2444, 3.1533, 3.196, 3.1762, 3.1801, 2.9599, 3.1623, 2.9576, 2.8568, 3.2042, 2.79, 2.7568, 2.988, 3.1445, 3.1984, 2.5798, 2.5573, 2.8806, 2.8707, 2.5271, 2.7531, 2.1304, 2.9061, 2.4813, 2.3524, 2.2181, 2.4048, 1.2377, 1.8169, 1.1931, 2.6411, 1.3232, 0.5749, 2.4485, 1.9859, 0.0205, 0.5709, 0.0082, 0.5795, -0.7563, 0.239, 0.5007, 1.6112, 3.3827, 3.3797, 3.3767, 3.3758, 3.3713, 3.3651, 3.3651, 3.3621, 3.3578, 3.3572, 3.3539, 3.3532, 3.3526, 3.3521, 3.3521, 3.3511, 3.3468, 3.3456, 3.3432, 3.3416, 3.3403, 3.339, 3.3373, 3.3356, 3.333, 3.3321, 3.3316, 3.3312, 3.3296, 3.3289, 3.3233, 3.3165, 3.3173, 3.3202, 3.2042, 3.2087, 3.1496, 3.2422, 3.2827, 3.1021, 3.2195, 2.7207, 2.9528, 2.9328, 2.737, 2.4081, 2.1212, 2.8482, 1.6382, 2.8612, 1.599, 2.5765, 3.1141, 2.9963, 2.2449, 1.3758, 1.5851, 2.1699, -0.0571, 1.8857, 0.5052, 1.9778, 0.0743, 1.5311, -0.2045, 0.8664, 0.5239, 0.476, -0.41, -0.0824, 1.5668, -0.1244, 0.0013, -0.0603, -0.2627, 0.7772, 0.3261, -0.4992, -0.3484, -0.1606, -0.6296, -0.2817, 0.2611, 3.6207, 3.6185, 3.6168, 3.6167, 3.6132, 3.607, 3.6058, 3.5964, 3.5925, 3.5919, 3.5888, 3.5873, 3.5762, 3.5726, 3.5689, 3.5666, 3.5654, 3.5628, 3.5616, 3.5612, 3.561, 3.5584, 3.5546, 3.554, 3.5529, 3.5526, 3.5493, 3.5471, 3.543, 3.542, 3.5399, 3.5201, 3.5404, 3.4964, 3.4649, 3.5331, 3.5168, 3.5349, 3.4948, 3.3697, 3.1999, 3.3602, 2.8232, 3.3542, 3.186, 2.9442, 2.6671, 2.9245, 2.8704, 3.2217, 3.006, 2.4226, 2.8489, 2.0377, 2.8089, 2.0225, 2.6346, 2.5433, 2.3116, 1.5783, 0.6562, 2.2678, -0.0438, 0.5835, -0.7615, 0.6967, 0.0119, -0.0491, 1.703, 3.6728, 3.6611, 3.659, 3.6545, 3.6472, 3.6466, 3.6429, 3.6413, 3.6406, 3.6387, 3.6368, 3.6329, 3.6308, 3.6307, 3.6294, 3.6292, 3.6268, 3.6255, 3.6246, 3.6237, 3.6208, 3.6197, 3.6176, 3.6152, 3.6146, 3.6083, 3.6079, 3.6072, 3.6042, 3.6001, 3.5866, 3.5601, 3.5975, 3.5642, 3.5501, 3.575, 3.5287, 3.5548, 3.5665, 3.4733, 3.474, 3.2819, 3.3356, 3.1601, 3.3542, 1.266, 0.6751, 0.7709, 1.3674, 1.8158, 2.2055, 2.319, 0.8973, 1.3204, 0.5705, 0.2536, 0.861, 0.8163, 0.0031, 1.6582, -0.0498, 0.7454, 0.1551, 0.3946, 0.1392, 0.6776, -0.1312, 1.1819, 0.3674, 0.9013, 0.4661, 0.1621, 0.352, 0.2388, -0.6783, 3.7152, 3.7121, 3.7103, 3.7058, 3.6988, 3.6964, 3.6871, 3.6799, 3.6787, 3.6779, 3.6756, 3.6721, 3.6718, 3.6712, 3.6663, 3.6641, 3.6641, 3.6627, 3.6605, 3.6575, 3.6471, 3.6424, 3.6411, 3.6342, 3.633, 3.6327, 3.6312, 3.6303, 3.6235, 3.6221, 3.5574, 3.514, 3.6101, 3.5689, 3.495, 3.5548, 3.4959, 3.2962, 3.5279, 3.1969, 3.2054, 3.1237, 3.1568, 3.4394, 3.4891, 2.9623, 3.3025, 3.2077, 3.2397, 3.1696, 2.8704, 3.2332, 2.5026, 2.6645, 2.002, 2.6878, 2.6334, 1.5495, 2.5722, 2.8999, 2.0641, 1.9343, 1.8631, 1.7747, 1.1794, 1.2997, 2.5276, 1.4656, 1.6486, 1.1215, 0.6076, 2.0513, 0.9163, -0.7664, 0.4784, -0.3538, 4.0574, 4.0515, 4.0467, 4.0429, 4.042, 4.0371, 4.0357, 4.0304, 4.0299, 4.0288, 4.0278, 4.0204, 4.0176, 4.0175, 4.0158, 4.0158, 4.0145, 4.0141, 4.0138, 4.0128, 4.0127, 4.0126, 4.0126, 4.0114, 4.0109, 4.0106, 4.0103, 4.0093, 4.0074, 4.0049, 3.9378, 3.9684, 3.9765, 3.9799, 3.9677, 3.9347, 3.918, 3.8225, 3.8726, 3.7644, 3.9596, 3.9532, 3.8788, 3.7076, 3.6616, 3.8551, 3.4945, 2.8637, 3.0973, 3.7844, 3.6716, 3.8161, 2.11, 2.052, 1.68, 2.5566, 2.0421, 2.5038, 2.6164, 1.525, 1.2849, 0.6182, 1.1389, 1.5231, 2.3159, 0.2896, 0.396, 4.1066, 4.1031, 4.1024, 4.0993, 4.0923, 4.0908, 4.0827, 4.078, 4.0747, 4.0703, 4.0695, 4.0682, 4.0676, 4.0645, 4.0584, 4.0443, 4.0378, 4.0367, 4.0365, 4.0356, 4.0321, 4.0311, 4.0309, 4.0276, 4.027, 4.025, 4.0114, 4.0093, 4.0057, 4.0005, 3.9838, 3.941, 3.9749, 3.7199, 3.8235, 3.8271, 3.3693, 3.3578, 3.3816, 3.4481, 3.8931, 3.6603, 3.6246, 3.3525, 3.537, 3.2008, 3.6184, 3.5164, 2.6009, 2.7445, 3.226, 3.6264, 2.2701, 1.9607, 3.3744, 1.7123, 1.0803, 1.4126, 1.2955, 1.2421, 0.9056, 1.8759, 1.3783, 0.7522, 0.0354, 1.5666, 1.3463, 0.8096, 2.02, 0.2524, -0.3438, 1.3023, -0.9365, 0.6102, 4.2711, 4.2682, 4.2681, 4.2671, 4.2655, 4.2655, 4.2641, 4.2634, 4.2631, 4.2621, 4.2617, 4.2587, 4.2553, 4.2547, 4.2545, 4.2529, 4.2503, 4.2502, 4.2481, 4.2455, 4.2423, 4.2381, 4.2374, 4.2373, 4.2367, 4.2366, 4.2364, 4.2347, 4.2344, 4.2331, 4.1515, 3.859, 0.6741, 3.0989, 4.7473, 4.7299, 4.7269, 4.7136, 4.6839, 4.6773, 4.6763, 4.6662, 4.6561, 4.6544, 4.6539, 4.65, 4.6492, 4.6455, 4.6427, 4.6419, 4.6397, 4.6378, 4.6358, 4.6337, 4.6327, 4.6303, 4.629, 4.6266, 4.6187, 4.6153, 4.6151, 4.6099, 4.6094, 4.6052, 4.5633, 4.5496, 4.4939, 4.394, 4.4524, 4.425, 4.5216, 4.3632, 4.086, 4.1195, 4.1746, 4.1977, 3.8759, 3.3052, 4.2739, 2.9612, 2.608, 3.6078, 3.0616, 2.4454, 2.3964, 3.8462, 3.1825, 3.9441, -0.3294, -1.0327, 1.5581, -0.3765, -0.0177, -0.1147, 0.9806]}, \"token.table\": {\"Topic\": [8, 20, 6, 10, 4, 5, 10, 13, 9, 10, 7, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 18, 20, 9, 4, 9, 15, 18, 13, 17, 4, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 7, 13, 3, 20, 6, 1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 14, 17, 18, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 2, 7, 7, 10, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 4, 8, 12, 15, 7, 20, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 5, 6, 8, 10, 15, 9, 12, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 4, 3, 4, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 7, 18, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 7, 11, 3, 4, 6, 7, 9, 11, 16, 18, 20, 7, 11, 16, 18, 3, 1, 2, 6, 7, 11, 12, 13, 14, 15, 1, 2, 4, 5, 6, 7, 11, 13, 14, 15, 19, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15, 19, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 15, 8, 1, 3, 9, 10, 13, 16, 4, 7, 15, 1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 1, 2, 3, 5, 7, 9, 10, 13, 6, 11, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 17, 18, 7, 9, 18, 20, 20, 2, 6, 3, 2, 3, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 15, 6, 1, 2, 6, 7, 15, 19, 1, 2, 6, 1, 6, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 1, 2, 4, 5, 7, 8, 10, 11, 15, 16, 1, 2, 10, 14, 15, 16, 1, 2, 3, 4, 5, 6, 9, 10, 12, 14, 15, 17, 2, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 4, 17, 2, 3, 4, 9, 12, 15, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 20, 13, 1, 4, 13, 3, 4, 5, 8, 9, 13, 15, 16, 17, 18, 2, 6, 10, 12, 15, 3, 18, 20, 15, 2, 8, 9, 20, 18, 10, 3, 4, 9, 16, 1, 2, 3, 6, 7, 8, 9, 10, 13, 15, 16, 17, 8, 1, 2, 3, 4, 5, 9, 11, 12, 13, 14, 15, 17, 1, 2, 4, 5, 6, 7, 8, 12, 13, 14, 16, 20, 16, 1, 2, 3, 4, 6, 7, 8, 13, 14, 15, 4, 4, 15, 1, 2, 8, 16, 1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 15, 16, 17, 18, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 9, 20, 2, 15, 19, 19, 6, 7, 8, 9, 10, 13, 14, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 20, 10, 14, 8, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 8, 9, 12, 8, 7, 2, 8, 11, 12, 15, 20, 3, 20, 4, 13, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 18, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 17, 20, 5, 7, 9, 13, 1, 2, 5, 7, 9, 10, 12, 13, 14, 4, 9, 5, 4, 5, 12, 1, 20, 5, 2, 9, 10, 16, 11, 2, 3, 4, 5, 7, 8, 11, 12, 13, 15, 16, 17, 18, 20, 2, 4, 9, 20, 1, 2, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 20, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 16, 17, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 20, 4, 6, 9, 13, 14, 7, 9, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 20, 19, 19, 2, 14, 6, 2, 8, 1, 3, 5, 13, 15, 17, 3, 17, 4, 8, 12, 13, 14, 16, 13, 1, 2, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 16, 2, 15, 17, 3, 4, 5, 7, 9, 11, 13, 14, 16, 18, 20, 3, 4, 5, 6, 9, 11, 12, 13, 15, 16, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 16, 17, 18, 2, 2, 18, 9, 15, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 9, 12, 14, 3, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 7, 10, 11, 15, 16, 18, 6, 9, 16, 18, 2, 12, 20, 3, 13, 20, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 3, 4, 5, 8, 9, 11, 13, 15, 16, 17, 18, 20, 9, 16, 14, 16, 1, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 9, 13, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 18, 1, 12, 16, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 11, 8, 9, 2, 9, 10, 11, 13, 16, 2, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 20, 3, 4, 6, 7, 9, 11, 12, 13, 16, 18, 2, 3, 4, 5, 8, 9, 12, 13, 15, 17, 18, 19, 3, 9, 12, 15, 16, 18, 16, 15, 11, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 14, 6, 20, 1, 2, 4, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 4, 6, 17, 13, 11, 3, 5, 6, 17, 18, 3, 6, 17, 2, 5, 6, 12, 17, 1, 2, 3, 5, 6, 7, 13, 17, 18, 3, 4, 5, 16, 17, 18, 5, 6, 17, 5, 17, 17, 17, 3, 4, 4, 5, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 9, 10, 12, 3, 10, 17, 4, 20, 1, 4, 9, 10, 11, 12, 13, 15, 16, 1, 2, 3, 5, 9, 10, 13, 1, 5, 6, 16, 8, 13, 20, 12, 15, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 10, 14, 4, 1, 2, 5, 6, 10, 4, 6, 1, 5, 12, 17, 1, 5, 6, 14, 17, 3, 11, 18, 18, 1, 18, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16, 18, 20, 2, 4, 5, 6, 11, 12, 7, 15, 15, 13, 5, 11, 17, 6, 1, 2, 3, 4, 8, 11, 16, 17, 2, 8, 17, 19, 7, 16, 4, 7, 10, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 6, 9, 13, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 16, 17, 18, 20, 4, 6, 9, 12, 17, 19, 2, 4, 6, 7, 9, 10, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 9, 11, 12, 14, 15, 17, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 12, 18, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 13, 1, 2, 5, 6, 7, 8, 9, 10, 12, 14, 19, 1, 2, 6, 7, 9, 10, 13, 14, 17, 2, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 15, 2, 3, 4, 5, 8, 11, 14, 16, 17, 18, 19, 8, 7, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 17, 18, 20, 2, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 13, 14, 5, 17, 3, 11, 13, 1, 2, 3, 4, 5, 9, 11, 12, 13, 14, 16, 18, 4, 7, 10, 11, 14, 3, 4, 7, 11, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 16, 12, 16, 11, 18, 1, 4, 5, 8, 11, 12, 14, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 9, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 17, 18, 4, 9, 10, 11, 12, 13, 20, 17, 11, 1, 3, 4, 8, 10, 11, 16, 17, 20, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 20, 17, 19, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 9, 12, 4, 9, 20, 2, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 6, 1, 4, 5, 6, 7, 8, 12, 17, 5, 1, 2, 5, 6, 7, 10, 13, 15, 15, 3, 4, 5, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 16, 13, 9, 10, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 17, 3, 4, 5, 6, 7, 9, 11, 12, 13, 16, 17, 18, 16, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 20, 4, 18, 1, 5, 7, 17, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 7, 2, 13, 18, 2, 2, 6, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 8, 15, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 5, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 18, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 16, 20, 4, 1, 8, 8, 16, 17, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 20, 3, 4, 5, 9, 10, 12, 13, 15, 16, 17, 18, 20, 5, 5, 10, 2, 3, 4, 7, 9, 14, 18, 3, 4, 7, 9, 11, 14, 16, 18, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 18, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 3, 4, 9, 11, 13, 15, 16, 18, 3, 9, 12, 3, 5, 8, 12, 14, 20, 2, 3, 7, 9, 10, 11, 13, 16, 18, 20, 2, 1, 13, 16, 5, 20, 4, 16, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 15, 1, 4, 5, 9, 12, 17, 1, 20, 5, 1, 2, 6, 7, 11, 13, 15, 19, 2, 2, 5, 12, 16, 19, 4, 2, 3, 8, 19, 19, 7, 12, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 15, 3, 4, 9, 10, 11, 14, 15, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 2, 3, 11, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 6, 13, 18, 1, 2, 3, 5, 6, 11, 13, 14, 18, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 18, 7, 8, 8, 5, 6, 7, 15, 16, 4, 5, 11, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 8, 17, 17, 10, 2, 8, 20, 1, 3, 4, 11, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 11, 19, 18, 1, 5, 6, 9, 12, 11, 13, 4, 9, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 9, 10, 1, 2, 3, 4, 8, 10, 12, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 6, 2, 4, 5, 7, 10, 12, 16, 1, 1, 6, 2, 5, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 9, 7, 18, 12, 9, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 7, 11, 13, 4, 5, 7, 2, 6, 7, 13, 15, 3, 1, 2, 10, 20, 18, 2, 5, 6, 8, 9, 11, 12, 13, 11, 10, 11, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 1, 13, 10, 12, 2, 10, 2, 10, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 10, 10, 15, 1, 10, 14, 10, 14, 12, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 1, 3, 6, 12, 3, 9, 16, 18, 6, 4, 7, 20, 17, 9, 1, 5, 6, 7, 9, 10, 13, 15, 19, 1, 5, 6, 7, 13, 15, 2, 8, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 18, 1, 2, 3, 4, 6, 7, 11, 14, 18, 6, 16, 17, 1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 20, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 8, 10, 19, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 15, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 15, 3, 4, 5, 11, 12, 15, 16, 19, 1, 2, 12, 3, 5, 9, 18, 3, 4, 9, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 2, 1, 2, 6, 1, 2, 3, 5, 16, 13, 9, 2, 3, 4, 5, 7, 9, 10, 12, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 11, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 14, 3, 15, 19, 1, 2, 8, 10, 17, 19, 10, 1, 8, 15, 20, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 1, 2, 5, 6, 7, 13, 1, 6, 11, 1, 7, 10, 11, 16, 18, 18, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 16, 19, 20, 2, 3, 8, 16, 17, 1, 2, 3, 5, 6, 8, 10, 12, 13, 15, 16, 17, 8, 11, 1, 6, 18, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 2, 3, 4, 9, 10, 11, 16, 20, 5, 7, 11, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 4, 13, 4, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 9, 14, 20, 14, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 5, 6, 7, 10, 13, 14, 6, 15, 16, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 17, 4, 5, 9, 10, 12, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 5, 13, 14, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 3, 14, 15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 1, 2, 6, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 6, 9, 1, 2, 3, 4, 5, 7, 8, 9, 12, 13, 15, 18, 19, 20, 1, 2, 6, 7, 8, 9, 11, 13, 15, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 19, 19, 12, 8, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 17, 18, 5, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 15, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 14, 6, 1, 2, 7, 7, 12, 2, 4, 8, 10, 11, 12, 2, 3, 4, 5, 11, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 6, 11, 14, 7, 3, 9, 11, 2, 3, 10, 12, 15, 17, 13, 1, 2, 8, 9, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 8, 9, 12, 16, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 3, 9, 10, 13, 1, 2, 8, 10, 16, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 19, 2, 17, 1, 3, 5, 7, 10, 13, 15, 3, 5, 7, 13, 20, 3, 4, 5, 9, 12, 15, 17, 18, 2, 3, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 4, 5, 7, 9, 10, 11, 12, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 16, 17, 5, 2, 8, 16, 17, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 20, 1, 2, 5, 6, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 17, 2, 3, 7, 17, 20, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 20, 5, 17, 3, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 9, 18, 9, 3, 1, 2, 5, 8, 10, 11, 12, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 11, 18, 2, 3, 4, 8, 9, 12, 13, 14, 17, 18, 8, 17, 4, 2, 1, 13, 15, 1, 3, 5, 12, 17, 19, 20, 1, 15, 16, 17, 8, 4, 9, 16, 17, 20, 9, 19, 19, 19, 19, 2, 4, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 18, 2, 6, 7, 9, 11, 13, 16, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 10, 13, 2, 1, 2, 3, 6, 7, 8, 10, 13, 14, 2, 7, 9, 8, 20, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 12, 15, 2, 3, 4, 7, 9, 10, 11, 13, 16, 18, 20, 12, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 9, 11, 13, 7, 14, 3, 10, 11, 1, 13, 14, 1, 2, 3, 4, 14, 1, 12, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 10, 1, 17, 2, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 2, 11, 18, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 1, 2, 4, 5, 6, 7, 9, 10, 13, 14, 15, 14, 1, 2, 13, 18, 1, 2, 6, 14, 18, 11, 2, 3, 4, 5, 8, 10, 12, 13, 14, 16, 18, 20, 1, 7, 11, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 7, 13, 15, 1, 3, 4, 9, 11, 12, 13, 16, 19, 20, 1, 3, 4, 9, 10, 11, 13, 16, 9, 1, 14, 5, 13, 15, 2, 9, 10, 12, 14, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 2, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 18, 2, 8, 20, 8, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 11, 16, 15, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 17, 10, 5, 6, 5, 8, 10, 15, 2, 15, 10, 14, 8, 2, 4, 7, 8, 11, 12, 14, 16, 17, 3, 6, 7, 11, 16, 18, 20, 13, 10, 1, 4, 5, 13, 17, 12, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 20, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 15, 16, 17, 20, 1, 2, 3, 6, 8, 10, 11, 15, 16, 17, 1, 2, 8, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 19, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 5, 15, 17, 10, 4, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 8, 3, 4, 5, 6, 8, 9, 12, 13, 15, 16, 17, 18, 19, 20, 1, 3, 4, 8, 9, 11, 14, 18, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 4, 5, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 3, 4, 8, 9, 12, 14, 17, 18, 4, 7, 11, 16, 18, 4, 9, 2, 5, 6, 8, 15, 18, 11, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 2, 7, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 10, 13, 14, 16, 18, 16, 11, 20, 4, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 8, 12, 17, 10, 5, 7, 9, 12, 7, 13, 9, 5, 14, 1, 7, 8, 15, 16, 17, 20, 12, 15, 3, 2, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 7, 3, 18, 1, 11, 11, 2, 8, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 12, 13, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 10, 9, 18, 18, 7, 18, 2, 3, 16, 11, 7, 7, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 18, 20, 1, 2, 7, 8, 13, 14, 16, 7, 3, 2, 4, 7, 8, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 16, 18, 8, 6, 7, 11, 12, 17, 18, 19, 17, 9, 12, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 5, 12, 18, 1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 1, 2, 3, 4, 5, 7, 8, 10, 12, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 1, 3, 4, 13, 17, 18, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 15, 1, 1, 7, 20, 3, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 8, 10, 1, 2, 4, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15, 17, 20, 7, 6, 15, 2, 15, 17, 17, 15, 11, 2, 3, 5, 8, 9, 11, 12, 13, 14, 16, 2, 3, 10, 11, 13, 16, 7, 13, 20, 13, 1, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 18, 16, 8, 17, 7, 11, 14, 16, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 10, 15, 20, 2, 3, 4, 5, 7, 9, 12, 15, 17, 18, 18, 19, 14, 19, 2, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16, 17, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 5, 6, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 17, 18, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 4, 7, 9, 12, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 17, 1, 3, 13, 14, 16, 9, 13, 7, 1, 2, 6, 7, 11, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 7, 9, 11, 14, 18, 2, 15, 13, 10, 10, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 17, 18, 20, 5, 1, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15, 17, 18, 19, 8, 9, 15, 18, 20, 8, 17, 1, 2, 3, 9, 10, 11, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 5, 10, 1, 4, 8, 12, 3, 4, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 14, 2, 5, 5, 8, 3, 4, 12, 4, 7, 13, 16, 4, 1, 2, 3, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 14, 6, 1, 4, 14, 2, 4, 5, 10, 1, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 7, 8, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 5, 10, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 7, 10, 11, 13, 14, 16, 1, 11, 16, 5, 11, 12, 14, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 12, 17, 7, 18, 12, 15, 10, 9, 1, 2, 3, 9, 12, 20, 4, 1, 5, 8, 3, 4, 9, 18, 5, 1, 2, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 18, 9, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 8, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 18, 20, 2, 3, 4, 6, 12, 13, 15, 20, 9, 16, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 6, 7, 12, 15, 14, 16, 3, 6, 16, 18, 16, 1, 2, 6, 15, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 8, 3, 9, 11, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 7, 8, 16, 17, 2, 6, 9, 10, 14, 7, 8, 17, 2, 8, 17, 1, 5, 7, 10, 14, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 5, 6, 19, 19, 1, 5, 8, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 8, 10, 11, 15, 16, 17, 7, 15, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 11, 9, 13, 5, 10, 3, 9, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 4, 9, 16, 20, 1, 2, 3, 4, 6, 8, 10, 12, 13, 15, 18, 2, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 3, 11, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 2, 8, 9, 10, 11, 3, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 15, 17, 6, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 16, 16, 1, 8, 9, 18, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 18, 20, 1, 2, 3, 5, 8, 9, 11, 12, 13, 15, 16, 17, 18, 4, 7, 9, 1, 2, 8, 15, 20, 1, 6, 20, 2, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 10, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 18, 4, 7, 10, 20, 10, 2, 11, 20, 11, 3, 18, 1, 2, 6, 7, 10, 14, 18, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 20, 3, 11, 17, 1, 6, 7, 9, 11, 15, 18, 1, 2, 3, 5, 6, 7, 11, 13, 14, 15, 18, 1, 2, 5, 6, 11, 13, 18, 2, 2, 12, 11, 11, 5, 10, 10, 19, 3, 7, 10, 11, 13, 16, 18, 19, 20, 12, 16, 17, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 5, 3, 13, 4, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 9, 3, 9, 13, 3, 14, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 17, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 1, 3, 4, 12, 15, 18, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 6, 14, 12, 9, 1, 14, 12, 2, 4, 5, 11, 12, 16, 14, 5, 11, 4, 11, 12, 14, 12, 2, 9, 16, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 7, 9, 12, 14, 15, 17, 18, 1, 2, 3, 4, 6, 8, 9, 11, 13, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 10, 12, 13, 14, 15, 16, 18, 20, 2, 2, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 16, 18, 3, 6, 7, 9, 11, 12, 13, 16, 18, 2, 4, 6, 7, 9, 10, 15, 16, 18, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 15, 15, 8, 17, 1, 1, 2, 3, 4, 5, 7, 10, 12, 13, 14, 15, 16, 5, 12, 2, 3, 5, 8, 12, 15, 19, 19, 15, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 19, 19, 3, 11, 9, 13, 3, 5, 6, 7, 11, 14, 15, 18, 11, 9, 3, 18, 3, 4, 5, 9, 11, 13, 16, 18, 16, 18, 7, 16, 3, 7, 9, 11, 13, 3, 7, 9, 10, 11, 13, 16, 18, 20, 6, 10, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 15, 17, 4, 4, 1, 5, 1, 6, 19, 19], \"Freq\": [0.19540679335991679, 0.7327754750996879, 0.028936339919544116, 0.8970265375058676, 0.8961246964680358, 0.030900851602346065, 0.030900851602346065, 0.015450425801173033, 0.020918241637283338, 0.9622391153150336, 0.9701768865414783, 0.7622381406540785, 0.07309132855587054, 0.015662427547686545, 0.005220809182562181, 0.005220809182562181, 0.03132485509537309, 0.010441618365124363, 0.005220809182562181, 0.005220809182562181, 0.005220809182562181, 0.06787051937330836, 0.005220809182562181, 0.005220809182562181, 0.005220809182562181, 0.9594859242150292, 0.11586828486891781, 0.19311380811486303, 0.5922156782189133, 0.07724552324594522, 0.9169830286703807, 0.9220091895860528, 0.9860248770484771, 0.9563449654583497, 0.045823233935362744, 0.05804276298479281, 0.027493940361217644, 0.012219529049430064, 0.5529336894867104, 0.10081111465779803, 0.042768351673005224, 0.018329293574145096, 0.009164646787072548, 0.003054882262357516, 0.003054882262357516, 0.012219529049430064, 0.006109764524715032, 0.08859158560836797, 0.003054882262357516, 0.006109764524715032, 0.006109764524715032, 0.9600154671389137, 0.9331642178060805, 0.9778435377911929, 0.9126454356689424, 0.9801481939808382, 0.018575505225919674, 0.012383670150613117, 0.030959175376532793, 0.7244447038108673, 0.09287752612959838, 0.012383670150613117, 0.012383670150613117, 0.006191835075306558, 0.030959175376532793, 0.006191835075306558, 0.006191835075306558, 0.018575505225919674, 0.024767340301226234, 0.9228534264130946, 0.9141679865033093, 0.03340431611115725, 0.0037115906790174727, 0.05567386018526209, 0.0037115906790174727, 0.8054151773467916, 0.018557953395087364, 0.0037115906790174727, 0.0037115906790174727, 0.0037115906790174727, 0.0037115906790174727, 0.02598113475312231, 0.0037115906790174727, 0.0037115906790174727, 0.011134772037052418, 0.014846362716069891, 0.0037115906790174727, 0.07668243800819861, 0.9048527684967436, 0.9579359993139028, 0.029028363615572813, 0.9529093297132528, 0.14717715486512958, 0.14048728418944187, 0.1848836986735512, 0.14048728418944187, 0.05838432589691091, 0.02736765276417699, 0.038618798900560865, 0.02067778208848928, 0.03101667313273392, 0.023718632395620057, 0.02736765276417699, 0.03344935337843854, 0.03527386356271701, 0.02493497251847237, 0.023718632395620057, 0.01672467668921927, 0.00516944552212232, 0.016420591658506192, 0.0009122550921392329, 0.0030408503071307764, 0.9226000870902634, 0.9681933427660502, 0.028878114039479347, 0.8952215352238597, 0.057756228078958693, 0.940443380046714, 0.0626962253364476, 0.9178759405082179, 0.0026000473192748183, 0.0052000946385496365, 0.7774141484631707, 0.0052000946385496365, 0.07540137225896973, 0.0026000473192748183, 0.0026000473192748183, 0.010400189277099273, 0.03380061515057264, 0.0026000473192748183, 0.007800141957824455, 0.0026000473192748183, 0.044200804427671915, 0.0026000473192748183, 0.0026000473192748183, 0.007800141957824455, 0.010400189277099273, 0.0026000473192748183, 0.0026000473192748183, 0.11397428550141354, 0.13886522141551536, 0.08580822644071939, 0.38515448203925956, 0.0563321181213883, 0.013755517215687841, 0.011135418698413967, 0.01572059110364325, 0.01965073887955406, 0.01506556647432478, 0.0052401970345477495, 0.03995650238842659, 0.00982536943977703, 0.01572059110364325, 0.03602635461251578, 0.017685664991598654, 0.0052401970345477495, 0.011790443327732436, 0.0013100492586369374, 0.0013100492586369374, 0.19897774435347668, 0.18856006140303289, 0.028127743966198274, 0.23439786638498564, 0.06146432940761845, 0.028127743966198274, 0.10626036609452681, 0.01875182931079885, 0.009375914655399425, 0.04062896350673084, 0.0041670731801775225, 0.009375914655399425, 0.01771006101575447, 0.009375914655399425, 0.022918902490976372, 0.011459451245488186, 0.0020835365900887613, 0.006250609770266284, 0.0010417682950443806, 0.0010417682950443806, 0.04026545438001893, 0.8405413601828953, 0.0050331817975023665, 0.0050331817975023665, 0.0905972723550426, 0.0050331817975023665, 0.0050331817975023665, 0.0050331817975023665, 0.8888051755835985, 0.05555032347397491, 0.01643065920842089, 0.01643065920842089, 0.6055871536817985, 0.01643065920842089, 0.004694474059548826, 0.004694474059548826, 0.004694474059548826, 0.10093119228029974, 0.025819607327518538, 0.002347237029774413, 0.1666538291139833, 0.002347237029774413, 0.01643065920842089, 0.009388948119097651, 0.007041711089323238, 0.002347237029774413, 0.010228232844866169, 0.007671174633649627, 0.21990700616462264, 0.1585376090954256, 0.02301352390094888, 0.007671174633649627, 0.03579881495703159, 0.020456465689732337, 0.010228232844866169, 0.3119611017684181, 0.007671174633649627, 0.017899407478515796, 0.015342349267299254, 0.02301352390094888, 0.10483938665987823, 0.005114116422433084, 0.017899407478515796, 0.007671174633649627, 0.977606639172876, 0.02660533846647458, 0.9045815078601358, 0.05321067693294916, 0.051773619803320264, 0.1840839815229165, 0.19175414741970467, 0.021092956216167514, 0.04985607832912321, 0.07094903454529072, 0.011505248845182281, 0.164908566780946, 0.03451574653554684, 0.0019175414741970467, 0.007670165896788187, 0.01725787326777342, 0.0038350829483940934, 0.1265577372970051, 0.015340331793576373, 0.009587707370985233, 0.013422790319379327, 0.0057526244225911405, 0.0057526244225911405, 0.009587707370985233, 0.7843553960117514, 0.01089382494460766, 0.16703864915065078, 0.0036312749815358863, 0.025418924870751206, 0.977051745937988, 0.012216004161314907, 0.012216004161314907, 0.7655362607757342, 0.008144002774209938, 0.020360006935524845, 0.024432008322629813, 0.008144002774209938, 0.004072001387104969, 0.04886401664525963, 0.004072001387104969, 0.04072001387104969, 0.020360006935524845, 0.004072001387104969, 0.004072001387104969, 0.004072001387104969, 0.004072001387104969, 0.008144002774209938, 0.004072001387104969, 0.004072001387104969, 0.02337255931824051, 0.011686279659120256, 0.91152981341138, 0.011686279659120256, 0.02337255931824051, 0.02768839115948075, 0.013844195579740376, 0.02768839115948075, 0.06922097789870188, 0.0553767823189615, 0.13844195579740376, 0.6091446055085765, 0.041532586739221125, 0.013844195579740376, 0.017721113873650253, 0.15949002486285227, 0.6025178717041085, 0.19493225261015276, 0.9663492035596135, 0.09077091484091415, 0.004538545742045708, 0.8714007824727759, 0.004538545742045708, 0.009077091484091415, 0.004538545742045708, 0.004538545742045708, 0.004538545742045708, 0.004538545742045708, 0.05541561509880771, 0.01847187169960257, 0.0015393226416335476, 0.0015393226416335476, 0.8974251000723582, 0.004617967924900643, 0.007696613208167738, 0.003078645283267095, 0.0015393226416335476, 0.004617967924900643, 0.0015393226416335476, 0.06232469504624982, 0.016844512174662114, 0.0016844512174662115, 0.0016844512174662115, 0.8944435964745583, 0.005053353652398634, 0.0016844512174662115, 0.008422256087331057, 0.0016844512174662115, 0.0016844512174662115, 0.0016844512174662115, 0.003368902434932423, 0.0016844512174662115, 0.9480167343259404, 0.12303745221672582, 0.04921498088669033, 0.01968599235467613, 0.0147644942660071, 0.004921498088669033, 0.595501268728953, 0.0147644942660071, 0.03445048662068323, 0.01968599235467613, 0.06397947515269743, 0.004921498088669033, 0.004921498088669033, 0.0147644942660071, 0.004921498088669033, 0.004921498088669033, 0.0147644942660071, 0.004921498088669033, 0.10448184784245383, 0.2969993267373456, 0.063850018125944, 0.12963488528600753, 0.06578486716006351, 0.03966440519945007, 0.04159925423356958, 0.0386969806823903, 0.011609094204717093, 0.07352426329654158, 0.01644621679001588, 0.03579470713121103, 0.01257651872177685, 0.01934849034119515, 0.02128333937531467, 0.017413641307075636, 0.002902273551179273, 0.004837122585298788, 0.0009674245170597577, 0.002902273551179273, 0.14102328024356106, 0.09092290436755911, 0.16700125292000653, 0.06123379273733573, 0.07607834855244743, 0.05381151482977988, 0.05010037587600196, 0.0241224031995565, 0.031544681107112345, 0.11504530756711562, 0.06123379273733573, 0.011133416861333768, 0.02783354215333442, 0.031544681107112345, 0.033400250584001305, 0.007422277907555846, 0.007422277907555846, 0.005566708430666884, 0.0018555694768889615, 0.0018555694768889615, 0.9456475401926691, 0.07664919437672078, 0.09900520940326434, 0.057486895782540584, 0.057486895782540584, 0.03193716432363366, 0.02235601502654356, 0.04151831362072376, 0.012774865729453463, 0.08942406010617424, 0.006387432864726731, 0.01596858216181683, 0.4375391512337811, 0.006387432864726731, 0.006387432864726731, 0.006387432864726731, 0.0031937164323633657, 0.01596858216181683, 0.006387432864726731, 0.0031937164323633657, 0.01764186042474023, 0.9703023233607126, 0.9498857387623084, 0.014926295209233343, 0.910504007763234, 0.014926295209233343, 0.014926295209233343, 0.029852590418466687, 0.9806073677306385, 0.042027778311856154, 0.042027778311856154, 0.8825833445489792, 0.2997327770349924, 0.06422845222178408, 0.07136494691309343, 0.09277443098702146, 0.007136494691309343, 0.42105318678725123, 0.007136494691309343, 0.007136494691309343, 0.014272989382618687, 0.014272989382618687, 0.3524299583236818, 0.022026872395230112, 0.014684581596820076, 0.11013436197615056, 0.46256432029983235, 0.007342290798410038, 0.014684581596820076, 0.014684581596820076, 0.9684388709862431, 0.027669682028178374, 0.9143467902734471, 0.04424258662613454, 0.014747528875378179, 0.196155500909992, 0.0757873526243151, 0.013374238698408546, 0.008916159132272365, 0.04458079566136182, 0.5840084231638398, 0.013374238698408546, 0.004458079566136182, 0.004458079566136182, 0.004458079566136182, 0.008916159132272365, 0.008916159132272365, 0.01783231826454473, 0.008916159132272365, 0.05881067436091146, 0.8821601154136719, 0.9075461400880617, 0.8412187444223108, 0.8318465509890516, 0.9595924525036379, 0.019991509427159125, 0.9816940823225523, 0.01388792536598895, 0.0555517014639558, 0.1111034029279116, 0.8054996712273591, 0.00483819541616938, 0.013132244701031175, 0.5709070591079869, 0.07049941892132526, 0.05805834499403256, 0.006220536963646346, 0.020043952438416005, 0.013132244701031175, 0.06013185731524801, 0.017970440117200556, 0.05322014957786318, 0.02349980630710842, 0.00967639083233876, 0.01658809856972359, 0.006220536963646346, 0.02349980630710842, 0.015896927795985106, 0.01174990315355421, 0.000691170773738483, 0.0034558538686924145, 0.916663502674032, 0.9702782442597612, 0.1486665753548475, 0.05717945205955674, 0.7547687671861489, 0.005717945205955674, 0.005717945205955674, 0.005717945205955674, 0.052712119275097294, 0.010542423855019458, 0.9171908753866929, 0.033426209467516205, 0.9582180047354645, 0.9849864473656532, 0.08704714912790247, 0.4199154473930015, 0.02437320175581269, 0.08147613158371671, 0.063370324565113, 0.033426105265114546, 0.045264517546509286, 0.0598884385999969, 0.020891315790696592, 0.043871763160462846, 0.009749280702325076, 0.030640596493021668, 0.01949856140465015, 0.010445657895348296, 0.02298044736976625, 0.011838412281394735, 0.004178263158139318, 0.006267394737208978, 0.0013927543860464396, 0.002089131579069659, 0.943316150900975, 0.012876339068179038, 0.7210749878180261, 0.057943525806805674, 0.006438169534089519, 0.01931450860226856, 0.006438169534089519, 0.01931450860226856, 0.006438169534089519, 0.10944888207952183, 0.032190847670447595, 0.9803880604743336, 0.07465745770247219, 0.09954327693662958, 0.07465745770247219, 0.7216887577905644, 0.024885819234157395, 0.00901482454898197, 0.00901482454898197, 0.00901482454898197, 0.05408894729389182, 0.11719271913676561, 0.00901482454898197, 0.00901482454898197, 0.05408894729389182, 0.00901482454898197, 0.6400525429777199, 0.07211859639185576, 0.00901482454898197, 0.05555208021430786, 0.9166093235360797, 0.8843596695935554, 0.18736103771051596, 0.06347751004399994, 0.31022073456987065, 0.1351456665452902, 0.04504855551509673, 0.027643431793354812, 0.023548108564709656, 0.012285969685935472, 0.013309800493096761, 0.017405123721741918, 0.07371581811561283, 0.01535746210741934, 0.024571939371870945, 0.004095323228645157, 0.006142984842967736, 0.018428954528903207, 0.0020476616143225786, 0.018428954528903207, 0.0010238308071612893, 0.003071492421483868, 0.022905319724908498, 0.91621278899634, 0.022905319724908498, 0.034556397093421176, 0.05183459564013177, 0.017278198546710588, 0.08639099273355295, 0.7947971331486872, 0.9397467637354922, 0.9812986462551974, 0.40668258560269716, 0.1800695876214569, 0.019075168180239077, 0.05341047090466942, 0.048832430541412036, 0.019075168180239077, 0.13581519744330223, 0.022890201816286895, 0.005341047090466942, 0.022890201816286895, 0.00991908745372432, 0.010682094180933884, 0.015260134544191263, 0.0061040538176765045, 0.031283275815592086, 0.002289020181628689, 0.0015260134544191261, 0.0030520269088382523, 0.0007630067272095631, 0.0038150336360478158, 0.1077898904278849, 0.1961776005787505, 0.07437502439524057, 0.10886778933216373, 0.024791674798413526, 0.0032336967128365466, 0.0441938550754328, 0.10671199152360604, 0.030181169319807768, 0.043115956171153956, 0.034492764936923166, 0.12395837399206762, 0.026947472606971223, 0.014012685755625035, 0.01940218027701928, 0.017246382468461583, 0.014012685755625035, 0.008623191234230792, 0.001077898904278849, 0.001077898904278849, 0.13489042857754932, 0.22895875376978764, 0.03904722932508006, 0.14021505075824203, 0.03993466635519552, 0.032835170114271874, 0.04614672556600371, 0.08696882895131469, 0.025735673873348224, 0.08164420677062195, 0.02662311090346368, 0.01952361466254003, 0.011536681391500927, 0.007099496240923648, 0.044371851505772796, 0.020411051692655488, 0.007099496240923648, 0.003549748120461824, 0.000887437030115456, 0.000887437030115456, 0.9824722280943083, 0.8048539757791227, 0.021180367783661124, 0.007701951921331318, 0.0019254879803328295, 0.003850975960665659, 0.0019254879803328295, 0.051988175468986396, 0.0019254879803328295, 0.0019254879803328295, 0.011552927881996976, 0.007701951921331318, 0.0019254879803328295, 0.051988175468986396, 0.0019254879803328295, 0.025031343744326782, 0.0019254879803328295, 0.03089461056472941, 0.5962659838992775, 0.003089461056472941, 0.22244119606605173, 0.006178922112945882, 0.012357844225891763, 0.021626227395310584, 0.07414706535535058, 0.003089461056472941, 0.006178922112945882, 0.003089461056472941, 0.006178922112945882, 0.006178922112945882, 0.003089461056472941, 0.003089461056472941, 0.9496577510957754, 0.04410806832819308, 0.04410806832819308, 0.8380532982356685, 0.06084718799638076, 0.2781585736977406, 0.008692455428054394, 0.008692455428054394, 0.13038683142081592, 0.008692455428054394, 0.017384910856108788, 0.008692455428054394, 0.008692455428054394, 0.4520076822588285, 0.02669200405881092, 0.02669200405881092, 0.05338400811762184, 0.02669200405881092, 0.8541441298819494, 0.971585954675247, 0.8229646605491034, 0.7957092048639152, 0.9343203003341801, 0.3985511210250453, 0.0442834578916717, 0.1328503736750151, 0.442834578916717, 0.8227041302375834, 0.9674976644180487, 0.05582643273336631, 0.06978304091670788, 0.823439882817153, 0.027913216366683154, 0.045923272012322554, 0.06888490801848383, 0.005740409001540319, 0.005740409001540319, 0.005740409001540319, 0.53959844614479, 0.005740409001540319, 0.01722122700462096, 0.005740409001540319, 0.05166368101386288, 0.005740409001540319, 0.2296163600616128, 0.9818741477929541, 0.009624440304442166, 0.057746641826653, 0.009624440304442166, 0.0288733209133265, 0.01924888060888433, 0.06737108213109516, 0.057746641826653, 0.6544619407020673, 0.009624440304442166, 0.009624440304442166, 0.009624440304442166, 0.04812220152221083, 0.1046016020629418, 0.38852023623378384, 0.014943086008991685, 0.014943086008991685, 0.11954468807193348, 0.014943086008991685, 0.02988617201798337, 0.02988617201798337, 0.02988617201798337, 0.02988617201798337, 0.014943086008991685, 0.2092032041258836, 0.9713751242604562, 0.10581226553876759, 0.08817688794897299, 0.0088176887948973, 0.0176353775897946, 0.0969945767438703, 0.16753608710304868, 0.0176353775897946, 0.0088176887948973, 0.44970212853976227, 0.0352707551795892, 0.9606430220928766, 0.9760133790777384, 0.947184726888612, 0.015940163615327255, 0.015940163615327255, 0.940469653304308, 0.015940163615327255, 0.00862734507844741, 0.01725469015689482, 0.11215548601981634, 0.08627345078447411, 0.00862734507844741, 0.01725469015689482, 0.00862734507844741, 0.025882035235342233, 0.06901876062757928, 0.00862734507844741, 0.01725469015689482, 0.11215548601981634, 0.00862734507844741, 0.49175866947150243, 0.9123999409043518, 0.03219027049937875, 0.034202162405589924, 0.20320108252732835, 0.09858270340434742, 0.028166486686956406, 0.0020118919062111717, 0.02213081096832289, 0.014083243343478203, 0.05633297337391281, 0.06639243290496867, 0.13882054152857085, 0.02213081096832289, 0.02213081096832289, 0.014083243343478203, 0.020118919062111718, 0.187105947277639, 0.0020118919062111717, 0.016095135249689373, 0.0020118919062111717, 0.014083243343478203, 0.9611936017587841, 0.9389797004314767, 0.0361146038627491, 0.29802593782187325, 0.6661756257194814, 0.9866558905076572, 0.9933797667576204, 0.007396308099981128, 0.007396308099981128, 0.029585232399924513, 0.6656677289983015, 0.014792616199962257, 0.03698154049990564, 0.022188924299943385, 0.20709662679947158, 0.9426331954047388, 0.0046654219888844495, 0.023327109944422247, 0.018661687955537798, 0.023327109944422247, 0.027992531933306697, 0.013996265966653348, 0.009330843977768899, 0.0046654219888844495, 0.06998132983326674, 0.013996265966653348, 0.6391628124771696, 0.0046654219888844495, 0.07464675182215119, 0.0046654219888844495, 0.055985063866613394, 0.013996265966653348, 0.0046654219888844495, 0.015630872738947928, 0.9534832370758236, 0.9379504231869309, 0.008085779510232163, 0.04042889755116082, 0.20241752927871146, 0.42067643041401775, 0.014081219428084275, 0.08448731656850565, 0.012321066999573742, 0.047524115569784434, 0.017601524285105346, 0.03344289614170015, 0.012321066999573742, 0.022881981570636947, 0.017601524285105346, 0.03520304857021069, 0.017601524285105346, 0.005280457285531603, 0.017601524285105346, 0.005280457285531603, 0.022881981570636947, 0.003520304857021069, 0.0017601524285105344, 0.003520304857021069, 0.9801557050203513, 0.9826067377195702, 0.21792189291647956, 0.7748333970363718, 0.9720174922209823, 0.9627471794831125, 0.11839539743088348, 0.05919769871544174, 0.02959884935772087, 0.02959884935772087, 0.02959884935772087, 0.68077353522758, 0.9389398053534731, 0.8231517449492801, 0.07167841960425389, 0.8959802450531735, 0.004322536978054638, 0.050429598077304114, 0.5403171222568298, 0.005763382637406185, 0.0014408456593515463, 0.0014408456593515463, 0.0014408456593515463, 0.014408456593515463, 0.0014408456593515463, 0.0014408456593515463, 0.2795240579142, 0.0028816913187030926, 0.0028816913187030926, 0.014408456593515463, 0.0014408456593515463, 0.005763382637406185, 0.06483805467081957, 0.0014408456593515463, 0.948607841627507, 0.004081777503589194, 0.057144885050248714, 0.10612621509331904, 0.5632852954953088, 0.028572442525124357, 0.012245332510767582, 0.008163555007178388, 0.004081777503589194, 0.012245332510767582, 0.004081777503589194, 0.12653510261126502, 0.008163555007178388, 0.057144885050248714, 0.008163555007178388, 0.9445330945333736, 0.22073121855490102, 0.14623443229262192, 0.03586882301517142, 0.1232415970264864, 0.07081793261969742, 0.045985670532271046, 0.053343377817434416, 0.011036560927745052, 0.08001506672615162, 0.026671688908717208, 0.043226530300334784, 0.034029396193880575, 0.021153408444844684, 0.021153408444844684, 0.021153408444844684, 0.024832262087426366, 0.004598567053227105, 0.012875987749035894, 0.0009197134106454209, 0.002759140231936263, 0.2174575441221102, 0.08118414980558782, 0.028994339216281362, 0.04929037666767831, 0.04639094274605018, 0.1043796211786129, 0.04639094274605018, 0.026094905294653224, 0.08698301764884409, 0.07828471588395967, 0.017396603529768816, 0.020296037451396954, 0.1507705639246631, 0.020296037451396954, 0.002899433921628136, 0.002899433921628136, 0.017396603529768816, 0.9404214239114017, 0.8813925637364572, 0.9667374817203134, 0.09814143178400882, 0.14721214767601323, 0.7360607383800661, 0.8642441000368652, 0.023570293637369052, 0.03928382272894842, 0.023570293637369052, 0.007856764545789685, 0.007856764545789685, 0.007856764545789685, 0.007856764545789685, 0.007856764545789685, 0.05687510595609587, 0.9100016952975339, 0.9606243125810275, 0.899031534693697, 0.014047367729589016, 0.04214210318876705, 0.9801558436012133, 0.8901597482075785, 0.9631496543133263, 0.02126570804773099, 0.04253141609546198, 0.8931597380047016, 0.02126570804773099, 0.9297279949803162, 0.00879391990408565, 0.0703513592326852, 0.0351756796163426, 0.0527635194245139, 0.00879391990408565, 0.02638175971225695, 0.04396959952042825, 0.5803987136696529, 0.02638175971225695, 0.02638175971225695, 0.02638175971225695, 0.0527635194245139, 0.00879391990408565, 0.0175878398081713, 0.004629449592859141, 0.009258899185718282, 0.8703365234575186, 0.11573623982147853, 0.06810467420838678, 0.05107850565629009, 0.261067917798816, 0.05107850565629009, 0.02837694758682783, 0.017026168552096696, 0.005675389517365566, 0.03405233710419339, 0.005675389517365566, 0.017026168552096696, 0.017026168552096696, 0.005675389517365566, 0.35187415007666506, 0.03972772662155896, 0.03972772662155896, 0.005675389517365566, 0.031438013534830375, 0.9588594128123265, 0.0310169067687832, 0.09822020476781347, 0.18437827912554458, 0.08788123584488573, 0.0465253601531748, 0.012062130410082356, 0.025847422307319335, 0.0310169067687832, 0.11028233517789583, 0.02067793784585547, 0.039632714204556316, 0.025847422307319335, 0.012062130410082356, 0.0155084533843916, 0.027570583794473958, 0.16542350276684376, 0.0034463229743092448, 0.058587490563257155, 0.0017231614871546224, 0.005169484461463867, 0.8977584278787958, 0.009508468598283934, 0.10459315458112328, 0.004754234299141967, 0.028525405794851803, 0.004754234299141967, 0.009508468598283934, 0.713135144871295, 0.009508468598283934, 0.023771171495709835, 0.004754234299141967, 0.009508468598283934, 0.004754234299141967, 0.07131351448712951, 0.004754234299141967, 0.25325593501800203, 0.13536093078548386, 0.004366481638241415, 0.04366481638241415, 0.04803129802065556, 0.06113074293537981, 0.0873296327648283, 0.01746592655296566, 0.004366481638241415, 0.013099444914724244, 0.03493185310593132, 0.21832408191207073, 0.04366481638241415, 0.013099444914724244, 0.00873296327648283, 0.004366481638241415, 0.004366481638241415, 0.1507996585763013, 0.20799952907076039, 0.0069333176356920125, 0.012133305862461023, 0.0069333176356920125, 0.30679930537937156, 0.09013312926399616, 0.0034666588178460063, 0.017333294089230032, 0.02253328231599904, 0.012133305862461023, 0.0069333176356920125, 0.07799982340153515, 0.0554665410855361, 0.00519998822676901, 0.0034666588178460063, 0.0017333294089230031, 0.0017333294089230031, 0.0034666588178460063, 0.0034666588178460063, 0.016520678783677262, 0.006608271513470905, 0.006608271513470905, 0.138773701782889, 0.6955205767928128, 0.0016520678783677263, 0.0016520678783677263, 0.006608271513470905, 0.0016520678783677263, 0.0016520678783677263, 0.0033041357567354527, 0.01321654302694181, 0.0016520678783677263, 0.08095132604001859, 0.01321654302694181, 0.0016520678783677263, 0.0049562036351031786, 0.0016520678783677263, 0.008328623435876339, 0.004164311717938169, 0.016657246871752678, 0.25402301479422834, 0.4872244709987658, 0.004164311717938169, 0.004164311717938169, 0.012492935153814508, 0.016657246871752678, 0.004164311717938169, 0.07079329920494888, 0.004164311717938169, 0.09161485779463972, 0.008328623435876339, 0.004164311717938169, 0.008328623435876339, 0.804319153981703, 0.7751032189902095, 0.06728326553734458, 0.002691330621493783, 0.010765322485975132, 0.005382661242987566, 0.005382661242987566, 0.0322959674579254, 0.002691330621493783, 0.005382661242987566, 0.002691330621493783, 0.06997459615883836, 0.005382661242987566, 0.002691330621493783, 0.002691330621493783, 0.00807399186448135, 0.8046567423106288, 0.049689958190497, 0.004808705631338419, 0.006411607508451225, 0.01282321501690245, 0.009617411262676838, 0.027249331910917707, 0.006411607508451225, 0.0032058037542256126, 0.006411607508451225, 0.008014509385564032, 0.006411607508451225, 0.03045513566514332, 0.0032058037542256126, 0.011220313139789644, 0.0016029018771128063, 0.0016029018771128063, 0.004808705631338419, 0.7972345120590744, 0.04341376055767237, 0.003946705505242942, 0.003946705505242942, 0.003946705505242942, 0.003946705505242942, 0.03157364404194354, 0.003946705505242942, 0.04341376055767237, 0.003946705505242942, 0.051307171568158255, 0.003946705505242942, 0.003946705505242942, 0.003946705505242942, 0.8696234920377115, 0.011293811584905344, 0.004517524633962137, 0.0022587623169810687, 0.004517524633962137, 0.004517524633962137, 0.033881434754716035, 0.0022587623169810687, 0.009035049267924275, 0.009035049267924275, 0.027105147803772826, 0.006776286950943206, 0.011293811584905344, 0.004517524633962137, 0.05141760444122609, 0.025708802220613045, 0.07712640666183913, 0.05141760444122609, 0.7455552643977783, 0.7382394504650093, 0.04101330280361162, 0.18455986261625232, 0.8953137477793375, 0.021470353663773083, 0.002147035366377308, 0.002147035366377308, 0.004294070732754616, 0.008588141465509232, 0.010735176831886541, 0.002147035366377308, 0.006441106099131924, 0.017176282931018465, 0.006441106099131924, 0.008588141465509232, 0.004294070732754616, 0.002147035366377308, 0.002147035366377308, 0.002147035366377308, 0.958317925031866, 0.9503665880889494, 0.058617605705534905, 0.8792640855830236, 0.9750989803696121, 0.9507468075739878, 0.02569585966416183, 0.033106409381387904, 0.033106409381387904, 0.06621281876277581, 0.033106409381387904, 0.016553204690693952, 0.8111070298440036, 0.02543421072515072, 0.9156315861054259, 0.9891811901021963, 0.017726301898507112, 0.1240841132895498, 0.035452603797014225, 0.017726301898507112, 0.7799572835343129, 0.94202270609216, 0.13663736202170812, 0.01242157836560983, 0.807402593764639, 0.6376785143355603, 0.06685339263195392, 0.015427705991989364, 0.03342669631597696, 0.035997980647975186, 0.030855411983978728, 0.051425686639964545, 0.017998990323987593, 0.010285137327992909, 0.017998990323987593, 0.012856421659991136, 0.002571284331998227, 0.023141558987984045, 0.007713852995994682, 0.025712843319982272, 0.002571284331998227, 0.005142568663996454, 0.002571284331998227, 0.9198667576894921, 0.9122275656999613, 0.061845936657624494, 0.015461484164406123, 0.13884130234837255, 0.011570108529031047, 0.03471032558709314, 0.05785054264515523, 0.005785054264515524, 0.5958605892450989, 0.023140217058062094, 0.05206548838063971, 0.05785054264515523, 0.011570108529031047, 0.005785054264515524, 0.18431233282733558, 0.03686246656546712, 0.00921561664136678, 0.00921561664136678, 0.01843123328273356, 0.626661931612941, 0.00921561664136678, 0.02764684992410034, 0.00921561664136678, 0.01843123328273356, 0.02764684992410034, 0.01843123328273356, 0.06541503820076759, 0.01362813295849325, 0.016353759550191898, 0.00272562659169865, 0.8422186168348827, 0.0054512531833973, 0.00272562659169865, 0.00272562659169865, 0.00272562659169865, 0.0109025063667946, 0.00272562659169865, 0.0054512531833973, 0.016353759550191898, 0.00272562659169865, 0.9647255832962198, 0.9859105910435363, 0.9195221925037709, 0.8317568546063846, 0.1299620085322476, 0.9678141711100081, 0.014654272029725239, 0.014654272029725239, 0.2133010706548896, 0.14979922519274688, 0.07815611749186793, 0.004884757343241746, 0.03744980629818672, 0.004884757343241746, 0.02279553426846148, 0.017910776925219737, 0.19539029372966984, 0.006513009790988995, 0.02605203916395598, 0.004884757343241746, 0.006513009790988995, 0.1530557300882414, 0.008141262238736244, 0.032565048954944976, 0.0016282524477472487, 0.008141262238736244, 0.9376481516957842, 0.021540881717082596, 0.6031446880783127, 0.3661949891904041, 0.05034597512363769, 0.9314005397872973, 0.0020120466102964757, 0.010060233051482377, 0.048289118647115416, 0.42454183477255636, 0.006036139830889427, 0.004024093220592951, 0.020120466102964755, 0.012072279661778854, 0.012072279661778854, 0.008048186441185903, 0.2816865254415066, 0.06639753813978369, 0.008048186441185903, 0.010060233051482377, 0.006036139830889427, 0.016096372882371805, 0.008048186441185903, 0.056337305088301315, 0.04625353715952279, 0.015417845719840931, 0.7863101317118875, 0.015417845719840931, 0.061671382879363724, 0.061671382879363724, 0.9563156404229161, 0.9159162447031819, 0.0538774261590107, 0.8856154405228681, 0.033540519298085436, 0.8720535017502212, 0.033540519298085436, 0.02750755990608597, 0.9352570368069231, 0.929205017374217, 0.9120959130589795, 0.01111023948982238, 0.01666535923473357, 0.1722087120922469, 0.0555511974491119, 0.6221734114300533, 0.00555511974491119, 0.00555511974491119, 0.00555511974491119, 0.02222047897964476, 0.00555511974491119, 0.01111023948982238, 0.02777559872455595, 0.00555511974491119, 0.00555511974491119, 0.00555511974491119, 0.00555511974491119, 0.01111023948982238, 0.00555511974491119, 0.00555511974491119, 0.00580811225795823, 0.531442271603178, 0.04356084193468673, 0.0377527296767285, 0.002904056128979115, 0.026136505160812035, 0.04356084193468673, 0.020328392902853806, 0.002904056128979115, 0.12487441354610194, 0.00580811225795823, 0.15391497483589311, 0.002904056128979115, 0.5414559634937144, 0.43580601939737984, 0.9546847870243578, 0.9706812349671397, 0.028267414973775447, 0.14133707486887723, 0.8197550342394879, 0.011303170336229237, 0.014128962920286545, 0.24301816222892858, 0.2175860289724128, 0.13139935515866488, 0.008477377752171927, 0.005651585168114618, 0.0070644814601432725, 0.13846383661880815, 0.005651585168114618, 0.022606340672458473, 0.08901246639780523, 0.012716066628257892, 0.002825792584057309, 0.04945137022100291, 0.009890274044200582, 0.01836765179637251, 0.0070644814601432725, 0.0014128962920286546, 0.004238688876085963, 0.8819000726516727, 0.06299286233226234, 0.065821694743579, 0.10656845815627075, 0.065821694743579, 0.04074676341269176, 0.021940564914526332, 0.0031343664163609045, 0.012537465665443618, 0.05955296191085719, 0.028209297747248143, 0.006268732832721809, 0.5391110236140756, 0.006268732832721809, 0.0031343664163609045, 0.0031343664163609045, 0.0031343664163609045, 0.025074931330887236, 0.0031343664163609045, 0.9313801369774444, 0.02684108163515231, 0.9125967755951785, 0.02684108163515231, 0.9545857578865677, 0.02448338025280697, 0.03427673235392976, 0.11262354916291206, 0.019586704202245574, 0.05876011260673673, 0.03917340840449115, 0.004896676050561394, 0.298697239084245, 0.04407008445505255, 0.004896676050561394, 0.009793352101122787, 0.004896676050561394, 0.014690028151684182, 0.2497304785786311, 0.004896676050561394, 0.03917340840449115, 0.019586704202245574, 0.004896676050561394, 0.004896676050561394, 0.975378421807378, 0.06579250626622439, 0.9210950877271415, 0.08896766764605933, 0.005233392214474078, 0.16223515864869642, 0.041867137715792625, 0.3663374550131855, 0.32970370951186695, 0.9665121604212912, 0.02416280401053228, 0.25012801568356147, 0.06375812164482939, 0.024522354478780536, 0.01471341268726832, 0.024522354478780536, 0.004904470895756107, 0.09808941791512214, 0.024522354478780536, 0.004904470895756107, 0.2942682537453664, 0.06375812164482939, 0.08337600522785382, 0.024522354478780536, 0.004904470895756107, 0.004904470895756107, 0.004904470895756107, 0.31478554029911215, 0.003660296980222234, 0.003660296980222234, 0.014641187920888936, 0.010980890940666703, 0.6112695956971131, 0.003660296980222234, 0.003660296980222234, 0.021961781881333405, 0.007320593960444468, 0.0046769571612705054, 0.06547740025778707, 0.05612348593524607, 0.0046769571612705054, 0.0046769571612705054, 0.14030871483811516, 0.009353914322541011, 0.0046769571612705054, 0.22917090090225475, 0.0046769571612705054, 0.46301875896578004, 0.0046769571612705054, 0.18621901901793178, 0.09310950950896589, 0.031036503169655297, 0.031036503169655297, 0.031036503169655297, 0.5896935602234507, 0.9608204027098856, 0.9818845814516516, 0.9117223515806342, 0.07311940930830135, 0.8774329116996162, 0.02644015664871656, 0.12258618082586768, 0.10095332538600868, 0.194695698958731, 0.07932046994614968, 0.007210951813286334, 0.043265710879718006, 0.019229204835430225, 0.04807301208857556, 0.16104459049672812, 0.01201825302214389, 0.07210951813286334, 0.019229204835430225, 0.016825554231001447, 0.019229204835430225, 0.016825554231001447, 0.021632855439859003, 0.01201825302214389, 0.007210951813286334, 0.18350149391843656, 0.1696126193787384, 0.04461274852145476, 0.12794599575964385, 0.063131247907719, 0.04461274852145476, 0.0568181231169471, 0.02988212400965366, 0.01346799955364672, 0.05345112322853542, 0.02904037403755074, 0.017676749414161322, 0.0231481242328303, 0.02188549927467592, 0.08880462205685806, 0.011363624623389421, 0.00547137481866898, 0.010521874651286501, 0.0021043749302573, 0.00294612490236022, 0.039533453222198145, 0.07412522479162152, 0.059300179833297224, 0.054358498180522456, 0.054358498180522456, 0.06424186148607199, 0.009883363305549536, 0.039533453222198145, 0.10871699636104491, 0.009883363305549536, 0.019766726611099072, 0.009883363305549536, 0.04447513487497291, 0.009883363305549536, 0.029650089916648612, 0.3113259441248104, 0.004941681652774768, 0.009883363305549536, 0.039533453222198145, 0.2136946927092168, 0.7326675178601718, 0.04650587331323171, 0.9301174662646341, 0.10007530854602714, 0.10007530854602714, 0.033358436182009045, 0.733885596004199, 0.016679218091004522, 0.09360451645075804, 0.1560075274179301, 0.04290207003993077, 0.01950094092724126, 0.07020338733806854, 0.06240301096717203, 0.031201505483586016, 0.01950094092724126, 0.007800376370896504, 0.03510169366903427, 0.007800376370896504, 0.3978191949157217, 0.003900188185448252, 0.003900188185448252, 0.003900188185448252, 0.011700564556344755, 0.003900188185448252, 0.02340112911268951, 0.003900188185448252, 0.9538953461061432, 0.024458855028362647, 0.9475018242201064, 0.8797121512501793, 0.9244375036213482, 0.012600614911357676, 0.36541783242937265, 0.012600614911357676, 0.5544270560997377, 0.03780184473407303, 0.0489236630895008, 0.0489236630895008, 0.8561641040662641, 0.007027517377141511, 0.9206047764055381, 0.021082552131424535, 0.007027517377141511, 0.021082552131424535, 0.0063085050880577085, 0.0063085050880577085, 0.031542525440288544, 0.5362229324849053, 0.012617010176115417, 0.0063085050880577085, 0.0063085050880577085, 0.37220180019540483, 0.0063085050880577085, 0.0978754263001943, 0.024468856575048575, 0.12234428287524288, 0.024468856575048575, 0.6606591275263115, 0.024468856575048575, 0.02197257944271179, 0.10986289721355895, 0.834958018823048, 0.04330750023339383, 0.8661500046678766, 0.97829200628879, 0.9257194052175116, 0.9770245793211764, 0.021711657318248364, 0.9460922895982457, 0.07922475840385962, 0.8714723424424559, 0.029813527171775336, 0.06558975977790574, 0.2787564790560994, 0.0715524652122608, 0.0626084070607282, 0.029813527171775336, 0.0134160872272989, 0.02385082173742027, 0.04322961439907424, 0.1073286978183912, 0.040248261681896706, 0.10583802145980244, 0.03726690896471917, 0.0089440581515326, 0.005962705434355067, 0.05664570162637314, 0.005962705434355067, 0.0044720290757663, 0.0014906763585887668, 0.0089440581515326, 0.7944926746360222, 0.11532958180200323, 0.02562879595600072, 0.06407198989000179, 0.9429247905069049, 0.014073504335923954, 0.014073504335923954, 0.16244310145100718, 0.8122155072550359, 0.015346575390079513, 0.015346575390079513, 0.015346575390079513, 0.598516440213101, 0.015346575390079513, 0.015346575390079513, 0.046039726170238535, 0.18415890468095414, 0.09207945234047707, 0.02008981911255064, 0.02008981911255064, 0.10044909556275321, 0.02008981911255064, 0.02008981911255064, 0.8035927645020257, 0.02008981911255064, 0.06476342951134588, 0.012952685902269176, 0.8807826413543041, 0.9448633508070308, 0.9779014565479451, 0.9248119998638938, 0.9094442006892574, 0.9387299680312495, 0.9509130806160208, 0.9410614354693299, 0.005992421434487033, 0.010272722459120627, 0.5530148923826604, 0.03338634799214204, 0.12498478991930097, 0.005136361229560313, 0.0077045418443404705, 0.004280301024633595, 0.014553023483754222, 0.006848481639413751, 0.01626514389360766, 0.010272722459120627, 0.012840903073900784, 0.004280301024633595, 0.05649997352516345, 0.08731814090252533, 0.005992421434487033, 0.03509846840199547, 0.0008560602049267189, 0.0034242408197068756, 0.9322020131447006, 0.017590634278633555, 0.9674848853248454, 0.9619935065131633, 0.06518812572641301, 0.09126337601697822, 0.013037625145282603, 0.8083327590075214, 0.013037625145282603, 0.9556134750653263, 0.028957984092888675, 0.11513246928020221, 0.038377489760067406, 0.8059272849614155, 0.019188744880033703, 0.018351235206584642, 0.8258055842963089, 0.018351235206584642, 0.018351235206584642, 0.09175617603292321, 0.022892512628420774, 0.9385930177652517, 0.022892512628420774, 0.9492768650930697, 0.060140711149290656, 0.9021106672393598, 0.9608110503180853, 0.1636040750082977, 0.020974881411320218, 0.02936483397584831, 0.05872966795169662, 0.008389952564528088, 0.016779905129056177, 0.05033971538716853, 0.12165431218565727, 0.004194976282264044, 0.05453469166943257, 0.041949762822640436, 0.004194976282264044, 0.33979307886338755, 0.0671196205162247, 0.016779905129056177, 0.026035834599244922, 0.026035834599244922, 0.052071669198489844, 0.1301791729962246, 0.7550392033781027, 0.938591780016813, 0.0328326092702026, 0.9521456688358754, 0.8977166463014601, 0.9210243016296545, 0.9530220126636776, 0.923639905504891, 0.9175795788560068, 0.9590320184377087, 0.011731399024470079, 0.046925596097880315, 0.005865699512235039, 0.005865699512235039, 0.8798549268352559, 0.005865699512235039, 0.023462798048940157, 0.017597098536705116, 0.014083238846703646, 0.957660241575848, 0.014083238846703646, 0.014083238846703646, 0.9143714340895475, 0.9398343441128247, 0.04900919053020365, 0.22054135738591646, 0.6738763697903003, 0.024504595265101826, 0.012252297632550913, 0.18634090376751597, 0.10276983177481185, 0.09260578247840189, 0.18972892019965262, 0.05307892410347425, 0.02258677621424436, 0.14003801252831505, 0.01129338810712218, 0.021457437403532145, 0.03388016432136654, 0.024845453835668798, 0.01129338810712218, 0.04291487480706429, 0.00564669405356109, 0.03049214788922989, 0.013552065728546617, 0.001129338810712218, 0.009034710485697744, 0.001129338810712218, 0.0033880164321366544, 0.05091958758030236, 0.02545979379015118, 0.8656329888651401, 0.05091958758030236, 0.005630643080427462, 0.7319836004555701, 0.03378385848256477, 0.039414501562992234, 0.005630643080427462, 0.005630643080427462, 0.0816443246661982, 0.0365991800227785, 0.005630643080427462, 0.002815321540213731, 0.02533789386192358, 0.005630643080427462, 0.002815321540213731, 0.014076607701068656, 0.9418386889301767, 0.035627594049090806, 0.8194346631290885, 0.035627594049090806, 0.035627594049090806, 0.035627594049090806, 0.008959060554197169, 0.008959060554197169, 0.008959060554197169, 0.4837892699266471, 0.2598127560717179, 0.008959060554197169, 0.026877181662591506, 0.19709933219233772, 0.0017130181516551552, 0.0034260363033103104, 0.08393788943110261, 0.17301483331717069, 0.08393788943110261, 0.0017130181516551552, 0.0017130181516551552, 0.0034260363033103104, 0.4727930098568228, 0.0017130181516551552, 0.0034260363033103104, 0.011991127061586086, 0.005139054454965466, 0.0017130181516551552, 0.013704145213241242, 0.0034260363033103104, 0.015417163364896397, 0.11134617985758509, 0.0017130181516551552, 0.0034260363033103104, 0.005324905840185404, 0.08519849344296647, 0.015974717520556212, 0.07987358760278107, 0.697562665064288, 0.005324905840185404, 0.06389887008222485, 0.005324905840185404, 0.010649811680370809, 0.021299623360741617, 0.015974717520556212, 0.003589906392920779, 0.0053848595893811685, 0.22795905595046947, 0.19923980480710324, 0.0017949531964603896, 0.016154578768143506, 0.007179812785841558, 0.0017949531964603896, 0.09333756621594026, 0.003589906392920779, 0.3141168093805682, 0.003589906392920779, 0.0053848595893811685, 0.021539438357524674, 0.06820822146549481, 0.0017949531964603896, 0.021539438357524674, 0.0017949531964603896, 0.9066256298643206, 0.9362611959818824, 0.021596034478273678, 0.25051399994797463, 0.03887286206089262, 0.030234448269583148, 0.004319206895654735, 0.004319206895654735, 0.5312624481655325, 0.004319206895654735, 0.004319206895654735, 0.012957620686964206, 0.00863841379130947, 0.00863841379130947, 0.00863841379130947, 0.004319206895654735, 0.012957620686964206, 0.03455365516523788, 0.021596034478273678, 0.9135171669236875, 0.05441659569676728, 0.1583028238451412, 0.009893926490321324, 0.02968177947096397, 0.16324978709030183, 0.014840889735481986, 0.02968177947096397, 0.4402797288192989, 0.004946963245160662, 0.06925748543224926, 0.004946963245160662, 0.011043367992409826, 0.1214770479165081, 0.03313010397722948, 0.5852985035977208, 0.03313010397722948, 0.06626020795445896, 0.011043367992409826, 0.11043367992409826, 0.011043367992409826, 0.9564844238429258, 0.017080078997195103, 0.843527481893551, 0.11837423986680146, 0.21983787403834557, 0.042276514238143374, 0.11837423986680146, 0.01972903997780024, 0.0676424227810294, 0.05355025136831494, 0.012682954271443012, 0.018319822836528797, 0.03241199424924326, 0.03945807995560048, 0.036639645673057594, 0.07187007420484373, 0.03241199424924326, 0.06482398849848652, 0.042276514238143374, 0.0028184342825428917, 0.0028184342825428917, 0.0014092171412714459, 0.0028184342825428917, 0.8668264988898611, 0.9364960135624734, 0.09369330850801218, 0.1592786244636207, 0.028107992552403656, 0.009369330850801218, 0.1499092936128195, 0.018738661701602436, 0.018738661701602436, 0.43098921913685606, 0.04684665425400609, 0.009369330850801218, 0.018738661701602436, 0.9461785507605187, 0.9628360850799466, 0.9537990519526842, 0.9360348505313777, 0.0037419941404646224, 0.03243061588402673, 0.03617261002449135, 0.06985055728867295, 0.026193958983252358, 0.00623665690077437, 0.0049893255206194965, 0.0024946627603097482, 0.6323970097385212, 0.007483988280929245, 0.0012473313801548741, 0.026193958983252358, 0.0037419941404646224, 0.0024946627603097482, 0.05737724348712421, 0.0024946627603097482, 0.01496797656185849, 0.05737724348712421, 0.0012473313801548741, 0.01247331380154874, 0.007671874952650172, 0.06648958292296815, 0.04603124971590103, 0.6853541624367487, 0.007671874952650172, 0.010229166603533563, 0.0025572916508833908, 0.0051145833017667815, 0.061374999621201375, 0.015343749905300344, 0.0025572916508833908, 0.010229166603533563, 0.023015624857950515, 0.03835937476325086, 0.012786458254416953, 0.0051145833017667815, 0.04632943083981475, 0.057911788549768445, 0.706523820307175, 0.03474707312986106, 0.011582357709953688, 0.011582357709953688, 0.002895589427488422, 0.0260603048473958, 0.005791178854976844, 0.005791178854976844, 0.06370296740474529, 0.008686768282465266, 0.002895589427488422, 0.002895589427488422, 0.008686768282465266, 0.00887917300439708, 0.03995627851978686, 0.0665937975329781, 0.026637519013191238, 0.00443958650219854, 0.00443958650219854, 0.00443958650219854, 0.48835451524183937, 0.00443958650219854, 0.00443958650219854, 0.00887917300439708, 0.00443958650219854, 0.0665937975329781, 0.00443958650219854, 0.013318759506595619, 0.24417725762091969, 0.00443958650219854, 0.032056641122144035, 0.10532896368704468, 0.00457952016030629, 0.01831808064122516, 0.5358038587558359, 0.03663616128245032, 0.045795201603062906, 0.032056641122144035, 0.03663616128245032, 0.08701088304581951, 0.00457952016030629, 0.00915904032061258, 0.013738560480918871, 0.032056641122144035, 0.00457952016030629, 0.00457952016030629, 0.00457952016030629, 0.029403267704385793, 0.9409045665403454, 0.9667938160123614, 0.9202479982036585, 0.8681348332072751, 0.05193969087564894, 0.06677960255440578, 0.020429910945765902, 0.0612897328372977, 0.36773839702378625, 0.06639721057373918, 0.0051074777364414755, 0.010214955472882951, 0.36263091928734476, 0.010214955472882951, 0.05107477736441475, 0.015322433209324426, 0.015322433209324426, 0.0051074777364414755, 0.9224017438408374, 0.031806956684166804, 0.949622906060469, 0.035171218742980334, 0.9548201806006746, 0.042219576463501496, 0.021109788231750748, 0.021109788231750748, 0.042219576463501496, 0.08443915292700299, 0.7810621645747777, 0.009844966047113077, 0.009844966047113077, 0.35301235397505465, 0.10126250791316307, 0.15189376186974463, 0.0056256948840646154, 0.0056256948840646154, 0.011251389768129231, 0.11532674512332462, 0.015470660931177693, 0.04219271163048462, 0.07735330465588847, 0.02109635581524231, 0.004219271163048462, 0.016877084652193848, 0.02812847442032308, 0.011251389768129231, 0.011251389768129231, 0.0014064237210161539, 0.0056256948840646154, 0.9527325149257186, 0.9661143067203158, 0.1391170556802527, 0.8347023340815162, 0.8685809919053845, 0.04825449955029914, 0.014704251444253804, 0.007352125722126902, 0.904311463821609, 0.007352125722126902, 0.007352125722126902, 0.007352125722126902, 0.007352125722126902, 0.014704251444253804, 0.007352125722126902, 0.019024542493101728, 0.0021138380547890807, 0.008455352219156323, 0.0021138380547890807, 0.8582182502443668, 0.004227676109578161, 0.004227676109578161, 0.012683028328734485, 0.0021138380547890807, 0.0021138380547890807, 0.0021138380547890807, 0.021138380547890807, 0.0021138380547890807, 0.006341514164367242, 0.0021138380547890807, 0.004227676109578161, 0.038049084986203456, 0.006341514164367242, 0.9369136691332599, 0.034933328662128074, 0.029111107218440065, 0.005822221443688013, 0.005822221443688013, 0.7335999019046896, 0.029111107218440065, 0.029111107218440065, 0.023288885774752053, 0.017466664331064037, 0.023288885774752053, 0.005822221443688013, 0.011644442887376026, 0.005822221443688013, 0.005822221443688013, 0.034933328662128074, 0.04345098530550587, 0.021725492652752934, 0.7386667501935998, 0.04345098530550587, 0.021725492652752934, 0.021725492652752934, 0.0651764779582588, 0.9155192260852767, 0.9069089564226178, 0.06895653436811416, 0.007661837152012686, 0.053632860064088794, 0.038309185760063424, 0.011492755728019027, 0.7661837152012685, 0.04597102291207611, 0.003830918576006343, 0.003830918576006343, 0.005648925035834776, 0.009885618812710857, 0.14828428219066286, 0.001412231258958694, 0.00706115629479347, 0.01412231258958694, 0.41802045265177346, 0.01694677510750433, 0.08049718176064556, 0.001412231258958694, 0.12992527582419985, 0.01694677510750433, 0.1398108946369107, 0.00706115629479347, 0.001412231258958694, 0.949689705448888, 0.9828343573305168, 0.9829752170948864, 0.011782733390753499, 0.041239566867637245, 0.14728416738441874, 0.02945683347688375, 0.2003064676428095, 0.0058913666953767495, 0.023565466781506998, 0.0058913666953767495, 0.0058913666953767495, 0.08247913373527449, 0.0058913666953767495, 0.38293883519948874, 0.01767410008613025, 0.01767410008613025, 0.0058913666953767495, 0.0058913666953767495, 0.011782733390753499, 0.8857677831287843, 0.052103987242869666, 0.9320863241633134, 0.9601665092664019, 0.8990834580571, 0.009137886311975355, 0.06396520418382748, 0.3472396798550635, 0.004568943155987677, 0.027413658935926063, 0.05025837471586445, 0.009137886311975355, 0.2010334988634578, 0.009137886311975355, 0.013706829467963031, 0.05025837471586445, 0.10508569258771658, 0.004568943155987677, 0.004568943155987677, 0.09594780627574122, 0.9701119398437048, 0.01750641819655058, 0.005835472732183527, 0.9161692189528137, 0.005835472732183527, 0.005835472732183527, 0.005835472732183527, 0.011670945464367054, 0.01750641819655058, 0.9674127359877652, 0.222313114848207, 0.05366178634267066, 0.00766596947752438, 0.01533193895504876, 0.6132775582019504, 0.01533193895504876, 0.01533193895504876, 0.03066387791009752, 0.9180472925552331, 0.0143917466786032, 0.935463534109208, 0.0143917466786032, 0.0143917466786032, 0.24885320702394748, 0.23349747374116306, 0.01896884699638075, 0.11065160747888772, 0.0736171919145253, 0.06368112920213538, 0.05826145863174088, 0.026646713637772962, 0.020323764638979377, 0.025743435209373878, 0.01851720778218121, 0.027098352851972502, 0.02890490970877067, 0.007677866641392209, 0.019420486210580293, 0.0054196705703945, 0.0036131137135963338, 0.0063229489987935835, 0.0009032784283990834, 0.0022581960709977087, 0.11781043561547785, 0.28907190220464474, 0.03708847047153933, 0.06981359147583872, 0.0992662003797082, 0.06435940464178883, 0.05672354307411897, 0.028361771537059485, 0.006545024200859881, 0.07744945304350859, 0.026180096803439523, 0.026180096803439523, 0.026180096803439523, 0.01745339786895968, 0.023998422069819562, 0.009817536301289821, 0.006545024200859881, 0.011999211034909781, 0.00109083736680998, 0.00436334946723992, 0.9327859990095957, 0.2967921898610893, 0.12441943330421211, 0.0699859312336193, 0.053137466307007254, 0.05184143054342171, 0.0272167510352964, 0.07646611005154702, 0.006480178817927714, 0.03888107290756628, 0.024624679508125313, 0.09849871803250125, 0.006480178817927714, 0.049249359016250625, 0.007776214581513257, 0.029808822562467484, 0.015552429163026514, 0.007776214581513257, 0.007776214581513257, 0.0012960357635855427, 0.0025920715271710855, 0.05081857615961382, 0.12704644039903454, 0.10587203366586212, 0.05081857615961382, 0.05081857615961382, 0.004234881346634485, 0.02540928807980691, 0.00846976269326897, 0.021174406733172425, 0.00846976269326897, 0.3684346771572002, 0.04658369481297934, 0.004234881346634485, 0.004234881346634485, 0.11857667770576558, 0.004234881346634485, 0.9585788099845508, 0.9795480290433161, 0.01605517019614943, 0.8830343607882186, 0.06422068078459772, 0.01605517019614943, 0.3683195668946107, 0.08359025631650739, 0.06791708325716225, 0.03918293264836284, 0.05746830121759883, 0.010448782039563424, 0.22726100936050447, 0.005224391019781712, 0.007836586529672568, 0.02612195509890856, 0.01306097754945428, 0.020897564079126848, 0.020897564079126848, 0.005224391019781712, 0.020897564079126848, 0.01306097754945428, 0.002612195509890856, 0.007836586529672568, 0.002612195509890856, 0.002612195509890856, 0.9699126358625236, 0.6086286567986433, 0.0027791262867517957, 0.15285194577134878, 0.016674757720510774, 0.008337378860255387, 0.008337378860255387, 0.12506068290383082, 0.011116505147007183, 0.0027791262867517957, 0.055582525735035915, 0.0055582525735035915, 0.0027791262867517957, 0.9757114583985775, 0.9226892595095391, 0.4085225451087104, 0.19308279495187805, 0.020324504731776636, 0.048778811356263926, 0.053859937539208085, 0.05995728895874108, 0.06198973943191874, 0.013210928075654814, 0.004064900946355327, 0.02947053186107612, 0.008129801892710654, 0.01117847760247715, 0.041665234700142106, 0.010162252365888318, 0.018292054258598974, 0.0020324504731776636, 0.006097351419532991, 0.006097351419532991, 0.0010162252365888318, 0.0030486757097664954, 0.7267703886941427, 0.04225409236593853, 0.008450818473187705, 0.022535515928500546, 0.011267757964250273, 0.06760654778550164, 0.0028169394910625683, 0.008450818473187705, 0.01690163694637541, 0.0028169394910625683, 0.056338789821251366, 0.0028169394910625683, 0.005633878982125137, 0.01690163694637541, 0.08181374985049811, 0.8181374985049811, 0.25484878117684107, 0.033979837490245475, 0.6965866685500322, 0.898589251245789, 0.013298066717154628, 0.1037249203938061, 0.10904414708066795, 0.4734111751307048, 0.03989420015146389, 0.005319226686861851, 0.005319226686861851, 0.03457497346460203, 0.01861729340401648, 0.013298066717154628, 0.005319226686861851, 0.015957680060585556, 0.007978840030292778, 0.13032105382811535, 0.005319226686861851, 0.005319226686861851, 0.005319226686861851, 0.005319226686861851, 0.005752331388685043, 0.0402663197207953, 0.08628497083027564, 0.3566445460984727, 0.02300932555474017, 0.005752331388685043, 0.011504662777370086, 0.005752331388685043, 0.0805326394415906, 0.02300932555474017, 0.011504662777370086, 0.02300932555474017, 0.011504662777370086, 0.011504662777370086, 0.2531025811021419, 0.028761656943425216, 0.005752331388685043, 0.01725699416605513, 0.9320747831666363, 0.048333391923745916, 0.9183344465511725, 0.9646681169955245, 0.9717158236364417, 0.9642852741203312, 0.9638325919525333, 0.9747393219259193, 0.000603400228759207, 0.015688405947739383, 0.23472268898733153, 0.03258361235299718, 0.02896321098044194, 0.004827201830073656, 0.011464604346424934, 0.006034002287592071, 0.3137681189547877, 0.000603400228759207, 0.24437709264747887, 0.0018102006862776212, 0.004827201830073656, 0.005430602058832864, 0.001206800457518414, 0.0772352292811785, 0.001206800457518414, 0.004827201830073656, 0.001206800457518414, 0.007240802745110485, 0.03983282886055365, 0.9559878926532875, 0.0010791268051918265, 0.005395634025959132, 0.5115061056609258, 0.19316369812933695, 0.06798498872708507, 0.002158253610383653, 0.002158253610383653, 0.006474760831150959, 0.07445974955823603, 0.0010791268051918265, 0.08417189080496247, 0.004316507220767306, 0.0161869020778774, 0.004316507220767306, 0.0010791268051918265, 0.009712141246726438, 0.0010791268051918265, 0.004316507220767306, 0.0010791268051918265, 0.008633014441534612, 0.9384923992000755, 0.1760082538879177, 0.8096379678844213, 0.9822065198286193, 0.2862244794495002, 0.10106578654416315, 0.12189613949601356, 0.10723774297434105, 0.10338027020547987, 0.02777380393580056, 0.04397518956501755, 0.009257934645266853, 0.02468782572071161, 0.02777380393580056, 0.03085978215088951, 0.017744374736761468, 0.02083035295185042, 0.008486440091494615, 0.03085978215088951, 0.018515869290533706, 0.006171956430177902, 0.01080092375281133, 0.0007714945537722378, 0.0015429891075444755, 0.042999452423923994, 0.14094264961175088, 0.045388310891919775, 0.5279377214270669, 0.023888584679957775, 0.016722009275970444, 0.031055160083945106, 0.011944292339978888, 0.03822173548793244, 0.011944292339978888, 0.014333150807974666, 0.021499726211961997, 0.004777716935991555, 0.011944292339978888, 0.014333150807974666, 0.011944292339978888, 0.011944292339978888, 0.0023888584679957773, 0.0023888584679957773, 0.011944292339978888, 0.03206598832028836, 0.09619796496086508, 0.801649708007209, 0.03206598832028836, 0.18892233066119382, 0.24049041581616257, 0.07759310009299032, 0.06072503485538373, 0.06988198455579873, 0.038073632964883454, 0.045302803781000565, 0.08530421563018191, 0.020723623006202386, 0.03084446214876634, 0.021687512448351334, 0.011084728584712903, 0.014940286353308695, 0.020723623006202386, 0.012530562747936326, 0.01542223107438317, 0.03084446214876634, 0.007229170816117111, 0.0014458341632234222, 0.005301391931819215, 0.0576635061816386, 0.8937843458153983, 0.03247437619047237, 0.04871156428570856, 0.005412396031745396, 0.010824792063490792, 0.02706198015872698, 0.04329916825396317, 0.779385028571337, 0.005412396031745396, 0.010824792063490792, 0.021649584126981584, 0.005412396031745396, 0.005412396031745396, 0.9529239084516838, 0.9506444878458653, 0.9843132711292508, 0.1512649578520801, 0.06050598314083204, 0.7260717976899844, 0.02484321885194118, 0.08695126598179413, 0.7452965655582354, 0.006210804712985295, 0.006210804712985295, 0.006210804712985295, 0.006210804712985295, 0.062108047129852954, 0.006210804712985295, 0.031054023564926477, 0.006210804712985295, 0.006210804712985295, 0.9749352627950874, 0.021436278523981993, 0.7645606006886911, 0.02858170469864266, 0.05716340939728532, 0.007145426174660665, 0.021436278523981993, 0.007145426174660665, 0.007145426174660665, 0.007145426174660665, 0.01429085234932133, 0.021436278523981993, 0.021436278523981993, 0.007145426174660665, 0.06309257734676424, 0.07360800690455828, 0.04206171823117616, 0.6414412030254364, 0.00525771477889702, 0.03154628867338212, 0.00525771477889702, 0.00525771477889702, 0.00525771477889702, 0.01051542955779404, 0.09463886602014634, 0.01577314433669106, 0.9779490948058941, 0.9854893289074614, 0.9565370313622718, 0.007040863239178113, 0.04928604267424679, 0.014081726478356225, 0.007040863239178113, 0.8941896313756204, 0.014081726478356225, 0.007040863239178113, 0.03509852610098363, 0.02105911566059018, 0.04913793654137708, 0.6738917011388857, 0.03509852610098363, 0.1333743991837378, 0.028078820880786906, 0.014039410440393453, 0.2689101112344426, 0.013117566401680126, 0.006558783200840063, 0.013117566401680126, 0.013117566401680126, 0.5902904880756056, 0.019676349602520186, 0.013117566401680126, 0.019676349602520186, 0.013117566401680126, 0.006558783200840063, 0.006558783200840063, 0.006558783200840063, 0.006558783200840063, 0.9637927784456629, 0.002582509899513222, 0.007747529698539666, 0.6921126530695435, 0.018077569296592554, 0.01291254949756611, 0.002582509899513222, 0.002582509899513222, 0.007747529698539666, 0.13687302467420076, 0.002582509899513222, 0.06456274748783054, 0.005165019799026444, 0.01291254949756611, 0.002582509899513222, 0.007747529698539666, 0.010330039598052888, 0.01291254949756611, 0.002582509899513222, 0.823797299771783, 0.03813876387832328, 0.015255505551329315, 0.03051101110265863, 0.007627752775664657, 0.007627752775664657, 0.04576651665398794, 0.007627752775664657, 0.10028406015956248, 0.8357005013296874, 0.03342802005318749, 0.15343284459731357, 0.019179105574664197, 0.019179105574664197, 0.767164222986568, 0.03835821114932839, 0.9428443568988274, 0.006043201145303008, 0.042302408017121054, 0.006043201145303008, 0.13899362634196918, 0.006043201145303008, 0.09064801717954511, 0.012086402290606016, 0.5559745053678767, 0.12086402290606016, 0.018129603435909022, 0.9683323181948429, 0.07142174784468228, 0.03571087392234114, 0.8927718480585285, 0.8763417983628746, 0.08988121008849996, 0.9178019247996732, 0.9694946269799646, 0.9692787867381467, 0.032568443414459636, 0.02171229560963976, 0.1990293764216978, 0.10132404617831887, 0.039805875284339556, 0.018093579674699798, 0.04342459121927952, 0.00723743186987992, 0.02894972747951968, 0.01447486373975984, 0.11218019398313876, 0.018093579674699798, 0.018093579674699798, 0.00361871593493996, 0.00723743186987992, 0.18455451268193795, 0.018093579674699798, 0.11941762585301868, 0.00361871593493996, 0.01447486373975984, 0.9814412902787952, 0.9139302877520831, 0.0062322797784114285, 0.20815814459894172, 0.004985823822729143, 0.053597606094338286, 0.0024929119113645715, 0.0012464559556822857, 0.0024929119113645715, 0.6132563301956846, 0.0024929119113645715, 0.007478735734093715, 0.0012464559556822857, 0.008725191689776, 0.0024929119113645715, 0.0024929119113645715, 0.017450383379552, 0.007478735734093715, 0.052351150138656, 0.0024929119113645715, 0.0012464559556822857, 0.0024929119113645715, 0.00558392593868509, 0.12656898794352872, 0.009306543231141816, 0.03164224698588218, 0.0018613086462283632, 0.6272610137789585, 0.0018613086462283632, 0.0018613086462283632, 0.00558392593868509, 0.026058321047197085, 0.0018613086462283632, 0.0018613086462283632, 0.009306543231141816, 0.0018613086462283632, 0.13773683982089888, 0.0037226172924567265, 0.00558392593868509, 0.9699878915642978, 0.9410338405010119, 0.009407765263308986, 0.8466988736978087, 0.037631061053235944, 0.04703882631654493, 0.037631061053235944, 0.009407765263308986, 0.46323203244287037, 0.5053440353922223, 0.9664747535170568, 0.12226711268285512, 0.027787980155194344, 0.7280450800660918, 0.011115192062077738, 0.06113355634142756, 0.027787980155194344, 0.011115192062077738, 0.005557596031038869, 0.9840056946327222, 0.025674942855420983, 0.051349885710841967, 0.8472731142288924, 0.025674942855420983, 0.025674942855420983, 0.9338760373460057, 0.9640375323416045, 0.95490287324783, 0.965513585662975, 0.9878880038154794, 0.9716663510033746, 0.9479271140986625, 0.9664644858502955, 0.9798076107748852, 0.07733688556781729, 0.06444740463984774, 0.038668442783908644, 0.017185974570626063, 0.038668442783908644, 0.017185974570626063, 0.008592987285313032, 0.5929161226865992, 0.004296493642656516, 0.05155792371187819, 0.008592987285313032, 0.004296493642656516, 0.012889480927969547, 0.004296493642656516, 0.017185974570626063, 0.03007545549859561, 0.004296493642656516, 0.004296493642656516, 0.9523144656667067, 0.02720898473333448, 0.09143341361282843, 0.383113559518215, 0.018891201159675297, 0.12241498351469592, 0.05213971520070382, 0.04307193864405968, 0.12392627960746995, 0.027958977716319437, 0.0075564804638701185, 0.018135553113288284, 0.00831212851025713, 0.014357312881353225, 0.012846016788579202, 0.022669441391610357, 0.04004934645851163, 0.0037782402319350592, 0.0007556480463870119, 0.005289536324709083, 0.0015112960927740238, 0.0015112960927740238, 0.11413157494688185, 0.29665660304545316, 0.053859844356955476, 0.15388526959130136, 0.040181153726617576, 0.011968854301545661, 0.047875417206182644, 0.04915779445277683, 0.020090576863308788, 0.023510249520893263, 0.015815986041328195, 0.05898935334333219, 0.030349594836062213, 0.02650246309627968, 0.028639758507269977, 0.012396313383743722, 0.011113936137149543, 0.0029922135753864152, 0.0008549181643961187, 0.002137295410990297, 0.9456814897462512, 0.9101705505802317, 0.027628957927096104, 0.009209652642365368, 0.018419305284730736, 0.07367722113892294, 0.009209652642365368, 0.8380783904552485, 0.009209652642365368, 0.009209652642365368, 0.23874057009777824, 0.049846932218217434, 0.013117613741636168, 0.0026235227483272336, 0.37516375301079435, 0.21775238811116038, 0.018364659238290632, 0.027984242648823824, 0.001749015165551489, 0.006996060662205956, 0.0026235227483272336, 0.004372537913878722, 0.005247045496654467, 0.00961958341053319, 0.013992121324411912, 0.0008745075827757445, 0.0026235227483272336, 0.005247045496654467, 0.0008745075827757445, 0.0008745075827757445, 0.9126377175177216, 0.9669708010053151, 0.11591941643360956, 0.19871899960047354, 0.6458367487015391, 0.0016537976236763363, 0.006615190494705345, 0.47629371561878486, 0.2877607865196825, 0.0181917738604397, 0.0016537976236763363, 0.0033075952473526726, 0.0033075952473526726, 0.03307595247352673, 0.0033075952473526726, 0.06284430969970078, 0.03307595247352673, 0.008268988118381683, 0.004961392871029009, 0.006615190494705345, 0.016537976236763365, 0.0033075952473526726, 0.016537976236763365, 0.009922785742058017, 0.9181331505161975, 0.878593698604341, 0.14785683318173817, 0.3744898479766975, 0.059385121523812874, 0.07392841659086909, 0.029086590134112425, 0.0206030013449963, 0.024238825111760356, 0.07271647533528107, 0.01575523632264423, 0.02666270762293639, 0.01090747130029216, 0.04847765022352071, 0.027874648878524408, 0.006059706277940089, 0.03878212017881657, 0.006059706277940089, 0.0024238825111760356, 0.007271647533528106, 0.004847765022352071, 0.004847765022352071, 0.20585890728819303, 0.7485778446843383, 0.009357223058554229, 0.009357223058554229, 0.4227936497434292, 0.011274497326491445, 0.005637248663245722, 0.011274497326491445, 0.5045337553604922, 0.005637248663245722, 0.02254899465298289, 0.002818624331622861, 0.005637248663245722, 0.046279050503364914, 0.9255810100672982, 0.0773181122129436, 0.09986922827505215, 0.04832382013308975, 0.00322158800887265, 0.01610794004436325, 0.0193295280532359, 0.0064431760177453, 0.0064431760177453, 0.00322158800887265, 0.5831074296059496, 0.00322158800887265, 0.0837612882306889, 0.00966476402661795, 0.00322158800887265, 0.0257727040709812, 0.00322158800887265, 0.00322158800887265, 0.00322158800887265, 0.97393701968569, 0.9621416895328061, 0.01425269001294172, 0.686979658623791, 0.005701076005176688, 0.005701076005176688, 0.04275807003882516, 0.09121721608282701, 0.005701076005176688, 0.07411398806729695, 0.031355918028471784, 0.002850538002588344, 0.011402152010353377, 0.002850538002588344, 0.01425269001294172, 0.005701076005176688, 0.002850538002588344, 0.9300853907514953, 0.972256132397506, 0.9496440693244236, 0.03926851807717214, 0.01963425903858607, 0.6871990663505124, 0.01963425903858607, 0.21597684942444678, 0.09963330144241284, 0.044281467307739034, 0.7749256778854331, 0.055351834134673795, 0.022140733653869517, 0.09000441937632507, 0.16258862855078077, 0.050808946422118986, 0.11323136631215089, 0.05951905152305367, 0.02903368366978228, 0.02467863111931494, 0.015968526018380252, 0.22065599589034532, 0.017420210201869367, 0.005806736733956456, 0.027581999486293165, 0.017420210201869367, 0.023226946935825825, 0.04645389387165165, 0.010161789284423798, 0.01887189438535848, 0.0624224198900319, 0.001451684183489114, 0.002903368366978228, 0.008030263185648541, 0.18469605326991642, 0.41355855406089986, 0.09435559243137036, 0.0020075657964121352, 0.0020075657964121352, 0.0020075657964121352, 0.11643881619190384, 0.0020075657964121352, 0.008030263185648541, 0.05219671070671551, 0.008030263185648541, 0.0020075657964121352, 0.05219671070671551, 0.022083223760533486, 0.006022697389236406, 0.016060526371297082, 0.0020075657964121352, 0.013703357005695475, 0.3014738541253005, 0.6440577792676874, 0.945732671010578, 0.9492880570185092, 0.017074141427916186, 0.9561519199633065, 0.017074141427916186, 0.09313622396740937, 0.11383316262683367, 0.10348469329712151, 0.5691658131341684, 0.10348469329712151, 0.01034846932971215, 0.007081347589173187, 0.04956943312421231, 0.004720898392782125, 0.02124404276751956, 0.00944179678556425, 0.014162695178346374, 0.19119638490767604, 0.007081347589173187, 0.2077195292824135, 0.0188835935711285, 0.0023604491963910624, 0.014162695178346374, 0.4390435505287376, 0.0023604491963910624, 0.0023604491963910624, 0.0023604491963910624, 0.004720898392782125, 0.0023604491963910624, 0.0023604491963910624, 0.09878379305680142, 0.09967373713839422, 0.15485027019714817, 0.21892624407183017, 0.04627709224282589, 0.021358657958227334, 0.04093742775326906, 0.00800949673433525, 0.04983686856919711, 0.01779888163185611, 0.04627709224282589, 0.03559776326371222, 0.018688825713448917, 0.021358657958227334, 0.04894692448760431, 0.02847821061096978, 0.00800949673433525, 0.029368154692562584, 0.0008899440815928056, 0.004449720407964028, 0.07876883633735098, 0.03938441816867549, 0.8664571997108608, 0.856384120304314, 0.016159135924358383, 0.005386378641452794, 0.9587753981785975, 0.005386378641452794, 0.005386378641452794, 0.8729044679510959, 0.9372904799565008, 0.017275182848999013, 0.8292087767519527, 0.10365109709399409, 0.04632318021267708, 0.1522047349845104, 0.10323451590253749, 0.12573434629155208, 0.07411708834028333, 0.0238233498236625, 0.0238233498236625, 0.055587816255212495, 0.05691133568986041, 0.11514619081436875, 0.006617597173239583, 0.08470524381746666, 0.029117427562254165, 0.015882233215774998, 0.0238233498236625, 0.03044094699690208, 0.01852927208507083, 0.010588155477183333, 0.0013235194346479166, 0.0052940777385916665, 0.9436224108479685, 0.5822581217057696, 0.0895781725701184, 0.0447890862850592, 0.00895781725701184, 0.0223945431425296, 0.12093053296965983, 0.01791563451402368, 0.02015508882827664, 0.00223945431425296, 0.00895781725701184, 0.00895781725701184, 0.00671836294275888, 0.0223945431425296, 0.01567618019977072, 0.01791563451402368, 0.00223945431425296, 0.00223945431425296, 0.00447890862850592, 0.00223945431425296, 0.8856141016648612, 0.014760235027747688, 0.05904094011099075, 0.012151686278799648, 0.04556882354549868, 0.006075843139399824, 0.003037921569699912, 0.9083385493402737, 0.003037921569699912, 0.003037921569699912, 0.009113764709099735, 0.003037921569699912, 0.003037921569699912, 0.003037921569699912, 0.06526669130467838, 0.582379707026361, 0.0368171079154596, 0.038490612820707766, 0.0184085539577298, 0.021755563768226127, 0.016735049052481635, 0.08032823545191185, 0.008367524526240818, 0.021755563768226127, 0.016735049052481635, 0.016735049052481635, 0.011714534336737146, 0.01338803924198531, 0.028449583389218783, 0.010041029431488982, 0.006694019620992655, 0.0033470098104963274, 0.0016735049052481637, 0.0016735049052481637, 0.05354210387031184, 0.9280631337520718, 0.1796946919060678, 0.09513248395027118, 0.03171082798342373, 0.042281103977898304, 0.5390840757182034, 0.08456220795579661, 0.010570275994474576, 0.9560401003036081, 0.9336836363679969, 0.9320988312854241, 0.06298539546231573, 0.031492697731157863, 0.8817955364724203, 0.6376523522078775, 0.06949889397361063, 0.029537029938784515, 0.017374723493402657, 0.008687361746701329, 0.06602394927493009, 0.033011974637465046, 0.006949889397361062, 0.010424834096041594, 0.026062085240103984, 0.015637251144062392, 0.008687361746701329, 0.031274502288124784, 0.020849668192083188, 0.006949889397361062, 0.0017374723493402656, 0.003474944698680531, 0.0017374723493402656, 0.005212417048020797, 0.8818002493901917, 0.909482021097984, 0.8787411662828707, 0.9548078514725843, 0.8781807961050714, 0.8214075700309293, 0.13981405447334969, 0.008129377723406207, 0.011381128812768688, 0.5836893205405655, 0.03414338643830606, 0.02601400871489986, 0.0016258755446812412, 0.009755253268087447, 0.006503502178724965, 0.07316439951065586, 0.004877626634043723, 0.11543716367236813, 0.021136382080856136, 0.02601400871489986, 0.0016258755446812412, 0.0032517510893624825, 0.047150390795755996, 0.0016258755446812412, 0.022762257625537376, 0.0016258755446812412, 0.0016258755446812412, 0.007430849523821469, 0.011146274285732203, 0.7393695276202361, 0.01857712380955367, 0.01857712380955367, 0.0037154247619107343, 0.0037154247619107343, 0.03715424761910734, 0.007430849523821469, 0.06316222095248249, 0.007430849523821469, 0.03343882285719661, 0.007430849523821469, 0.0037154247619107343, 0.01857712380955367, 0.0037154247619107343, 0.014861699047642937, 0.0037154247619107343, 0.7843642775522205, 0.007843642775522205, 0.1725601410614885, 0.023530928326566614, 0.9522325327922375, 0.0693410851197301, 0.8667635639966262, 0.049225243162339574, 0.08204207193723263, 0.8204207193723263, 0.03281682877489305, 0.016408414387446526, 0.9692657845164828, 0.030973874599166354, 0.030973874599166354, 0.8982423633758242, 0.030973874599166354, 0.8502763337471791, 0.8718321808056214, 0.011942906586378374, 0.011942906586378374, 0.02388581317275675, 0.035828719759135125, 0.035828719759135125, 0.898148801671974, 0.9196660043673875, 0.9314115587552957, 0.09662502786779444, 0.86962525081015, 0.9723062953105841, 0.005929062306175876, 0.016601374457292453, 0.399618799436254, 0.13162518319710445, 0.02015881184099798, 0.0035574373837055254, 0.008300687228646226, 0.007114874767411051, 0.05929062306175876, 0.03557437383705525, 0.07826362244152156, 0.023716249224703504, 0.027273686608409026, 0.005929062306175876, 0.0426892486044663, 0.07352037259658085, 0.0023716249224703502, 0.05454737321681805, 0.0011858124612351751, 0.0023716249224703502, 0.021736024555998167, 0.042069724947093226, 0.36951241745196883, 0.08133480156438025, 0.1563591443866965, 0.032253455792771474, 0.01262091748412797, 0.011919755401676415, 0.09325455696605665, 0.017529052061288845, 0.032253455792771474, 0.0091151070718702, 0.026644159133159043, 0.021736024555998167, 0.01682788997883729, 0.01121859331922486, 0.016126727896385737, 0.021034862473546613, 0.0014023241649031076, 0.004908134577160877, 0.9678946148047044, 0.21802077335668213, 0.7751849719348698, 0.9304435838119104, 0.9683823739052315, 0.9524618234157787, 0.019437996396240383, 0.9178008958140836, 0.05736255598838023, 0.008573370502968023, 0.01143116067062403, 0.1914719412329525, 0.01143116067062403, 0.034293482011872094, 0.014288950838280037, 0.005715580335312015, 0.04572464268249612, 0.014288950838280037, 0.008573370502968023, 0.008573370502968023, 0.01143116067062403, 0.0028577901676560074, 0.05429801318546414, 0.5401223416869855, 0.014288950838280037, 0.017146741005936047, 0.0028577901676560074, 0.9392824963025516, 0.03737710170787787, 0.9344275426969468, 0.9418235557969231, 0.780361806599728, 0.1898177367404744, 0.043667680462909926, 0.931577183208745, 0.9805147625737222, 0.003202869286509398, 0.3843443143811277, 0.13131764074688532, 0.01601434643254699, 0.006405738573018796, 0.003202869286509398, 0.10569468645481013, 0.04163730072462217, 0.006405738573018796, 0.009608607859528193, 0.003202869286509398, 0.04804303929764096, 0.01601434643254699, 0.003202869286509398, 0.21138937290962026, 0.023583748899400125, 0.023583748899400125, 0.0943349955976005, 0.8254312114790044, 0.16498975483095568, 0.03299795096619114, 0.03299795096619114, 0.725954921256205, 0.9588203450423629, 0.04974588646712045, 0.8954259564081681, 0.8976266399231193, 0.967063779973765, 0.9477230831587359, 0.8400984305823765, 0.059679123483993964, 0.009181403612922148, 0.04131631625814967, 0.004590701806461074, 0.004590701806461074, 0.013772105419383222, 0.018362807225844296, 0.004590701806461074, 0.8414788502947004, 0.0071921269255957295, 0.06472914233036156, 0.02157638077678719, 0.014384253851191459, 0.028768507702382918, 0.011554644654629857, 0.959035506334278, 0.9743455602244102, 0.7627458796087024, 0.014421665790920843, 0.003204814620204632, 0.003204814620204632, 0.003204814620204632, 0.1714575821809478, 0.001602407310102316, 0.001602407310102316, 0.001602407310102316, 0.001602407310102316, 0.001602407310102316, 0.001602407310102316, 0.028843331581841686, 0.6447686918607013, 0.008093330860176167, 0.005395553906784111, 0.0026977769533920557, 0.2967554648731261, 0.008093330860176167, 0.0026977769533920557, 0.0026977769533920557, 0.026977769533920556, 0.9508445169657707, 0.7316088689359911, 0.2360028609470939, 0.023252594252764488, 0.046505188505528976, 0.046505188505528976, 0.011626297126382244, 0.046505188505528976, 0.1046366741374402, 0.03487889137914673, 0.023252594252764488, 0.011626297126382244, 0.046505188505528976, 0.523183370687201, 0.023252594252764488, 0.011626297126382244, 0.023252594252764488, 0.032302212641358186, 0.9367641665993873, 0.7121080499110759, 0.03058132729679467, 0.002184380521199619, 0.002184380521199619, 0.003276570781799429, 0.003276570781799429, 0.045871990945192, 0.003276570781799429, 0.0010921902605998096, 0.004368761042399238, 0.005460951302999048, 0.0010921902605998096, 0.16928949039297048, 0.0010921902605998096, 0.007645331824198668, 0.004368761042399238, 0.9478283152034045, 0.014146691271692604, 0.014146691271692604, 0.8125785328735433, 0.021454218689730516, 0.0026817773362163145, 0.0026817773362163145, 0.05899910139675892, 0.010727109344865258, 0.0026817773362163145, 0.0026817773362163145, 0.0026817773362163145, 0.04022666004324472, 0.016090664017297886, 0.005363554672432629, 0.008045332008648943, 0.0026817773362163145, 0.010727109344865258, 0.8283563959824913, 0.012892706552256675, 0.008057941595160422, 0.0016115883190320843, 0.0032231766380641687, 0.08863735754676463, 0.004834764957096253, 0.0016115883190320843, 0.0016115883190320843, 0.0016115883190320843, 0.029008589742577518, 0.0032231766380641687, 0.0032231766380641687, 0.009669529914192506, 0.0016115883190320843, 0.0032231766380641687, 0.02490393696420547, 0.16187559026733556, 0.02075328080350456, 0.17017690258873738, 0.033205249285607294, 0.004150656160700912, 0.2905459312490638, 0.008301312321401823, 0.004150656160700912, 0.004150656160700912, 0.004150656160700912, 0.008301312321401823, 0.2614913381241574, 0.004150656160700912, 0.31108649913504716, 0.044440928447863876, 0.04867339782385092, 0.012697408127961109, 0.025394816255922218, 0.0063487040639805545, 0.004232469375987036, 0.1968098259833972, 0.03809222438388332, 0.01904611219194166, 0.02116234687993518, 0.004232469375987036, 0.16083383628750736, 0.004232469375987036, 0.01904611219194166, 0.027511050943915736, 0.04232469375987036, 0.002116234687993518, 0.004232469375987036, 0.0063487040639805545, 0.9679042036529129, 0.9779856702739733, 0.31805157779259197, 0.12973156462592567, 0.004184889181481473, 0.5189262585037027, 0.004184889181481473, 0.004184889181481473, 0.01673955672592589, 0.9767744430455311, 0.9913692245687105, 0.004956846122843552, 0.9377728364457628, 0.06850369873570251, 0.022834566245234174, 0.22834566245234172, 0.5936987223760886, 0.02510642506645485, 0.22595782559809366, 0.07531927519936456, 0.6025542015949165, 0.05244949827087202, 0.10489899654174405, 0.0699326643611627, 0.03496633218058135, 0.03496633218058135, 0.02622474913543601, 0.008741583045145338, 0.05244949827087202, 0.008741583045145338, 0.008741583045145338, 0.05244949827087202, 0.017483166090290676, 0.02622474913543601, 0.43707915225726685, 0.008741583045145338, 0.017483166090290676, 0.017483166090290676, 0.008741583045145338, 0.05244949827087202, 0.9744405923757571, 0.05233065661493145, 0.017443552204977147, 0.9070647146588118, 0.03529051518098724, 0.95872566241682, 0.9371830792499491, 0.0407470904021717, 0.924940207577536, 0.9454913522733949, 0.9565441371189023, 0.014781495375010086, 0.017737794450012105, 0.07095117780004842, 0.01182519630000807, 0.19807203802513515, 0.5498716279503753, 0.0029562990750020175, 0.005912598150004035, 0.12120826207508271, 0.0029562990750020175, 0.011959118575090083, 0.009567294860072066, 0.016742766005126117, 0.019134589720144132, 0.8180037105361617, 0.011959118575090083, 0.019134589720144132, 0.009567294860072066, 0.0071754711450540505, 0.0023918237150180165, 0.004783647430036033, 0.0071754711450540505, 0.004783647430036033, 0.0023918237150180165, 0.0023918237150180165, 0.016742766005126117, 0.033485532010252235, 0.004783647430036033, 0.0023918237150180165, 0.03437238954434953, 0.03437238954434953, 0.1374895581773981, 0.7218201804313401, 0.9719948070422566, 0.11496166121889957, 0.1289813760016922, 0.002803942956558526, 0.005607885913117052, 0.00841182886967558, 0.6533187088781366, 0.025235486609026737, 0.014019714782792632, 0.002803942956558526, 0.00841182886967558, 0.002803942956558526, 0.002803942956558526, 0.005607885913117052, 0.00841182886967558, 0.005607885913117052, 0.002803942956558526, 0.002803942956558526, 0.002803942956558526, 0.002803942956558526, 0.9488490415296126, 0.9788000116332395, 0.9367650544175886, 0.05510382673044639, 0.06069474036668643, 0.0331062220181926, 0.871797179812405, 0.005517703669698766, 0.005517703669698766, 0.005517703669698766, 0.9678715575153685, 0.04691312007742838, 0.09382624015485676, 0.09382624015485676, 0.7036968011614256, 0.9244467378820205, 0.15359371278918696, 0.22303454845632895, 0.0411937160737283, 0.23480418162025132, 0.059436647477807976, 0.027364397106119515, 0.09621675111506539, 0.01647748642949132, 0.009415706531137897, 0.03295497285898264, 0.01235811482211849, 0.017948690574981618, 0.011181151505726253, 0.015300523113099082, 0.025010470473335038, 0.007061779898353423, 0.003236649120078652, 0.011181151505726253, 0.0005884816581961186, 0.002059685803686415, 0.9413539735526664, 0.32308792657371754, 0.041027038295075244, 0.0051283797868844055, 0.5743785361310534, 0.015385139360653216, 0.03589865850819084, 0.03725867457379871, 0.9128375270580683, 0.018629337286899354, 0.0434284647922284, 0.8251408310523397, 0.0217142323961142, 0.0217142323961142, 0.0217142323961142, 0.0651426971883426, 0.93945886939359, 0.9731940196803877, 0.10846538424818904, 0.4036461799521892, 0.05965596133650397, 0.04338615369927561, 0.01317079665870867, 0.042611400954645696, 0.024792087828157495, 0.10149260954651974, 0.027891098806677183, 0.02246782959426773, 0.008522280190929139, 0.034089120763716556, 0.014720302147968512, 0.021693076849637807, 0.02634159331741734, 0.013945549403338591, 0.024792087828157495, 0.0046485164677795305, 0.0015495054892598434, 0.003099010978519687, 0.014765363853985965, 0.05906145541594386, 0.7038156770399977, 0.004921787951328655, 0.004921787951328655, 0.004921787951328655, 0.004921787951328655, 0.004921787951328655, 0.11812291083188772, 0.0442960915619579, 0.00984357590265731, 0.00984357590265731, 0.00984357590265731, 0.004921787951328655, 0.004921787951328655, 0.027975431816675844, 0.013987715908337922, 0.9231892499503028, 0.013987715908337922, 0.013987715908337922, 0.01155455062438665, 0.24842283842431298, 0.0028886376560966626, 0.0028886376560966626, 0.0028886376560966626, 0.6788298491827157, 0.0028886376560966626, 0.0028886376560966626, 0.005777275312193325, 0.0028886376560966626, 0.005777275312193325, 0.025997738904869963, 0.9544821545722681, 0.9506963024795391, 0.032896145304210644, 0.8717478505615821, 0.049344217956315974, 0.9571936372739953, 0.12090104554952603, 0.19557522074188036, 0.028447304835182596, 0.014223652417591298, 0.405374093901352, 0.06400643587916084, 0.024891391730784772, 0.014223652417591298, 0.007111826208795649, 0.03200321793958042, 0.028447304835182596, 0.021335478626386947, 0.014223652417591298, 0.007111826208795649, 0.010667739313193474, 0.007111826208795649, 0.0035559131043978245, 0.0035559131043978245, 0.9376244134924789, 0.1609123762176701, 0.19667068204381902, 0.0417180234638404, 0.15793251739882436, 0.049167670510954754, 0.031288517597880296, 0.040228094054417525, 0.040228094054417525, 0.04767774110153188, 0.09237562338421802, 0.01191943527538297, 0.03426837641672604, 0.03426837641672604, 0.0208590117319202, 0.017879152913074455, 0.008939576456537228, 0.007449647047114357, 0.0029798588188457427, 0.0014899294094228713, 0.0029798588188457427, 0.9284882566488958, 0.008229934537077465, 0.2798177742606338, 0.049379607222464796, 0.08229934537077466, 0.008229934537077465, 0.5349457449100352, 0.01645986907415493, 0.008229934537077465, 0.026064951107355558, 0.052129902214711116, 0.20851960885884446, 0.6516237776838889, 0.052129902214711116, 0.5065188912604494, 0.22929371803861776, 0.01813622628554039, 0.028499784162992037, 0.009068113142770194, 0.01036355787745165, 0.06736312620343572, 0.007772668408088737, 0.009068113142770194, 0.01684078155085893, 0.009068113142770194, 0.0025908894693629126, 0.038863342040443685, 0.005181778938725825, 0.03238611836703641, 0.0025908894693629126, 0.0012954447346814563, 0.0012954447346814563, 0.0025908894693629126, 0.0038863342040443686, 0.09920814246381798, 0.22638453785626553, 0.04248008227839015, 0.2079149368656611, 0.05699191162815076, 0.04221623083566723, 0.052770288544584036, 0.03482839043942546, 0.02585744138684618, 0.035092241882148385, 0.02559358994412326, 0.03377298466853378, 0.021899669746002375, 0.011609463479808489, 0.05408954575819864, 0.013720275021591849, 0.005540880297181324, 0.0065962860680730045, 0.001319257213614601, 0.0023746629845062817, 0.05663294595357872, 0.09061271352572596, 0.25948186146003344, 0.07310798477643798, 0.03295007764571853, 0.016475038822859264, 0.014415658970001856, 0.06898922507072316, 0.031920387719289824, 0.019564108602145375, 0.03295007764571853, 0.04633604668929168, 0.02368286830786019, 0.008237519411429632, 0.01029689926428704, 0.1760769774193084, 0.007207829485000928, 0.028831317940003712, 0.003089069779286112, 0.011645331659079734, 0.4658132663631893, 0.5007492613404285, 0.18999650472862334, 0.7599860189144934, 0.05283583420004979, 0.10337445821748871, 0.3239066357481313, 0.03675536292177376, 0.031012337465246613, 0.016080471278276023, 0.01722907636958145, 0.035606757830468336, 0.04020117819569005, 0.02871512728263575, 0.04364699346960634, 0.029863732373941184, 0.16195331787406564, 0.0034458152739162903, 0.00918884073044344, 0.01837768146088688, 0.026417917100024894, 0.016080471278276023, 0.00459442036522172, 0.13690944608435643, 0.3294061860676245, 0.03602880160114643, 0.11735095378659123, 0.04426395625283704, 0.031911224275301124, 0.09161609550005806, 0.028823041280917144, 0.02676425261799449, 0.03911698459553041, 0.008235154651690613, 0.028823041280917144, 0.010293943314613266, 0.02058788662922653, 0.027793646949455818, 0.010293943314613266, 0.0030881829943839798, 0.005146971657306633, 0.0010293943314613266, 0.0030881829943839798, 0.04343984664493393, 0.04343984664493393, 0.8687969328986787, 0.9202429882861979, 0.8807881890637658, 0.9606342228199014, 0.18988592879760033, 0.24541860608746457, 0.053741300603094434, 0.053741300603094434, 0.04299304048247555, 0.04657579385601518, 0.04388872882586046, 0.017018078524313238, 0.03941028710893592, 0.09763002942895489, 0.02239220858462268, 0.026870650301547217, 0.031349092018471754, 0.014331013494158516, 0.02328789692800759, 0.027766338644932123, 0.005374130060309444, 0.008956883433849072, 0.0017913766867698145, 0.0062698184036943504, 0.7894245138600959, 0.10740469576327837, 0.0053702347881639185, 0.0053702347881639185, 0.010740469576327837, 0.0053702347881639185, 0.0053702347881639185, 0.04296187830531135, 0.016110704364491756, 0.9899809954986803, 0.92523249711054, 0.9667819861672151, 0.9070700987088367, 0.008858104842476898, 0.031003366948669144, 0.1439442036902496, 0.3986147179114604, 0.02878884073804992, 0.015501683474334572, 0.008858104842476898, 0.013287157263715347, 0.1727330444282995, 0.008858104842476898, 0.01993073589557302, 0.06200673389733829, 0.011072631053096122, 0.017716209684953795, 0.017716209684953795, 0.017716209684953795, 0.006643578631857674, 0.015501683474334572, 0.0022145262106192244, 0.9119502347727934, 0.9054891364739577, 0.011178878228073551, 0.011178878228073551, 0.022357756456147102, 0.033536634684220655, 0.9675341106737373, 0.00902644924065511, 0.02888463757009635, 0.457640976501214, 0.13720202845795765, 0.07582217362150291, 0.0036105796962620437, 0.005415869544393066, 0.01805289848131022, 0.03971637665888248, 0.011734384012851642, 0.011734384012851642, 0.05957456498832372, 0.04242431143107901, 0.015344963709113684, 0.02076083325350675, 0.02076083325350675, 0.018955543405375728, 0.014442318785048175, 0.002707934772196533, 0.005415869544393066, 0.8928011164542108, 0.018220430948045117, 0.036440861896090235, 0.018220430948045117, 0.0540484868819598, 0.4526560776364133, 0.006756060860244975, 0.09458485204342965, 0.006756060860244975, 0.03378030430122487, 0.006756060860244975, 0.01351212172048995, 0.01351212172048995, 0.006756060860244975, 0.2905106169905339, 0.006756060860244975, 0.006756060860244975, 0.006756060860244975, 0.052322824150496244, 0.8546061277914386, 0.06976376553399499, 0.9607071898041835, 0.19216243426759824, 0.23599789672651986, 0.05301032669450986, 0.11621494698411777, 0.07441834324421577, 0.02242744590921571, 0.05504918541352947, 0.027524592706764734, 0.025485733987745125, 0.02650516334725493, 0.03262173950431376, 0.04230631841965691, 0.031092595465049052, 0.0198788725104412, 0.017840013791421586, 0.013252581673627466, 0.00407771743803922, 0.005606861477303928, 0.0005097146797549025, 0.004587432117794122, 0.9850369971367394, 0.03206212923462291, 0.8443027365117367, 0.06412425846924583, 0.01068737641154097, 0.9688608319124643, 0.3118609288238567, 0.17235672707516964, 0.09236796975851633, 0.06808566843024656, 0.056182579543839824, 0.03190027821557007, 0.03761376088104531, 0.02951966043828872, 0.01761657155188198, 0.01809269510733825, 0.019997189329163327, 0.025710671994638563, 0.054278085322014745, 0.019044942218250788, 0.012855335997319282, 0.013807583108231821, 0.005713482665475236, 0.006665729776387776, 0.001428370666368809, 0.005237359110018967, 0.04580978849674696, 0.9161957699349391, 0.9115426150333117, 0.2042817246176981, 0.01945540234454268, 0.13618781641179875, 0.00972770117227134, 0.1264601152395274, 0.01945540234454268, 0.01945540234454268, 0.1459155175840701, 0.029183103516814017, 0.01945540234454268, 0.00972770117227134, 0.058366207033628034, 0.00972770117227134, 0.1750986211008841, 0.6748486411816488, 0.026156924076808093, 0.005231384815361619, 0.015694154446084855, 0.005231384815361619, 0.005231384815361619, 0.010462769630723238, 0.23541231669127283, 0.005231384815361619, 0.005231384815361619, 0.10613250730432594, 0.309553146304284, 0.008844375608693828, 0.12676938372461152, 0.05748844145650988, 0.07812531787679548, 0.06780687966665268, 0.03390343983332634, 0.013266563413040743, 0.029481252028979426, 0.0103184382101428, 0.02358500162318354, 0.017688751217387656, 0.0103184382101428, 0.09434000649273416, 0.004422187804346914, 0.0029481252028979426, 0.0029481252028979426, 0.0014740626014489713, 0.0014740626014489713, 0.9265213858182075, 0.9533713249174101, 0.9912637814910279, 0.9244428504687007, 0.05013830394111536, 0.9024894709400766, 0.30541388512552536, 0.1598549271082537, 0.00909743487607948, 0.09747251652942299, 0.061082777025105076, 0.03638973950431792, 0.1559560264470768, 0.01819486975215896, 0.015595602644707678, 0.05068570859529995, 0.01039706842980512, 0.01039706842980512, 0.02079413685961024, 0.01689523619843332, 0.025992671074512797, 0.00129963355372564, 0.00129963355372564, 0.00259926710745128, 0.0038989006611769195, 0.003431734254982641, 0.05147601382473961, 0.03431734254982641, 0.013726937019930564, 0.006863468509965282, 0.07206641935463545, 0.0754981536096181, 0.020590405529895845, 0.21619925806390636, 0.07892988786460074, 0.010295202764947923, 0.006863468509965282, 0.006863468509965282, 0.37405903379310784, 0.006863468509965282, 0.003431734254982641, 0.013726937019930564, 0.06080111130644084, 0.017371746087554527, 0.008685873043777263, 0.008685873043777263, 0.03474349217510905, 0.0955446034815499, 0.017371746087554527, 0.11291634956910443, 0.4342936521888632, 0.008685873043777263, 0.18240333391932254, 0.008685873043777263, 0.008685873043777263, 0.9459021566330497, 0.07921948156266213, 0.08714142971892835, 0.04753168893759728, 0.07921948156266213, 0.10298532603146078, 0.02376584446879864, 0.007921948156266213, 0.007921948156266213, 0.007921948156266213, 0.015843896312532427, 0.4990827338447715, 0.007921948156266213, 0.007921948156266213, 0.007921948156266213, 0.007921948156266213, 0.0018498706520244728, 0.009249353260122363, 0.05734599021275866, 0.7454978727658625, 0.009249353260122363, 0.0036997413040489456, 0.009249353260122363, 0.0018498706520244728, 0.03514754238846498, 0.005549611956073418, 0.014798965216195782, 0.03699741304048945, 0.009249353260122363, 0.0018498706520244728, 0.025898189128342616, 0.005549611956073418, 0.0018498706520244728, 0.0036997413040489456, 0.02219844782429367, 0.8947624213554192, 0.9462580675533263, 0.9112810406574251, 0.016272875726025447, 0.06509150290410179, 0.9255583574930325, 0.9593062105910154, 0.933786807030931, 0.015307980443130016, 0.015307980443130016, 0.015307980443130016, 0.015307980443130016, 0.015307980443130016, 0.0061196295350044744, 0.0734355544200537, 0.8689873939706354, 0.0061196295350044744, 0.012239259070008949, 0.0061196295350044744, 0.018358888605013425, 0.19208510676119464, 0.20323290313572825, 0.04716375389225761, 0.1157655777355414, 0.07460448342957113, 0.04116109430597028, 0.0505938450844218, 0.032585866325559806, 0.01715045596082095, 0.05745402746875018, 0.015435410364738854, 0.02315311554710828, 0.04544870829617551, 0.018007978758861995, 0.04201861710401133, 0.008575227980410475, 0.0034300911921641896, 0.007717705182369427, 0.0017150455960820948, 0.0025725683941231424, 0.9580111974479667, 0.02879753160597247, 0.3647687336756513, 0.04319629740895871, 0.03359712020696788, 0.004799588600995412, 0.004799588600995412, 0.009599177201990824, 0.13918806942886694, 0.02879753160597247, 0.04799588600995412, 0.004799588600995412, 0.009599177201990824, 0.019198354403981648, 0.009599177201990824, 0.02399794300497706, 0.21598148704479353, 0.009599177201990824, 0.004799588600995412, 0.19264208224704285, 0.22291440945729243, 0.04678450568856755, 0.005504059492772653, 0.024768267717476936, 0.34950777779106346, 0.016512178478317957, 0.0027520297463863265, 0.016512178478317957, 0.03027232721024959, 0.008256089239158979, 0.0027520297463863265, 0.013760148731931631, 0.04403247594218122, 0.008256089239158979, 0.005504059492772653, 0.005504059492772653, 0.005504059492772653, 0.0027520297463863265, 0.0027520297463863265, 0.04802767140848929, 0.7478594547893332, 0.04116657549299082, 0.09605534281697858, 0.03430547957749235, 0.03430547957749235, 0.9439293955221031, 0.947759811659762, 0.027875288578228293, 0.916436290094074, 0.025051278139898478, 0.050102556279796956, 0.025051278139898478, 0.8016409004767513, 0.050102556279796956, 0.025051278139898478, 0.9233698462317539, 0.015097515896916915, 0.09813385332995996, 0.7246807630520119, 0.007548757948458457, 0.13587764307225222, 0.00554593374722977, 0.00554593374722977, 0.13310240993351447, 0.44922063352561137, 0.06655120496675723, 0.002772966873614885, 0.016637801241689308, 0.002772966873614885, 0.0554593374722977, 0.002772966873614885, 0.00554593374722977, 0.02772966873614885, 0.002772966873614885, 0.061005271219527465, 0.04991340372506793, 0.00554593374722977, 0.10259977432375074, 0.002772966873614885, 0.003495761348819845, 0.003495761348819845, 0.0699152269763969, 0.44046592995130046, 0.03845337483701829, 0.003495761348819845, 0.01398304539527938, 0.4159956005095615, 0.00699152269763969, 0.9718388376315037, 0.889033209827008, 0.002901451054756138, 0.002901451054756138, 0.011605804219024553, 0.5280640919656171, 0.014507255273780691, 0.002901451054756138, 0.008704353164268415, 0.002901451054756138, 0.04062031476658593, 0.005802902109512276, 0.002901451054756138, 0.3481741265707366, 0.002901451054756138, 0.002901451054756138, 0.011605804219024553, 0.008704353164268415, 0.002901451054756138, 0.8918956432881419, 0.024774878980226164, 0.012387439490113082, 0.04954975796045233, 0.006704888445076594, 0.05363910756061275, 0.9118648285304167, 0.006704888445076594, 0.013409776890153187, 0.06797684181356588, 0.025491315680087202, 0.21242763066739337, 0.008497105226695735, 0.01699421045339147, 0.008497105226695735, 0.008497105226695735, 0.008497105226695735, 0.5863002606420057, 0.008497105226695735, 0.01699421045339147, 0.008497105226695735, 0.008497105226695735, 0.008497105226695735, 0.008497105226695735, 0.9530682127311183, 0.025080742440292587, 0.06683089119507642, 0.03341544559753821, 0.016707722798769104, 0.20049267358522924, 0.03341544559753821, 0.634893466353226, 0.016707722798769104, 0.16663756564409088, 0.14812228057252524, 0.09257642535782827, 0.5739738372185353, 0.8500354363634286, 0.018696273286722697, 0.7540830225644821, 0.006232091095574232, 0.006232091095574232, 0.14957018629378158, 0.018696273286722697, 0.006232091095574232, 0.024928364382296928, 0.0022200679481734283, 0.30414930889975966, 0.1021231256159777, 0.006660203844520284, 0.006660203844520284, 0.0022200679481734283, 0.4595540652718996, 0.0022200679481734283, 0.06438197049702941, 0.0022200679481734283, 0.0022200679481734283, 0.022200679481734282, 0.013320407689040569, 0.7325267429758384, 0.003130456166563412, 0.003130456166563412, 0.04382638633188777, 0.009391368499690236, 0.03443501783219753, 0.009391368499690236, 0.025043649332507297, 0.12521824666253648, 0.009391368499690236, 0.1756864988433596, 0.20538708174238027, 0.026176784927950426, 0.1766932982636654, 0.06091136492850003, 0.029700582899020677, 0.053863768986359535, 0.02516998550764464, 0.01963258869596282, 0.07248955826201657, 0.022652986956880176, 0.018122389565504143, 0.024666585797491748, 0.015605391014739678, 0.044299174493454566, 0.010067994203057857, 0.0035237979710702498, 0.009061194782752071, 0.0015101991304586784, 0.004530597391376036, 0.9544862637486012, 0.07856800141374634, 0.903532016258083, 0.978177066729759, 0.08864578343152624, 0.1920658641016402, 0.014774297238587707, 0.6796176729750345, 0.04368561709133593, 0.08737123418267186, 0.04368561709133593, 0.008737123418267186, 0.008737123418267186, 0.008737123418267186, 0.008737123418267186, 0.008737123418267186, 0.08737123418267186, 0.008737123418267186, 0.5941243924421686, 0.034948493673068744, 0.02621137025480156, 0.008737123418267186, 0.008737123418267186, 0.7724150176784652, 0.02775143776090294, 0.004625239626817157, 0.16650862656541765, 0.009250479253634314, 0.004625239626817157, 0.23032001307785396, 0.14607544453595436, 0.08347168259197392, 0.06337664789390612, 0.08810899829152803, 0.03323409584680443, 0.08192591069212256, 0.01700349089836506, 0.027051008247398957, 0.04791892889539243, 0.02241369254784485, 0.021640806597919164, 0.052556244594946545, 0.021640806597919164, 0.010047517349033898, 0.02241369254784485, 0.0077288594992568444, 0.018549262798216427, 0.0007728859499256844, 0.0038644297496284222, 0.8935090450996803, 0.19375844868313108, 0.0430574330406958, 0.7535050782121765, 0.005382179130086975, 0.8741160542851606, 0.9613421673205688, 0.19267073515425198, 0.16801618610607758, 0.25202427915911635, 0.017349497478344966, 0.05022222954257753, 0.012783840247201554, 0.024654549048174424, 0.010044445908515507, 0.07944243582189538, 0.017349497478344966, 0.032872732064232565, 0.013696971693430237, 0.03378586351046125, 0.0045656572311434124, 0.011870708800972872, 0.043830309418976754, 0.010044445908515507, 0.015523234585887601, 0.0009131314462286824, 0.008218183016058141, 0.007316103330944421, 0.004877402220629615, 0.8511066874998677, 0.0024387011103148074, 0.00975480444125923, 0.0024387011103148074, 0.00975480444125923, 0.041457918875351725, 0.014632206661888842, 0.004877402220629615, 0.01707090777220365, 0.004877402220629615, 0.00975480444125923, 0.00975480444125923, 0.010416139369826253, 0.04166455747930501, 0.1770743692870463, 0.3853971566835714, 0.010416139369826253, 0.04166455747930501, 0.010416139369826253, 0.010416139369826253, 0.020832278739652505, 0.010416139369826253, 0.010416139369826253, 0.020832278739652505, 0.22915506613617756, 0.0985874447752213, 0.8872870029769917, 0.9566936487114676, 0.962790705032838, 0.06296220371412296, 0.1265477955838313, 0.11158647984978229, 0.3010964791477366, 0.09724855227131864, 0.023688749912244282, 0.04176700642422018, 0.013091151267292893, 0.02431213806782966, 0.026805690690171163, 0.043013782735390936, 0.02244197360107353, 0.020571809134317404, 0.013714539422878268, 0.03179279593485417, 0.008727434178195262, 0.006233881555853759, 0.018701644667561277, 0.0012467763111707517, 0.004363717089097631, 0.9245941659908598, 0.9128508933143265, 0.9280938519333551, 0.9575872424061067, 0.08987712288517845, 0.016341295070032444, 0.008170647535016222, 0.08987712288517845, 0.7271876306164439, 0.008170647535016222, 0.008170647535016222, 0.008170647535016222, 0.016341295070032444, 0.3148546643167516, 0.27258650390162603, 0.021565387966900794, 0.10868955535317999, 0.026741081078956983, 0.037955082821745395, 0.03968031385909746, 0.02501585004160492, 0.012939232780140475, 0.02587846556028095, 0.01466446381749254, 0.03019154315366111, 0.023290619004252857, 0.006038308630732222, 0.02501585004160492, 0.004313077593380159, 0.0017252310373520635, 0.00517569311205619, 0.0008626155186760318, 0.003450462074704127, 0.9177733937861169, 0.863775573006917, 0.019470929472277774, 0.19470929472277773, 0.009735464736138887, 0.02920639420841666, 0.46730230733466654, 0.009735464736138887, 0.06814825315297221, 0.1557674357782222, 0.009735464736138887, 0.009735464736138887, 0.0498348173908131, 0.8970267130346359, 0.9761234434348113, 0.985515283548557, 0.041634191947826894, 0.041634191947826894, 0.8743180309043649, 0.017521850599486345, 0.02628277589922952, 0.21026220719383615, 0.008760925299743172, 0.7183958745789402, 0.9806338758161213, 0.7944441467621036, 0.051100104754771385, 0.8176016760763422, 0.051100104754771385, 0.07665015713215707, 0.9722371406294941, 0.3345638656193786, 0.5904068216812565, 0.009840113694687607, 0.03936045477875043, 0.009840113694687607, 0.9255656237530248, 0.9941257945889402, 0.9936115422839833, 0.9647083389237912, 0.9585708047406443, 0.011112109925784602, 0.9556414536174758, 0.011112109925784602, 0.011112109925784602, 0.1003435465244885, 0.11372268606108696, 0.22744537212217392, 0.013379139536598467, 0.0066895697682992335, 0.040137418609795396, 0.0066895697682992335, 0.020068709304897698, 0.040137418609795396, 0.020068709304897698, 0.30772020934176475, 0.03344784884149617, 0.020068709304897698, 0.0066895697682992335, 0.040137418609795396, 0.005136296712819273, 0.10272593425638545, 0.02568148356409636, 0.07190815397946981, 0.08731704411792764, 0.005136296712819273, 0.6420370891024091, 0.05136296712819272, 0.005136296712819273, 0.0631636373961987, 0.12324612174868037, 0.16869312914350626, 0.05314989000411841, 0.16253082305607225, 0.04929844869947215, 0.037744124785533364, 0.03466297174181635, 0.1016780504426613, 0.024649224349736074, 0.026189800871594577, 0.014635476957655795, 0.025419512610665326, 0.014635476957655795, 0.013094900435797288, 0.030811530437170092, 0.010784035653009533, 0.03928470130739187, 0.0007702882609292523, 0.0030811530437170093, 0.017847163876666666, 0.39263760528666664, 0.5711092440533333, 0.9872058991264588, 0.06128013901794057, 0.028597398208372267, 0.008170685202392076, 0.024512055607176227, 0.02042671300598019, 0.02042671300598019, 0.7925564646320313, 0.0326827408095683, 0.004085342601196038, 0.21777815874239334, 0.01979801443112667, 0.7325265339516868, 0.9463258518750226, 0.8682589500862185, 0.9788676500863491, 0.06234382645375548, 0.0653125800944105, 0.05343756553179042, 0.03265629004720525, 0.02671878276589521, 0.002968753640655023, 0.014843768203275116, 0.00890626092196507, 0.10687513106358083, 0.014843768203275116, 0.03265629004720525, 0.522500640755284, 0.002968753640655023, 0.00890626092196507, 0.014843768203275116, 0.023750029125240185, 0.002968753640655023, 0.03769831984726084, 0.19387707350019862, 0.24773181613914266, 0.05116200550699685, 0.11040222240983531, 0.02962010845141923, 0.03769831984726084, 0.05116200550699685, 0.024234634187524827, 0.005385474263894406, 0.008078211395841608, 0.002692737131947203, 0.03231284558336643, 0.14271506799320174, 0.002692737131947203, 0.008078211395841608, 0.005385474263894406, 0.002692737131947203, 0.002692737131947203, 0.002692737131947203, 0.043263338248082796, 0.9517934414578214, 0.9193831385956179, 0.004359651128897111, 0.043596511288971115, 0.004359651128897111, 0.004359651128897111, 0.1482281383825018, 0.008719302257794222, 0.08283337144904511, 0.013078953386691334, 0.58855290240111, 0.08719302257794223, 0.017438604515588443, 0.8896036269459212, 0.9706981210839942, 0.9795260127945659, 0.06821799730714156, 0.17768408600929894, 0.17451115590199004, 0.0666315322534871, 0.03648869623405246, 0.023796975804816822, 0.030142836019434644, 0.020624045697507913, 0.12850366934601085, 0.007932325268272275, 0.07456385752175938, 0.007932325268272275, 0.047593951609633645, 0.00951879032192673, 0.004759395160963365, 0.05552627687790592, 0.004759395160963365, 0.06028567203886929, 0.0031729301073089096, 0.19369295795416408, 0.05380359943171224, 0.7102075124986016, 0.0215214397726849, 0.039791057592900844, 0.8754032670438187, 0.9163138428537948, 0.03983973229799108, 0.8864725840372406, 0.0666262502905896, 0.166565625726474, 0.7662018783417804, 0.01726953242636556, 0.29358205124821457, 0.01726953242636556, 0.01726953242636556, 0.6389726997755258, 0.01814451889074938, 0.961659501209717, 0.9175444245743114, 0.0012898838972552457, 0.006449419486276228, 0.03353698132863639, 0.007739303383531473, 0.024507794047849668, 0.0012898838972552457, 0.0012898838972552457, 0.0012898838972552457, 0.012898838972552456, 0.0012898838972552457, 0.02063814235608393, 0.019348258458828684, 0.0025797677945104914, 0.0038696516917657367, 0.8345548815241439, 0.0025797677945104914, 0.021928026253339176, 0.0025797677945104914, 0.9191028816895734, 0.0648306556726695, 0.9076291794173731, 0.12951817872009777, 0.798695435440603, 0.06475908936004889, 0.002086763609531263, 0.0563426174573441, 0.23371752426750145, 0.1293793437909383, 0.02921469053343768, 0.002086763609531263, 0.13146610740046957, 0.006260290828593789, 0.03547498136203147, 0.006260290828593789, 0.2024160701245325, 0.016694108876250103, 0.010433818047656314, 0.054255853847812834, 0.008347054438125051, 0.025041163314375156, 0.01460734526671884, 0.039648508581094, 0.05089907305633633, 0.05089907305633633, 0.9161833150140539, 0.9670038914036444, 0.01696498055094113, 0.06550277302490767, 0.046787695017791196, 0.14036308505337358, 0.05614523402134943, 0.009357539003558239, 0.08889662053380326, 0.004678769501779119, 0.018715078007116477, 0.3041200176156428, 0.004678769501779119, 0.037430156014232954, 0.037430156014232954, 0.028072617010674716, 0.07953908153024503, 0.018715078007116477, 0.009357539003558239, 0.037430156014232954, 0.009357539003558239, 0.07221157541421633, 0.10831736312132448, 0.16247604468198673, 0.010831736312132448, 0.014442315082843264, 0.48381755527524933, 0.010831736312132448, 0.003610578770710816, 0.05415868156066224, 0.07221157541421633, 0.003610578770710816, 0.8643439650995945, 0.9305214818384148, 0.011631518522980186, 0.011631518522980186, 0.011631518522980186, 0.8608259779802536, 0.006831952206192489, 0.08881537868050236, 0.020495856618577467, 0.006831952206192489, 0.9161406456898977, 0.014081870738555139, 0.11969590127771867, 0.07745028906205326, 0.04928654758494298, 0.007040935369277569, 0.09857309516988597, 0.5210292173265402, 0.007040935369277569, 0.028163741477110277, 0.007040935369277569, 0.07040935369277569, 0.007040935369277569, 0.965764890300218, 0.039804244121331094, 0.23882546472798657, 0.039804244121331094, 0.6766721500626286, 0.25343359523165826, 0.15932773817872634, 0.14441987963568761, 0.04472357562911617, 0.0875836689403525, 0.032610940562897206, 0.03913312867547664, 0.013044376225158883, 0.026088752450317765, 0.013976117384098803, 0.030747458245017366, 0.0093174115893992, 0.01956656433773832, 0.012112635066218963, 0.01677134086091856, 0.01583959970197864, 0.027020493609257686, 0.022361787814558085, 0.027020493609257686, 0.006522188112579441, 0.8547823543735877, 0.03599083597362475, 0.04498854496703093, 0.026993126980218562, 0.008997708993406187, 0.00974525192490116, 0.1754145346482209, 0.05847151154940697, 0.00974525192490116, 0.6236961231936743, 0.04872625962450581, 0.00974525192490116, 0.03898100769960464, 0.00974525192490116, 0.00974525192490116, 0.012794150151036717, 0.08955905105725702, 0.03838245045311015, 0.05117660060414687, 0.025588300302073434, 0.7036782583070194, 0.012794150151036717, 0.05117660060414687, 0.9371931506585669, 0.33665155585766676, 0.6522623894742294, 0.9641702384583208, 0.015806069482923294, 0.015806069482923294, 0.012866439451448962, 0.038599318354346886, 0.6175890936695502, 0.025732878902897924, 0.29592810738332614, 0.00669056671231506, 0.00669056671231506, 0.00669056671231506, 0.00669056671231506, 0.01338113342463012, 0.10704906739704095, 0.23416983493102708, 0.38805286931427346, 0.00669056671231506, 0.01338113342463012, 0.19402643465713673, 0.11863238201745986, 0.830426674122219, 0.05931619100872993, 0.38729944160133484, 0.04149636874300016, 0.034580307285833466, 0.006916061457166694, 0.013832122914333387, 0.017290153642916733, 0.034580307285833466, 0.1037409218575004, 0.031122276557250122, 0.017290153642916733, 0.031122276557250122, 0.006916061457166694, 0.1556113827862506, 0.003458030728583347, 0.02074818437150008, 0.04495439947158351, 0.03803833801441681, 0.003458030728583347, 0.01037409218575004, 0.890904427761376, 0.022875973044220323, 0.9379148948130331, 0.7885247864111778, 0.9616022065518482, 0.9242279335456979, 0.3687045986630455, 0.23941218606520423, 0.02089326059090591, 0.030971186287695823, 0.05407667447058001, 0.10176246923100056, 0.07742796571923956, 0.007619895039036274, 0.005161864381282637, 0.012044350222992821, 0.012781759420318912, 0.007128288907485547, 0.02679253416951464, 0.012781759420318912, 0.012781759420318912, 0.0024580306577536367, 0.0019664245262029094, 0.0027038337235290003, 0.0014748183946521822, 0.0012290153288768183, 0.09718635563686276, 0.03534049295885919, 0.041966835388645284, 0.017670246479429594, 0.015461465669500893, 0.022087808099286992, 0.017670246479429594, 0.3578224912084492, 0.02429658890921569, 0.006626342429786097, 0.017670246479429594, 0.01987902728935829, 0.006626342429786097, 0.0022087808099286992, 0.0022087808099286992, 0.013252684859572194, 0.29376784772051695, 0.0044175616198573985, 0.0022087808099286992, 0.0022087808099286992, 0.1554269618261591, 0.8082202014960272, 0.9743763191659781, 0.9831581039062567, 0.022198856505736313, 0.04883748431261989, 0.10655451122753432, 0.07547611211950347, 0.4750555292227571, 0.004439771301147263, 0.019978970855162682, 0.01331931390344179, 0.04883748431261989, 0.011099428252868157, 0.008879542602294526, 0.11099428252868157, 0.004439771301147263, 0.01553919955401542, 0.01331931390344179, 0.011099428252868157, 0.004439771301147263, 0.0022198856505736314, 0.0022198856505736314, 0.0022198856505736314, 0.010285716455541664, 0.03085714936662499, 0.03085714936662499, 0.010285716455541664, 0.8434287493544165, 0.010285716455541664, 0.020571432911083327, 0.010285716455541664, 0.010285716455541664, 0.020571432911083327, 0.010285716455541664, 0.9377170938951228, 0.9742090077103643, 0.951159012411206, 0.9713971771294457, 0.10037237549418884, 0.016728729249031474, 0.8866226501986681, 0.9627907323587613, 0.017829458006643727, 0.07903297599359119, 0.8990001019270997, 0.9716571970043414, 0.02860647795727012, 0.004767746326211687, 0.004767746326211687, 0.7294651879103881, 0.004767746326211687, 0.004767746326211687, 0.09058718019802205, 0.019070985304846747, 0.1048904191766571, 0.013543097756930479, 0.013543097756930479, 0.040629293270791435, 0.8532151586866201, 0.013543097756930479, 0.06771548878465239, 0.013543097756930479, 0.9044595347599759, 0.9380495941134924, 0.021592585913339304, 0.021592585913339304, 0.021592585913339304, 0.021592585913339304, 0.8852960224469114, 0.05436185573862948, 0.8154278360794421, 0.08154278360794422, 0.022921941396036902, 0.11460970698018452, 0.014105810089868864, 0.056423240359475456, 0.019395488873569688, 0.001763226261233608, 0.003526452522467216, 0.562469177333521, 0.003526452522467216, 0.010579357567401648, 0.003526452522467216, 0.019395488873569688, 0.001763226261233608, 0.001763226261233608, 0.01763226261233608, 0.007052905044934432, 0.13047874333128698, 0.001763226261233608, 0.001763226261233608, 0.003526452522467216, 0.055942452467647424, 0.09510216919500061, 0.011188490493529485, 0.02237698098705897, 0.005594245246764743, 0.005594245246764743, 0.7048749010923575, 0.005594245246764743, 0.005594245246764743, 0.027971226233823712, 0.005594245246764743, 0.005594245246764743, 0.005594245246764743, 0.011188490493529485, 0.03356547148058846, 0.005594245246764743, 0.0078024968704582505, 0.09753121088072814, 0.0039012484352291253, 0.023407490611374752, 0.0078024968704582505, 0.0039012484352291253, 0.686619724600326, 0.0039012484352291253, 0.019506242176145626, 0.0039012484352291253, 0.02730873904660388, 0.019506242176145626, 0.04291373278752038, 0.046814981222749505, 0.0039012484352291253, 0.0028139694071739794, 0.04502351051478367, 0.0028139694071739794, 0.0028139694071739794, 0.8976562408884994, 0.0028139694071739794, 0.0028139694071739794, 0.016883816443043875, 0.005627938814347959, 0.014069847035869897, 0.009686201132960367, 0.10654821246256403, 0.8330132974345915, 0.009686201132960367, 0.019372402265920734, 0.07557857323108781, 0.04869004237002773, 0.2252822855926656, 0.19984718883220337, 0.07339842208019105, 0.014534341005978427, 0.009447321653885976, 0.0341557013640493, 0.06685796862750076, 0.031975550213152536, 0.018167926257473033, 0.05886408107421263, 0.018894643307771953, 0.018894643307771953, 0.03633585251494607, 0.02761524791135901, 0.013807623955679506, 0.018167926257473033, 0.0007267170502989214, 0.007993887553288134, 0.980856027603179, 0.9796594632335864, 0.32570021758887713, 0.1599786962968036, 0.04102017853764195, 0.07055470708474416, 0.05168542495742886, 0.03691816068387776, 0.06153026780646293, 0.04266098567914763, 0.00902443927828123, 0.02625291426409085, 0.020510089268820975, 0.019689685698068136, 0.05578744281119306, 0.01722847498580962, 0.02625291426409085, 0.01804887855656246, 0.003281614283011356, 0.009844842849034068, 0.000820403570752839, 0.004102017853764195, 0.04394124892708723, 0.19773562017189253, 0.7030599828333957, 0.021970624463543614, 0.9273662657580053, 0.9771839313293409, 0.2114796745285371, 0.043892007921017134, 0.0039901825382742855, 0.0039901825382742855, 0.011970547614822856, 0.574586285511497, 0.035911642844468565, 0.011970547614822856, 0.015960730153097142, 0.0039901825382742855, 0.04788219045929142, 0.011970547614822856, 0.0039901825382742855, 0.0039901825382742855, 0.0039901825382742855, 0.0039901825382742855, 0.0039901825382742855, 0.0039901825382742855, 0.9546478388916653, 0.1258469487514056, 0.5805197958532581, 0.004059578991980826, 0.004059578991980826, 0.004059578991980826, 0.08119157983961652, 0.048714947903769915, 0.004059578991980826, 0.07713200084763569, 0.024357473951884957, 0.004059578991980826, 0.028417052943865782, 0.004059578991980826, 0.004059578991980826, 0.016772852655468247, 0.5031855796640473, 0.02795475442578041, 0.03913665619609257, 0.341048003994521, 0.011181901770312164, 0.011181901770312164, 0.03913665619609257, 0.9392712223778971, 0.9717899803301939, 0.07027798766158744, 0.1777029116585854, 0.05823033263388674, 0.14356788908010007, 0.017067511289242665, 0.04517870635387764, 0.014055597532317488, 0.09838918272622242, 0.04116282134464407, 0.074293872670821, 0.003011913756925176, 0.0632501888954287, 0.04517870635387764, 0.008031770018467136, 0.021083396298476234, 0.01505956878462588, 0.0893534414554469, 0.009035741270775529, 0.002007942504616784, 0.002007942504616784, 0.9751221490474228, 0.9445698105410929, 0.06945386973860233, 0.07479647510311022, 0.01958955300319553, 0.060549527464422555, 0.14068860793204063, 0.017808684548359575, 0.3508310856026836, 0.04095997446122702, 0.0017808684548359574, 0.0017808684548359574, 0.0017808684548359574, 0.0017808684548359574, 0.005342605364507872, 0.19945726694162724, 0.003561736909671915, 0.0017808684548359574, 0.003561736909671915, 0.0017808684548359574, 0.0017808684548359574, 0.23026267970342296, 0.06578933705812084, 0.09868400558718127, 0.5921040335230876, 0.044528037898484744, 0.03740355183472718, 0.04274691638254535, 0.29032280709812053, 0.033841308802848406, 0.03562243031878779, 0.005343364547818169, 0.008905607579696948, 0.21907794646054493, 0.030279065770969626, 0.0035622430318787792, 0.20304785281709042, 0.0035622430318787792, 0.0071244860637575584, 0.012467850611575728, 0.005343364547818169, 0.0035622430318787792, 0.010686729095636338, 0.0017811215159393896, 0.020506400132275327, 0.005126600033068832, 0.44088760284391953, 0.005126600033068832, 0.4511408029100572, 0.015379800099206494, 0.03075960019841299, 0.005126600033068832, 0.015379800099206494, 0.04290642317420699, 0.004290642317420698, 0.03003449622194489, 0.45909872796401474, 0.45909872796401474, 0.03897962901259834, 0.9355110963023603, 0.8650157732790589, 0.04185560193285769, 0.013951867310952564, 0.027903734621905128, 0.013951867310952564, 0.013951867310952564, 0.8494913519840283, 0.10193896223808338, 0.0035179945268699513, 0.0035179945268699513, 0.10553983580609855, 0.0035179945268699513, 0.7634048123307795, 0.017589972634349756, 0.0035179945268699513, 0.02110796716121971, 0.010553983580609855, 0.0035179945268699513, 0.014071978107479805, 0.007035989053739903, 0.007035989053739903, 0.014071978107479805, 0.02110796716121971, 0.08216279772624743, 0.06694746481397938, 0.024344532659628867, 0.009129199747360825, 0.4747183868627629, 0.04260293215435052, 0.09737813063851547, 0.045645998736804125, 0.006086133164907217, 0.012172266329814434, 0.02130146607717526, 0.006086133164907217, 0.045645998736804125, 0.0365167989894433, 0.0030430665824536084, 0.0030430665824536084, 0.01825839949472165, 0.0030430665824536084, 0.12444040348773232, 0.07505929099260045, 0.0632078239937688, 0.25217288114180675, 0.028970252663810696, 0.01975244499805275, 0.09086124699104264, 0.004608903832878974, 0.08559392832489524, 0.02041085983132117, 0.05794050532762139, 0.10929686232255854, 0.012509881832100073, 0.011851466998831649, 0.019094030164784323, 0.009217807665757949, 0.001975244499805275, 0.008559392832489524, 0.0006584148332684249, 0.005267318666147399, 0.028862970915261413, 0.09620990305087138, 0.08796333993222526, 0.3436067966102549, 0.05085380589831773, 0.023365262169497334, 0.0632236505762869, 0.015118699050851217, 0.09208662149154831, 0.03985838840678957, 0.019241980610174274, 0.027488543728820394, 0.03848396122034855, 0.012369844677969177, 0.024739689355938354, 0.016493126237292235, 0.0027488543728820393, 0.008246563118646117, 0.0013744271864410196, 0.008246563118646117, 0.9811874033158537, 0.2375253051549454, 0.2591185147144859, 0.06477962867862147, 0.4318641911908098, 0.003866331990753156, 0.010310218642008416, 0.3151060572463822, 0.13789917433686255, 0.05606181386592076, 0.005155109321004208, 0.025131157939895513, 0.007088275316380786, 0.10825729574108837, 0.007088275316380786, 0.099235854429331, 0.004510720655878682, 0.027708712600397617, 0.05026231587979103, 0.002577554660502104, 0.11212362773184152, 0.00322194332562763, 0.015465327963012624, 0.000644388665125526, 0.008377052646631838, 0.0361885142616465, 0.0361885142616465, 0.0361885142616465, 0.144754057046586, 0.072377028523293, 0.72377028523293, 0.8955734731365244, 0.9555051913621171, 0.9784722324457781, 0.9480134705954166, 0.9829223547797159, 0.0800107537533848, 0.08876192994516126, 0.14876999526019985, 0.0062508401369831875, 0.31254200684915934, 0.0500067210958655, 0.028753864630122663, 0.01875252041094956, 0.03375453673970921, 0.008751176191776462, 0.03500470476710585, 0.00500067210958655, 0.026253528575329386, 0.0600080653150386, 0.0012501680273966375, 0.002500336054793275, 0.07626024967119488, 0.007501008164379825, 0.0012501680273966375, 0.0062508401369831875, 0.01514719083841163, 0.9466994274007269, 0.007573595419205815, 0.01514719083841163, 0.9664170943499479, 0.9801162572607492, 0.9039076709642644, 0.03930033352018541, 0.03930033352018541, 0.9402837814078062, 0.9192341481611838, 0.9633584222242368, 0.9354901612309973, 0.868002801720745, 0.010980371969429166, 0.010980371969429166, 0.9003905014931917, 0.010980371969429166, 0.010980371969429166, 0.043921487877716665, 0.010980371969429166, 0.9334943661481196, 0.9264704042363385, 0.924089603947425, 0.09058143300843235, 0.8756205190815128, 0.333742615395623, 0.07598174817364327, 0.02212126845561766, 0.12791863933031083, 0.10195019375197704, 0.02308306273629669, 0.09425583950654481, 0.016350502771543488, 0.0076943542454322306, 0.05963124540209978, 0.03173921126240795, 0.02212126845561766, 0.020197679894259604, 0.013465119929506403, 0.028853828420370865, 0.005770765684074173, 0.0019235885613580576, 0.006732559964753202, 0.0009617942806790288, 0.006732559964753202, 0.9757999975154625, 0.9662149782319179, 0.1810812120135317, 0.7846852520586374, 0.9344130058849591, 0.023360325147123977, 0.9543915432717878, 0.03598746302784112, 0.8996865756960281, 0.00899686575696028, 0.03598746302784112, 0.27683418810747623, 0.19214062370929857, 0.07205273389098697, 0.048035155927324644, 0.07205273389098697, 0.018961245760786043, 0.07584498304314417, 0.007584498304314418, 0.010112664405752557, 0.06446823558667256, 0.022753494912943255, 0.018961245760786043, 0.07837314914458232, 0.006320415253595348, 0.015168996608628835, 0.008848581355033488, 0.0050563322028762785, 0.003792249152157209, 0.0012640830507190696, 0.0025281661014381392, 0.9395451721803858, 0.9678360645417893, 0.9499419601135944, 0.9896562875793999, 0.2532657875925391, 0.0665995219224825, 0.08066984345540133, 0.08817401493962472, 0.060033371873787045, 0.028140643065837675, 0.04408700746981236, 0.012194278661862993, 0.0750417148422338, 0.05440524326061951, 0.08629797206856887, 0.007504171484223381, 0.032830750243477286, 0.011256257226335071, 0.026264600194781832, 0.04596305034086821, 0.006566150048695458, 0.008442192919751302, 0.0009380214355279226, 0.009380214355279226, 0.47697172385897363, 0.04630793435524016, 0.018523173742096062, 0.07409269496838425, 0.009261586871048031, 0.055569521226288186, 0.027784760613144093, 0.0046307934355240155, 0.0046307934355240155, 0.12966221619467244, 0.0046307934355240155, 0.02315396717762008, 0.0046307934355240155, 0.013892380306572047, 0.09261586871048032, 0.15969310717451307, 0.307373900977492, 0.01837177339175814, 0.16887899387039215, 0.043103006803740254, 0.025437840080895887, 0.060768173526584625, 0.029677480094378535, 0.00918588669587907, 0.02755766008763721, 0.024731233411982113, 0.020491593398499465, 0.021904806736327016, 0.006359460020223972, 0.061474780195498395, 0.004946246682396423, 0.004239640013482648, 0.0014132133378275493, 0.0007066066689137747, 0.002119820006741324, 0.9627762590871903, 0.020057838730983133, 0.7837784972302584, 0.17038662983266487, 0.8395755588877704, 0.06114325659089357, 0.9171488488634035, 0.08300821862042886, 0.04150410931021443, 0.8300821862042886, 0.9137506920429712, 0.9702781574543159, 0.9342782528736966, 0.9270587675676785, 0.7353100482754399, 0.06530714244551604, 0.0048375661070752625, 0.009675132214150525, 0.021769047481838683, 0.012093915267688157, 0.09191375603442999, 0.0024187830535376312, 0.007256349160612894, 0.0024187830535376312, 0.0024187830535376312, 0.021769047481838683, 0.007256349160612894, 0.007256349160612894, 0.0024187830535376312, 0.0048375661070752625, 0.7555839652538704, 0.04404749573228841, 0.003388268902483724, 0.006776537804967448, 0.01694134451241862, 0.04065922682980469, 0.06098884024470703, 0.003388268902483724, 0.003388268902483724, 0.003388268902483724, 0.003388268902483724, 0.030494420122353514, 0.006776537804967448, 0.006776537804967448, 0.003388268902483724, 0.006776537804967448, 0.03881317100681582, 0.47130279079704923, 0.12198425173570686, 0.0055447387152594025, 0.03881317100681582, 0.01663421614577821, 0.29941589062400775, 0.9522121242629357, 0.9541092822504323, 0.2765835258478691, 0.06507847667008684, 0.6019759091983033, 0.01626961916752171, 0.01626961916752171, 0.002396433477652962, 0.040739369120100344, 0.7237229102511944, 0.002396433477652962, 0.04553223607540627, 0.021567901298876653, 0.002396433477652962, 0.002396433477652962, 0.011982167388264808, 0.033550068687141464, 0.009585733910611847, 0.002396433477652962, 0.040739369120100344, 0.002396433477652962, 0.03834293564244739, 0.007189300432958885, 0.004792866955305924, 0.002396433477652962, 0.002396433477652962, 0.012422705606422134, 0.006211352803211067, 0.745362336385328, 0.006211352803211067, 0.0186340584096332, 0.006211352803211067, 0.006211352803211067, 0.006211352803211067, 0.031056764016055335, 0.049690822425688536, 0.08695893924495493, 0.006211352803211067, 0.006211352803211067, 0.9697346299778179, 0.11456592389680177, 0.022913184779360354, 0.22913184779360354, 0.06873955433808106, 0.022913184779360354, 0.5270032499252881, 0.022913184779360354, 0.8869990519338934, 0.9415603405910759, 0.9118725190254653, 0.9762745844443793, 0.147860201848849, 0.08065101919028127, 0.08065101919028127, 0.03226040767611251, 0.021506938450741673, 0.04839061151416876, 0.043013876901483346, 0.021506938450741673, 0.05107897882051147, 0.034948774982455216, 0.06183244804588231, 0.005376734612685418, 0.013441836531713545, 0.008065101919028128, 0.010753469225370836, 0.2903436690850126, 0.002688367306342709, 0.03226040767611251, 0.008065101919028128, 0.9458824311863046, 0.9510841011184749, 0.9338193626727586, 0.043992759375580184, 0.7478769093848631, 0.014664253125193394, 0.014664253125193394, 0.043992759375580184, 0.02932850625038679, 0.06598913906337027, 0.007332126562596697, 0.021996379687790092, 0.007332126562596697, 0.06071530430520602, 0.7632781112654471, 0.017347229801487434, 0.008673614900743717, 0.008673614900743717, 0.017347229801487434, 0.008673614900743717, 0.03469445960297487, 0.008673614900743717, 0.06071530430520602, 0.008673614900743717, 0.2839045666688123, 0.2645990561353331, 0.011356182666752493, 0.06189119553380109, 0.05734872246710009, 0.037475402800283227, 0.05848434073377534, 0.052806249400399095, 0.010788373533414868, 0.02328017446684261, 0.02668702926686836, 0.012491800933427742, 0.024983601866855484, 0.018737701400141613, 0.028390456666881232, 0.011356182666752493, 0.004542473066700997, 0.005110282200038622, 0.0022712365333504986, 0.003406854800025748, 0.6338171397745369, 0.04985078627440177, 0.03323385751626785, 0.0047476939308954075, 0.08545849075611733, 0.08545849075611733, 0.007121540896343111, 0.023738469654477037, 0.0023738469654477038, 0.01899077572358163, 0.0023738469654477038, 0.021364622689029333, 0.016616928758133927, 0.0023738469654477038, 0.0023738469654477038, 0.0023738469654477038, 0.0023738469654477038, 0.0047476939308954075, 0.9612106408937405, 0.0048517323099012185, 0.03396212616930853, 0.0048517323099012185, 0.08733118157822192, 0.8587566188525156, 0.9070079854978844, 0.9291512500073434, 0.9842992151667829, 0.05529340155191744, 0.5750513761399414, 0.036862267701278296, 0.04792094801166179, 0.01105868031038349, 0.04792094801166179, 0.018431133850639148, 0.014744907080511318, 0.018431133850639148, 0.05529340155191744, 0.018431133850639148, 0.01105868031038349, 0.018431133850639148, 0.014744907080511318, 0.01105868031038349, 0.02211736062076698, 0.007372453540255659, 0.007372453540255659, 0.0036862267701278295, 0.9822182400229235, 0.9516904404263349, 0.9176555514189093, 0.031106967844708792, 0.015553483922354396, 0.9391973332791951, 0.8799736809336872, 0.9854457922409073, 0.9781268529031434, 0.07709453701589843, 0.056535993811658844, 0.21586470364451557, 0.02055854320423958, 0.01798872530370963, 0.005139635801059895, 0.056535993811658844, 0.02055854320423958, 0.11307198762331769, 0.028267996905829422, 0.03854726850794921, 0.2724006974561744, 0.005139635801059895, 0.01798872530370963, 0.028267996905829422, 0.005139635801059895, 0.005139635801059895, 0.0025698179005299473, 0.0077094537015898424, 0.010495064325494132, 0.04722778946472359, 0.13118830406867665, 0.4897696685230595, 0.03323437036406475, 0.008745886937911776, 0.005247532162747066, 0.013993419100658842, 0.07171627289087656, 0.01749177387582355, 0.07871298244120599, 0.012244241713076486, 0.010495064325494132, 0.008745886937911776, 0.019240951263405907, 0.013993419100658842, 0.006996709550329421, 0.012244241713076486, 0.008745886937911776, 0.12955925433827503, 0.08833585523064207, 0.03238981358456876, 0.008833585523064206, 0.008833585523064206, 0.5682940019837973, 0.04711245612300911, 0.0382788705999449, 0.002944528507688069, 0.014722642538440345, 0.005889057015376138, 0.035334342092256825, 0.002944528507688069, 0.011778114030752277, 0.9520926611077153, 0.9286304651580893, 0.9272284500663941, 0.011737068988182204, 0.04694827595272882, 0.011737068988182204, 0.3138503198894929, 0.3330880803030345, 0.010993005950595198, 0.04507132439744031, 0.012641956843184478, 0.10663215772077342, 0.05606433034803551, 0.020886711306130876, 0.003847552082708319, 0.013741257438243998, 0.007145453867886879, 0.005496502975297599, 0.008244754462946398, 0.021436361603660636, 0.029681116066607036, 0.0027482514876487995, 0.0027482514876487995, 0.003847552082708319, 0.0016489508925892798, 0.0010993005950595198, 0.00334801729736404, 0.01339206918945616, 0.0167400864868202, 0.06361232864991677, 0.01004405189209212, 0.02678413837891232, 0.16405284757083796, 0.02008810378418424, 0.00669603459472808, 0.6394713037965317, 0.00334801729736404, 0.00669603459472808, 0.01339206918945616, 0.00334801729736404, 0.9259107886004971, 0.04530025786808331, 0.9060051573616662, 0.06817031568865743, 0.13634063137731486, 0.7498734725752317, 0.9589498045704189, 0.9175303047013177, 0.9440275528038223, 0.01013080755781955, 0.9269688915404888, 0.01013080755781955, 0.005065403778909775, 0.005065403778909775, 0.01013080755781955, 0.005065403778909775, 0.005065403778909775, 0.005065403778909775, 0.005065403778909775, 0.009250335186925548, 0.9250335186925548, 0.018500670373851096, 0.009250335186925548, 0.009250335186925548, 0.009250335186925548, 0.9463656054297457, 0.9020735210321327, 0.9255933074863979, 0.9825971289989176, 0.01972373792091186, 0.00986186896045593, 0.7396401720341947, 0.00986186896045593, 0.029585606881367788, 0.029585606881367788, 0.03944747584182372, 0.01972373792091186, 0.01972373792091186, 0.00986186896045593, 0.00986186896045593, 0.01972373792091186, 0.8911475415961725, 0.22073134427896646, 0.7681450780908033, 0.07561342811471945, 0.01512268562294389, 0.09073611373766334, 0.8015023380160261, 0.005146829250474019, 0.036027804753318134, 0.5738714614278532, 0.020587317001896074, 0.005146829250474019, 0.038601219378555145, 0.18785926764230168, 0.0025734146252370093, 0.0540417071299772, 0.018013902376659067, 0.010293658500948037, 0.0025734146252370093, 0.005146829250474019, 0.023160731627133085, 0.0025734146252370093, 0.012867073126185048, 0.005146829250474019, 0.9313633352350627, 0.016057988538535562, 0.008028994269267781, 0.008028994269267781, 0.008028994269267781, 0.0022983403187157633, 0.0022983403187157633, 0.025281743505873394, 0.0022983403187157633, 0.0022983403187157633, 0.02758008382458916, 0.0022983403187157633, 0.9055460855740107, 0.0022983403187157633, 0.022983403187157633, 0.9479602060405872, 0.03510963726076249, 0.9108555471996009, 0.07286844377596807, 0.11119248824625305, 0.00252710200559666, 0.00252710200559666, 0.7556034996734015, 0.00505420401119332, 0.00505420401119332, 0.00252710200559666, 0.00252710200559666, 0.00252710200559666, 0.017689714039176622, 0.01516261203357996, 0.07075885615670649, 0.00252710200559666, 0.14792947220027725, 0.3065013524725169, 0.07236837488934426, 0.07449685650373675, 0.059597485202989395, 0.012770889686354871, 0.014899371300747349, 0.09258895022607282, 0.029798742601494697, 0.01383513049355111, 0.019156334529532307, 0.029798742601494697, 0.017027852915139828, 0.007449685650373674, 0.014899371300747349, 0.0063854448431774355, 0.060661726010185636, 0.01383513049355111, 0.0010642408071962393, 0.0063854448431774355, 0.09773573979849146, 0.003759066915326594, 0.03383160223793935, 0.007518133830653188, 0.6766320447587869, 0.08269947213718508, 0.007518133830653188, 0.003759066915326594, 0.007518133830653188, 0.007518133830653188, 0.003759066915326594, 0.007518133830653188, 0.007518133830653188, 0.015036267661306377, 0.02631346840728616, 0.003759066915326594, 0.054364539918030245, 0.054364539918030245, 0.37402803463604806, 0.026094979160654518, 0.0065237447901636296, 0.010872907983606048, 0.00869832638688484, 0.010872907983606048, 0.09568159025573322, 0.019571234370490888, 0.18701401731802403, 0.0065237447901636296, 0.05871370311147266, 0.013047489580327259, 0.00434916319344242, 0.043491631934424194, 0.0065237447901636296, 0.0065237447901636296, 0.00869832638688484, 0.9099981348909861, 0.00842590865639802, 0.00842590865639802, 0.01685181731279604, 0.0421295432819901, 0.00842590865639802, 0.06336705841791784, 0.009748778218141206, 0.01462316732721181, 0.004874389109070603, 0.8042742029966495, 0.034120723763494225, 0.009748778218141206, 0.004874389109070603, 0.004874389109070603, 0.004874389109070603, 0.004874389109070603, 0.024371945545353015, 0.009748778218141206, 0.9566323093786855, 0.04018657816881838, 0.006345249184550272, 0.05710724266095244, 0.004230166123033514, 0.6747114966238456, 0.07402790715308649, 0.006345249184550272, 0.006345249184550272, 0.002115083061516757, 0.004230166123033514, 0.006345249184550272, 0.006345249184550272, 0.012690498369100543, 0.002115083061516757, 0.002115083061516757, 0.002115083061516757, 0.07614299021460326, 0.010575415307583786, 0.002115083061516757, 0.9543676476854294, 0.4345403335965704, 0.1086350833991426, 0.03621169446638087, 0.3983286391301895, 0.04202797597470073, 0.09906594336893743, 0.030019982839071948, 0.1260839279241022, 0.08405595194940146, 0.0030019982839071947, 0.021013987987350366, 0.04502997425860793, 0.03302198112297915, 0.021013987987350366, 0.006003996567814389, 0.4262837563148217, 0.006003996567814389, 0.015009991419535974, 0.006003996567814389, 0.009005994851721585, 0.01801198970344317, 0.0030019982839071947, 0.0030019982839071947, 0.0071703210403072735, 0.07170321040307275, 0.050192247282150916, 0.08604385248368729, 0.050192247282150916, 0.014340642080614547, 0.014340642080614547, 0.028681284161229094, 0.050192247282150916, 0.10038449456430183, 0.014340642080614547, 0.4660708676199728, 0.0071703210403072735, 0.0071703210403072735, 0.021510963120921822, 0.0071703210403072735, 0.9606064249801108, 0.9406824802715337, 0.03214586841304801, 0.06181897771740002, 0.5440070039131202, 0.05934621860870402, 0.03090948885870001, 0.008654656880436002, 0.012363795543480003, 0.018545693315220005, 0.055637079945660015, 0.012363795543480003, 0.018545693315220005, 0.027200350195656007, 0.03585500707609201, 0.018545693315220005, 0.016072934206524003, 0.017309313760872004, 0.012363795543480003, 0.013600175097828003, 0.0012363795543480004, 0.003709138663044001, 0.9197455812621184, 0.15102623671635734, 0.2936621269484726, 0.05034207890545245, 0.48664009608604036, 0.008390346484242075, 0.9292748708815486, 0.9221016905649051, 0.9547049744024749, 0.048933433539302795, 0.012233358384825699, 0.8685684453226246, 0.012233358384825699, 0.012233358384825699, 0.024466716769651398, 0.006428597191895066, 0.003214298595947533, 0.025714388767580264, 0.3278584567866484, 0.38250153291775646, 0.003214298595947533, 0.006428597191895066, 0.003214298595947533, 0.022500090171632733, 0.003214298595947533, 0.06428597191895066, 0.003214298595947533, 0.006428597191895066, 0.045000180343265465, 0.003214298595947533, 0.09000036068653093, 0.003214298595947533, 0.003214298595947533, 0.0260413362296893, 0.08391097229566552, 0.15046105377153818, 0.06076311786927503, 0.03472178163958573, 0.005786963606597622, 0.008680445409896433, 0.37904611623214424, 0.014467409016494057, 0.028934818032988113, 0.005786963606597622, 0.10995230852535483, 0.008680445409896433, 0.008680445409896433, 0.023147854426390488, 0.02025437262309168, 0.014467409016494057, 0.011573927213195244, 0.005786963606597622, 0.9716195267687882, 0.9720332718856945, 0.0016718896258359442, 0.0016718896258359442, 0.4029253998264625, 0.0718912539109456, 0.021734565135867273, 0.0016718896258359442, 0.013375117006687554, 0.0016718896258359442, 0.09028203979514099, 0.0016718896258359442, 0.3076276911538137, 0.005015668877507833, 0.015047006632523497, 0.006687558503343777, 0.0033437792516718885, 0.02006267551003133, 0.006687558503343777, 0.006687558503343777, 0.0016718896258359442, 0.018390785884195387, 0.038127333874525604, 0.08578650121768261, 0.07625466774905121, 0.6767601762728295, 0.009531833468631401, 0.019063666937262802, 0.019063666937262802, 0.019063666937262802, 0.009531833468631401, 0.028595500405894203, 0.93442297481263, 0.022790804263722684, 0.9649782394257973, 0.9133963397483489, 0.030777502132057835, 0.9541025660937928, 0.022852383415354352, 0.015234922276902901, 0.33516829009186383, 0.09140953366141741, 0.12949683935367465, 0.015234922276902901, 0.09140953366141741, 0.015234922276902901, 0.03808730569225725, 0.030469844553805803, 0.015234922276902901, 0.015234922276902901, 0.007617461138451451, 0.15996668390748045, 0.9440824391518701, 0.9710151616787083, 0.003688038267765061, 0.007376076535530122, 0.05163253574871085, 0.029504306142120486, 0.007376076535530122, 0.003688038267765061, 0.2360344491369639, 0.007376076535530122, 0.011064114803295182, 0.5753339697713494, 0.003688038267765061, 0.018440191338825303, 0.011064114803295182, 0.003688038267765061, 0.018440191338825303, 0.06818512491051174, 0.3579719057801866, 0.017046281227627934, 0.5454809992840939, 0.8346806972157585, 0.05013830394111536, 0.9024894709400766, 0.0063194666172940546, 0.012638933234588109, 0.8720863931865795, 0.012638933234588109, 0.025277866469176218, 0.012638933234588109, 0.0063194666172940546, 0.044236266321058385, 0.16067874681291724, 0.19809708511181578, 0.0220107872346462, 0.08143991276819093, 0.0330161808519693, 0.05722804681008012, 0.03741833829889854, 0.06823344042740322, 0.03081510212850468, 0.13426580213134182, 0.01760862978771696, 0.050624810639686255, 0.03081510212850468, 0.02861402340504006, 0.01760862978771696, 0.00660323617039386, 0.00660323617039386, 0.01320647234078772, 0.00220107872346462, 0.946702492675645, 0.9593764885929186, 0.9462363612592066, 0.9062406248092815, 0.01970088314802786, 0.059102649444083576, 0.007079185429871744, 0.9698484038924289, 0.007079185429871744, 0.17975101843056093, 0.19154934782561706, 0.062461743856179475, 0.09299859640808944, 0.0666258601132581, 0.04927537570876381, 0.05829762759910084, 0.04233518194696609, 0.023596658790112246, 0.031230871928089737, 0.03331293005662905, 0.05482753071820198, 0.023596658790112246, 0.018738523156853842, 0.03539498818516837, 0.013880387523595439, 0.011104310018876351, 0.0055521550094381755, 0.0006940193761797719, 0.004858135633258404, 0.849674279753848, 0.8765725652099853, 0.9457083118440365, 0.009086621147147584, 0.7405596234925281, 0.013629931720721376, 0.0636063480300331, 0.004543310573573792, 0.009086621147147584, 0.004543310573573792, 0.018173242294295167, 0.004543310573573792, 0.009086621147147584, 0.04088979516216413, 0.004543310573573792, 0.009086621147147584, 0.036346484588590335, 0.009086621147147584, 0.018173242294295167, 0.002041335498165855, 0.10614944590462447, 0.11839745889361959, 0.11227345239912202, 0.02449602597799026, 0.006124006494497565, 0.0408267099633171, 0.01633068398532684, 0.1592241688569367, 0.04490938095964881, 0.09798410391196104, 0.022454690479824405, 0.02041335498165855, 0.010206677490829276, 0.006124006494497565, 0.12452146538811716, 0.006124006494497565, 0.07552941343213664, 0.00408267099633171, 0.00408267099633171, 0.0528982764475045, 0.9124952687194526, 0.8937439110114533, 0.10117855596356076, 0.9644791322495486, 0.9873716811078023, 0.023903558109190155, 0.9441905453130112, 0.011951779054595078, 0.044332293999796844, 0.08866458799959369, 0.84231358599614, 0.044332293999796844, 0.942230039208491, 0.06349714784025248, 0.23282287541425908, 0.06878857682694019, 0.01587428696006312, 0.1640342985873189, 0.06878857682694019, 0.026457144933438533, 0.026457144933438533, 0.021165715946750825, 0.026457144933438533, 0.0793714348003156, 0.021165715946750825, 0.1693257275740066, 0.005291428986687706, 0.9760602000659936, 0.9900035539391864, 0.9808377052967497, 0.9733895029571183, 0.906833965273006, 0.014991524255688556, 0.8695084068299362, 0.044974572767065665, 0.059966097022754225, 0.025631325052477373, 0.9483590269416629, 0.008688686903634122, 0.0038616386238373873, 0.41609156171847844, 0.26548765538882035, 0.03282392830261779, 0.0038616386238373873, 0.0009654096559593468, 0.00289622896787804, 0.0762673628207884, 0.0019308193119186936, 0.061786217981398196, 0.031858518646658444, 0.004827048279796734, 0.004827048279796734, 0.015446554495349549, 0.04730507314200799, 0.004827048279796734, 0.012550325527471509, 0.0009654096559593468, 0.0019308193119186936, 0.22196945115045744, 0.15112813695350294, 0.5950670392544178, 0.004722754279796967, 0.004722754279796967, 0.004722754279796967, 0.004722754279796967, 0.21640650028077138, 0.2246900026838631, 0.044523825416618035, 0.17395355046492628, 0.057984516821642094, 0.019673318207342853, 0.042452949815845104, 0.018637880406956388, 0.006212626802318795, 0.03106313401159398, 0.011389815804251125, 0.011389815804251125, 0.017602442606569922, 0.007248064602705262, 0.09836659103671426, 0.006212626802318795, 0.001035437800386466, 0.006212626802318795, 0.001035437800386466, 0.004141751201545864, 0.1260820228552265, 0.24444473818870444, 0.029590678833369483, 0.20456164932633686, 0.056608255159489446, 0.02444447381887044, 0.12801184973566362, 0.016725166297121882, 0.018011717550746643, 0.03730998635511804, 0.0160818906703095, 0.01222223690943522, 0.022514646938433303, 0.018011717550746643, 0.027017576326119962, 0.0064327562681238005, 0.0019298268804371402, 0.0038596537608742805, 0.0019298268804371402, 0.004502929387686661, 0.07588834903054761, 0.15481223202231714, 0.04856854337955047, 0.15177669806109523, 0.05767514526321618, 0.045533009418328566, 0.009106601883665714, 0.030355339612219045, 0.030355339612219045, 0.03642640753466286, 0.015177669806109522, 0.006071067922443809, 0.006071067922443809, 0.2944467942385247, 0.01821320376733143, 0.009106601883665714, 0.0030355339612219046, 0.0030355339612219046, 0.0030355339612219046, 0.0030355339612219046, 0.04616128239072882, 0.09232256478145764, 0.04616128239072882, 0.78474180064239, 0.08861143280269244, 0.01888440371204921, 0.27890811636257296, 0.049389978939205624, 0.042126746742263625, 0.06536908977247803, 0.02178969659082601, 0.005810585757553603, 0.010168525075718806, 0.026147635908991215, 0.23532872318092093, 0.024694989469602812, 0.042126746742263625, 0.010168525075718806, 0.010168525075718806, 0.05229527181798243, 0.0029052928787768016, 0.013073817954495607, 0.0014526464393884008, 0.0029052928787768016, 0.018023639040658353, 0.02231498166938653, 0.7956149233662043, 0.012874027886184537, 0.007724416731710722, 0.003433074102982543, 0.005149611154473815, 0.0017165370514912715, 0.03776381513280797, 0.0240315187208778, 0.012874027886184537, 0.012874027886184537, 0.012874027886184537, 0.003433074102982543, 0.0017165370514912715, 0.015448833463421444, 0.0025748055772369075, 0.0008582685257456358, 0.005149611154473815, 0.0017165370514912715, 0.01119509063908805, 0.8508268885706918, 0.0223901812781761, 0.0223901812781761, 0.01119509063908805, 0.01119509063908805, 0.01119509063908805, 0.0447803625563522, 0.9729110304761629, 0.05209630416143125, 0.8856371707443312, 0.032706894970910234, 0.016353447485455117, 0.8013189267873007, 0.08176723742727558, 0.032706894970910234, 0.009023750094602413, 0.05414250056761447, 0.09700531351697593, 0.4331400045409158, 0.033839062854759044, 0.0022559375236506033, 0.006767812570951809, 0.024815312760156635, 0.05639843809126508, 0.04286281294936146, 0.004511875047301207, 0.018047500189204826, 0.02932718780745784, 0.0022559375236506033, 0.15340375160824102, 0.004511875047301207, 0.006767812570951809, 0.018047500189204826, 0.0022559375236506033, 0.9157868319027584, 0.9547098308347287, 0.9254306386813121, 0.9253905188902142, 0.9074869418321875, 0.05671793386451172, 0.9778657278245145, 0.9442571681598901, 0.08248731366725184, 0.04124365683362592, 0.2474619410017555, 0.04124365683362592, 0.04124365683362592, 0.5774111956707628, 0.970594223047451, 0.9454743599113868, 0.9703227894467528, 0.9630095296158637, 0.09086790604940871, 0.010096434005489858, 0.23221798212626674, 0.6461717763513509, 0.9406714706527274, 0.018072675133505, 0.042169575311511664, 0.17470252629054833, 0.0060242250445016665, 0.0060242250445016665, 0.5482044790496516, 0.012048450089003333, 0.0060242250445016665, 0.0060242250445016665, 0.0060242250445016665, 0.16867830124604666, 0.012048450089003333, 0.0060242250445016665, 0.012749435641145335, 0.9434582374447549, 0.012749435641145335, 0.11749947573918451, 0.07343717233699032, 0.08812460680438838, 0.01958324595653075, 0.08812460680438838, 0.009791622978265375, 0.004895811489132687, 0.10281204127178645, 0.014687434467398064, 0.02447905744566344, 0.014687434467398064, 0.06854136084785763, 0.02447905744566344, 0.029374868934796128, 0.05385392638045956, 0.0391664919130615, 0.2056240825435729, 0.009791622978265375, 0.004895811489132687, 0.10895768287904069, 0.027239420719760172, 0.8171826215928052, 0.1976753729258871, 0.2827048531918018, 0.023982673921155422, 0.13662856658112785, 0.03343039395070149, 0.06104680634475925, 0.045058357063988974, 0.03270364625612103, 0.013081458502448412, 0.025436169310316354, 0.023255926226574953, 0.038517627812764764, 0.030523403172379625, 0.01598844928077028, 0.017441944669931216, 0.010174467724126541, 0.005087233862063271, 0.004360486167482804, 0.0007267476945804673, 0.002180243083741402, 0.8602042584870702, 0.020520362756526717, 0.008208145102610686, 0.01641629020522137, 0.09028959612871755, 0.01641629020522137, 0.008208145102610686, 0.004104072551305343, 0.01231221765391603, 0.2913891511426794, 0.004104072551305343, 0.008208145102610686, 0.004104072551305343, 0.004104072551305343, 0.05335294316696946, 0.004104072551305343, 0.45144798064358777, 0.004104072551305343, 0.03130366453822611, 0.23164711758287324, 0.006260732907645223, 0.018782198722935666, 0.018782198722935666, 0.012521465815290445, 0.006260732907645223, 0.46329423516574647, 0.012521465815290445, 0.006260732907645223, 0.018782198722935666, 0.12521465815290445, 0.018782198722935666, 0.018782198722935666, 0.3455503039795191, 0.12958136399231965, 0.043193787997439885, 0.021596893998719943, 0.021596893998719943, 0.021596893998719943, 0.021596893998719943, 0.41034098597567886, 0.9377452830022093, 0.9225655274725707, 0.9254349684052783, 0.17637882580367134, 0.04622341641751387, 0.3381607832649699, 0.05717106767429347, 0.04865622780790933, 0.0109476512567796, 0.03770857655112973, 0.013380462647175068, 0.03892498224632747, 0.0437906050271184, 0.07906637018785267, 0.012164056951977333, 0.018246085427966, 0.015813274037570536, 0.006082028475988667, 0.018246085427966, 0.002432811390395467, 0.0218953025135592, 0.0012164056951977334, 0.0109476512567796, 0.0773417279628807, 0.1856201471109137, 0.7115438972585025, 0.01546834559257614, 0.01546834559257614, 0.9127261319240589, 0.06084840879493726, 0.09480029735179825, 0.09480029735179825, 0.1896005947035965, 0.592501858448739, 0.9508897353458021, 0.054061533122679216, 0.8418153014817192, 0.07723076160382746, 0.007723076160382745, 0.9582016267775904, 0.017284924982179165, 0.23046566642905553, 0.04033149162508472, 0.0979479082323486, 0.011523283321452776, 0.04033149162508472, 0.0979479082323486, 0.023046566642905553, 0.017284924982179165, 0.017284924982179165, 0.011523283321452776, 0.011523283321452776, 0.017284924982179165, 0.33417521632213054, 0.023046566642905553, 0.005761641660726388, 0.005761641660726388, 0.9628056361194529, 0.22783987585175677, 0.06835196275552703, 0.5923836772145676, 0.09113595034070271, 0.011391993792587839, 0.10164861159120826, 0.23309078175225342, 0.03592752651068568, 0.15773060419325421, 0.08762811344069678, 0.02804099630102297, 0.06396852281170864, 0.025412152897802066, 0.030669839704243872, 0.025412152897802066, 0.03855636991390658, 0.016649341553732388, 0.024535871763395098, 0.05257686806441807, 0.04381405672034839, 0.01927818495695329, 0.003505124537627871, 0.0061339679408487745, 0.0008762811344069678, 0.005257686806441807, 0.01550098269152414, 0.04650294807457242, 0.10850687884066898, 0.666542255735538, 0.12400786153219312, 0.01550098269152414, 0.01550098269152414, 0.022540234091151405, 0.04508046818230281, 0.011270117045575703, 0.022540234091151405, 0.8790691295549048, 0.8971777875687795, 0.0873595207407344, 0.873595207407344, 0.9480377809781022, 0.029524011446522943, 0.9447683662887342, 0.028829762296810023, 0.07207440574202505, 0.028829762296810023, 0.7639887008654656, 0.014414881148405011, 0.028829762296810023, 0.057659524593620046, 0.8819139600050455, 0.029427565420130777, 0.019073422031566242, 0.24413980200404792, 0.24468475691923552, 0.1487726918462167, 0.010354143388564533, 0.02179819660750428, 0.0065394589822512835, 0.04359639321500856, 0.031607385080881206, 0.020708286777129065, 0.05885513084026155, 0.027792700674567954, 0.00708441389743889, 0.022343151522691885, 0.005994504067063676, 0.0065394589822512835, 0.04632116779094659, 0.001089909830375214, 0.0038146844063132487, 0.01789155418211073, 0.02114456403340359, 0.5204815762068576, 0.12198786942348225, 0.09433728568749294, 0.00487951477693929, 0.00975902955387858, 0.00325300985129286, 0.03090359358728217, 0.01789155418211073, 0.03090359358728217, 0.00975902955387858, 0.03090359358728217, 0.01463854433081787, 0.01138553447952501, 0.00650601970258572, 0.0162650492564643, 0.03090359358728217, 0.00162650492564643, 0.00325300985129286, 0.01537627619522646, 0.10763393336658522, 0.07175595557772348, 0.05637967938249702, 0.00512542539840882, 0.12301020956181168, 0.4510374350599762, 0.00512542539840882, 0.06663053017931465, 0.00512542539840882, 0.00512542539840882, 0.02050170159363528, 0.01025085079681764, 0.03587797778886174, 0.01537627619522646, 0.21159612515215181, 0.28819543927533225, 0.02047704436956308, 0.11300294855795921, 0.04322931589129984, 0.03412840728260513, 0.07811613222462953, 0.028819543927533223, 0.012134544811592936, 0.0401956796884016, 0.006067272405796468, 0.027302725826084107, 0.023510680572461314, 0.02047704436956308, 0.028061134876808665, 0.006825681456521027, 0.00530886335507191, 0.006825681456521027, 0.001516818101449117, 0.0037920452536227924, 0.9738180749161574, 0.003218669598041687, 0.022530687186291806, 0.18346416708837615, 0.05793605276475036, 0.06437339196083373, 0.003218669598041687, 0.003218669598041687, 0.2703682462355017, 0.00965600879412506, 0.006437339196083374, 0.2414002198531265, 0.006437339196083374, 0.08046673995104217, 0.003218669598041687, 0.003218669598041687, 0.03540536557845855, 0.9647678270552432, 0.9615304615581302, 0.9840801882673963, 0.9803335884894768, 0.9240989149454699, 0.015401648582424498, 0.015401648582424498, 0.0027514884302390543, 0.14858037523290896, 0.011005953720956217, 0.0027514884302390543, 0.005502976860478109, 0.0027514884302390543, 0.0013757442151195272, 0.7731682488971743, 0.009630209505836691, 0.0013757442151195272, 0.0041272326453585815, 0.0013757442151195272, 0.0013757442151195272, 0.0041272326453585815, 0.012381697936075745, 0.013757442151195273, 0.0013757442151195272, 0.0013757442151195272, 0.007546226976149248, 0.16979010696335808, 0.003773113488074624, 0.7697151515672233, 0.007546226976149248, 0.003773113488074624, 0.003773113488074624, 0.015092453952298496, 0.015092453952298496, 0.0536899572843899, 0.8858842951924334, 0.8827783753639543, 0.036424893625337865, 0.022765558515836167, 0.22765558515836168, 0.018212446812668932, 0.48490639638731037, 0.0068296675547508505, 0.004553111703167233, 0.015935890961085317, 0.03187178192217063, 0.015935890961085317, 0.0068296675547508505, 0.03414833777375425, 0.013659335109501701, 0.0409780053285051, 0.0022765558515836165, 0.004553111703167233, 0.015935890961085317, 0.013659335109501701, 0.004553111703167233, 0.9504072483347688, 0.9547250571340367, 0.9295498174218875, 0.9592324399807185, 0.9658299461617168, 0.9464636341511016, 0.01279004911015002, 0.01279004911015002, 0.01279004911015002, 0.18765760324701014, 0.22908850266518122, 0.04386801114865172, 0.1523194831550407, 0.02802678490052749, 0.04874223460961302, 0.11576280719783094, 0.018278337978604883, 0.007311335191441954, 0.014622670382883908, 0.014622670382883908, 0.007311335191441954, 0.015841226248124233, 0.03533812009196945, 0.062146349127256605, 0.009748446921922605, 0.0024371117304806513, 0.006092779326201628, 0.0012185558652403256, 0.0012185558652403256, 0.02410820598673267, 0.24108205986732667, 0.16875744190712869, 0.02410820598673267, 0.506272325721386, 0.017490454532736312, 0.017490454532736312, 0.017490454532736312, 0.017490454532736312, 0.017490454532736312, 0.017490454532736312, 0.15741409079462682, 0.05247136359820894, 0.6121659086457709, 0.017490454532736312, 0.034980909065472625, 0.9572052029266579, 0.9923604175558692, 0.025613855021881682, 0.057631173799233784, 0.37140089781728436, 0.14407793449808445, 0.012806927510940841, 0.01600865938867605, 0.060832905676968994, 0.00960519563320563, 0.03521905065508731, 0.02241212314414647, 0.01921039126641126, 0.06723636943243941, 0.028815586899616892, 0.01921039126641126, 0.028815586899616892, 0.0320173187773521, 0.0032017318777352102, 0.00960519563320563, 0.03842078253282252, 0.165680116683472, 0.02761335278057867, 0.02761335278057867, 0.662720466733888, 0.082840058341736, 0.012810330011783229, 0.03586892403299304, 0.10846079409976467, 0.4714201444336228, 0.051241320047132916, 0.0034160880031421943, 0.011102286010212131, 0.0059781540054988395, 0.06234360605734504, 0.011102286010212131, 0.04611718804241962, 0.043555122040062975, 0.007686198007069937, 0.0068321760062843885, 0.05294936404870401, 0.043555122040062975, 0.0068321760062843885, 0.015372396014139873, 0.0008540220007855486, 0.0034160880031421943, 0.9442430326106149, 0.15692472612551686, 0.039231181531379215, 0.019615590765689608, 0.7453924490962052, 0.019615590765689608, 0.9627429340420615, 0.9531795838076863, 0.13786881556021108, 0.2511563694313923, 0.04061251931231024, 0.15069382165883538, 0.057712527443809294, 0.03954376880409155, 0.10580630031365038, 0.027787513213685954, 0.007481253557530834, 0.03526876677121679, 0.016031257623280358, 0.023512511180811192, 0.02030625965615512, 0.012825006098624287, 0.05236877490271584, 0.005343752541093453, 0.0021375010164373814, 0.005343752541093453, 0.0010687505082186907, 0.005343752541093453, 0.2989318248877937, 0.15366439313052316, 0.021832099570456842, 0.11083989012693475, 0.04534359141556421, 0.029389364806384214, 0.14442773561994526, 0.017633618883830526, 0.005877872961276842, 0.03526723776766105, 0.026030580257083158, 0.016793922746505263, 0.02854966866905895, 0.01343513819720421, 0.033587845493010526, 0.005038176823951579, 0.004198480686626316, 0.004198480686626316, 0.0025190884119757895, 0.0033587845493010526, 0.20513114106240193, 0.29502386515235074, 0.01993861173423676, 0.1365287989937568, 0.03615985517903955, 0.030076888887238504, 0.08110621722401394, 0.050015500621475265, 0.011490047440068641, 0.03514602746373938, 0.010138277153001743, 0.020952439449536935, 0.01757301373186969, 0.016221243444802788, 0.02196626716483711, 0.0037173682894339724, 0.002365598002367073, 0.002703540574133798, 0.0006758851435334495, 0.002365598002367073, 0.14442945974768306, 0.32324688610195734, 0.03897302882080337, 0.022925311071060807, 0.04814315324922769, 0.027510373285272966, 0.027510373285272966, 0.13296680421215268, 0.0068775933213182415, 0.013755186642636483, 0.011462655535530403, 0.020632779963954725, 0.018340248856848644, 0.0022925311071060805, 0.018340248856848644, 0.009170124428424322, 0.1283817419979405, 0.004585062214212161, 0.0022925311071060805, 0.2230310271956914, 0.41376100907338614, 0.016919595166569695, 0.07075467069656417, 0.032301045317996685, 0.030762900302853988, 0.039991770393710185, 0.02153403021199779, 0.013843305136284295, 0.02307217522714049, 0.007690725075713497, 0.012305160121141596, 0.02614846525742589, 0.012305160121141596, 0.030762900302853988, 0.006152580060570798, 0.003076290030285399, 0.003076290030285399, 0.0015381450151426995, 0.009228870090856196, 0.01223022594777988, 0.8561158163445916, 0.01223022594777988, 0.02446045189555976, 0.0611511297388994, 0.9681060308743743, 0.9852800791029281, 0.18484690469592327, 0.24124087562010324, 0.054653416266026274, 0.11975016048097477, 0.053957194402764794, 0.03968464620590443, 0.06440052235168701, 0.029937540120243692, 0.05430530533439554, 0.020538544966213695, 0.016361213786644808, 0.014968770060121846, 0.019842323102952215, 0.014620659128491106, 0.03237431664165888, 0.01810176844479851, 0.006614107700984071, 0.00591788583772259, 0.001740554658153703, 0.00591788583772259, 0.15290764111371302, 0.7645382055685651, 0.9372764595558479, 0.07190660111344235, 0.7245972881431498, 0.19359469530542173, 0.005531277008726335, 0.9561999555555316, 0.9549194928398618, 0.1724509219653163, 0.5538717846650747, 0.010144171880312724, 0.04463435627337599, 0.006086503128187634, 0.024346012512750537, 0.03449018439306326, 0.06289386565793889, 0.008115337504250178, 0.022317178136687994, 0.004057668752125089, 0.010144171880312724, 0.014201840632437814, 0.008115337504250178, 0.012173006256375268, 0.004057668752125089, 0.004057668752125089, 0.0020288343760625446, 0.0020288343760625446, 0.0020288343760625446, 0.19149971871194907, 0.02470964112412246, 0.1729674878688572, 0.006177410281030615, 0.080306333653398, 0.006177410281030615, 0.006177410281030615, 0.018532230843091847, 0.02470964112412246, 0.006177410281030615, 0.018532230843091847, 0.006177410281030615, 0.42006389911008185, 0.01235482056206123, 0.006177410281030615, 0.00546376730635552, 0.136594182658888, 0.01639130191906656, 0.00546376730635552, 0.7212172844389286, 0.00546376730635552, 0.01092753461271104, 0.01092753461271104, 0.00546376730635552, 0.02185506922542208, 0.038246371144488645, 0.01639130191906656, 0.00546376730635552, 0.9068426788364203, 0.04772856204402212, 0.9723703287762412, 0.022812230334118177, 0.36499568534589083, 0.25093453367529994, 0.022812230334118177, 0.3193712246776545, 0.19555773842161067, 0.19555773842161067, 0.586673215264832, 0.05526095579732139, 0.9394362485544636, 0.013336329190605662, 0.2933992421933246, 0.1466996210966623, 0.006668164595302831, 0.013336329190605662, 0.07334981054833115, 0.026672658381211325, 0.020004493785908493, 0.006668164595302831, 0.013336329190605662, 0.006668164595302831, 0.013336329190605662, 0.3667490527416557, 0.006668164595302831, 0.9407551364454464, 0.07891133009530159, 0.06456381553251948, 0.007173757281391053, 0.02152127184417316, 0.007173757281391053, 0.09325884465808369, 0.11478011650225685, 0.04304254368834632, 0.05021630096973737, 0.007173757281391053, 0.02152127184417316, 0.007173757281391053, 0.4591204660090274, 0.007173757281391053, 0.05788966993707326, 0.781510544150489, 0.05788966993707326, 0.08683450490560989, 0.9695178717828711, 0.083808588200479, 0.8939582741384425, 0.906884739139226, 0.914460039177042, 0.9407000092051662, 0.025424324573112597, 0.13898066215560573, 0.03860573948766825, 0.7798359376508988, 0.007721147897533651, 0.007721147897533651, 0.007721147897533651, 0.007721147897533651, 0.9309558993724322, 0.41498903673769894, 0.13180793226408302, 0.0360412314784602, 0.09473695131480968, 0.025743736770328717, 0.03501148200764705, 0.04942797459903114, 0.03707098094927335, 0.006178496824878892, 0.043249477774152244, 0.04530897671577854, 0.005148747354065743, 0.020594989416262973, 0.007208246295692041, 0.028832985182768164, 0.006178496824878892, 0.0010297494708131486, 0.007208246295692041, 0.006178496824878892, 0.8081766786792304, 0.06216743682147926, 0.006660796802301349, 0.022202656007671163, 0.011101328003835582, 0.006660796802301349, 0.019982390406904048, 0.006660796802301349, 0.02442292160843828, 0.002220265600767116, 0.015541859205369815, 0.002220265600767116, 0.004440531201534232, 0.002220265600767116, 0.04948419040865254, 0.9401996177643982, 0.9226302720568428, 0.23213464972220313, 0.7373688873528805, 0.006827489697711857, 0.0034137448488559285, 0.0034137448488559285, 0.0034137448488559285, 0.013654979395423714, 0.21375261170254012, 0.007046789396787037, 0.00939571919571605, 0.0023489297989290124, 0.7187725184722777, 0.004697859597858025, 0.0023489297989290124, 0.016442508592503086, 0.0023489297989290124, 0.0023489297989290124, 0.016442508592503086, 0.07586756677654766, 0.0047417229235342286, 0.0047417229235342286, 0.8819604637773665, 0.0047417229235342286, 0.0047417229235342286, 0.009483445847068457, 0.9792979081503508, 0.9859546455098932, 0.882381064516073, 0.9150148314133548, 0.8797074425081711, 0.9840417249048188, 0.9252688751770338, 0.9280653622279141, 0.06400450773985615, 0.042565005451424824, 0.028376670300949886, 0.042565005451424824, 0.3688967139123485, 0.014188335150474943, 0.1276950163542745, 0.042565005451424824, 0.3121433733104487, 0.014188335150474943, 0.9026986531726826, 0.888807464038223, 0.9228465977498693, 0.957637650844497, 0.013899775674996829, 0.04517427094373969, 0.0938234858062286, 0.03127449526874286, 0.503866868218635, 0.0069498878374984144, 0.0069498878374984144, 0.0069498878374984144, 0.11814809323747304, 0.03474943918749207, 0.01042483175624762, 0.06949887837498414, 0.01042483175624762, 0.024324607431244448, 0.0034749439187492072, 0.02084966351249524, 0.05340610082135319, 0.04929793921971064, 0.08627139363449361, 0.028757131211497873, 0.04929793921971064, 0.11708260564681276, 0.004108161601642553, 0.03081121201231915, 0.11297444404517022, 0.016432646406570214, 0.08010915123202979, 0.004108161601642553, 0.08421731283367234, 0.19719175687884255, 0.02464896960985532, 0.02464896960985532, 0.014378565605748937, 0.014378565605748937, 0.0020540808008212767, 0.00616224240246383, 0.9609887268377011, 0.972965190739087, 0.13799765464486782, 0.827985927869207, 0.9580947900452564, 0.9539212469016549, 0.10182946974175197, 0.11637653684771654, 0.12822970263776173, 0.10290703026811972, 0.15624627632332314, 0.02640023289600977, 0.032865596054216246, 0.010775605263677457, 0.04202486052834208, 0.025322672369642023, 0.035559497370135605, 0.11422141579498105, 0.032865596054216246, 0.009698044737309711, 0.02101243026417104, 0.012391946053229075, 0.00754292368457422, 0.020473650000987168, 0.0005387802631838728, 0.00377146184228711, 0.004111726671574524, 0.004111726671574524, 0.6270383174151148, 0.08840212343885226, 0.03700554004417071, 0.002055863335787262, 0.008223453343149048, 0.002055863335787262, 0.016446906686298095, 0.002055863335787262, 0.03700554004417071, 0.01027931667893631, 0.02467036002944714, 0.004111726671574524, 0.004111726671574524, 0.07812280675991595, 0.004111726671574524, 0.0431731300515325, 0.0026062104119034175, 0.01824347288332392, 0.6776147070948886, 0.03648694576664784, 0.11727946853565378, 0.0026062104119034175, 0.0026062104119034175, 0.005212420823806835, 0.03388073535474442, 0.005212420823806835, 0.007818631235710253, 0.013031052059517087, 0.023455893707130755, 0.02084968329522734, 0.007818631235710253, 0.005212420823806835, 0.005212420823806835, 0.015637262471420506, 0.0026062104119034175, 0.03417757367766814, 0.04045508721030106, 0.21343546010951941, 0.2497055382980652, 0.10183521952937855, 0.01883254059789877, 0.0355725766849199, 0.008370018043510565, 0.06277513532632924, 0.025110054130531696, 0.059985129311825716, 0.012555027065265848, 0.01883254059789877, 0.009067519547136445, 0.025110054130531696, 0.03836258269942342, 0.006975015036258804, 0.03348007217404226, 0.0006975015036258804, 0.004185009021755282, 0.9508905922303261, 0.9481736128930103, 0.8629533407605052, 0.005294192274604327, 0.13235480686510817, 0.940810960235028, 0.9516146147518446, 0.01374617506128882, 0.04123852518386646, 0.01374617506128882, 0.01374617506128882, 0.00687308753064441, 0.02061926259193323, 0.8247705036773293, 0.03436543765322205, 0.00687308753064441, 0.00687308753064441, 0.01374617506128882, 0.8653088697481855, 0.9251314799107664, 0.9735826977871997, 0.025538025190310613, 0.01808943450980335, 0.4384027657669988, 0.17450983880045584, 0.03937112216839553, 0.006384506297577653, 0.012769012595155307, 0.006384506297577653, 0.05107605038062123, 0.0053204219146480445, 0.08299858186850949, 0.02660210957324022, 0.01808943450980335, 0.004256337531718436, 0.010640843829296089, 0.0595887254440581, 0.0053204219146480445, 0.00957675944636648, 0.0031922531487888267, 0.9674662747300832, 0.9492494031331484, 0.07834932006619096, 0.3525719402978593, 0.07834932006619096, 0.06529110005515913, 0.3917466003309548, 0.953295284034065, 0.002299129914531264, 0.025290429059843907, 0.11035823589750068, 0.42074077435922136, 0.018393039316250113, 0.004598259829062528, 0.004598259829062528, 0.004598259829062528, 0.018393039316250113, 0.002299129914531264, 0.009196519658125056, 0.3034851487181269, 0.004598259829062528, 0.002299129914531264, 0.022991299145312644, 0.009196519658125056, 0.002299129914531264, 0.02758955897437517, 0.002299129914531264, 0.06885291957266214, 0.9036945693911906, 0.9316516894501122, 0.9114494978151706, 0.8808404961734368, 0.052465675107546926, 0.8919164768282978, 0.9809869189634698, 0.0493065308655181, 0.14791959259655432, 0.012326632716379526, 0.012326632716379526, 0.1848994907456929, 0.5670251049534583, 0.9684235352656654, 0.06538396281352445, 0.9153754793893423, 0.9678073031275142, 0.9098279339183801, 0.8946969009486466, 0.04066804095221121, 0.9072325842343344, 0.037790013662969475, 0.3023201093037558, 0.07558002732593895, 0.5290601912815727, 0.1316375461701764, 0.20470508281089106, 0.06262931712061257, 0.1600526993082321, 0.08408565724526686, 0.05219109760051047, 0.06958813013401395, 0.011598021689002326, 0.020876439040204187, 0.027835252053605583, 0.03711366940480744, 0.03247446072920651, 0.01565732928015314, 0.013337724942352674, 0.03711366940480744, 0.019716636871303955, 0.0028995054222505814, 0.01101812060455221, 0.0005799010844501162, 0.00463920867560093, 0.015945068746653097, 0.015945068746653097, 0.03189013749330619, 0.015945068746653097, 0.04783520623995929, 0.7813083685860017, 0.015945068746653097, 0.03189013749330619, 0.015945068746653097, 0.015945068746653097, 0.025886567522688163, 0.8283701607260212, 0.008628855840896054, 0.017257711681792107, 0.008628855840896054, 0.051773135045376326, 0.008628855840896054, 0.008628855840896054, 0.008628855840896054, 0.008628855840896054, 0.008628855840896054, 0.008628855840896054, 0.015872623223290427, 0.07407224170868866, 0.005290874407763476, 0.005290874407763476, 0.010581748815526952, 0.03703612085434433, 0.021163497631053903, 0.04232699526210781, 0.10052661374750604, 0.49734219432976673, 0.08994486493197909, 0.005290874407763476, 0.005290874407763476, 0.06878136730092518, 0.005290874407763476, 0.9596104290764231, 0.9702088766289546, 0.9516309103693348, 0.015600506727366143, 0.05619356260685636, 0.1685806878205691, 0.016055303601958962, 0.0401382590048974, 0.016055303601958962, 0.02408295540293844, 0.09633182161175376, 0.02408295540293844, 0.008027651800979481, 0.4094102418499535, 0.008027651800979481, 0.008027651800979481, 0.016055303601958962, 0.02408295540293844, 0.032110607203917924, 0.032110607203917924, 0.016055303601958962, 0.17384406013928388, 0.3135029573734808, 0.04419057643828319, 0.09922035087086226, 0.034602055135636835, 0.042106115285533985, 0.06837032581017399, 0.04544125312993272, 0.02084461152749207, 0.022512180449691437, 0.018343258144193023, 0.012089874685945402, 0.02543042606354033, 0.025013533832990487, 0.0291824561384889, 0.010839197994295877, 0.005419598997147938, 0.00291824561384889, 0.0008337844610996828, 0.00583649122769778, 0.11401032965974676, 0.6311876221742502, 0.006609294473028798, 0.03139414874688679, 0.006609294473028798, 0.024784854273857994, 0.009913941709543198, 0.07435456282157397, 0.011566265327800397, 0.016523236182571996, 0.003304647236514399, 0.014870912564314796, 0.011566265327800397, 0.008261618091285998, 0.014870912564314796, 0.003304647236514399, 0.009913941709543198, 0.004956970854771599, 0.0016523236182571996, 0.0016523236182571996, 0.9077294781585643, 0.002968629883950752, 0.11280793559012858, 0.008905889651852256, 0.002968629883950752, 0.05937259767901504, 0.05937259767901504, 0.002968629883950752, 0.1306197148938331, 0.002968629883950752, 0.017811779303704513, 0.5818514572543474, 0.020780409187655263, 0.0850379378370231, 0.025511381351106928, 0.04251896891851155, 0.008503793783702309, 0.5612503897243524, 0.008503793783702309, 0.034015175134809235, 0.19558725702515312, 0.025511381351106928, 0.020033729867023422, 0.040067459734046844, 0.020033729867023422, 0.08013491946809369, 0.20033729867023423, 0.020033729867023422, 0.020033729867023422, 0.10016864933511711, 0.4607757869415387, 0.9282431921426191, 0.001311602184285318, 0.04721767863427145, 0.09050055071568694, 0.15870386429852348, 0.015739226211423814, 0.005246408737141272, 0.07213812013569249, 0.001311602184285318, 0.055087291739983356, 0.001311602184285318, 0.3370817613613267, 0.001311602184285318, 0.007869613105711907, 0.001311602184285318, 0.007869613105711907, 0.10361657255854012, 0.0878773463471163, 0.001311602184285318, 0.002623204368570636, 0.0032091680969098778, 0.0064183361938197556, 0.08343837051965683, 0.7068192733444006, 0.019255008581459267, 0.0008022920242274694, 0.004011460121137347, 0.0008022920242274694, 0.08022920242274695, 0.0008022920242274694, 0.02968480489641637, 0.0024068760726824083, 0.0032091680969098778, 0.008022920242274694, 0.0024068760726824083, 0.0369054331144636, 0.0016045840484549389, 0.008022920242274694, 0.0024068760726824083, 0.9436812526440983, 0.9762341790109943, 0.959848154544714, 0.013148604856776904, 0.9616631108276685, 0.005263644902368259, 0.010527289804736517, 0.13685476746157474, 0.005263644902368259, 0.005263644902368259, 0.010527289804736517, 0.6474283229912958, 0.12632747765683822, 0.021054579609473035, 0.010527289804736517, 0.005263644902368259, 0.010527289804736517, 0.04729559903227869, 0.8986163816132952, 0.029218912182861014, 0.009739637394287005, 0.009739637394287005, 0.009739637394287005, 0.9155259150629784, 0.01947927478857401, 0.9570713156111149, 0.9945828731497296, 0.08438986433070693, 0.08438986433070693, 0.7595087789763624, 0.14285471202707314, 0.2433821019720505, 0.0052909152602619676, 0.0052909152602619676, 0.015872745780785905, 0.330682203766373, 0.11110922046550133, 0.023809118671178856, 0.007936372890392953, 0.029100033931440825, 0.0026454576301309838, 0.0026454576301309838, 0.02645457630130984, 0.02645457630130984, 0.015872745780785905, 0.0026454576301309838, 0.0026454576301309838, 0.0052909152602619676, 0.975045876061392, 0.5212015571110233, 0.09307170662696845, 0.06825258485977687, 0.08066214574337266, 0.023267926656742113, 0.013960755994045268, 0.049638243534383175, 0.006204780441797897, 0.03722868265078738, 0.015511951104494742, 0.01861434132539369, 0.004653585331348423, 0.02171673154629264, 0.006204780441797897, 0.02947270709854001, 0.0015511951104494742, 0.0015511951104494742, 0.0031023902208989484, 0.004653585331348423, 0.623331770531729, 0.0612396125434681, 0.0349940643105532, 0.019684161174686177, 0.024058419213505326, 0.028432677252324477, 0.05905248352405853, 0.013122774116457452, 0.015309903135867026, 0.03718119332996278, 0.0087485160776383, 0.006561387058228726, 0.02187129019409575, 0.00437425803881915, 0.026245548232914903, 0.00437425803881915, 0.002187129019409575, 0.00437425803881915, 0.00437425803881915, 0.06883647829399751, 0.141327990833694, 0.10660516549955366, 0.32042466887294413, 0.03472282533414033, 0.018275171228494914, 0.07431902966254599, 0.005482551368548474, 0.03228613583700768, 0.03655034245698983, 0.01766599885421175, 0.026803584468459207, 0.028021929217025534, 0.02924027396559186, 0.026194412094176042, 0.013401792234229604, 0.004264206619982147, 0.012792619859946439, 0.0006091723742831638, 0.002436689497132655, 0.9187857885003314, 0.08988722983251902, 0.044095622181990465, 0.1322868665459714, 0.3968605996379142, 0.04579160765052856, 0.01017591281122857, 0.04579160765052856, 0.00339197093707619, 0.04239963671345237, 0.02035182562245714, 0.044095622181990465, 0.02713576749660952, 0.023743796559533327, 0.01017591281122857, 0.02035182562245714, 0.01356788374830476, 0.00678394187415238, 0.001695985468538095, 0.005087956405614285, 0.01356788374830476, 0.4917954194662841, 0.08838316257312223, 0.05513009150600694, 0.021877020438891642, 0.032377990249559625, 0.06825630376934191, 0.027127505344225634, 0.04637928333045028, 0.012251131445779318, 0.014876373898446316, 0.011376050628223654, 0.007000646540445325, 0.0280025861617813, 0.02012685880378031, 0.05950549559378526, 0.004375404087778328, 0.0035003232702226625, 0.0035003232702226625, 0.002625242452666997, 0.0017501616351113312, 0.1856247374630505, 0.22561075333252842, 0.03774542015265372, 0.12219864332525794, 0.06446021523786526, 0.05480841830385335, 0.048776045220095904, 0.03929660180276278, 0.011030625067442183, 0.04567368191987779, 0.03343658223568412, 0.01551181650109057, 0.03102363300218114, 0.012237099684193672, 0.04929310577013226, 0.011030625067442183, 0.0027576562668605456, 0.006204726600436228, 0.0006894140667151364, 0.00293000978353933, 0.9603970031909586, 0.09376172702596015, 0.04261896682998189, 0.13211879717294386, 0.16621397063692936, 0.038357070146983696, 0.008523793365996377, 0.025571380097989132, 0.004261896682998189, 0.17047586731992756, 0.006392845024497283, 0.14064259053894024, 0.014916638390493661, 0.031964225122486416, 0.017047586731992755, 0.017047586731992755, 0.04474991517148098, 0.004261896682998189, 0.03409517346398551, 0.004261896682998189, 0.9794333873947769, 0.9873753976277883, 0.9637596341951729, 0.894402420408894, 0.059563984820251444, 0.8934597723037716, 0.02373229365682207, 0.031643058209096096, 0.007910764552274024, 0.2610552302250428, 0.64868269328647, 0.015821529104548048, 0.007910764552274024, 0.007910764552274024, 0.9112785290477373, 0.951929294886319, 0.9361141060924345, 0.04070061330836672, 0.1951255812924466, 0.0057389876850719584, 0.011477975370143917, 0.028694938425359792, 0.14347469212679895, 0.0057389876850719584, 0.2066035566625905, 0.3845121748998212, 0.8792565206061465, 0.9509233882383125, 0.07515469426651898, 0.9018563311982278, 0.03887593690115302, 0.025917291267435347, 0.012958645633717673, 0.8552706118253665, 0.03887593690115302, 0.04909729535611134, 0.012274323839027835, 0.14729188606833404, 0.012274323839027835, 0.07364594303416702, 0.012274323839027835, 0.5891675442733362, 0.08592026687319486, 0.012274323839027835, 0.9795260127945659, 0.9924450800204182, 0.025130389207688755, 0.9549547898921726, 0.018451697792292804, 0.46402602966543754, 0.05877207444952522, 0.017084905363234076, 0.01093433943246981, 0.01981849022135153, 0.006150565930764268, 0.1592313179853416, 0.028019244795703887, 0.0314362258683507, 0.01981849022135153, 0.02870264101023325, 0.018451697792292804, 0.02665245236664516, 0.02050188643588089, 0.04373735772987924, 0.02255207507946898, 0.0034169810726468156, 0.0013667924290587262, 0.0013667924290587262, 0.18490528629404862, 0.342444590216578, 0.03476219382328114, 0.03180370924257636, 0.04215840527504309, 0.07839984138867662, 0.031064088097400168, 0.03698105725880972, 0.024407497790814418, 0.028845224661871584, 0.004437726871057167, 0.035501814968457335, 0.020709392064933444, 0.046596132146100255, 0.028845224661871584, 0.011094317177642917, 0.008875453742114334, 0.0036981057258809722, 0.0022188634355285834, 0.0022188634355285834, 0.05967909837772961, 0.16499515433842893, 0.031594816788209794, 0.017552675993449885, 0.014042140794759909, 0.08776337996724944, 0.010531605596069932, 0.42477475904148726, 0.014042140794759909, 0.003510535198689977, 0.007021070397379954, 0.003510535198689977, 0.021063211192139865, 0.09478445036462939, 0.007021070397379954, 0.003510535198689977, 0.02457374639082984, 0.003510535198689977, 0.007021070397379954, 0.9737024592618069, 0.07662266560489563, 0.6184543723823719, 0.01094609508641366, 0.016419142629620492, 0.00547304754320683, 0.07114961806168879, 0.019155666401223907, 0.04378438034565464, 0.01094609508641366, 0.008209571314810246, 0.013682618858017076, 0.016419142629620492, 0.030101761487637567, 0.00547304754320683, 0.008209571314810246, 0.03831133280244781, 0.002736523771603415, 0.002736523771603415, 0.002736523771603415, 0.897484347292752, 0.9028293623762491, 0.9664750261950487, 0.9371430019358858, 0.93912807470183, 0.0469564037350915, 0.9841231049511028, 0.014262653694943518, 0.9463575632085339, 0.969605438394268], \"Term\": [\"absent\", \"absent\", \"absurd\", \"absurd\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerators\", \"accelerators\", \"accusing\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acts\", \"acupuncture\", \"adaptec\", \"adaptec\", \"adaptec\", \"adaptec\", \"adcom\", \"adelaide\", \"adjective\", \"adlib\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"admitting\", \"advisor\", \"aerospace\", \"afterlife\", \"aged\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agencies\", \"agnostic\", \"airspace\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"algorithm\", \"allah\", \"allah\", \"allocated\", \"allocated\", \"alomar\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"amish\", \"amongst\", \"amplifier\", \"amplifier\", \"amplifier\", \"anal\", \"anal\", \"analgesics\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anonymous\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anyone\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"anything\", \"apartment\", \"apartment\", \"apartment\", \"apartment\", \"apartment\", \"apartment\", \"apartment\", \"apartment\", \"apology\", \"apology\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"apple\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"appointment\", \"apps\", \"apps\", \"apps\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"april\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arafat\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"argic\", \"argic\", \"argic\", \"argic\", \"argic\", \"args\", \"args\", \"args\", \"args\", \"args\", \"args\", \"args\", \"args\", \"args\", \"argv\", \"argv\", \"argv\", \"argv\", \"ariane\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenia\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armenians\", \"armies\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"army\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"around\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"ashtray\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"asking\", \"aspi\", \"aspi\", \"assure\", \"astronomy\", \"astronomy\", \"astronomy\", \"astronomy\", \"astronomy\", \"astros\", \"asynchronous\", \"asynchronous\", \"asynchronous\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheists\", \"atheists\", \"atheists\", \"atheists\", \"atheists\", \"atheists\", \"atheists\", \"atheists\", \"athens\", \"athens\", \"atlanta\", \"atlanta\", \"atlanta\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attending\", \"attending\", \"attr\", \"attributable\", \"augustine\", \"aunt\", \"aunt\", \"auth\", \"autos\", \"autos\", \"autos\", \"autos\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"averages\", \"awarded\", \"azerbaijan\", \"azerbaijan\", \"azerbaijan\", \"azerbaijan\", \"azerbaijan\", \"azerbaijan\", \"azeri\", \"azeri\", \"azeri\", \"azeris\", \"azeris\", \"babies\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"baerga\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"ball\", \"balloon\", \"balls\", \"balls\", \"balls\", \"balls\", \"balls\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"banks\", \"baptism\", \"baptism\", \"bargain\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"based\", \"batteries\", \"batteries\", \"batteries\", \"baud\", \"baud\", \"baud\", \"baud\", \"baud\", \"beauchaine\", \"beef\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"best\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"better\", \"bhjn\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bible\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bindings\", \"biological\", \"biological\", \"biological\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"bios\", \"blah\", \"blah\", \"blah\", \"blah\", \"blah\", \"blaster\", \"blinking\", \"blvd\", \"bobbe\", \"bold\", \"bold\", \"bold\", \"bold\", \"bond\", \"bone\", \"borland\", \"borland\", \"borland\", \"borland\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"boston\", \"bounced\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boxes\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"boys\", \"braille\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brain\", \"brewer\", \"brigham\", \"bronx\", \"bruins\", \"bruins\", \"bruins\", \"bruins\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"buffer\", \"bugging\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"bure\", \"burnt\", \"burnt\", \"burst\", \"burst\", \"bxlt\", \"bxom\", \"bytes\", \"bytes\", \"bytes\", \"bytes\", \"bytes\", \"bytes\", \"bytes\", \"bytes\", \"cabinet\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cable\", \"cadre\", \"cadre\", \"calgary\", \"calgary\", \"calgary\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"came\", \"camry\", \"canadiens\", \"candida\", \"candida\", \"capitals\", \"capitol\", \"captain\", \"captain\", \"captain\", \"captain\", \"captain\", \"captain\", \"carb\", \"carbonneau\", \"carbs\", \"carbs\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"cardinals\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"cards\", \"carroll\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cases\", \"cassels\", \"caste\", \"catbyte\", \"categories\", \"categories\", \"categories\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"cdrom\", \"cdrom\", \"censorship\", \"centris\", \"centris\", \"centris\", \"ceremonial\", \"ceremonies\", \"challenges\", \"chamber\", \"chamber\", \"chamber\", \"chamber\", \"champaign\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"channel\", \"char\", \"char\", \"char\", \"char\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"character\", \"chastity\", \"chastity\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"check\", \"chevron\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"chicago\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"children\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chips\", \"chorus\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christ\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christians\", \"christopher\", \"christopher\", \"christopher\", \"christopher\", \"christopher\", \"chronic\", \"chronic\", \"chronic\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"chzd\", \"chzv\", \"cigarette\", \"cigarette\", \"cigarettes\", \"cincinnati\", \"cincinnati\", \"cipher\", \"cipher\", \"cipher\", \"cipher\", \"cipher\", \"cipher\", \"ciphers\", \"ciphers\", \"ciphertext\", \"circuits\", \"circuits\", \"circuits\", \"circuits\", \"circuits\", \"circumcision\", \"civilians\", \"civilians\", \"civilians\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"clay\", \"clemens\", \"clemens\", \"clemens\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"client\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clients\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clubs\", \"cluster\", \"cmap\", \"cmos\", \"cmos\", \"coated\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"coercion\", \"coli\", \"coli\", \"coli\", \"colony\", \"colony\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"colormap\", \"colormap\", \"colormap\", \"colormap\", \"colormap\", \"colormap\", \"columns\", \"combustion\", \"combustion\", \"comeback\", \"comics\", \"comics\", \"comics\", \"commentary\", \"commentary\", \"commissioner\", \"commits\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"communications\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"comp\", \"compass\", \"compass\", \"compatibles\", \"compensate\", \"compress\", \"compress\", \"compress\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"conclusive\", \"conclusive\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condone\", \"conductor\", \"conductor\", \"conductor\", \"cone\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"confess\", \"conner\", \"conner\", \"contest\", \"contest\", \"contest\", \"contest\", \"contest\", \"contest\", \"contests\", \"contests\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"contrib\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"controllers\", \"converse\", \"corn\", \"correspond\", \"corrupt\", \"corrupt\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"could\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"count\", \"countersteering\", \"countersteering\", \"couples\", \"couples\", \"courtesy\", \"courtesy\", \"courtesy\", \"courtesy\", \"courtesy\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"cover\", \"crashes\", \"crashes\", \"creed\", \"crown\", \"cruelties\", \"crypt\", \"crypt\", \"crypt\", \"crypt\", \"crypt\", \"cryptanalysis\", \"cryptanalysis\", \"cryptanalysis\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptologia\", \"cryptologia\", \"cryptologia\", \"cryptologia\", \"cryptologia\", \"cryptologia\", \"cryptology\", \"cryptology\", \"cryptology\", \"cryptosystem\", \"cryptosystem\", \"cryptosystems\", \"csmes\", \"ctrl\", \"ctrl\", \"cube\", \"cubic\", \"cubic\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"current\", \"cursor\", \"cursor\", \"cursor\", \"cursor\", \"curt\", \"curt\", \"curt\", \"cview\", \"cview\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cyprus\", \"cyprus\", \"cyprus\", \"czar\", \"czech\", \"damaging\", \"dances\", \"darken\", \"darkness\", \"darren\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"data\", \"davidsson\", \"deaf\", \"deaf\", \"dealership\", \"deaths\", \"deaths\", \"deaths\", \"deaths\", \"deaths\", \"debugger\", \"debugger\", \"deck\", \"deck\", \"deck\", \"deck\", \"decrypt\", \"decrypt\", \"decrypt\", \"decrypt\", \"decrypt\", \"defaults\", \"defaults\", \"defaults\", \"defaultscreen\", \"defective\", \"defective\", \"defects\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"define\", \"defines\", \"defines\", \"defines\", \"defines\", \"defines\", \"degan\", \"deletion\", \"deletion\", \"dell\", \"demonstrating\", \"denmark\", \"departed\", \"derek\", \"detained\", \"detroit\", \"detroit\", \"detroit\", \"detroit\", \"detroit\", \"detroit\", \"detroit\", \"detroit\", \"devils\", \"devils\", \"devils\", \"devils\", \"diagnoses\", \"dice\", \"diet\", \"diet\", \"diet\", \"diet\", \"diet\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"digit\", \"digit\", \"digit\", \"digit\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"disarm\", \"disc\", \"disc\", \"disc\", \"disc\", \"disc\", \"diseases\", \"diseases\", \"diseases\", \"diseases\", \"diseases\", \"diseases\", \"diseases\", \"diseases\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"disks\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"distributors\", \"ditto\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"dobbs\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctor\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"doctors\", \"dodgers\", \"dodgers\", \"domi\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"done\", \"dose\", \"doubled\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"doug\", \"drake\", \"drastically\", \"drawings\", \"drill\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drivers\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drives\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drug\", \"drunk\", \"drunk\", \"dtmedin\", \"dylan\", \"echo\", \"echo\", \"echo\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"editor\", \"eggs\", \"eggs\", \"electricity\", \"electricity\", \"elevated\", \"emacs\", \"emacs\", \"emacs\", \"emacs\", \"emacs\", \"emacs\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"emma\", \"emulate\", \"emulation\", \"emulation\", \"enables\", \"enables\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encrypted\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"endometriosis\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"engines\", \"engines\", \"engines\", \"engines\", \"engines\", \"engines\", \"engines\", \"enigma\", \"ensuing\", \"entries\", \"entries\", \"entries\", \"entries\", \"entries\", \"entries\", \"entries\", \"entries\", \"entries\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"epson\", \"eqtcv\", \"eqtm\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"equipment\", \"erase\", \"erase\", \"ergo\", \"ergonomic\", \"ericsson\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"errors\", \"erzurum\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrowed\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"ether\", \"ethernet\", \"ethernet\", \"ethernet\", \"ethernet\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"every\", \"examiner\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"example\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"excellent\", \"executables\", \"execution\", \"exhaust\", \"exhaust\", \"exhaust\", \"exhaust\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"expn\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"export\", \"expos\", \"extracting\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"falkland\", \"falkland\", \"fallacy\", \"fallacy\", \"fallacy\", \"fallible\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"fast\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faster\", \"faults\", \"feast\", \"feast\", \"feustel\", \"fielder\", \"fielding\", \"fighters\", \"fijh\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"filename\", \"filename\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"files\", \"filler\", \"filters\", \"filters\", \"financial\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fine\", \"fips\", \"fips\", \"fips\", \"fips\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"flags\", \"flags\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flames\", \"flaws\", \"flee\", \"fleet\", \"fleury\", \"fleury\", \"fleury\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flood\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floor\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floptical\", \"fluke\", \"folding\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"fonts\", \"fonts\", \"fonts\", \"fonts\", \"fonts\", \"fonts\", \"fonts\", \"fonts\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forces\", \"forehead\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"formats\", \"formats\", \"formats\", \"formats\", \"formats\", \"formats\", \"formats\", \"formats\", \"formatted\", \"formatted\", \"formatted\", \"forsale\", \"forsale\", \"forsale\", \"forsale\", \"forsale\", \"forty\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fprintf\", \"fran\", \"franchise\", \"franchise\", \"franchise\", \"freeware\", \"freeware\", \"freewill\", \"frozen\", \"fujitsu\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"function\", \"fuse\", \"gallon\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"games\", \"gangs\", \"garvey\", \"gateway\", \"gateway\", \"gateway\", \"gateway\", \"gateway\", \"gateway\", \"gaza\", \"gaza\", \"generates\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"ghetto\", \"ghost\", \"ghost\", \"ghost\", \"ghost\", \"ghost\", \"ghostscript\", \"giants\", \"gifs\", \"gilmour\", \"gizw\", \"gizwt\", \"glock\", \"glorious\", \"glutamate\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goaltender\", \"goaltender\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"going\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"goose\", \"gopher\", \"gordon\", \"gordon\", \"gordon\", \"gordon\", \"gordon\", \"gordon\", \"gordon\", \"gordon\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"grams\", \"grandfather\", \"graph\", \"graph\", \"graph\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphics\", \"graphing\", \"gravis\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"great\", \"greece\", \"greece\", \"greece\", \"greece\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"grips\", \"grips\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"grounded\", \"gsfc\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"guns\", \"gurus\", \"habs\", \"halifax\", \"handler\", \"handler\", \"handler\", \"handler\", \"handler\", \"hanging\", \"hanging\", \"hanging\", \"hanging\", \"hanging\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hardware\", \"hartford\", \"hartford\", \"hartford\", \"hatcher\", \"hawk\", \"hawks\", \"hawks\", \"hawks\", \"header\", \"header\", \"header\", \"header\", \"header\", \"header\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"health\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"hemisphere\", \"hemisphere\", \"hemisphere\", \"henderson\", \"henrik\", \"henrik\", \"henrik\", \"henrik\", \"henrik\", \"heretics\", \"heterosexual\", \"hicnet\", \"hicnet\", \"hicnet\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"hillary\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"history\", \"hitting\", \"hitting\", \"hitting\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"home\", \"homeland\", \"homeland\", \"honda\", \"honda\", \"honda\", \"honda\", \"honda\", \"honda\", \"honda\", \"honorary\", \"honors\", \"hugged\", \"hulk\", \"hulk\", \"hulk\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"humorous\", \"hypercard\", \"iftccu\", \"iici\", \"iigs\", \"illness\", \"illness\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"images\", \"imake\", \"imake\", \"imake\", \"imake\", \"imperfect\", \"implication\", \"implication\", \"implies\", \"implies\", \"implies\", \"implies\", \"implies\", \"imprisonment\", \"impulse\", \"impulse\", \"impulse\", \"impulse\", \"inactive\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"incorporates\", \"inet\", \"infallibility\", \"infallible\", \"infallible\", \"inflammatory\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"info\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"ingr\", \"iniquity\", \"iniquity\", \"inject\", \"inkjet\", \"inning\", \"inning\", \"innings\", \"innings\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"input\", \"inserted\", \"installations\", \"installations\", \"instructed\", \"intake\", \"intake\", \"intellect\", \"intellect\", \"intentional\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interface\", \"interior\", \"interior\", \"interior\", \"interior\", \"interrupt\", \"interrupt\", \"interrupt\", \"interrupt\", \"invaded\", \"investigated\", \"investigated\", \"invokes\", \"irbe\", \"irish\", \"islam\", \"islam\", \"islam\", \"islam\", \"islam\", \"islam\", \"islam\", \"islam\", \"islam\", \"islamic\", \"islamic\", \"islamic\", \"islamic\", \"islamic\", \"islamic\", \"islanders\", \"islanders\", \"isles\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israel\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"itar\", \"jagr\", \"jagr\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"japanese\", \"jays\", \"jays\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jesus\", \"jets\", \"jets\", \"jets\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jews\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"jobs\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"john\", \"journalist\", \"journals\", \"jpeg\", \"jpeg\", \"jpeg\", \"jpeg\", \"jpeg\", \"jpeg\", \"jpeg\", \"jpwu\", \"judas\", \"judas\", \"judicial\", \"jumper\", \"jumper\", \"jumper\", \"jumper\", \"jumpers\", \"jumpers\", \"jumpers\", \"jumpers\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"june\", \"justifiable\", \"karabakh\", \"karabakh\", \"karabakh\", \"karina\", \"karina\", \"karl\", \"karl\", \"kawasaki\", \"keller\", \"kelvin\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keyboard\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keys\", \"keywords\", \"keywords\", \"keywords\", \"keywords\", \"kidney\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"killed\", \"kilograms\", \"kilometers\", \"kingman\", \"kingman\", \"kings\", \"kings\", \"kings\", \"kings\", \"kings\", \"kings\", \"kirlian\", \"kitchen\", \"kitchen\", \"kitchen\", \"kitchen\", \"kkeller\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"koran\", \"koresh\", \"koresh\", \"koresh\", \"koresh\", \"koresh\", \"koresh\", \"kurds\", \"kurds\", \"kurds\", \"label\", \"label\", \"label\", \"label\", \"label\", \"label\", \"lance\", \"laptop\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"leafs\", \"leafs\", \"leafs\", \"leafs\", \"leafs\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"league\", \"leagues\", \"leary\", \"lebanese\", \"lebanese\", \"lebanese\", \"leftover\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legalization\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"less\", \"levy\", \"libraries\", \"libraries\", \"libraries\", \"libraries\", \"libraries\", \"libraries\", \"libraries\", \"libraries\", \"libxmu\", \"libxmu\", \"libxmu\", \"libxmu\", \"libxmu\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"like\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"linked\", \"linked\", \"linked\", \"lipman\", \"lipman\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"little\", \"liver\", \"liver\", \"liver\", \"lobbying\", \"localtalk\", \"locking\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"long\", \"lord\", \"lord\", \"lord\", \"lord\", \"lord\", \"lord\", \"lord\", \"lord\", \"lord\", \"losses\", \"louisville\", \"lssu\", \"lust\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"maciver\", \"macs\", \"macs\", \"macs\", \"macs\", \"macs\", \"magellan\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mailer\", \"mailer\", \"mailer\", \"mailer\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"maine\", \"maine\", \"maine\", \"majors\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"males\", \"mamma\", \"mamma\", \"mamma\", \"mamma\", \"manhattan\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"massacres\", \"massacres\", \"massey\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"master\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"matthew\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maybe\", \"maynard\", \"mbxlt\", \"mbxn\", \"mccartney\", \"mcsorley\", \"mcsorley\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medicine\", \"medin\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memphis\", \"mercedes\", \"messiah\", \"messiah\", \"messiah\", \"metaphysical\", \"methanol\", \"mets\", \"mets\", \"mets\", \"mets\", \"mets\", \"mets\", \"microsoft\", \"microsoft\", \"microsoft\", \"microsoft\", \"microsoft\", \"microsoft\", \"microsoft\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"might\", \"migraines\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"mike\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"militia\", \"militia\", \"militia\", \"militia\", \"militia\", \"militia\", \"millenia\", \"mime\", \"mime\", \"mindset\", \"mini\", \"mini\", \"mini\", \"mini\", \"mini\", \"mini\", \"minimize\", \"minnesota\", \"minnesota\", \"minnesota\", \"minnesota\", \"minnesota\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"mode\", \"modem\", \"modem\", \"modem\", \"modem\", \"modem\", \"modem\", \"modem\", \"modem\", \"modem\", \"moderated\", \"modifiers\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monthly\", \"monthly\", \"monthly\", \"monthly\", \"montreal\", \"montreal\", \"montreal\", \"montreal\", \"montreal\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moore\", \"moore\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormons\", \"mormons\", \"mormons\", \"mormons\", \"moron\", \"motherboard\", \"motherboard\", \"motherboard\", \"motherboard\", \"motherboard\", \"motherboard\", \"motherboard\", \"motherboard\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"muenchen\", \"mullen\", \"mullen\", \"multitasking\", \"murphy\", \"murphy\", \"murphy\", \"murphy\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"music\", \"muslims\", \"muslims\", \"muslims\", \"muslims\", \"muslims\", \"muslims\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"must\", \"mutually\", \"myers\", \"myers\", \"myers\", \"myers\", \"myriad\", \"nail\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"nasa\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"navy\", \"ncsl\", \"ncsl\", \"ncsu\", \"neck\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"needles\", \"nets\", \"netware\", \"neurologist\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"newcastle\", \"newman\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"newsletter\", \"niedermayer\", \"niedermayer\", \"nintendo\", \"ninth\", \"nissan\", \"nissan\", \"nissan\", \"nist\", \"nist\", \"nist\", \"nist\", \"nist\", \"nkjz\", \"noah\", \"nolan\", \"nolan\", \"nolan\", \"nolan\", \"nords\", \"norton\", \"norton\", \"norton\", \"norton\", \"norton\", \"notepad\", \"nrhj\", \"nriz\", \"nrizw\", \"nrizwt\", \"nubus\", \"nubus\", \"nubus\", \"nubus\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"null\", \"null\", \"null\", \"null\", \"null\", \"null\", \"null\", \"null\", \"null\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"obfuscate\", \"obfuscate\", \"obfuscate\", \"obfuscation\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"obscure\", \"obscure\", \"obscure\", \"occurrence\", \"offend\", \"offenses\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"olney\", \"olney\", \"omran\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"oname\", \"onkyo\", \"onset\", \"onur\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"open\", \"openwindows\", \"openwindows\", \"openwindows\", \"openwindows\", \"oral\", \"oral\", \"orbital\", \"orbital\", \"organizers\", \"outbreak\", \"outbreak\", \"outbreak\", \"outlet\", \"outlet\", \"outlet\", \"outlet\", \"outlet\", \"outlets\", \"outlets\", \"outlines\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"output\", \"overly\", \"overtime\", \"overtime\", \"pacific\", \"pacific\", \"pacific\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"padded\", \"padded\", \"padded\", \"pagan\", \"pagan\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"painless\", \"palestine\", \"palestine\", \"palestine\", \"palestine\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palette\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panicking\", \"parse\", \"parse\", \"parse\", \"parse\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"passages\", \"passages\", \"passages\", \"passages\", \"passages\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patch\", \"patches\", \"patches\", \"patches\", \"patches\", \"patches\", \"patches\", \"patches\", \"patches\", \"patchlevel\", \"patent\", \"patent\", \"patents\", \"patents\", \"patents\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patients\", \"patterns\", \"patterns\", \"patterns\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"paul\", \"pedals\", \"penguins\", \"penguins\", \"penis\", \"pens\", \"pentium\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"perror\", \"perror\", \"pexlib\", \"phillies\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phone\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phones\", \"phosphor\", \"pierce\", \"pilots\", \"pinouts\", \"pitcher\", \"pitcher\", \"pitcher\", \"pitching\", \"pitching\", \"pitt\", \"pitt\", \"pittsburg\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pittsburgh\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pizza\", \"placebo\", \"plaintext\", \"plaintext\", \"plaintext\", \"plaintext\", \"plaintext\", \"plants\", \"plants\", \"plants\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"played\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"players\", \"players\", \"players\", \"players\", \"players\", \"players\", \"players\", \"players\", \"players\", \"players\", \"playoffs\", \"playoffs\", \"playoffs\", \"playoffs\", \"playoffs\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"please\", \"pmfq\", \"pnei\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pole\", \"polio\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"pork\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"potent\", \"potvin\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"preferences\", \"premises\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"president\", \"prevention\", \"prevention\", \"prevention\", \"prevention\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printf\", \"printf\", \"printf\", \"printf\", \"printf\", \"prints\", \"prints\", \"prison\", \"prison\", \"prison\", \"prison\", \"prison\", \"prison\", \"prisoners\", \"prisoners\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"privacy\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"problems\", \"profile\", \"prog\", \"prog\", \"prog\", \"prog\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"programmers\", \"programmers\", \"programmers\", \"programmers\", \"programmers\", \"programmers\", \"projector\", \"prolog\", \"promo\", \"prototype\", \"pseudo\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"puck\", \"puck\", \"puck\", \"puck\", \"pulse\", \"qemm\", \"quack\", \"quack\", \"quack\", \"quacks\", \"quakers\", \"quantities\", \"quantization\", \"quattro\", \"quebec\", \"quebec\", \"quebec\", \"quebec\", \"quebec\", \"quebec\", \"quebec\", \"queen\", \"queens\", \"queries\", \"quest\", \"quest\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"quicken\", \"quran\", \"rabin\", \"rabin\", \"racist\", \"racist\", \"ramsey\", \"rangers\", \"rangers\", \"rangers\", \"rangers\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rather\", \"rationale\", \"ratios\", \"razor\", \"rchz\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"reality\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"really\", \"recognition\", \"recognition\", \"rectangle\", \"rectangle\", \"rectangles\", \"rectangular\", \"rectangular\", \"redesign\", \"redesign\", \"redesign\", \"refreshed\", \"refund\", \"relax\", \"relaxed\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"repaired\", \"repairs\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"republicans\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"requests\", \"resembles\", \"reserve\", \"reserve\", \"reserve\", \"reserve\", \"reserve\", \"reserve\", \"reserve\", \"resigned\", \"restarting\", \"restraints\", \"retail\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"return\", \"revenues\", \"rewritten\", \"rickey\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"riding\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"rights\", \"riots\", \"ripem\", \"ripem\", \"ripem\", \"ripem\", \"ripem\", \"rivers\", \"rivest\", \"rlhz\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"rockefeller\", \"rode\", \"romans\", \"romans\", \"romans\", \"rosicrucian\", \"routes\", \"rows\", \"royals\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"rules\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"running\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"rychel\", \"saab\", \"sabbath\", \"sabbath\", \"sabbath\", \"sabbath\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"said\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"salesman\", \"sampling\", \"sampling\", \"sandberg\", \"sandberg\", \"sandberg\", \"sanderson\", \"sank\", \"santo\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellites\", \"satellites\", \"satellites\", \"satellites\", \"satellites\", \"satellites\", \"satisfaction\", \"sauce\", \"scam\", \"scanned\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"scheme\", \"schmidt\", \"scorer\", \"scorer\", \"scores\", \"scores\", \"scores\", \"scores\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"seagate\", \"seagate\", \"seal\", \"seal\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"second\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"secular\", \"secular\", \"secular\", \"secular\", \"secular\", \"secular\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secured\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"sega\", \"segment\", \"segment\", \"segment\", \"segment\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"selling\", \"semitic\", \"semitism\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"sendmail\", \"senior\", \"senior\", \"senior\", \"senior\", \"senior\", \"seniors\", \"sentra\", \"separated\", \"serdar\", \"serdar\", \"serdar\", \"serdar\", \"serdar\", \"serdar\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"series\", \"serpent\", \"servant\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"session\", \"session\", \"session\", \"session\", \"session\", \"session\", \"session\", \"session\", \"session\", \"session\", \"shaft\", \"shaft\", \"shah\", \"shaky\", \"shameful\", \"shameful\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shared\", \"shearson\", \"shine\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"shipping\", \"ships\", \"ships\", \"ships\", \"ships\", \"shooter\", \"shuchuk\", \"shuchuk\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"side\", \"sided\", \"sideways\", \"similarity\", \"simm\", \"simm\", \"simm\", \"simms\", \"simms\", \"simms\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"since\", \"sing\", \"singer\", \"singled\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"sites\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"size\", \"skepticism\", \"skepticism\", \"skip\", \"skip\", \"skipjack\", \"sleeve\", \"slots\", \"slots\", \"slots\", \"smallest\", \"smallest\", \"smallest\", \"smallest\", \"smartdrive\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"smoked\", \"smokeless\", \"snapped\", \"snes\", \"sociology\", \"socket\", \"socket\", \"socket\", \"socket\", \"sockets\", \"sockets\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"soldiers\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"someone\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"something\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soon\", \"soundblaster\", \"soundblaster\", \"soundblaster\", \"soundblaster\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacewalk\", \"spacewalks\", \"spacewalks\", \"speakers\", \"speakers\", \"speakers\", \"speakers\", \"speakers\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"spiderman\", \"spies\", \"splinter\", \"spoofing\", \"spots\", \"spots\", \"spreadsheets\", \"squid\", \"ssto\", \"ssto\", \"ssto\", \"ssto\", \"ssto\", \"ssto\", \"stacks\", \"stalin\", \"statutes\", \"stauber\", \"stderr\", \"stderr\", \"stderr\", \"stderr\", \"steep\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stephanopoulos\", \"stereo\", \"stereo\", \"stereo\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"steve\", \"stevens\", \"stevens\", \"stevens\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"still\", \"stink\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"stream\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"string\", \"strip\", \"strip\", \"strip\", \"strip\", \"strip\", \"strip\", \"strip\", \"strip\", \"stuart\", \"studio\", \"subdirectory\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subjective\", \"subjective\", \"subjective\", \"subjective\", \"subjective\", \"subsequently\", \"subsequently\", \"substitution\", \"substitution\", \"substitution\", \"substitution\", \"suck\", \"sumgait\", \"sumgait\", \"sumgait\", \"sumgait\", \"summaries\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"summer\", \"sundin\", \"sunos\", \"sunos\", \"sunos\", \"sunos\", \"sunos\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"sure\", \"surgery\", \"surgery\", \"surgery\", \"surgery\", \"surgery\", \"surgery\", \"surgery\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surviving\", \"sutter\", \"sutter\", \"swing\", \"sydor\", \"sydor\", \"symbol\", \"symbol\", \"symbol\", \"symbol\", \"symbol\", \"symbol\", \"symbol\", \"symptom\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"systems\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"table\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"tamu\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"tape\", \"targa\", \"tass\", \"tbxn\", \"tbxom\", \"teachings\", \"teachings\", \"teachings\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"teams\", \"teams\", \"teams\", \"teams\", \"teams\", \"teams\", \"teams\", \"teams\", \"teams\", \"technician\", \"technician\", \"techno\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"techworks\", \"teenagers\", \"teeth\", \"tele\", \"telepathy\", \"telescope\", \"telescope\", \"telescope\", \"telescope\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"temp\", \"temp\", \"temp\", \"temp\", \"temp\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"tempted\", \"terminals\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"texts\", \"texts\", \"texts\", \"texts\", \"texts\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"thanks\", \"therapies\", \"therapy\", \"therapy\", \"therapy\", \"therapy\", \"therapy\", \"theta\", \"thief\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"things\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"third\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"thought\", \"threw\", \"threw\", \"threw\", \"threw\", \"threw\", \"thumbs\", \"tigers\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"timer\", \"timer\", \"tippett\", \"tobacco\", \"tobacco\", \"tobacco\", \"tobacco\", \"toner\", \"tongues\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"took\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"tool\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"toronto\", \"torque\", \"torque\", \"toshiba\", \"traded\", \"traded\", \"traded\", \"traded\", \"traded\", \"traders\", \"traders\", \"traders\", \"trades\", \"trades\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"training\", \"transformer\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatment\", \"treatments\", \"treatments\", \"treatments\", \"treatments\", \"trends\", \"trinity\", \"trinity\", \"trinomials\", \"triumph\", \"troff\", \"troff\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troops\", \"troy\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"tuning\", \"tuning\", \"turgeon\", \"turkey\", \"turkey\", \"turkey\", \"turkey\", \"turkey\", \"turkey\", \"turkey\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turks\", \"turks\", \"turks\", \"turks\", \"turks\", \"turks\", \"turks\", \"tvtwm\", \"twins\", \"udel\", \"ultrasound\", \"umpires\", \"unaware\", \"unbiased\", \"unclear\", \"unclear\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"undefined\", \"underneath\", \"undo\", \"unicity\", \"uniforms\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"university\", \"unto\", \"untrue\", \"upenn\", \"upenn\", \"upgraded\", \"uranium\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"used\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"users\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"using\", \"util\", \"uudecode\", \"uuencode\", \"uuencode\", \"uuencode\", \"uuencoded\", \"vaginal\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vancouver\", \"vent\", \"verbeek\", \"verified\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"vertex\", \"vertices\", \"vesa\", \"vesa\", \"vesa\", \"vesa\", \"vesa\", \"vesselin\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"villages\", \"villages\", \"violating\", \"viper\", \"viral\", \"visa\", \"visa\", \"vitamin\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"volvo\", \"vpic\", \"vpic\", \"vram\", \"wage\", \"wagon\", \"wagon\", \"wagons\", \"wanna\", \"wanna\", \"wanna\", \"wanna\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"warranty\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"watching\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"waving\", \"wealth\", \"weaver\", \"weaver\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"weight\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"went\", \"wider\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"widgets\", \"width\", \"width\", \"width\", \"width\", \"width\", \"width\", \"width\", \"width\", \"width\", \"willis\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"windows\", \"winfield\", \"winmarks\", \"winnipeg\", \"winnipeg\", \"wipe\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wired\", \"wired\", \"wiring\", \"wiring\", \"wiring\", \"wiring\", \"wiring\", \"wiring\", \"wmbxlt\", \"wmbxn\", \"wollt\", \"wollt\", \"wollt\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"women\", \"wont\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"words\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"workgroups\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"works\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"wrist\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"wwhj\", \"wwiz\", \"wysiwyg\", \"xdefaults\", \"xerox\", \"xerox\", \"xlib\", \"xlib\", \"xlib\", \"xlib\", \"xlib\", \"xlib\", \"xlib\", \"xlib\", \"xserver\", \"xservers\", \"xstuff\", \"xstuff\", \"xterm\", \"xterm\", \"xterm\", \"xterm\", \"xterm\", \"xterm\", \"xterm\", \"xterm\", \"xtpointer\", \"xtrap\", \"xtsetarg\", \"xtsetarg\", \"xview\", \"xview\", \"xview\", \"xview\", \"xview\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"xvoid\", \"yalcin\", \"yankees\", \"yassin\", \"yassin\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"years\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"york\", \"yorn\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"young\", \"yount\", \"zalapski\", \"zephyr\", \"zinc\", \"zionism\", \"zionism\", \"zionist\", \"zionist\", \"znkj\", \"zrck\"]}, \"R\": 30, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [4, 19, 11, 3, 7, 13, 18, 2, 15, 6, 17, 20, 9, 12, 8, 16, 1, 14, 10, 5]};\n","\n","function LDAvis_load_lib(url, callback){\n"," var s = document.createElement('script');\n"," s.src = url;\n"," s.async = true;\n"," s.onreadystatechange = s.onload = callback;\n"," s.onerror = function(){console.warn(\"failed to load library \" + url);};\n"," document.getElementsByTagName(\"head\")[0].appendChild(s);\n","}\n","\n","if(typeof(LDAvis) !== \"undefined\"){\n"," // already loaded: just create the visualization\n"," !function(LDAvis){\n"," new LDAvis(\"#\" + \"ldavis_el611400426542149927769393870\", ldavis_el611400426542149927769393870_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_el611400426542149927769393870\", ldavis_el611400426542149927769393870_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_el611400426542149927769393870\", ldavis_el611400426542149927769393870_data);\n"," })\n"," });\n","}\n","</script>"],"text/plain":["<IPython.core.display.HTML object>"]},"metadata":{},"execution_count":16}]},{"cell_type":"code","metadata":{"id":"rG_kyZQ2CuYa"},"source":[""],"execution_count":null,"outputs":[]}]}