diff --git a/MOJ5.ipynb b/MOJ5.ipynb new file mode 100644 index 0000000..3684b75 --- /dev/null +++ b/MOJ5.ipynb @@ -0,0 +1,372 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "gpuType": "T4", + "machine_shape": "hm" + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + }, + "accelerator": "GPU" + }, + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3dV_4SJ2xY_C", + "outputId": "28f0b228-e536-410e-8d45-a2063a04455b" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Mounted at /content/gdrive\n" + ] + } + ], + "source": [ + "from google.colab import drive\n", + "drive.mount(\"/content/gdrive\")" + ] + }, + { + "cell_type": "code", + "source": [ + "# %env DATA_DIR=/content/gdrive/MyDrive/data_gralinski\n", + "DATA_DIR=\"/content/gdrive/MyDrive/data_gralinski/\"" + ], + "metadata": { + "id": "VwdW1Qm3x9-N" + }, + "execution_count": 2, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "import lzma\n", + "import pickle\n", + "from collections import Counter" + ], + "metadata": { + "id": "irsty5KcyYkR" + }, + "execution_count": 3, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def clean_line(line: str):\n", + " separated = line.split('\\t')\n", + " prefix = separated[6].replace(r'\\n', ' ')\n", + " suffix = separated[7].replace(r'\\n', ' ')\n", + " return prefix + ' ' + suffix" + ], + "metadata": { + "id": "LXXtiKW3yY5J" + }, + "execution_count": 4, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def words(filename):\n", + " with lzma.open(filename, mode='rt', encoding='utf-8') as fid:\n", + " index = 1\n", + " print('Words')\n", + " for line in fid:\n", + " print(f'\\rProgress: {(index / 432022 * 100):2f}%', end='')\n", + " text = clean_line(line)\n", + " for word in text.split():\n", + " yield word\n", + " index += 1\n", + " print()\n" + ], + "metadata": { + "id": "y9r0wmD3ycIi" + }, + "execution_count": 5, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def bigrams(filename, V: dict):\n", + " with lzma.open(filename, mode='rt', encoding='utf-8') as fid:\n", + " index = 1\n", + " print('Bigrams')\n", + " for line in fid:\n", + " print(f'\\rProgress: {(index / 432022 * 100):2f}%', end='')\n", + " text = clean_line(line)\n", + " first_word = ''\n", + " for second_word in text.split():\n", + " if V.get(second_word) is None:\n", + " second_word = 'UNK'\n", + " if second_word:\n", + " yield first_word, second_word\n", + " first_word = second_word\n", + " index += 1\n", + " print()" + ], + "metadata": { + "id": "HE3YfiHkycKt" + }, + "execution_count": 6, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def trigrams(filename, V: dict):\n", + " with lzma.open(filename, mode='rt', encoding='utf-8') as fid:\n", + " index = 1\n", + " print('Trigrams')\n", + " for line in fid:\n", + " print(f'\\rProgress: {(index / 432022 * 100):2f}%', end='')\n", + " text = clean_line(line)\n", + " first_word = ''\n", + " second_word = ''\n", + " for third_word in text.split():\n", + " if V.get(third_word) is None:\n", + " third_word = 'UNK'\n", + " if first_word:\n", + " yield first_word, second_word, third_word\n", + " first_word = second_word\n", + " second_word = third_word\n", + " index += 1\n", + " print()" + ], + "metadata": { + "id": "lvHvJV6XycNZ" + }, + "execution_count": 7, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def tetragrams(filename, V: dict):\n", + " with lzma.open(filename, mode='rt', encoding='utf-8') as fid:\n", + " index = 1\n", + " print('Tetragrams')\n", + " for line in fid:\n", + " print(f'\\rProgress: {(index / 432022 * 100):2f}%', end='')\n", + " text = clean_line(line)\n", + " first_word = ''\n", + " second_word = ''\n", + " third_word = ''\n", + " for fourth_word in text.split():\n", + " if V.get(fourth_word) is None:\n", + " fourth_word = 'UNK'\n", + " if first_word:\n", + " yield first_word, second_word, third_word, fourth_word\n", + " first_word = second_word\n", + " second_word = third_word\n", + " third_word = fourth_word\n", + " index += 1\n", + " print()" + ], + "metadata": { + "id": "sOKeZN9cycP-" + }, + "execution_count": 8, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def P(first_word, second_word=None, third_word=None, fourth_word=None):\n", + " try:\n", + " if second_word is None:\n", + " return V_common_dict[first_word] / total\n", + " if third_word is None:\n", + " return V2_dict[(first_word, second_word)] / V_common_dict[first_word]\n", + " if fourth_word is None:\n", + " return V3_dict[(first_word, second_word, third_word)] / V2_dict[(first_word, second_word)]\n", + " else:\n", + " return V4_dict[(first_word, second_word, third_word, fourth_word)] / V3_dict[\n", + " (first_word, second_word, third_word)]\n", + " except KeyError:\n", + " return 0" + ], + "metadata": { + "id": "MN_RftZNycSB" + }, + "execution_count": 9, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def smoothed(tetragram):\n", + " first, second, third, fourth = tetragram\n", + " return 0.5 * P(first, second, third, fourth) + 0.25 * P(second, third, fourth) + 0.15 * P(third, fourth) + 0.1 * P(\n", + " fourth)" + ], + "metadata": { + "id": "n9wIsbLEycUd" + }, + "execution_count": 10, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def candidates(left_context, right_context):\n", + " cand = {}\n", + " first, second, third = left_context\n", + " fifth, sixth, seventh = right_context\n", + " for word in V_common_dict:\n", + " p1 = smoothed((first, second, third, word))\n", + " p2 = smoothed((second, third, word, fifth))\n", + " p3 = smoothed((third, word, fifth, sixth))\n", + " p4 = smoothed((word, fifth, sixth, seventh))\n", + " cand[word] = p1 * p2 * p3 * p4\n", + " cand = sorted(list(cand.items()), key=lambda x: x[1], reverse=True)[:5]\n", + " norm = [(x[0], float(x[1]) / sum([y[1] for y in cand])) for x in cand]\n", + " for index, elem in enumerate(norm):\n", + " unk = None\n", + " if 'UNK' in elem:\n", + " unk = norm.pop(index)\n", + " norm.append(('', unk[1]))\n", + " break\n", + " if unk is None:\n", + " norm[-1] = ('', norm[-1][1])\n", + " return ' '.join([f'{x[0]}:{x[1]}' for x in norm])" + ], + "metadata": { + "id": "l490B5KFycXj" + }, + "execution_count": 11, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "def outputs(folder_name):\n", + " print(f'Creating outputs in {folder_name}')\n", + " with lzma.open(f'{folder_name}/in.tsv.xz', mode='rt', encoding='utf-8') as fid:\n", + " with open(f'{folder_name}/out.tsv', 'w', encoding='utf-8') as f:\n", + " for line in fid:\n", + " separated = line.split('\\t')\n", + " prefix = separated[6].replace(r'\\n', ' ').split()\n", + " suffix = separated[7].replace(r'\\n', ' ').split()\n", + " left_context = [x if V_common_dict.get(x) else 'UNK' for x in prefix[-3:]]\n", + " right_context = [x if V_common_dict.get(x) else 'UNK' for x in suffix[:3]]\n", + " w = candidates(left_context, right_context)\n", + " f.write(w + '\\n')" + ], + "metadata": { + "id": "mMC84-OzycZ5" + }, + "execution_count": 12, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "WORD_LIMIT = 3000\n", + "V = Counter(words(DATA_DIR+'train/in.tsv.xz'))\n", + "V_common_dict = dict(V.most_common(WORD_LIMIT))\n", + "# UNK = 0\n", + "# for key, value in V.items():\n", + "# if V_common_dict.get(key) is None:\n", + "# UNK += value\n", + "# V_common_dict['UNK'] = UNK\n", + "# with open('V.pickle', 'wb') as handle:\n", + "# pickle.dump(V_common_dict, handle, protocol=pickle.HIGHEST_PROTOCOL)\n", + "\n", + "\n", + "with open(DATA_DIR+'5/V.pickle', 'rb') as handle:\n", + " V_common_dict = pickle.load(handle)\n", + "\n", + "total = sum(V_common_dict.values())\n", + "\n", + "# V2 = Counter(bigrams('train/in.tsv.xz', V_common_dict))\n", + "# V2_dict = dict(V2)\n", + "# with open('V2.pickle', 'wb') as handle:\n", + "# pickle.dump(V2_dict, handle, protocol=pickle.HIGHEST_PROTOCOL)\n", + "\n", + "with open(DATA_DIR+'5/V2.pickle', 'rb') as handle:\n", + " V2_dict = pickle.load(handle)\n", + "\n", + "# V3 = Counter(trigrams('train/in.tsv.xz', V_common_dict))\n", + "# V3_dict = dict(V3)\n", + "# with open('V3.pickle', 'wb') as handle:\n", + "# pickle.dump(V3_dict, handle, protocol=pickle.HIGHEST_PROTOCOL)\n", + "\n", + "with open(DATA_DIR+'5/V3.pickle', 'rb') as handle:\n", + " V3_dict = pickle.load(handle)\n", + "\n", + "V4 = Counter(tetragrams(DATA_DIR+'train/in.tsv.xz', V_common_dict))\n", + "V4_dict = dict(V4)\n", + "with open('V4.pickle', 'wb') as handle:\n", + " pickle.dump(V4_dict, handle, protocol=pickle.HIGHEST_PROTOCOL)\n", + "\n", + "# with open('V4.pickle', 'rb') as handle:\n", + "# V4_dict = pickle.load(handle)\n", + "\n", + "\n" + ], + "metadata": { + "id": "Fsvv3QJl7kWN", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "3c8387a4-5ebe-41ae-aafa-2bf3999f0025" + }, + "execution_count": 15, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Words\n", + "Progress: 100.000000%\n", + "Tetragrams\n", + "Progress: 100.000000%\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "outputs(DATA_DIR+'dev-0')\n", + "outputs(DATA_DIR+'test-A')\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "UK73WsKnB8ZP", + "outputId": "2c3d6171-bfb2-4fcd-cfc0-49cabdf9f0a9" + }, + "execution_count": 17, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Creating outputs in /content/gdrive/MyDrive/data_gralinski/dev-0\n", + "Creating outputs in /content/gdrive/MyDrive/data_gralinski/test-A\n" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/dev-0/out.tsv b/dev-0/out.tsv new file mode 100644 index 0000000..18e08c5 --- /dev/null +++ b/dev-0/out.tsv @@ -0,0 +1,10519 @@ +the:0.5304501979267391 a:0.048831964343360394 their:0.04064640874994239 his:0.03723739561709414 :0.3428340333628639 +make:0.9397837967270277 application:0.0011817741081455797 growth:0.0011627615108986038 nature:0.0007683237647963317 :0.057103343889131686 +an:0.3514873379172865 the:0.08825645491150955 a:0.02421264635392811 Dr.:0.02272995885728067 :0.5133136019599953 +who:0.18787668023932208 generally:0.1651317025644462 They:0.15232530244601006 and:0.14171016497734923 :0.3529561497728724 +pany:0.046742540890897855 mission:0.004760286503771479 promise:0.0025015937374866415 -:0.000597863413257138 :0.945397715454587 +means:0.23528528691785455 money:0.1610066395621711 water:0.11371153290997152 earth:0.03341313352170462 :0.45658340708829814 +as:0.47264009484558206 is:0.059914158921803254 farm:0.058798248355776316 land:0.05669348637904023 :0.3519540114977982 +and:0.20604519810803948 fifteen:0.18765363581244343 it:0.053710931943994074 room:0.029799700967129014 :0.5227905331683939 +of:0.8146754128960636 and:0.06328722092833475 ot:0.03728741535206261 cf:0.031081988191737873 :0.0536679626318012 +as:0.9772371715285898 sure:0.00363470383504434 that:0.0032704951383206267 its:0.002690745183838767 :0.01316688431420668 +two:0.052843525188463664 are:0.026053981084103738 the:0.024968776380289767 great:0.015586901502350908 :0.8805468158447919 +the:0.896225999381601 tho:0.030491176138096418 tbe:0.01996765244819489 a:0.013801514363952026 :0.03951365766815582 +poor:0.10799708642026687 where:0.08667285607967051 young:0.04217629847782576 among:0.03008433398409823 :0.7330694250381388 +house.:0.1570794746996688 table:0.07012257756610327 ground:0.06792155954597603 train:0.0664781996430486 :0.6383981885452032 +to:0.8901933385808417 and:0.040489657365193985 I:0.016498781398480766 now,:0.010736764978894421 :0.042081457676589024 +to:0.27350576833684703 There:0.10381546261654867 To:0.0894569130775609 The:0.03681326651744039 :0.4964085894516031 +to:0.2885173491178074 of:0.09493097071920148 where:0.06034929740856512 that:0.04853340945803009 :0.5076689732963958 +informed:0.1167897975192188 along:0.053718168096894295 up:0.04249136260476023 as:0.027953858762127665 :0.7590468130169991 +of:0.5074732940220561 and:0.025958014220235314 in:0.02284613104954237 leaves:0.013602225736109969 :0.43012033497205626 +the:0.172378118657884 a:0.04385231245099228 his:0.023577721153632176 to:0.01708338517008421 :0.7431084625674073 +since:0.4475831982076037 but:0.1254707966387099 and:0.09444696052390644 of:0.02029927537758973 :0.3121997692521902 +will:0.9997813229986572 to:0.00019313279110336955 can:1.7644658272913844e-06 and:1.4782756171510578e-06 :2.2301468794960664e-05 +day:0.9967458975299537 go:0.0014923429107201213 days:0.0004475267008112809 then:0.00021512203026966827 :0.001099110828245268 +and:0.08224380792519263 is:0.0362606817357894 or:0.030273149282067126 City:0.02957361365931556 :0.8216487473976354 +ma:0.23840351940501145 ill:0.2015667854721811 do:0.0905349209126862 thrown:0.0031218210101714473 :0.46637295319994987 +in:0.20335166984910497 on:0.15248631096138884 all:0.1299647234001769 from:0.11357591471990813 :0.4006213810694212 +i:0.6698865042316806 a:0.22951531630446956 the:0.03700472903022145 more:0.009534722299299652 :0.054058728134328764 +was:0.9087560721526269 I:0.014834676621558704 ant:0.013914761685558826 us:0.010493215103319487 :0.05200127443693604 +the:0.6551212159725193 their:0.3070827557490036 his:0.027389001966076614 tbe:0.00635889665985284 :0.004048129652547532 +my:7.204542013298483e-05 rest:3.105634376507145e-05 arrived:2.0193963701678176e-05 I:1.1919059854222795e-05 :0.9998647852125461 +at:0.7847785987581579 When:0.09204628973249289 has:0.03200098061303921 not:0.023197698480692336 :0.06797643241561761 +and:0.32806844333378826 court:0.132208145833197 he:0.08679650478452135 we:0.07438445599969604 :0.37854245004879733 +in:0.161499422044275 Every:0.15096416694174825 The:0.11857268676169024 Not:0.10370970057711518 :0.46525402367517127 +because:0.008586736898421272 that:0.007678523659067143 there.:0.002935943341166933 all.:0.0029079526957546255 :0.97789084340559 +and:0.008406885244594662 this:0.0068249566223187435 which:0.004972623910969506 these:0.004879255671053696 :0.9749162785510634 +add:0.41284564950394703 taking:0.05563857464848319 the:0.04305462772825726 corn:0.029231744940248452 :0.459229403179064 +had:0.9994999417056408 would:0.00027544915901120604 bad:0.0001745481252939591 might:2.7068539906431384e-05 :2.2992470147745126e-05 +feet;:0.3996765669058793 feet:0.19740472579586937 feet,:0.08127398666912547 ft:0.005952924628376075 :0.31569179600074976 +block:0.7108705349059268 Section:0.08052591821285064 page:0.06887646925086047 Block:0.04090928549189103 :0.09881779213847104 +toward:0.9652863779007779 by:0.015519005813980722 to:0.011245742950963176 it,:0.005367287866450057 :0.0025815854678281243 +the:0.1306492527556542 and:0.06014126006486977 has:0.043166279827122976 of:0.0374129007827816 :0.7286303065695714 +this:0.5846136860844674 the:0.13561076899226843 said:0.035817600646703904 that:0.02594247618601299 :0.2180154680905472 +of:0.8433136351545183 of.:0.15665266837074618 of-:1.455769419373683e-05 or:5.6781910698282845e-06 :1.3460589472022516e-05 +be:0.19311039758151444 have:0.1621405982417808 was:0.026457581992608805 the:0.021939505821245566 :0.5963519163628503 +I:0.022104662141042765 and:0.02185635136203362 way:0.020144204565762183 way.:0.01082425085450486 :0.9250705310766565 +was:0.6358733951751733 is:0.09255005408891209 ie:0.02256971418567084 Is:0.016043366192392803 :0.23296347035785106 +the:0.21306542271450565 a:0.15289920354852668 Messrs.:0.12770304686398287 Mr.:0.0984557043704526 :0.40787662250253226 +in:0.30818219382125756 of:0.21996586160711637 to:0.20246794103981067 on:0.08078991515970536 :0.18859408837210997 +and:0.0588179406800372 attempt:0.03500954167454594 not:0.03438065125626188 as:0.028391832664584057 :0.843400033724571 +the:0.26251235343691626 and:0.12081476941312785 his:0.09856460778594615 a:0.0660213912436103 :0.4520868781203994 +mass:0.0441158810559464 and:0.03638464422745015 industry:0.023447277173616367 world:0.021454626259804963 :0.874597571283182 +question:0.11551866233476599 man,:0.07846809924640884 .:0.0691752621070594 and:0.059339742910543995 :0.6774982334012216 +portion:0.26226867265472714 being:0.24161302086076125 One:0.13223734053826042 means:0.014144102603817597 :0.3497368633424336 +the:0.7217142612321729 tho:0.09826159126070462 said:0.09228532996468096 any:0.016413483462193536 :0.07132533408024812 +of:0.5423291810989699 and:0.0847345161614165 in:0.07832260153758176 to:0.04853600017254618 :0.24607770102948567 +directly:0.4541297927866528 the:0.32661831160002053 tho:0.08511845643176776 them:0.07373325814877112 :0.060400181032787874 +of:0.31781956616500656 any:0.2869888981298473 the:0.11663446483902751 to:0.10244736744923312 :0.17610970341688548 +and:0.0659013435065366 to:0.045771092652098666 of:0.033014668318735285 the:0.014952998387752275 :0.8403598971348771 +de-:0.2252471834984261 re-:0.05716576290562734 required:0.02923422642821976 state:0.013760185907617371 :0.6745926412601094 +secretary:0.2163328679763087 Constitution:0.1025768430086505 application:0.08541044124141102 President:0.06919411822045479 :0.526485729553175 +necessary:0.6204833731908178 impossible:0.28684511818932645 easy:0.004693419917213099 possible:0.001976005594580335 :0.08600208310806222 +of:0.24072221260136448 and:0.10911627098153578 the:0.0579910842586981 to:0.031860125672914894 :0.5603103064854867 +the:0.8656139107067995 my:0.06015234542216701 our:0.025687249368843368 her:0.016260779460777447 :0.032285715041412505 +the:0.42643317575663503 be:0.10574029954474473 their:0.09550965575529766 his:0.03736740017047758 :0.3349494687728448 +his:0.3710841907343132 little:0.0674158121262688 her:0.05569146020586425 one:0.030877844324507173 :0.47493069260904663 +and:0.08936013942353058 Even:0.06098343987037548 But:0.024121577188154764 .:0.011529469753611724 :0.8140053737643275 +condition:0.2881745649852194 and:0.0378850732441716 to:0.025142045042743522 world:0.011253430781272559 :0.6375448859465929 +on:0.2464697973932489 a:0.07748791766426454 to:0.06588878997689565 the:0.05262550651816096 :0.55752798844743 +few:0.06542546115545657 great:0.04478440724603906 small:0.033063910165825466 large:0.03051759122135001 :0.826208630211329 +opposition:0.7173106602932516 report:0.08176610322425434 mind:0.0592570676475163 and:0.05533780199191316 :0.08632836684306466 +head:0.022108724305638077 hat:0.018959960557671775 feet:0.008946176849607143 long:0.008684429972208045 :0.941300708314875 +case:0.2533923102473373 art:0.03845087614235078 is:0.020419038783896483 labor:0.018373414958794267 :0.669364359867621 +valuable:0.012640988899222499 contained:0.0012010790351937267 down:0.0001139736589161895 formed:9.406836761654104e-05 :0.9859498900390511 +has:0.9279614894787546 is:0.06198097549730004 as:0.003519525632041824 which:0.0005982461866937343 :0.005939763205209762 +such:0.5125478040868527 said:0.17907316912672402 the:0.09213333329464167 his:0.02282814245704431 :0.19341755103473732 +been:0.2827546741429205 were:0.2458677119307151 in:0.12467486377729756 no:0.11354167824979393 :0.23316107189927276 +size:0.22773641702013883 kind:0.19587794581923193 shape:0.08062412982263649 way:0.0744109526682273 :0.42135055466976545 +their:0.6962924895045371 the:0.29872238043610955 tbe:0.0028320357970092204 our:0.0010930184936530619 :0.0010600757686910606 +London:0.017233532862354684 New:0.014343070687525388 Jersey:0.00658396693655558 paper:0.006533126472389924 :0.9553063030411743 +training:0.015203027834866557 pleasure:0.011766762479428617 show:0.0030815933176115665 little:0.002002514213050466 :0.9679461021550427 +rights:0.3691645460943157 amount:0.13470484994970292 owners:0.05626264527802636 value:0.03566598619831847 :0.4042019724796364 +the:0.9279923388659846 tbe:0.026294354835667607 tne:0.01823113149019226 this:0.015495267576519317 :0.011986907231636222 +the:0.018626587381504512 with:0.008052089470923347 lay:0.006142390337724532 of:0.003921185803534615 :0.9632577470063131 +the:0.11416304524476226 to:0.08729485821244137 and:0.05919096146332263 June:0.05852669387834835 :0.6808244412011253 +it:0.19836211205155257 it.:0.1130312405586022 that.:0.06633766779354248 11.:0.04549127746394044 :0.5767777021323623 +all:0.504157878665973 to:0.20198043596006443 has:0.1591576943420201 will:0.0704043933206332 :0.06429959771130928 +the:0.14612181360007542 a:0.05047613533251008 his:0.021009468472524606 to:0.02081801165578941 :0.7615745709391006 +round:0.6823973830006815 of:0.16001787943688683 on:0.04601922930626549 to:0.018126645834383344 :0.09343886242178263 +life,:0.024680785414664404 own:0.022288770432478622 husband:0.02087217517616396 father:0.013720827925633436 :0.9184374410510595 +for:0.9900150111484223 as:0.005733593430859993 tor:0.003080269433534643 fur:0.0005944746936630315 :0.0005766512935200066 +to:0.7599988217019537 You:0.047880816713563486 not:0.045730161476172114 and:0.04111843002550098 :0.10527177008280963 +of:0.9220002975846577 ot:0.016170210074456105 the:0.011805125846251232 ol:0.01149511705588073 :0.03852924943875408 +still:0.5081634298625308 left:0.17889919020142594 issued:0.050671020811470145 run:0.029827144180448486 :0.23243921494412464 +and:0.6610158101800022 or:0.09449356456072887 aud:0.09356551466050683 cured:0.03394787093662104 :0.11697723966214113 +the:0.1905555356062643 I:0.12747652060216844 is,:0.10465109971812078 they:0.06432380699231831 :0.5129930370811282 +a:0.7683634342946296 the:0.09954409666896792 it:0.08463422012427028 but:0.0033085457551106532 :0.04414970315702165 +to:0.30862852487370934 in:0.14842659116046744 for:0.1343959231192542 of:0.1327195829458736 :0.2758293779006954 +the:0.8808328446644301 our:0.10767271150960189 tbe:0.008919551318190841 for:0.0005031680877406341 :0.0020717244200365143 +to:0.6852232923299119 will:0.06969160086530143 or:0.05447316084583441 not:0.03640896009376111 :0.15420298586519132 +and:0.07810536762809385 together:0.0453037600491292 connected:0.023247621521026562 of:0.02296327309165882 :0.8303799777100915 +to:0.0763415759116928 own:0.03213362366883241 a:0.024446784327765248 of:0.022637783130548015 :0.8444402329611613 +by:0.479634793715248 from:0.2657832038992119 in:0.1328822111212704 of:0.04209253821829183 :0.07960725304597797 +of:0.11078505986024928 ing:0.08248765308202839 taking:0.06556118916979223 but:0.047767928898031276 :0.6933981689898988 +He:0.18148945845783596 and:0.16974308122155057 of:0.1201163213275701 was:0.10341619885329427 :0.4252349401397491 +making:0.4599021269961612 using:0.17323320135611572 that:0.1207083563899194 which:0.08347367403921446 :0.1626826412185891 +to:0.4554239886113888 from:0.10137288332566229 the:0.10063073449135708 up:0.0840465186124653 :0.2585258749591265 +the:0.9591951747946015 thc:0.021169114658415245 tbe:0.012608724226287947 said:0.004077184622343522 :0.0029498016983517156 +by:0.03908789153813319 to:0.024598326009646412 ed:0.02260076155292247 from:0.017474041479106837 :0.8962389794201908 +not:0.6150526573205217 be:0.16103991837116957 have:0.07120785121271694 never:0.013613168319377306 :0.13908640477621448 +covered:0.057799804349213856 played:0.048189209887158496 satisfied:0.042390015499544534 provided:0.03957618284168196 :0.8120447874224012 +if:0.4556584787221892 as:0.10419775042745588 up:0.05082601505794722 owing:0.04329172999438257 :0.34602602579802505 +be:0.00010684495449587956 amount:4.8162789714404944e-05 ty:3.8890352106765554e-05 he:2.5997558043254867e-05 :0.9997801043456397 +the:0.7744076574393837 a:0.0331871428209456 an:0.03259629779479943 free:0.017087080275331797 :0.14272182166953953 +to:0.34725597657876 These:0.15790896625370637 The:0.14413298598241844 the:0.1436325628116879 :0.20706950837342725 +be-:0.8327714084724414 the:0.023682408482676835 be:0.01609296621509151 have:0.004735740875646287 :0.12271747595414392 +right:0.8049026172560212 chance:0.05147521910990163 light:0.04508313486783133 desire:0.007734774789119721 :0.09080425397712628 +d:0.01433663463224651 of:0.009503168277709641 the:0.008117107788037188 dress:0.007290146877037527 :0.9607529424249691 +kinds:0.0837991949468214 forms:0.06542032286853722 parts:0.05961617612055715 classes:0.034337701972967094 :0.756826604091117 +capacity:0.0726106774934828 We:0.04155426849746235 There:0.02518799245963758 we:0.01605620811606043 :0.844590853433357 +by:0.3460266669975477 that:0.1724210404953622 and:0.12625338997244998 for:0.12260440203383857 :0.23269450050080157 +.:0.08978039463050307 a:0.06198546431049779 and:0.05317469993514794 John:0.04371173307489675 :0.7513477080489547 +and:0.07163169697635559 peculiar:0.07099469018268659 the:0.026938241552721683 to:0.026871014292955 :0.8035643569952811 +education:0.25686564230637665 work:0.1869184821434803 course:0.13553237656431957 speech:0.04202070820590233 :0.37866279077992104 +it:0.13086785731306824 you:0.06542144235127001 not:0.055056004732157736 leave:0.04326012275377401 :0.7053945728497302 +and:0.2117915040721135 but:0.10322218666035583 is:0.03253108063570858 are:0.020705447392528324 :0.6317497812392936 +of:0.6170765484468335 on:0.10544605649477039 was:0.08236716630538388 On:0.047581867231631166 :0.14752836152138116 +that:0.5176679950267573 of:0.1973089653371833 and:0.14157911781475485 in:0.11879685519146745 :0.02464706662983705 +of:0.6580562331512639 and:0.067972763416778 in:0.0519320275000683 to:0.0412930498929426 :0.18074592603894707 +the:0.5088144775496539 his:0.11604689301713157 be:0.09087090298321555 make:0.06730555091748187 :0.21696217553251715 +':0.00718779645538187 ?:0.0008166245218231394 seen:0.00024271623972202435 section:0.0001542571551696531 :0.9915986056279031 +hundred:0.7144058623217048 4:0.033854256579253734 white:0.01877825986104722 thousand:0.015508848820953833 :0.21745277241704053 +on:0.03933802630741895 of:0.02333849894483027 to:0.014399218246381455 more:0.01439270336705875 :0.9085315531343107 +the:0.5882844036028535 be:0.3336564174159171 tbe:0.03746780800314597 tho:0.024070242627320024 :0.016521128350763543 +and:0.1315882721197885 of:0.10219632716846555 the:0.0609714968697152 to:0.043238982201617385 :0.6620049216404135 +he:0.4750076022732356 which:0.10698340817714773 and:0.0545696397582036 it:0.042427626813802355 :0.3210117229776106 +city:0.037137883089040966 river:0.01510993932198052 scene:0.013585617240482102 street:0.013082982401920067 :0.9210835779465762 +you:0.9871499953226789 so,:0.0028716862267865314 true,:0.0027995289027564446 they:0.001017311330950139 :0.006161478216828234 +the:0.37051955752915505 this:0.14510842124964948 a:0.09444803860709622 its:0.08712345235059032 :0.30280053026350895 +I:0.10107079859168 to:0.04813788797221513 could:0.03534256344366602 the:0.023712499465879264 :0.7917362505265596 +it:0.12420245511846435 and:0.03151745757321171 them:0.016232436277639012 are:0.01593771026222514 :0.8121099407684598 +to:0.9063120087882348 from:0.05670576984121862 and:0.010950298138761869 In:0.008348802536439276 :0.01768312069534547 +looked:0.7251992705233565 seemed:0.1120469428664444 was:0.06873323156177247 seems:0.007596210081899297 :0.08642434496652726 +as:0.2790603390962699 ,:0.015179518128529097 year:0.006967187713295835 that:0.006855541839813288 :0.6919374132220919 +of:0.4066826902975001 in:0.3930821564085974 In:0.04945920023709019 within:0.046166335203566604 :0.10460961785324575 +were:0.32379110919156157 was:0.2998020591278051 and:0.08365927660128436 is:0.08157412273994294 :0.211173432339406 +the:0.6576005662539159 a:0.05644473502375381 tho:0.047629913913123524 his:0.04287321323466246 :0.19545157157454426 +the:0.43809483564746404 a:0.3487719544414322 still:0.07485116067610074 much:0.04615616556000004 :0.0921258836750029 +of:0.16714576507310888 and:0.09754343154826428 to:0.08757222006195213 or:0.03946516622139326 :0.6082734170952815 +the:0.462828484504665 it:0.10700917029124628 his:0.09451285639290444 a:0.06638527386822542 :0.2692642149429588 +that:0.08674878127715384 at:0.0733446978177517 for:0.07313465672479032 on:0.06425660819314735 :0.7025152559871568 +number:0.41315389042176726 suit:0.13994824118052393 set:0.1358291395310089 bottle:0.035273463492923214 :0.2757952653737767 +any:0.37781487868071095 other:0.17609702219955511 the:0.11924629289594371 a:0.10802910453090923 :0.21881270169288097 +and:0.32821202945166217 country,:0.16362149453449207 road:0.06707203308213638 in:0.04422726589394267 :0.39686717703776675 +life.:0.0496152828467281 work.:0.021222933902969913 hand.:0.0037796370361162963 feet.:0.0032356657254990185 :0.9221464804886865 +is:0.4232441378332867 having:0.35109969250906825 aud:0.06691837970142689 of:0.03134558763477062 :0.12739220232144752 +of:0.39653344680004704 for:0.2087277585876537 towards:0.14772259114516315 ever:0.07686507701381069 :0.17015112645332536 +list:0.07988260474799885 father:0.022634573204469634 ground:0.007940624092414078 ground,:0.007147576400776391 :0.8823946215543411 +of:0.06899064679866306 to:0.05321295235703203 found:0.04782929315151218 over:0.02546920791197546 :0.8044978997808172 +really:0.7509347897777817 not:0.031159565154858952 to:0.02906980321643144 time:0.020037940290987502 :0.16879790155994043 +old:0.07139232338459046 own:0.009277013911128113 poor:0.006857809689389837 dear:0.006789902340596805 :0.9056829506742946 +favor:0.17748690871746922 case:0.08146760844209439 the:0.06330634969416611 front:0.05671995994748741 :0.6210191731987827 +the:0.6608988189937384 this:0.049275173707150045 his:0.03945198432436188 its:0.035379500037375285 :0.21499452293737445 +of:0.18466635423138528 to:0.18458569607018085 in:0.17789245776351767 with:0.12534244077038548 :0.3275130511645308 +English:0.7592545436272007 American:0.021080129780743792 the:0.01710565435586969 German:0.013873945369525012 :0.1886857268666609 +A.:0.9731958504235556 A:0.016915626815357607 a.:0.008950587966380286 4.:2.259349500779872e-05 :0.0009153412996987056 +you:0.9647285041846084 all:0.01659568542445001 they:0.011081401669243438 he:0.004964560783700927 :0.0026298479379972387 +shall:0.5507796813207415 for:0.15172587194150955 will:0.1011049878106256 may:0.06478428871154199 :0.1316051702155812 +other:0.1131866902039083 south:0.10710991435908351 north:0.10206530780812235 west:0.09978613213655954 :0.5778519554923262 +third:0.48975585796635235 fourth:0.2081279872847929 half:0.12434303379358883 ton:0.06571941451033474 :0.11205370644493118 +public:0.5818166689325295 lower:0.11409634567225055 summer:0.06623156051660434 high:0.047759934496825904 :0.19009549038178977 +and:0.1677554814304381 of:0.056542365322590576 the:0.04478681240287782 to:0.03516075095865248 :0.695754589885441 +The:0.04045045903063773 tion:0.03821982802625919 fact:0.035662770069603174 view:0.034714963496849015 :0.8509519793766509 +this:0.6606115711154533 your:0.10451050085980776 such:0.06853414752475205 the:0.04499264169313241 :0.12135113880685454 +all:0.997354830181573 no:0.00035356611905344005 much:9.716729888854866e-05 their:6.91936453702429e-05 :0.00212524275511481 +It:0.5318415281936755 it:0.32554260757700504 which:0.025440488768733404 and:0.020466731320959997 :0.09670864413962608 +that:0.5208360398917364 a:0.31033805532496894 the:0.041924087937933514 then:0.022327006145256765 :0.1045748107001044 +of:0.663852504009365 by:0.2488627508306643 in:0.05942056686768419 and:0.018479214735843484 :0.009384963556443044 +feet;:0.6114984237744142 feet:0.04011669547163641 extending:0.0308669264131977 feet,:0.019701621538339983 :0.29781633280241193 +;:0.3256620559221072 at:0.2723010854069634 and:0.20704541239165178 in:0.12202520853283258 :0.07296623774644508 +letters:0.13380102844867622 do:0.12747196531113264 which:0.11697525142286744 that:0.10836886781669722 :0.5133828870006264 +man:0.08212300451730961 voters:0.06660758822843288 hair:0.05910726913570293 people:0.039604196363896865 :0.7525579417546577 +favor:0.4102580011585395 support:0.33154360612873457 spite:0.021937267974373984 behalf:0.00707693189324261 :0.2291841928451092 +the:0.4776674709507457 this:0.15297725563164208 their:0.0914395248838051 tho:0.021105676615663618 :0.2568100719181434 +the:0.8470035412557896 tho:0.0380270954583459 tbe:0.023420431572599803 a:0.021455767633157482 :0.07009316408010725 +the:0.4227954296501178 some:0.09893548308974612 recent:0.08113536052492538 two:0.06207085768020846 :0.33506286905500215 +United:0.025482463892023886 new:0.020438339955684285 American:0.01798613407498629 present:0.017810692115042256 :0.9182823699622633 +them:0.42314165226766365 in,:0.3064289525884236 up:0.040975160341215615 by:0.0384784730539855 :0.19097576174871153 +M.:0.22618804099788206 B.:0.15477134299307654 A.:0.14509871876062544 C.:0.12092300539270907 :0.353018891855707 +the:0.40059445366631563 a:0.13208640693661283 his:0.045123397854339685 their:0.027471676808836904 :0.39472406473389493 +who:0.9379890904489586 present:0.02476981127596376 he:0.005734973380270738 we:0.0035888703749088775 :0.027917254519898002 +But:0.3484600914836486 but:0.08554139158710453 set:0.059323599096043574 by:0.040240656261332726 :0.46643426157187057 +he:0.5624727781659278 report:0.04491981497312587 road:0.040750133437668395 present:0.028881878362504665 :0.32297539506077316 +this,:0.03427620653331188 this:0.02992291147276636 up:0.026180037915259496 over:0.010245992819438204 :0.899374851259224 +and:0.08447163822556795 as:0.050276664311896695 that:0.050255510042343854 the:0.04288581815808488 :0.7721103692621066 +that:0.9997654377477082 bv:0.0002035776654680677 of:1.240316382744588e-05 by:1.186403610561892e-05 :6.717386890731686e-06 +one:0.046283211912941324 self:0.04570188089273193 and:0.036594240653575125 any:0.035079145078595116 :0.8363415214621566 +re-:0.12002011823937074 in-:0.06032048011311992 apparent:0.05822575329950361 terrible:0.04709991890647575 :0.7143337294415301 +interests:0.12241308491338906 business:0.10658694066033805 men:0.1015509362980616 credit:0.047025434444673726 :0.6224236036835374 +ed:0.09483738130907651 1:0.029017762953548954 year,:0.027322422824003854 are:0.015575092306076493 :0.8332473406072942 +pay:0.37584027798187264 be:0.24896386920387056 find:0.11747407979980475 form:0.107428896982765 :0.15029287603168695 +per:0.3910303160340516 to:0.09352211367918305 for:0.04192630991733947 a:0.03984100842111799 :0.43368025194830784 +party:0.1717379577889123 same:0.0331808435293593 county:0.031903366936457296 highest:0.02959804681183026 :0.7335797849334409 +the:0.36450238172325683 all:0.04050062859515586 other:0.033686459282620436 a:0.03138321094573579 :0.5299273194532311 +R:0.3561987391264428 M:0.35305164437014297 11:0.1902041271262193 E:0.05265713987963863 :0.047888349497556285 +the:0.5958419040318323 county:0.06210276454264175 said:0.056764848471062106 corporation:0.04689996457787626 :0.23839051837658748 +of:0.7886556449590515 over:0.04298343674875393 and:0.035119311401797935 worth:0.03419748579930016 :0.09904412109109657 +Beginning:0.8957227411146049 beginning:0.013783833596522358 ning:0.00024252766469475755 lot:3.785759260036066e-06 :0.09024711186491792 +they:0.5515680857792542 we:0.03524644896503035 there:0.023508060341162405 you:0.008622862095777003 :0.3810545428187761 +with:0.10193064990859865 .:0.0769722080826528 son:0.07581009445903897 an:0.06623562601425145 :0.6790514215354582 +be:0.6899392166763267 the:0.07329876030753851 take:0.040785501334489944 have:0.03814830745283363 :0.15782821422881121 +of:0.3515609275144741 in:0.18811319634478638 to:0.1168877091639576 on:0.08891267183281208 :0.25452549514396977 +nor:0.464079640963703 When:0.047501979587579936 who:0.04242633827467094 it:0.02579024533550296 :0.4202017958385431 +of:0.08694621054152299 and:0.08576364532298066 the:0.08233769514086209 to:0.047208603881238494 :0.6977438451133958 +may:0.23257255349891 to:0.16634801094005375 "I:0.16254800790713347 shall:0.12387911419038203 :0.3146523134635206 +get:0.30119067144060163 keep:0.12680300097261282 go:0.0861413121175109 be:0.06343469774788779 :0.4224303177213869 +beauty:0.052509143795979235 benefit:0.048054049743089244 support:0.04534055062925917 hair:0.03492785374156476 :0.8191684020901076 +buildings:0.0688141446684081 fish:0.061895438156435785 men:0.05727185992461989 eggs:0.03743119363420429 :0.774587363616332 +to:0.5529537688237403 of:0.14670658066576828 and:0.12450977295782871 which:0.059251309734157036 :0.11657856781850576 +to:0.32831535105874826 and:0.11915984535019888 the:0.10074392206196173 who:0.0529602533141356 :0.39882062821495556 +They:0.307373658411249 interests:0.20876578555475658 people:0.12466831083341146 I:0.09329972199981695 :0.26589252320076595 +who:0.9474655454081362 that:0.018840865397442928 whose:0.010379569939684245 too:0.007781889422426834 :0.015532129832309923 +water:0.02709822498043268 is:0.025907137405605855 fact:0.025138424457762088 city:0.020285346682595226 :0.9015708664736043 +ex-:0.12555474220886564 Chicago:0.08095007657033078 late:0.07918168305655315 full:0.05518821028573763 :0.6591252878785129 +and:0.9826290216015597 with:0.010413328388088271 bearing:0.002479059746006156 aud:0.0010477718958361282 :0.0034308183685097197 +into:0.4235413348016855 over:0.36874889442460584 in:0.07576849278800366 down:0.0748064322205353 :0.057134845765169646 +There:0.33374704785593273 there:0.10378542740000492 It:0.07158383604775546 This:0.05399389639592487 :0.4368897923003821 +city:0.12100010478782126 room:0.11637020524461515 station:0.0894003327562139 District:0.06986680322866223 :0.6033625539826875 +said:0.7447140132746558 such:0.15927018617710864 the:0.030706080541094725 said,:0.023553919686022644 :0.041755800321117975 +national:0.275051949756816 large:0.13902889825240553 new:0.12564546756929534 bill:0.05053413050789164 :0.40973955391359146 +the:0.7766856107193941 tho:0.08567735479090251 our:0.07036354401326182 its:0.0254161416922781 :0.04185734878416322 +has:0.3369330945567588 have:0.2578378492489129 had:0.21163569041563185 having:0.03793179177986475 :0.1556615739988316 +the:0.19007724841288032 for:0.06434711090729467 two:0.06167793349242764 more:0.04081824051361732 :0.64307946667378 +duty:0.0781667179469523 way:0.05946622146373268 children:0.057011971925128545 attention:0.04709455533053577 :0.7582605333336507 +soldiers:0.9143108336756004 night,:0.005197886539803716 it:0.00468110616705704 light:0.004300648347416751 :0.07150952527012235 +morning:0.10321974425156737 time,:0.041176078306249746 time:0.014591923859024502 went:0.012231642019341772 :0.8287806115638165 +as:0.2641056086206146 with:0.2565588858535208 after:0.11870877828495288 in:0.113317592535582 :0.2473091347053297 +will:0.719844753011279 of:0.15600605348689311 to:0.0801820659019022 was:0.022112562074862403 :0.021854565525063322 +the:0.4311681930683618 these:0.0914960267542863 a:0.06210885301072006 U:0.054735129877140735 :0.3604917972894911 +estate:0.4960948790831156 estate,:0.1750828432774877 and:0.011041899891279797 of:0.009484047251178703 :0.3082963304969381 +con:0.08351331840845715 and:0.0747402221998921 in:0.05810216362932331 la:0.044820239348079466 :0.738824056414248 +they:0.20769985998843288 We:0.16842198501730493 They:0.09515705058364277 it:0.08549689735809872 :0.44322420705252075 +committee:0.08948140920494882 mere:0.06710817259718656 word:0.06679047350809926 platform:0.06373604725180973 :0.7128838974379555 +about:0.1538323171056019 late:0.03985003057950493 the:0.03357281878918965 ner:0.023427323680342418 :0.749317509845361 +the:0.4170974940689302 a:0.11455304064968815 his:0.03755529312848597 tho:0.030041094262494614 :0.400753077890401 +had:0.12022026277362828 was:0.07162161509194821 will:0.06731263164457835 has:0.06648315972202003 :0.6743623307678251 +the:0.1355308136790502 New:0.08154259800201522 this:0.051687629762872986 Chicago:0.051253542751441714 :0.6799854158046199 +him:0.058865551506674156 One:0.048636476536372736 tion:0.04772501339442904 ment:0.04395203885326018 :0.8008209197092641 +city:0.07542513525565081 country:0.022293366185834752 people:0.012825410527621053 constitution:0.012554054807607592 :0.8769020332232859 +the:0.10282679869094988 and:0.09369854121788147 of:0.0858716579232079 to:0.046776426161996405 :0.6708265760059643 +name:0.30408558240348604 face:0.1566678208590233 wife:0.12074128723316659 hair:0.11914458162775737 :0.2993607278765667 +of:0.22646680354746856 to:0.047452752137990425 the:0.023952522231788013 at:0.010755323449063128 :0.6913725986336897 +will:0.20737868946082227 and:0.20230178080615588 classes:0.1298456417397297 should:0.12622415119981048 :0.3342497367934817 +the:0.47251328825948247 a:0.05105060288211838 St.:0.04298953403054077 their:0.03255367631722544 :0.40089289851063287 +order:0.1917618898399869 the:0.12631285518808363 taxes:0.07374995454111687 cases:0.04974986157031139 :0.5584254388605011 +the:0.51307293301322 tbe:0.1218907708133792 ihe:0.0947921039741498 tho:0.09017447076778834 :0.18006972143146271 +which:0.1808773406473174 as:0.10667454128667775 and:0.10099656939384258 that:0.06289284885657177 :0.5485586998155906 +necessary:0.3041371989387821 that:0.13004915376705556 the:0.11656725360615985 im-:0.10720058580421657 :0.34204580788378586 +side:0.722036187905832 line:0.26361494738435926 boundary:0.005411023255518387 end:0.0038603039899944122 :0.005077537464295976 +whether:0.7709699744868581 that:0.2010413707120963 more.:0.008549210181503656 what:0.007113777580953838 :0.012325667038588123 +the:0.4047945729901532 after:0.3261046104940974 0:0.03999909993967688 9:0.03609780950722527 :0.19300390706884724 +to:0.22172892666000515 the:0.16683685044390928 and:0.15564632111052065 or:0.08366406347258477 :0.3721238383129801 +the:0.7609927388085952 an:0.07943905985292501 tho:0.05293144657875357 their:0.04985397752285334 :0.05678277723687284 +and:0.05350964246597566 them:0.017020307904573338 it:0.013454187754449483 him:0.012098347832096484 :0.903917514042905 +been:0.9088466560819405 now:0.014800349312984186 also:0.010031002176777448 to:0.008498304822209767 :0.057823687606088074 +and:0.08612935770467665 of:0.02771667693192767 was:0.022657430446486892 is:0.02089625897380476 :0.8426002759431039 +the:0.4635061910500674 tho:0.19206206521392347 a:0.11130610570185634 his:0.03142576906758934 :0.2016998689665633 +the:0.18772294281436466 The:0.12430987572143162 His:0.0750843780813316 "the:0.0677451755493647 :0.5451376278335074 +of:0.17164016436866297 and:0.10180984328442999 to:0.09418734687787395 by:0.035068254908453014 :0.5972943905605802 +in:0.23970968069319643 the:0.2145234200164767 of:0.15507173527835674 one:0.15055491143975616 :0.2401402525722139 +you:0.35737296983407313 not:0.11299214656935351 so:0.09792983008858847 so.:0.07588203196266219 :0.3558230215453228 +in:0.5627077298024182 of:0.16419412346581827 In:0.10721346221095569 and:0.04305377101728776 :0.12283091350352009 +for:0.3642176844744871 of:0.35669307192205696 in:0.06747324070856402 to:0.05083429251860143 :0.16078171037629038 +It:0.12298710276809006 He:0.08610865415382209 he:0.0682372929376874 it:0.058071907657427535 :0.6645950424829729 +the:0.1656197089892419 and:0.08780098900892576 of:0.07559133750560372 as:0.061650542544001874 :0.6093374219522266 +to:0.24811842661308312 you:0.1774248645405483 We:0.17505854762981798 and:0.10604943637024973 :0.29334872484630076 +report:0.0551329627852834 moment:0.04379452161751263 Indians:0.033056793148785714 boys:0.03206890121569362 :0.8359468212327247 +of:0.9520067990152904 ol:0.02945603551177053 which:0.008203348141546067 paid:0.005784472321815054 :0.0045493450095780265 +the:0.4085875182790783 tho:0.1509725695453458 our:0.1424925460068925 their:0.09036446371216027 :0.20758290245652325 +at:0.11224006321771053 made:0.06048738862956372 on:0.03711952895572513 doing:0.03342724731066188 :0.7567257718863387 +been:0.35465082501069284 be:0.22538295100937486 as:0.11261507954146466 was:0.06768480666362667 :0.23966633777484106 +the:0.8596823272898163 a:0.02555537928817222 do:0.011375617668222718 de:0.006869331464655089 :0.0965173442891338 +proper:0.15700285482069232 home:0.08997232856473897 and:0.0357614241843625 first:0.027602978194085668 :0.6896604142361203 +make:0.2819429400161293 made:0.07044674611544767 broke:0.05821876877336091 went:0.05670222924782228 :0.5326893158472398 +great:0.005728778257322163 the:0.003156950615735614 world:0.002589558792003846 political:0.002378224949252012 :0.9861464873856863 +year:0.4265668736057052 week:0.0951255184090138 reference:0.08215129651798088 meeting:0.03243802693563439 :0.36371828453166566 +to:0.9966923432840756 te:0.0010692033650030743 lo:0.0005256408532850441 will:0.00022139025408986535 :0.0014914222435464847 +the:0.3055577887013936 a:0.05216038585266539 this:0.018716510610999482 tho:0.013362160648363274 :0.6102031541865782 +found:0.10491292522373068 lies:0.08102519989534554 and:0.04815974954109634 is:0.0291718627268675 :0.7367302626129599 +the:0.966061261908174 said:0.014180971560511653 tho:0.006854292169205343 January:0.0014805135961931365 :0.011422960765915728 +to:0.10019315113390903 with:0.09681711067821708 that:0.08170844194924354 upon:0.07302462982235455 :0.6482566664162758 +not:0.12732254333840584 too:0.04076944821901214 the:0.040321022737924095 from:0.03759439910167633 :0.7539925866029816 +of:0.2200061288834604 to:0.12163230840648889 upon:0.11434720168193496 with:0.09267239127281685 :0.45134196975529894 +and:0.35421883726466075 If:0.1528194817924065 of:0.1258664859690293 but:0.11735081730644278 :0.2497443776674606 +place:0.9956252201599776 point:0.0010402211702683164 town:0.00011524102939190157 State:6.66452034673106e-05 :0.0031526724368949985 +latter:0.11219888937770527 living:0.05001324424381614 is:0.027295415248970743 waiting:0.02248147283144556 :0.7880109782980624 +serve:1.406742797151735e-05 light:1.1096465533507937e-05 scribed:9.71918838720071e-06 vote:5.635944775503404e-06 :0.9999594809733323 +ment:0.6066968438341046 to:0.1850082401174307 can:0.1710464827443761 will:0.010627441992301836 :0.0266209913117866 +steamer:0.9999997358630457 would:5.719346004533194e-08 been:2.162882450071044e-08 vessel:1.1979264467769782e-08 :1.7333540514723005e-07 +am:0.8298740594901736 was:0.00969783968386351 are:0.0026076829842117248 myself:0.0025223902374626917 :0.15529802760428854 +at:0.29964643218344833 .:0.23683151213549236 the:0.07448642059922957 is,:0.06469519666113195 :0.32434043842069776 +or:0.9991716876400922 Saturday:0.0003555953734414665 oi:0.0001230048304949371 01:6.91757326747437e-05 :0.0002805364232964844 +of:0.21218837303983953 in:0.15725345512248223 and:0.1555446808650975 to:0.12943409290001356 :0.34557939807256716 +all:0.22448019022826862 affairs:0.04819168140282464 of:0.03978648829064751 whether:0.033609373666552325 :0.6539322664117069 +the:0.906044331452376 tho:0.020757650617181964 tbe:0.020442819940357303 their:0.009110754944037704 :0.043644443046047116 +The:0.10701186521729256 and:0.09903670218531375 the:0.0945424853924821 of:0.07607921684586545 :0.623329730359046 +electric:0.04979156631424113 wire:0.04922002789867027 con:0.046161117350117194 local:0.04452744942452628 :0.8102998390124453 +the:0.3320485329715334 a:0.10600458922288436 tho:0.026664705709811887 their:0.0234922660763781 :0.5117899060193923 +that:0.8779861606102239 of:0.04210127602983032 on:0.01878894158469636 in:0.01748590345254868 :0.04363771832270071 +from:0.38791885761495787 at:0.2208376701695857 At:0.1000137656896467 in:0.04859806378814346 :0.2426316427376663 +I:0.7215583927699948 1:0.15673527587155733 to:0.046050314350104364 not:0.038073212010072334 :0.03758280499827127 +then:0.6503092458510903 he:0.303878027736413 has:0.02599244896413186 so:0.006722686832096595 :0.013097590616268284 +by:0.18793700315149123 have:0.06473639978808851 do:0.040316917853138755 offices:0.03960110170060991 :0.6674085775066715 +I:0.030990005742628186 One:0.011057730424489657 -:0.010551985860780676 the:0.005950008646189272 :0.9414502693259121 +the:0.6498816316114894 all:0.08243136739203331 tho:0.028321395120245823 their:0.024510429575736684 :0.21485517630049497 +right,:0.09358557597225063 able:0.048104045327524034 honest:0.047320236897271196 dead:0.018526194772445038 :0.7924639470305089 +church:0.05120326106514179 too,:0.03184630882724056 offices:0.02334462003261149 here,:0.021978306664256972 :0.8716275034107491 +cent,:0.15681572353345136 cent:0.11261582612978395 cent.:0.0866461000585027 the:0.010670039386231527 :0.6332523108920304 +often:0.03418388865965865 slight:0.016304049657624328 house,:0.014436114140454934 house:0.013642228016244864 :0.9214337195260172 +of:0.6373542320059932 by:0.27135162962068304 in:0.032399348698187336 ot:0.026187533034122745 :0.03270725664101383 +of:0.9492648668273947 to:0.013496525616728813 in:0.008270159483718103 with:0.007265874640155431 :0.02170257343200309 +met:0.5444994833102531 even:0.18090534507638129 satisfied:0.01010460471122357 familiar:0.0069478588543538085 :0.2575427080477882 +and:0.43823086403325207 for:0.23750218117166974 in:0.10705874057271957 is:0.07403196538235865 :0.1431762488400002 +the:0.41856994490820715 a:0.17327934293854116 we:0.06115534161372476 he:0.044456629698207156 :0.30253874084131976 +the:0.6750500849582308 tbe:0.0786957191891212 against:0.07447227552680266 a:0.07025381283468628 :0.10152810749115908 +that:0.6028497689005147 if:0.1147352976524233 and:0.10781819133211142 whether:0.06294456890796503 :0.11165217320698555 +of:0.6722290316873961 to:0.10696828427839346 in:0.07961824423889097 and:0.0282134518575856 :0.11297098793773397 +heart:0.2557402524189536 center:0.12266184976495786 nature:0.08571649789100434 face:0.04722230905360745 :0.48865909087147685 +be:0.1590540336432481 make:0.08092261958646609 give:0.06122753959209509 have:0.056348662875426496 :0.6424471443027643 +by:0.7716096280086061 in:0.10553712861404635 to:0.06378634595926957 of:0.031579180038620265 :0.027487717379457502 +with:0.8606955132758581 the:0.027695896799585538 and:0.01389629099543253 of:0.010757408447286839 :0.08695489048183698 +the:0.1824465875875087 of:0.1604928324461453 and:0.11461483496782546 The:0.08387366066440483 :0.4585720843341158 +of:0.3374555748553996 and:0.1665422584318212 in:0.10016531378512047 if:0.07378698009435562 :0.32204987283330305 +in:0.4609615631047147 them:0.13102391184675913 than:0.02340773225476421 God:0.01799478683109763 :0.3666120059626642 +not:0.6388350847636171 a:0.24664214198501344 uot:0.052920205114997475 so:0.034144341410967345 :0.027458226725404627 +de-:0.08769471576885703 hotel:0.03629826743626718 condition:0.029641033627868785 management:0.024788650668132312 :0.8215773324988748 +most:0.020960481915180285 the:0.015239936827841088 said:0.010480918359695283 following:0.010206126653882873 :0.9431125362434004 +been:0.9433537431260041 not:0.0209036310410378 recently:0.018165401036497504 also:0.003032512792467795 :0.014544712003992795 +located:0.08967986130106101 thought:0.07012560070900795 steady:0.06990113706640678 found:0.05852149192442977 :0.7117719089990945 +of:0.07133330273192999 law.:0.040881815079665575 and:0.0319418679786586 .:0.00937236320947153 :0.8464706510002742 +tell:0.22824360692840528 have:0.18884939142911128 were:0.07369570284479773 are:0.04955684829196513 :0.4596544505057205 +from:0.09930550983409411 them:0.05850596936967046 and:0.015672053410863657 of:0.012898598586004978 :0.8136178687993669 +the:0.567901183094713 a:0.07723569686813346 his:0.04861666544864998 tho:0.031485001220202376 :0.27476145336830105 +deep:0.14207553896161124 black:0.12606817967823353 quick:0.077225104155773 look:0.0740625801242361 :0.5805685970801461 +visit:0.03372690319563563 record:0.025941309893967937 organization:0.011752116554326248 ?:0.006379152807802451 :0.9222005175482677 +a:0.13852559800458722 to:0.11986839048836068 this:0.10450518255964118 and:0.10444522765026072 :0.5326556012971503 +issue:0.08061745230283987 sale:0.07782768888825578 breaking:0.05613260665374041 spread:0.011720232854468143 :0.7737020193006957 +part:0.26091006583299897 end:0.163932893669534 counties:0.10452264062054883 house:0.09088815964087466 :0.3797462402360435 +been:0.2929454355572303 be:0.2717656103241836 not:0.18725853962917682 or:0.1334876802759599 :0.11454273421344939 +the:0.4986513369524035 his:0.05475195084530049 mixed:0.05299592444456738 said:0.04655988809857532 :0.34704089965915336 +to:0.04223669878080763 ment,:0.03452154975134531 conditions:0.02475519998736 This:0.01900015924804737 :0.8794863922324395 +the:0.38649860800573593 a:0.18830407455743914 his:0.04634640155357611 an:0.03479159910316278 :0.34405931678008617 +little:0.14446137351078944 popular:0.08700122702889651 quiet:0.08300894824585581 few:0.03547662551936151 :0.6500518256950967 +dred:0.05571465725947003 sand:0.05263571682185962 millions:0.04200714678168324 thousands:0.027225104970906903 :0.8224173741660802 +and:0.129501663195225 but:0.031707796936986686 a:0.029619868893699167 against:0.016010345530561878 :0.7931603254435273 +will:0.3733822507697491 would:0.27543827019975287 to:0.1502323173306021 and:0.05685762591447744 :0.14408953578541853 +thrown:0.34939883148842654 put:0.0885351057632718 brought:0.05575486308878769 turned:0.04261074662918317 :0.4637004530303309 +came:0.5042347848340647 is:0.09745988399285317 fore:0.0897495469833796 come:0.06490552862141062 :0.243650255568292 +ones:0.045301757133719624 sister:0.0413529031689325 tor:0.0133248132393737 friend:0.011243348111709012 :0.8887771783462651 +the:0.01909651565281481 a:0.007445875566576499 gold:0.006499567819777221 men:0.005454386963461547 :0.9615036539973698 +cause:0.410250806709927 fore:0.3955395385511086 ing:0.022007897827698294 if:0.020869385358595633 :0.15133237155267054 +H:0.17871611228908843 W:0.17267275754340242 D:0.1232353753862789 S:0.11153752627138983 :0.4138382285098406 +estate:0.5642826630546828 matter:0.023570884763853765 discharge:0.013972485174018627 duties:0.009208039159074827 :0.38896592784837 +way:0.08041710090651355 friends:0.05933708021480073 honor:0.04930597251845478 will:0.03261200104360055 :0.7783278453166304 +.:0.2837956810182965 r:0.0888337635489686 a:0.08149866977775082 Justice:0.051640707296416594 :0.4942311783585676 +head:0.21547558007832468 ground:0.09236256201522068 floor:0.05126874859496183 ground,:0.04401553220013436 :0.5968775771113582 +and:0.07288845983981895 of:0.0688308255523095 the:0.057316685853468045 to:0.027440016162280464 :0.7735240125921231 +an:0.04544880488970293 the:0.03808200189237562 for:0.03300182765281568 and:0.022878622831863576 :0.8605887427332422 +and:0.17544999323128652 was:0.05782485231907607 the:0.05084325222115801 of:0.04339325898211292 :0.6724886432463667 +of:0.19061831566805135 and:0.10674875830463329 in:0.08761577443441751 the:0.08125611288268159 :0.5337610387102162 +come:0.0839738910529775 failed:0.08312228015308464 gone:0.07938118120132304 nothing:0.05720772481412384 :0.6963149227784909 +the:0.16832071832520723 search:0.07732693597869336 favor:0.07607319813125382 case:0.04747688794980118 :0.6308022596150444 +facts:0.2735320395542352 stock:0.1459513160615925 people:0.004175336985542058 proof:0.004055493496259609 :0.5722858139023705 +year:0.19258256129785564 night:0.10763733993949916 week:0.0873129095829019 year,:0.03589501416094829 :0.5765721750187951 +been:0.3011128835713787 a:0.12033228491787255 the:0.08464797990363289 an:0.046482031499470895 :0.44742482010764484 +division:0.054023383378117504 boundary:0.0037103999263316052 District:0.0007984683897549955 Union:0.0006317005789331484 :0.9408360477268627 +The:0.5445807126810991 my:0.0326059242641423 his:0.020241143252716694 the:0.013565983021574274 :0.3890062367804677 +forced:0.14764198998099756 called:0.09554608709597921 made:0.06896992924196786 passed:0.0554210926634742 :0.632420901017581 +but:0.6513096351111868 are:0.2582132823152787 and:0.05249401308248589 when:0.017483559040856612 :0.020499510450192143 +in:0.030002065323504103 the:0.02743576547103524 1:0.022780553065337116 and:0.021069174585632563 :0.8987124415544909 +control:0.3715922099921472 of:0.2811571497297088 to:0.10767806170384198 over:0.06621786345504084 :0.1733547151192613 +for:0.4570269871711667 to:0.22416227709018624 of:0.07994610687131301 and:0.07107804700158599 :0.16778658186574807 +pounds:0.35766507246910284 and:0.0017150321401610507 tons:0.0014071218707943616 cents:0.0012909432406842333 :0.6379218302792574 +above:0.7558177082599976 to:0.11929029589919757 from:0.02748703720092725 that:0.00989418076432267 :0.08751077787555497 +walk:0.11230344701583413 continue:0.016816770523734724 stay:0.011255341370718618 not:0.00928558770222688 :0.8503388533874856 +in:0.7473603703900998 -:0.021119081612448794 test:0.013711189422993634 the:0.007337944231781954 :0.21047141434267574 +not:0.39417078766686525 have:0.1337080259437068 scarcely:0.0979672023793858 hardly:0.030108428020321407 :0.3440455559897206 +business:0.012825455854226777 business.:0.004025432589721859 hands:0.002172085819728796 city.:0.001477848635007005 :0.9794991771013157 +with:0.1993374612425813 by:0.1985125241754923 that:0.15757466084299895 hy:0.1361505344725847 :0.30842481926634274 +J.:0.18075758568448044 E.:0.122930545212181 P.:0.11988492813276906 T.:0.08967904302529403 :0.4867478979452754 +down:0.3234729829835249 her:0.19586907907172435 out:0.17243841298269685 him:0.06373937885349452 :0.24448014610855934 +the:0.3980659116730172 you:0.33824653277170164 at:0.09419100345287526 all:0.08496898613086007 :0.08452756597154588 +In:0.19750706660346165 from:0.15403013732981333 by:0.1408980927515518 bounded:0.09321403655772272 :0.4143506667574505 +to:0.21235493767794753 up.:0.21183894618711863 upon:0.2116801589221881 from:0.2069725383643997 :0.1571534188483461 +Mrs.:0.34003148443448034 J.:0.09152325315185614 of:0.0635075038460774 C.:0.06094497682025433 :0.44399278174733176 +the:0.6575258836905579 tho:0.08463726936408653 a:0.07121290295742926 its:0.06614013525493473 :0.12048380873299146 +on:0.21157693317246004 by:0.21040067320159983 of:0.2040708059245694 in:0.18630073431123365 :0.18765085339013718 +as:0.18051126796162045 and:0.15035280819977778 that:0.12460955046725287 but:0.08538065881211478 :0.4591457145592342 +material:0.27678928084874865 common:0.1387842878359921 actual:0.09402664442084108 vast:0.08096718820130425 :0.40943259869311377 +come:0.25094010796773486 died:0.19091997634596902 fallen:0.1028885039875919 it:0.0522295666697224 :0.4030218450289818 +Wm.:0.16382202262630635 J.:0.1342599889826945 deg.:0.10991602283235125 F.:0.10401801710823097 :0.48798394845041676 +sale:0.5434309266563335 a:0.06245425140580267 tion:0.012719577537264354 out:0.010559004816116295 :0.370836239584483 +of:0.6513205360380949 its:0.13251614195836445 and:0.0679630285437277 gave:0.05586442662005912 :0.09233586683975376 +and:0.11515390827747395 itself:0.0480070803416384 this:0.03742715206458015 interests:0.033345774107776914 :0.7660660852085306 +a:0.6400376020585967 the:0.23515869140083903 that:0.09562502348175937 no:0.008583163122401713 :0.020595519936403097 +the:0.036886121712090214 W.:0.029986723736587534 N.:0.02901366925117537 V:0.028057738758889395 :0.8760557465412572 +nnd:0.3485094084929293 but:0.2807371241068594 as:0.1359282739191664 who:0.1279221458180946 :0.10690304766295027 +of:0.9660139461407328 ot:0.028303923290887475 or:0.00552298884166115 in:6.723057351938748e-05 :9.19111531993094e-05 +we:0.27515656857268533 and:0.19587034605054407 lie:0.0897890730337629 was:0.06934629114890808 :0.36983772119409974 +of:0.40622369528510827 the:0.18262552572242835 to:0.11814577492955314 regarded:0.1022303246056895 :0.19077467945722063 +road,:0.026755259006835 north,:0.00529472856994579 running:0.0046674583085180524 street,:0.002392285383914936 :0.9608902687307861 +and:0.8316181497142542 of:0.013788385423569737 the:0.012214378851797575 on:0.005352463226385712 :0.13702662278399266 +a:0.37280488081359675 the:0.24703459665227606 but:0.11051872355596308 no:0.06652482664667779 :0.2031169723314863 +be:0.46012615216743974 not:0.30825756373469615 bo:0.04841460829644942 pass:0.03154490428667762 :0.15165677151473694 +of:0.47963640727149764 in:0.10848889820727643 to:0.10053107239935066 and:0.07493105843529713 :0.23641256368657795 +of:0.17623912793096588 and:0.07715218528698913 to:0.030959638918182607 the:0.028802805936239684 :0.6868462419276227 +promptly:0.9574096814737955 the:0.001761055836568963 a:0.0009999434293549959 in:0.0006947979047825121 :0.039134521355498164 +they:0.13086649078136 we:0.10827682955977894 it:0.08838573296798173 he:0.07670033584949042 :0.5957706108413889 +school:0.05148423452065259 prices:0.027512399807895625 command:0.019803133613393104 wages:0.005779512356534596 :0.8954207197015241 +would:0.4653098757573204 will:0.4466285102842419 may:0.04631264182504182 must:0.02433673952689813 :0.017412232606497553 +the:0.9139069942153459 many:0.04448605963272377 any:0.012605513109714441 all:0.00841856080159562 :0.02058287224062027 +the:0.5269993003748459 a:0.10246400729477842 tho:0.03176218487081526 his:0.02388489421451389 :0.31488961324504666 +would:0.4421956127219073 will:0.299916542796388 may:0.1144239469596754 didn't:0.03485463141954702 :0.10860926610248237 +of:0.2490558066551211 and:0.1246119106600978 which:0.06998249804345406 to:0.06969635018694532 :0.48665343445438186 +questions:0.018051517049457448 days.:0.005464772683248735 .:0.00114877331835788 ?:0.0007976237002647747 :0.9745373132486711 +fear:0.2137332861382823 complaint:0.04709170482842795 statement:0.012344320383128575 condition:0.01102984135649039 :0.7158008472936709 +it:0.42314037606632177 he:0.25312438649090896 the:0.117852104868837 I:0.08234402080857332 :0.12353911176535895 +the:0.19091580922917128 The:0.07800112070119582 and:0.055553878617861284 a:0.04795465962879012 :0.6275745318229814 +and:0.19584172894525287 in:0.1576763689342447 at:0.12335635508707721 to:0.036277218965742555 :0.4868483280676827 +near:0.5423353287849814 far:0.17771160700847136 nearly:0.12740330971033031 soon:0.11934517639228018 :0.033204578103936774 +result:0.1598037145538047 cause:0.10703882326284707 results:0.07453922194533129 kind:0.06155498823572399 :0.5970632520022928 +as:0.9606682125275189 the:0.025736521922666705 a:0.005040393989214312 very:0.00377308087217603 :0.004781790688424154 +of:0.5265309366886913 was:0.11981372313604646 and:0.10102836240574785 t:0.05027857495681951 :0.20234840281269478 +should:0.8370606639956907 did:0.07289076220457698 will:0.04952836216089719 do:0.03625748099942047 :0.004262730639414743 +and:0.5166256728236377 right:0.043377945537536995 us:0.023160143615895707 extending:0.018548915783987898 :0.3982873222389418 +the:0.047875469873410424 and:0.025378722950242613 near:0.01634737727566727 other:0.012409911570610613 :0.8979885183300691 +to:0.3990115358208721 and:0.14811893844923796 of:0.1056467106545923 He:0.022759743919262842 :0.32446307115603473 +an:0.6436895632225256 of:0.08631974620663702 the:0.04386476963118141 la:0.03248528886212947 :0.1936406320775266 +the:0.2230660947779757 and:0.13710099189332417 The:0.09088856448611611 a:0.041365779463185724 :0.5075785693793984 +already:0.4591535285067862 been:0.38121112261056017 in:0.03780935574127587 of:0.02127256087152029 :0.10055343226985755 +the:0.3828160949904759 a:0.09426569915902638 »:0.02930419298527224 tho:0.02303502364235692 :0.47057898922286845 +during:0.14283970944763671 I:0.14130441991635473 and:0.10010125214019414 that:0.0802158963477582 :0.5355387221480563 +under:0.2335725304676076 in:0.23258582009000597 by:0.21860756589272887 In:0.1621768946911178 :0.15305718885853967 +determined:0.1979147401283088 called:0.013768783796403321 heard:0.008602503634967474 due:0.007483724110898675 :0.7722302483294218 +to:0.3786520687091391 will:0.21982722597598728 shall:0.1443550905970516 should:0.0742111988042437 :0.18295441591357844 +more:0.1367830317285382 than:0.03133577855810957 known:0.02114838937193383 ing:0.017368994320281484 :0.7933638060211369 +in:0.3169934075081263 not,:0.30011712085062436 on:0.09164637617954659 at:0.060848991063992414 :0.23039410439771024 +tue:0.8150711157521885 kind:0.06582086136122105 virtue:0.024468312801110954 son:0.021136137219686473 :0.07350357286579307 +for:0.6926843494449817 that:0.2440963062272573 him:0.024911677917637102 you:0.004947278879310597 :0.033360387530813246 +there:0.6075714822257163 it:0.16206845970808173 he:0.05893775455837135 It:0.0560461067109955 :0.11537619679683507 +action:0.013005506397547587 cause:0.011114556854649784 members:0.010328810007209137 command:0.008052043737062997 :0.9574990830035305 +not:0.26962379481532794 never:0.16977388526106563 always:0.08620722723864384 in:0.06954793990510968 :0.404847152779853 +of:0.9908874633428948 oi:0.00333235719510372 to:0.0012626398420561014 ol:0.0009471005336958654 :0.0035704390862494276 +that:0.8854700959634104 what:0.06253941046969473 today:0.015588028293407222 until:0.012940073391442727 :0.023462391882044964 +north:0.6868930849679993 south:0.3066762357066815 west:0.001492190262225236 east:0.0006714479374782258 :0.004267041125615834 +a:0.46234903744670425 the:0.11522848892233997 River:0.030919765387687072 such:0.01707239086604445 :0.3744303173772243 +that:0.11191657751250524 himself:0.09293815912383821 ing:0.07049194897083619 and:0.05012766734523439 :0.6745256470475859 +The:0.05899773857435457 passed:0.03009145823055957 the:0.0118027190584166 for:0.011223237337746926 :0.8878848467989224 +coat:0.041357370808812965 man:0.02421850679816988 number:0.014190388765206122 glass:0.010374034639769701 :0.9098596989880413 +and:0.06042067843913772 man,:0.03196879865439144 or:0.028867891295937937 now:0.027332339995611625 :0.8514102916149215 +men:0.42855147270439764 field:0.05249912163767632 horses:0.014707760297578873 back:0.014575726576565867 :0.48966591878378135 +good:0.1118550881795632 small:0.05342387379291625 bound:0.033844128675368484 plain:0.021834581834924337 :0.7790423275172276 +tion:0.056056266226103296 day:0.034000676567029105 ment:0.02521755217872181 of:0.022467013335500798 :0.862258491692645 +Sec.:0.622771090463612 Section:0.15906950802880226 of:0.018306061806862558 further:0.017105360557583455 :0.18274797914313987 +by:0.04779056595095113 to:0.043113218453435305 ;:0.014283373179026638 ed:0.012904580262048186 :0.8819082621545388 +of:0.42557645777668845 and:0.10661942096245813 the:0.05043492271796372 The:0.028811562059781942 :0.3885576364831077 +band:0.2043199442668755 duty:0.11881302976490521 street,:0.02077184059533451 charge:0.020559347474308008 :0.6355358378985768 +as:0.15919464225844426 to:0.15266738925927298 by:0.13917047603464117 in:0.1194297276426742 :0.4295377648049674 +idea:0.1382885078594595 fact:0.13094370651498788 theory:0.03758486774776295 papers:0.0272528242639535 :0.6659300936138363 +of:0.8920379049238718 in:0.024675266537460445 how:0.01820993019418283 who:0.00909233397278376 :0.05598456437170108 +by:0.3610010446895272 a:0.029708307810323853 it:0.021107298530782255 he:0.011009221395943774 :0.577174127573423 +of:0.13451504404845285 while:0.023425082160591828 and:0.02168608183004101 or:0.004518835011371133 :0.8158549569495434 +of:0.21958343124093027 have:0.21010001032344988 had:0.1342063411427978 are:0.12025413746503438 :0.3158560798277875 +mountain:0.20054305670835365 line:0.11385272502229944 heart:0.06646485979728327 property:0.05897523068329546 :0.560164127788768 +of:0.2865876645157408 to:0.18639051378461974 in:0.1678502149413712 and:0.1124716712800319 :0.2466999354782364 +while:0.30208462861635355 and:0.20320497037596952 to:0.09225027201197501 has:0.06640573740931101 :0.33605439158639105 +on:0.4104740616629628 before:0.2627144268552754 in:0.2102719156259053 upon:0.06663460799988048 :0.04990498785597608 +night:0.39432540252363224 week:0.04228531259728547 year:0.03829960706567495 week,:0.027204290470296596 :0.4978853873431107 +days:0.08767000552510411 times:0.04573018189631796 times,:0.03693433783701356 of:0.03478663758412451 :0.7948788371574398 +the:0.6673472787878021 a:0.1472088281043838 be:0.04076907919739739 tho:0.029934120605593067 :0.11474069330482381 +out:0.27541553686582726 up:0.11123264699497099 it:0.09796402868989655 led:0.049359836019211026 :0.4660279514300941 +looked:0.2896606444174621 came:0.15573836697909824 carried:0.1274487256484278 went:0.09848765817139754 :0.32866460478361437 +the:0.852017858144902 tho:0.04106135747028181 a:0.014565722574312458 that:0.009331603722104212 :0.08302345808839963 +all:0.9127125485697556 ail:0.011059664071535 different:0.009052229439799738 nil:0.006029696018904283 :0.06114586190000523 +file:0.025838399306190352 at:0.016761475306622507 to:0.010573775471100881 and:0.010027298141263784 :0.9367990517748224 +their:0.2940417513806479 his:0.2317139293986193 high:0.1938467535338708 bis:0.13176113929907304 :0.14863642638778898 +the:0.9729402566865561 tbe:0.018687775947698014 tho:0.004284229984318195 by:0.0025231993390381585 :0.0015645380423893035 +by:0.23060767329631246 In:0.2116601073018263 By:0.1830552064466737 in:0.17816073127520674 :0.19651628167998095 +night,:0.049850195513920725 Saturday:0.04971515006841118 the:0.02453438114937197 evening,:0.021597495021413355 :0.8543027782468828 +up:0.365538685538906 separate:0.1104571726423189 there:0.07992497894874537 open:0.07527429307842316 :0.3688048697916063 +a:0.022306029496324285 long:0.01917529466531782 the:0.012574582945141605 careful:0.009963932364162023 :0.9359801605290542 +the:0.8527267385634972 a:0.04774722323766993 tbe:0.025739281281793248 tho:0.02290140884153668 :0.05088534807550292 +and:0.15971033429616294 the:0.12271173292094159 to:0.07771121652277854 ing:0.0582082738920342 :0.5816584423680826 +of:0.3898329805237655 in:0.06305430580031021 to:0.057506308066797907 no:0.05253534382510241 :0.4370710617840238 +people:0.006317442786683169 rich:0.005383841912114706 law:0.005290686471432983 President:0.004804016934841378 :0.9782040118949278 +the:0.4925272675047521 a:0.21076032551954885 his:0.05742969994163478 our:0.046149108270919365 :0.1931335987631449 +Smith:0.01610900982719959 King:0.007652009867047438 Brown:0.007092984709836719 Davis:0.0032115290754827926 :0.9659344665204335 +well,:0.007553365817677198 ;:0.0019446627871035791 done,:0.0012859916444788412 true,:0.0010017127367871802 :0.9882142670139532 +past:0.25839485247256966 member:0.03410826534057474 government:0.02631726930014571 u:0.018662949566469116 :0.6625166633202408 +the:0.3962969326968191 that:0.12823763197035906 The:0.06494254468121073 this:0.06370731483010127 :0.34681557582150985 +expect:0.5612035661220152 time:0.10991232777154747 begin:0.06834654348515698 try:0.06445921720379298 :0.1960783454174874 +no:0.4095487976964001 the:0.23843402006499947 a:0.06900651817602833 tho:0.011270953812875666 :0.27173971024969634 +were:0.931893512306371 must:0.028048961700936 bo:0.01725875659538133 wero:0.01702296986694035 :0.005775799530371366 +was:0.2731768522882636 very:0.15226388385966957 more:0.08689585010847097 rather:0.0371613741831094 :0.45050203956048646 +in:0.23941279167165866 by:0.20386206455226114 of:0.14583260289022876 upon:0.12275664874525812 :0.2881358921405934 +to:0.18098973339906216 clear:0.02481694216138726 per-:0.024515850570944887 most:0.020604964207996592 :0.7490725096606091 +see:0.16996126154429061 reach:0.10950584329222766 attend:0.08711592121186598 pay:0.08462193167382381 :0.5487950422777919 +the:0.23380440418701764 a:0.17990220694979667 true:0.040277553369696524 fresh:0.03202206718530132 :0.5139937683081877 +a:0.20509446003300738 too:0.1493091270126793 most:0.1208510233207977 almost:0.08663827710968901 :0.4381071125238266 +and:0.23471264052394133 gain:0.07670584592035258 remove:0.05828243412653037 us:0.04416414645983673 :0.5861349329693389 +John:0.0880343568353255 J.:0.07185303421515395 W.:0.060629974753019504 A.:0.05242616974274622 :0.7270564644537547 +years:0.47496904417130464 days:0.2674699005099223 months:0.15559310386228709 minutes:0.0802996218898526 :0.02166832956663354 +of:0.9921425260022543 by:0.0021861239755471863 to:0.0013588801224356925 on:0.001150485224620804 :0.003161984675142216 +who:0.8754401807262211 arrested:0.09201831713532481 that:0.007853972002573708 which:0.003811538102075372 :0.020875992033805142 +and:0.09696373998183118 1:0.07806281471114455 of:0.05165937700986817 in:0.03974083842176452 :0.7335732298753916 +his:0.20310796221859959 my:0.10583321568585644 My:0.07300736724130019 her:0.059452014055880645 :0.558599440798363 +of:0.7171474007950436 and:0.06774225772666662 dred:0.05343496338998402 sand:0.04533273591829529 :0.11634264217001049 +the:0.6701969050896811 a:0.18936933189440336 of:0.03930420012890965 tho:0.03469803977506048 :0.0664315231119454 +the:0.9341384712958866 these:0.026852139919799886 any:0.017253894491062474 tho:0.00983625879742208 :0.011919235495828951 +said:0.02212295345990554 same:0.018804421404406253 property:0.015444783308521096 unknown:0.014429077065632009 :0.9291987647615351 +the:0.45950012823929753 a:0.08235226000536815 tho:0.06844936277904287 de­:0.053477919919434735 :0.33622032905685667 +particularly:0.9449707638309535 fully:0.012663624902258905 duly:0.011361891834467988 carefully:0.005455638183842209 :0.025548081248477326 +of:0.7558406691356142 to:0.11356824559189292 above:0.0501552546592202 in:0.050119842401021165 :0.03031598821225138 +signed:0.054643859927997605 composed:0.002350313049606406 scribed:0.0005990891954730991 pressed:0.0002505020426918567 :0.942156235784231 +he:0.2895678610656613 who:0.13189196424621832 had:0.12323042676152889 and:0.12120059263258989 :0.3341091552940016 +be:0.8633334245802119 bo:0.11479474051639656 but:0.007650277635228707 tin:0.0009677313281954397 :0.013253825939967255 +stopped:0.35513570750025497 at:0.0878215366377691 on:0.07948895796361002 of:0.07665294493168616 :0.4009008529666797 +children:0.13486511100703563 men:0.07322826798269039 people:0.04822967766298139 those:0.04579919616446145 :0.6978777471828311 +the:0.5043533014263544 a:0.3285504943657082 any:0.13248714959209096 and:0.02000567448984888 :0.014603380125997453 +on:0.5402564005218585 of:0.10634007074839891 also:0.10074975686755004 to:0.06700616211465284 :0.1856476097475398 +give:0.23313793506055874 present:0.1695918905558938 find:0.09035548331376074 hope:0.0718442445044647 :0.4350704465653221 +desire:0.7314497774268653 necessity:0.06117943508029665 thing:0.056920581844387516 object:0.04142246374174661 :0.10902774190670389 +so:0.48005682030071894 to:0.1988533443091833 was:0.07826518672331734 is:0.07142640247265584 :0.17139824619412447 +of:0.3376606505445946 and:0.20858604620205023 in:0.08725168694038497 to:0.08591457039124506 :0.2805870459217251 +the:0.19051426894747525 public:0.06320488853037472 a:0.040265270752062904 his:0.016715206753171712 :0.6893003650169154 +that:0.9913541001263508 there:0.0017113613612103884 where:0.0015156103531734583 as:0.0013534803430822286 :0.004065447816183135 +he:0.6027455342716215 and:0.11401825675071994 I:0.09827747892156222 she:0.06278977398052782 :0.12216895607556844 +of:0.6160875425103404 year,:0.2802740725054058 ;:0.014165217519336686 case:0.010599446872016003 :0.07887372059290121 +by:0.6610755537236824 to:0.1275247779582089 and:0.060224112852096084 with:0.05435330801503479 :0.09682224745097774 +he:0.13250681145729373 which:0.09694347677785771 and:0.09403320583354782 it:0.07750142252488806 :0.5990150834064127 +old:0.07449184432547389 advance:0.07384007383668258 national:0.060421324997945086 rear:0.04252157632257288 :0.7487251805173255 +quiet:0.009461419954910365 dull:0.008284192548751993 and:0.0074766486294976535 John:0.005363277829075037 :0.9694144610377652 +and:0.9997036887337584 they:0.00011900958421221483 if:6.358578104923635e-05 the:4.793402988677396e-05 :6.578187109350276e-05 +and:0.25582218053402855 Just:0.19608587030498775 just:0.10381567797918419 But:0.07844041463537237 :0.365835856546427 +It:0.2976060294376978 it:0.1598411280817213 which:0.12165865816385175 I:0.10264869724706949 :0.3182454870696597 +on:0.8481388676118259 and:0.11277626853142814 at:0.017268802154472726 in:0.006523099005848328 :0.015292962696425 +of:0.213729124447721 and:0.10091978407648207 to:0.04593011160409973 the:0.03758374589400886 :0.6018372339776883 +and:0.5585265475152208 side:0.03903272146755888 by:0.009796977434164522 line:0.008898917380209955 :0.38374483620284583 +J.:0.810896215626961 Mr.:0.05366136217835926 Paul:0.05077926785166889 Gen.:0.029070860579043324 :0.05559229376396743 +provisions:0.12893674957279122 order:0.07045127602261834 control:0.06677498769611956 payment:0.0630207631389357 :0.6708162235695351 +all:0.11363124229294082 the:0.08882457148428312 them:0.06547631145730326 us:0.05231733258529781 :0.6797505421801752 +and:0.48635999410245234 which:0.13516847829730363 as:0.12056260245035824 but:0.11032641012895089 :0.14758251502093475 +Committee:0.22528956768393285 committee:0.15223059535681915 interest:0.03743443534413879 tax:0.030973629921678614 :0.5540717716934307 +as:0.9690178977368683 and:0.00556299409278212 at:0.0045704316531692745 us:0.0035160276317336356 :0.01733264888544683 +this:0.7092900890073968 the:0.17156319819167118 their:0.03110679395446467 his:0.021149683248524717 :0.06689023559794274 +just:0.9999990733562022 and:1.0411916225578586e-07 taking:3.0067025303837897e-08 for:1.9504778838671753e-08 :7.729528314709754e-07 +country:0.20116074521323332 people:0.034096820365752234 valley:0.031502659579397074 river:0.022239019309433186 :0.711000755532184 +he:0.6394900648406745 be:0.12279838436818374 which:0.11920828666918241 He:0.03300564750921105 :0.08549761661274821 +do:0.10794650463690293 did:0.09978107814781763 would:0.09204756562764503 may:0.04132681034718914 :0.6588980412404453 +the:0.2466298777287468 of:0.12858961304774177 The:0.0893916134074578 a:0.07323202489311405 :0.46215687092293956 +and:0.3324426719493002 made:0.09741551798287139 did:0.09569015261552259 dated:0.08037316126881756 :0.3940784961834882 +The:0.04294064925416135 "The:0.009008048165558374 the:0.005138466549938402 this:0.002215978352546497 :0.9406968576777954 +of:0.6150713552186133 its:0.24765932064975968 The:0.06345660885517819 the:0.039827311607732556 :0.033985403668716205 +the:0.41734109651916673 a:0.034833414343458324 tho:0.03134831066576711 this:0.016455879873963842 :0.500021298597644 +some:0.07919782955791678 visited:0.0594571427998764 being:0.04825085828229593 not:0.04614723446049386 :0.766946934899417 +was:0.28895748122588705 is:0.23250044275040474 had:0.13061199926271788 has:0.0751523437685839 :0.2727777329924064 +those:0.23246348128502622 and:0.18334104695584874 on:0.11286440350597549 from:0.09685555906520524 :0.3744755091879444 +a:0.18529315210913685 any:0.13766342380222266 the:0.13086515696730341 acre:0.10228606359890749 :0.44389220352242964 +which:0.1092980861855674 it:0.08866507466959003 they:0.060816108454789734 there:0.05662140735286259 :0.6845993233371903 +keep:0.14344726639716723 remove:0.1196824281272184 get:0.07134767968056162 cut:0.07026636702575259 :0.5952562587693001 +A:0.622999981983029 the:0.2365529045267883 for:0.054250099301860984 to:0.044143625578986725 :0.04205338860933506 +there:0.2676212228198349 it:0.26054042220712587 he:0.1724345051284674 this:0.12141353283397958 :0.17799031701059226 +&:0.9791133019856603 a:0.018441313426598785 takes:0.0010909540654524179 was:0.0004633143950280225 :0.0008911161272604187 +sum:0.023322708107680383 number:0.02103911619212108 amount:0.01859612324451981 payment:0.016439437442633754 :0.9206026150130449 +men,:0.05482346155770995 who:0.017433715648031083 of:0.008223246029605641 there,:0.0046543392942424225 :0.9148652374704108 +and:0.3706241668463359 to:0.21230922329655288 then:0.06387255655525499 would:0.05803332302272011 :0.2951607302791361 +of:0.40049139721651184 or:0.28139145797323756 in:0.18521817195365758 by:0.04519503587566392 :0.08770393698092915 +T.:0.3688312522437943 B.:0.2687246470091462 S.:0.11133915044066722 H.:0.038878215241304054 :0.21222673506508824 +the:0.1771910758585103 which:0.14677078655873957 our:0.0445392315262145 to:0.021094431626609587 :0.6104044744299261 +of:0.29421421394607483 and:0.09440895497137362 the:0.04742829117224285 was:0.04466564017203131 :0.5192828997382776 +had:0.1627380163393448 has:0.12037156762314447 is:0.10870446356511054 was:0.09188884648932195 :0.5162971059830782 +of:0.5092897826274373 the:0.24762059928167143 in:0.09606417055536634 a:0.039452247986339145 :0.10757319954918582 +it:0.25528743189184705 the:0.21500156623932823 that:0.06659851271801626 they:0.059935799732055386 :0.40317668941875323 +They:0.4192321944854804 We:0.17344781168682327 I:0.11642143437691235 and:0.10134161218855532 :0.18955694726222871 +his:0.39703899148629934 the:0.23229026250248316 no:0.029933674023865656 your:0.019500991761540534 :0.32123608022581146 +as:0.07807993826956496 respect:0.055164814992636334 debt:0.04626826184385886 people:0.04001551704041018 :0.7804714678535296 +say:0.3550596972138622 do:0.34969638792880636 get:0.05749861350013633 prove:0.04843230193829333 :0.18931299941890167 +held:0.1980941009482732 a:0.11537355295681592 entirely:0.1073230924952907 no:0.07896816397766014 :0.5002410896219599 +I:0.8998871279728775 who:0.04726319211942025 we:0.017107358802130337 to:0.006037426681878383 :0.029704894423693597 +little:0.07287089268262151 the:0.04819467746124698 handsome:0.04487760474576858 large:0.04218199688823274 :0.7918748282221302 +really:0.1295440938614136 witness:0.12828382854058304 man:0.06065427159770785 member:0.02276893499347061 :0.6587488710068249 +last:0.21819189289302104 at:0.013482695013994891 of:0.009658033011444075 all:0.007012421905911396 :0.7516549571756287 +and:0.6459886872738986 And:0.05661721803193462 but:0.03676907909511693 Since:0.025319313040700984 :0.23530570255834896 +of:0.47778940425570654 in:0.3739287533247411 In:0.10777903202025992 on:0.02752206563671528 :0.012980744762577275 +he:0.4945679372743852 its:0.251026177658509 the:0.08568348317314356 you:0.013284750398604392 :0.1554376514953578 +was:0.058714079546567904 the:0.024491400608495414 I:0.023826022718476256 night,:0.02193607775878436 :0.8710324193676761 +of:0.9952284714527072 and:0.0008917663299212655 ot:0.0007058284404277995 the:0.0005817050412370791 :0.002592228735706514 +avoid:0.24124698649509832 the:0.12194879793056514 a:0.07406905290887364 have:0.042138340728047834 :0.5205968219374152 +important:0.5067256415421626 great:0.15264678975567764 many:0.06480136484506732 few:0.015414341607974329 :0.26041186224911794 +not:0.44353853203515176 no:0.1515155292107596 against:0.13162110351034834 when:0.08759948679632892 :0.1857253484474115 +now.:0.05332179703255972 with:0.00915046817512545 ment.:0.008497463720670458 State.:0.005098430982435426 :0.9239318400892089 +he:0.49250189182037374 I:0.19947872641416575 thev:0.12061621042284613 she:0.060839108985354676 :0.1265640623572597 +he:0.8079192965724987 it:0.04641589232842681 ho:0.024220225275449366 I:0.022832329008595345 :0.09861225681502982 +first:0.9223654090527081 prominent:0.013747798499739956 best:0.005789551548152654 the:0.004487789165318449 :0.053609451734080785 +no:0.47289485905298073 time:0.18245333549173143 its:0.054630985489102384 we:0.04780624561055874 :0.24221457435562668 +think:0.1606019376512832 know:0.06798030899913295 thought:0.058012131997003565 said:0.04588134162653428 :0.667524279726046 +the:0.906075718640601 this:0.032377773038355866 tho:0.022850001307583523 that:0.012752317137743116 :0.025944189875716533 +President:0.9988740866290335 Mr.:0.0007425493827048758 the:0.00016929056369558291 what:2.558700469665387e-05 :0.00018848641986922118 +words:0.28603055005565886 girls:0.22056318999278524 police:0.11039880902040387 French:0.10827065616289404 :0.27473679476825813 +young:0.8718218723798471 poor:0.019532784160220105 lay:0.011397719481666917 a:0.010853996653378642 :0.08639362732488727 +cases:0.6342127667809506 in:0.02001004278208361 the:0.019974490915431208 years:0.018868198931259912 :0.3069345005902748 +tariff:0.016607377736686187 law:0.013108661455085229 county:0.008684310122651282 railroad:0.0076956480360760495 :0.9539040026495015 +morning:0.2681925718906216 in:0.06332716197116177 lady:0.03422958246430961 day:0.02615683294647865 :0.6080938507274284 +and:0.44038899887729727 fully:0.38417735022182453 not:0.0955464783072054 be:0.04099269617352636 :0.038894476420146484 +if:0.4162831280867157 certainly:0.1933886548311974 at:0.14424565318883706 in:0.14022872014370455 :0.10585384374954523 +the:0.3478204464983037 that:0.29065972381286964 a:0.2873150952938592 his:0.04464058857770099 :0.02956414581726646 +by:0.27229884850149927 and:0.17708111741105884 with:0.15594402230379975 the:0.133568435031074 :0.2611075767525682 +was:0.5738620674731673 being:0.08233809163355449 have:0.06599265645948496 then:0.02505599163197579 :0.2527511928018176 +the:0.45064578294969065 The:0.09232506504595991 and:0.0875194610960214 in:0.04622665137359927 :0.3232830395347287 +total:0.9155887960404575 the:0.002745609871280105 whole:0.0025158982557896567 average:0.0015988763450210538 :0.0775508194874517 +realize:0.15984136962591933 has:0.08639107541500224 of:0.060621680922080194 like:0.034605692568133256 :0.658540181468865 +them:0.19154063894542267 that:0.05227400292373221 himself:0.04725956150950518 ing:0.032320520118812826 :0.6766052765025271 +of:0.30689173098224404 in:0.10033985679317062 to:0.08768350503816955 not:0.015065453959093233 :0.4900194532273225 +as:0.9690178977368683 and:0.00556299409278212 at:0.0045704316531692745 us:0.0035160276317336356 :0.01733264888544683 +directed:0.005911506029705325 more:0.0047050207622507225 more,:0.0044216946353503655 will:0.0038174957933175763 :0.9811442827793759 +us:0.06767252094020695 ed:0.04995923833115453 him:0.04590518467908253 up:0.04046166894028986 :0.7960013871092662 +as:0.11116707662340146 and:0.0743876121733386 belonging:0.0743754202911994 tions:0.030591536977405267 :0.7094783539346554 +duty:0.30701163404761506 were:0.15529793854947288 supply:0.10659404551153778 now:0.1065244920817643 :0.32457188980961005 +of:0.05299522756516317 for:0.042795029002438915 amount:0.03417037264612478 is:0.019745327655459072 :0.850294043130814 +the:0.3518386011147653 his:0.2894943425502826 a:0.1763712778201923 A:0.06243272809321487 :0.119863050421545 +once:0.2157055625528458 not:0.19532661971920118 used:0.18789849405006023 fit:0.10995246597704907 :0.2911168577008437 +of:0.3313513877157946 the:0.22280785623771512 The:0.08394547870148901 to:0.08014224722542294 :0.2817530301195783 +delegates:0.14794994302936895 parts:0.06850006421254555 feet:0.05026339428723471 pounds:0.044884545620987454 :0.6884020528498633 +and:0.10766688331494642 are:0.04453981543491105 store:0.04213879991208822 walls:0.03046923131760682 :0.7751852700204475 +a:0.2930916020817963 not:0.12340321094464292 the:0.10833260336982177 an:0.05480924175033955 :0.42036334185339946 +more:0.7308538362033866 better:0.0047999508933555795 less:0.0035121854491747223 greater:0.0023207058147755484 :0.2585133216393077 +it:0.24610167583977602 the:0.08762494580958845 itself:0.07125344650960648 a:0.06890143448988557 :0.5261184973511436 +man:0.022288272880736516 latter:0.02175424665915856 men:0.015131992837604828 sun:0.014217395212954611 :0.9266080924095456 +the:0.7033646481594888 a:0.17250937215190706 any:0.03857990297304641 our:0.027902594883172996 :0.05764348183238474 +and:0.30069131097821217 of:0.16339067604555763 the:0.1436830394493894 as:0.10143696046681719 :0.29079801306002356 +of:0.31236615646277427 said:0.13401963343897963 from:0.10568870948944092 that:0.07769949716063322 :0.37022600344817214 +of:0.16337335805665462 and:0.14301275476367395 the:0.06338548800718426 to:0.04944799666103803 :0.580780402511449 +the:0.5194377184750657 this:0.3435459970671475 that:0.038029099410182676 said:0.0292379545607959 :0.0697492304868082 +Carolina:0.0444768105664108 Republicans:0.024441916417296775 agents:0.0228970199945803 police:0.02230307799069235 :0.8858811750310198 +know:0.7836285599094045 believe:0.07557279324450106 see:0.05271049765119999 say:0.03753527511868716 :0.05055287407620732 +then:0.08539503456891469 here:0.05955609080724932 Here:0.052260197628731894 street,:0.01873098096433367 :0.7840576960307704 +the:0.12152738330023126 nothing:0.10535213861977047 something:0.06898212206184226 done:0.06806481475157584 :0.6360735412665802 +nine:0.1113275383892242 seven:0.10154829737708147 twelve:0.09383458228559853 five:0.05593538944015274 :0.6373541925079431 +attack:0.3398937345101642 hair:0.02001943889258803 influence:0.017553373675847597 pair:0.013202715753953228 :0.609330737167447 +many:0.02919513816252283 family,:0.011500198309857098 to:0.010422769850342453 and:0.002393454069063794 :0.9464884396082138 +tho:0.3446416854949527 j:0.27059974995323566 was:0.13811561950397536 is:0.12487631090640054 :0.12176663414143575 +took:0.30731137423946203 in:0.26843970136306455 iu:0.14095175421164327 take:0.13073790188059004 :0.1525592683052401 +made:0.3607440488540243 shall:0.07942684457299114 what:0.03717305573098048 who:0.026860325758589935 :0.4957957250834143 +the:0.5855975113896105 of:0.12980520154779557 in:0.11194894298199914 to:0.0390643841361197 :0.13358395994447508 +that:0.21085196464340222 and:0.10888026681987001 That:0.08771449602537659 t:0.043484846012217096 :0.5490684264991341 +to:0.5522382506234262 and:0.09614285053600853 on:0.05983338705843448 may:0.051601171448647815 :0.24018434033348307 +of:0.9996918983273015 and:0.0002167464220121328 do.:1.4083323591260018e-05 t:1.3731641723942627e-05 :6.354028537123083e-05 +day.:0.026677817707258713 sort:0.02477282851008045 small:0.02131486710875402 bright:0.02068279675568161 :0.9065516899182253 +doing:0.29488816617296415 a:0.10011215474072835 of:0.09145833718171986 their:0.06913003628110961 :0.4444113056234782 +arrival:0.061889012081284875 hand:0.02464666456897637 speech:0.022674330265986975 home:0.021657199597858313 :0.8691327934858935 +as:0.22264489783041164 than:0.08420120603981315 that:0.07628172513099875 when:0.047493304235327785 :0.5693788667634486 +at:0.140254500898784 do:0.055804661509411914 and:0.05247422108483184 the:0.03303789077058355 :0.7184287257363886 +to:0.24356819443945102 was:0.22252668121599709 of:0.184960241969992 is:0.1639229047741123 :0.1850219776004476 +a:0.3702601676525208 tho:0.2059342146672986 the:0.19295404649845257 their:0.07600663964324145 :0.1548449315384866 +me:0.4756953257216441 them:0.24837490727351041 for:0.1342518926399707 you:0.06087127734006223 :0.08080659702481263 +of:0.9867418156201412 ol:0.0032849782085692396 by:0.000917200598515565 Of:0.0008264677339951642 :0.008229537838778939 +brought:0.6697442895652136 glad:0.07954537381467856 pleased:0.0216343134735251 able:0.015448869078890305 :0.21362715406769234 +in:0.7394709183270395 In:0.02510165217507372 from:0.014043249019512035 ln:0.005767405037394126 :0.2156167754409806 +of:0.1758252082209513 and:0.08527362891340066 the:0.05331275428021802 aged:0.05295860935138751 :0.6326297992340426 +the:0.5743023077818312 a:0.05526085422319498 any:0.0412586466811245 tho:0.034723690506591555 :0.29445450080725777 +and:0.5290170805556732 was:0.12547263019776803 I:0.12461725131499171 we:0.07668962758850546 :0.14420341034306156 +and:0.2625125283640059 of:0.16444621041910432 to:0.10637239560329803 found:0.053360263149872786 :0.413308602463719 +the:0.5023694399971973 this:0.058636978021681725 tho:0.03612247743146496 a:0.029577191345127034 :0.37329391320452904 +to:0.7088299674462384 Into:0.17027502942811112 of:0.05595120799823407 from:0.03598811577743929 :0.028955679349977118 +one:0.03217156135747395 and:0.03151471503956889 out:0.02361972014519121 some:0.016961688007751854 :0.8957323154500141 +that:0.9862539399140152 the:0.005410843269473819 of:0.003976013890300992 is,:0.0018301065850231907 :0.0025290963411869843 +battle:0.10327568687731813 station:0.041033277629747865 various:0.03961094071936247 Governor:0.015525362312182727 :0.800554732461389 +for:0.3253595819729001 to:0.08812001126291498 various:0.0682539879098438 of:0.057642095712322365 :0.46062432314201873 +and:0.14795743352949267 of:0.10677641109259159 the:0.1022048640771338 in:0.06327210790995402 :0.5797891833908279 +the:0.11210569797095933 and:0.08650591443038358 of:0.06694347489830318 to:0.03384759032461143 :0.7005973223757426 +party:0.15680490690406726 money:0.08393903430372324 debt:0.08393872059574672 note:0.04929467378791293 :0.6260226644085498 +nomination:0.052385831021207856 hand:0.03846955041192918 night:0.02745023630520977 delegates:0.025950344567031318 :0.8557440376946219 +the:0.015182285886175779 to:0.014000556458764728 and:0.01168051053185679 same:0.01109249913046065 :0.948044147992742 +it:0.0746771668773909 and:0.06437649198323156 them:0.0420562124700389 superior:0.03586734989863947 :0.7830227787706991 +ago:0.9906534497537447 ago,:0.0027560410448834584 since:0.0018421640665415321 when:0.000464134223611032 :0.004284210911219322 +and:0.07737865145625392 And:0.031114542026000086 that:0.03053968393852796 tion:0.022593819376133067 :0.8383733032030848 +to:0.22984567664672728 for:0.20226163604298517 with:0.14838845777730567 upon:0.10001282955436802 :0.31949139997861387 +the:0.43599337238392477 this:0.0709399423102509 a:0.053691519672391344 his:0.04738066008684523 :0.39199450554658777 +Peter:0.4053722702575985 Mr.:0.09189659662837035 the:0.06727955676346838 Col.:0.056680056177835975 :0.37877152017272675 +on:0.22249615333678213 that:0.1692579069600632 upon:0.16903709010674872 to:0.0919403777397753 :0.3472684718566307 +A.:0.024309025825690063 In:0.017693664329739418 tbe:0.014762654276164062 with:0.010414346444332008 :0.9328203091240744 +the:0.46747690006877757 these:0.2047925616665264 this:0.11416411754127777 your:0.05093906151137844 :0.16262735921203977 +you:0.1081018849850217 say:0.0973653197580473 too,:0.08822819909346852 and:0.08697965151049004 :0.6193249446529725 +the:0.21562180522918759 to:0.14801753625485745 as:0.1231118604954577 or:0.08746026717577779 :0.4257885308447196 +the:0.47055918090439525 great:0.1278267563005837 The:0.0927683287313236 Such:0.07839393452325062 :0.2304517995404469 +has:0.49161336363699376 and:0.19442659024164025 do:0.12606648913433333 had:0.076839311547499 :0.11105424543953371 +the:0.2699336732050213 their:0.14740652723161002 her:0.13042815533856494 a:0.08227811666730842 :0.36995352755749517 +an:0.9999999980227463 the:1.243869180527893e-09 no:2.6720899448018013e-10 had:2.3562542802956433e-10 :2.3054998359799305e-10 +for:0.20717931245404067 and:0.10885464832543405 to:0.0871065832111306 a:0.08679915501832668 :0.510060300991068 +and:0.012614801761879502 here.:0.009086303698270714 for:0.00398526900208844 is:0.0026219115605076527 :0.9716917139772536 +the:0.73672978643423 a:0.08750500772843078 such:0.049390269661903324 tho:0.028602915040150986 :0.09777202113528495 +and:0.3809195656209313 where:0.14742887106998168 of:0.10867644789890642 at:0.0708238616088739 :0.2921512538013067 +which:0.2148297828356331 he:0.1471393764846373 that:0.11896056679709392 who:0.07835593572323206 :0.4407143381594037 +experience:0.0670258368499086 advantages:0.032707948670586136 knowledge:0.012678566983141995 dead:0.007311514386527098 :0.8802761331098362 +the:0.9682773282012603 sufficient:0.018642974193550665 this:0.007750021318358023 any:0.0029292057861708765 :0.002400470500660064 +course:0.04119133260374483 school:0.028441121802144184 al-:0.028242248242170854 farm:0.02707396808130543 :0.8750513292706348 +He:0.15800566385928827 The:0.10554043874305447 It:0.08774222983046065 She:0.08433383681998648 :0.56437783074721 +make:0.08310916407811866 get:0.06910738881494005 provide:0.0569201464546448 pay:0.05673289179823844 :0.7341304088540579 +those:0.46694076933467005 men:0.34963262082654334 all:0.04630582311293973 one:0.015083817955539713 :0.12203696877030715 +who:0.04567035126145309 They:0.04268060552673081 It:0.04201096379392087 There:0.024890110975494446 :0.8447479684424006 +may:0.33817330165026604 will:0.15076007380000586 would:0.08129599297078374 in:0.06377817534470347 :0.36599245623424087 +in:0.21898598429107577 of:0.04630178674930886 In:0.03724204833872428 not:0.03681768095708546 :0.6606524996638056 +son:0.1149644708762286 price:0.08486616480741858 weight:0.05201116615982011 measure:0.03968770360826739 :0.7084704945482653 +and:0.7104825350548489 in:0.12497468841599402 is:0.1068604630463081 of:0.024185053247841422 :0.03349726023500757 +a:0.20417315273801667 an:0.1422462728080255 public:0.09382437103060468 the:0.0878263585239044 :0.47192984489944867 +of:0.22073717288968872 and:0.10840388313091012 the:0.03660150810525672 The:0.021761341369032752 :0.6124960945051119 +to:0.9304046080855379 his:0.020789400164069244 from:0.015168905778943911 at:0.00911455380095495 :0.02452253217049406 +they:0.0017835583031280454 in:0.0012363577542891925 who:0.0010049632343418057 and:0.0008430440988862043 :0.9951320766093545 +the:0.4733385434682297 a:0.14086246920281778 make:0.08382624944867584 declare:0.06540319128821329 :0.2365695465920635 +of:0.14620736645407084 and:0.11098805542094331 the:0.04338742689206965 The:0.030783626515386082 :0.6686335247175301 +were:0.21320126117231972 and:0.17086236941244107 was:0.16556216110098582 I:0.1385104520918702 :0.31186375622238327 +2:0.25435007599940057 6:0.11316783120277013 5:0.10048894020108945 4:0.07127568656372142 :0.46071746603301855 +of:0.025181033020465402 There:0.01913988018919387 tion,:0.010523669086113715 in:0.009855830604925508 :0.9352995870993015 +as:0.3866141573360496 a:0.12884178248809008 the:0.05233260709568047 think:0.04938395279749215 :0.3828275002826876 +of:0.23014980165926938 and:0.1009670592873052 the:0.08154281455913744 The:0.056686499744550915 :0.5306538247497373 +has:0.9088801539679988 had:0.03925210184415716 haa:0.007551339745328648 have:0.0035761456710600094 :0.04074025877145547 +not:0.26599598118724016 be:0.1402393407538718 he:0.13987874701024958 longer:0.12091557151762355 :0.33297035953101495 +and:0.12700571560380433 The:0.08041120337771736 to:0.06346437230426208 Mr.:0.06285986381296944 :0.6662588449012469 +corn:0.0852340886381167 oil:0.012087577127399692 papers:0.009500141599446595 vessel:0.008056779233003677 :0.8851214134020333 +of:0.6171778931467964 over:0.10899145797517738 and:0.04038796649457239 in:0.037407824425187294 :0.19603485795826633 +and:0.3752318129865929 in:0.14736692957282208 of:0.11727496362522999 who:0.09067448569417799 :0.2694518081211771 +organized:0.2437453114907938 discovered:0.09815165467698374 made:0.08517907819312699 adopted:0.08034089568572737 :0.49258305995336815 +the:0.7488319958979761 tho:0.0840032513199403 of:0.006681722619533584 which:0.006235069337370107 :0.15424796082517978 +a:0.5474074391185778 per:0.31960368063490835 to:0.05016772146600108 for:0.023021694639365157 :0.05979946414114765 +urged:0.5534539216347141 called:0.056882750107309865 acting:0.040657578105615926 that:0.029802265260436413 :0.31920348489192374 +such:0.7158726055686293 great:0.12013848336295499 good:0.03455215091965029 much:0.03017246395876218 :0.09926429619000324 +that:0.46576273785537997 as:0.08508342642966721 when:0.08322185965992386 then:0.07472717141159177 :0.29120480464343723 +Columbia,:0.2374024127022264 Columbia:0.18854044119135968 described:0.040268031839285005 established:0.021347506472321337 :0.5124416077948076 +he:0.19387904259058938 it:0.07096750475027543 yet:0.05238879510527998 who:0.05149226966899829 :0.631272387884857 +of:0.5656867582805036 with:0.25783651307674926 between:0.08917185235935167 and:0.01844264020948767 :0.06886223607390778 +two:0.07327612901189269 San:0.06276154454118184 other:0.059643596594850704 old:0.05489502980327536 :0.7494237000487994 +the:0.07223123633994 to:0.052550501861470776 and:0.031028500412589165 it:0.019350445484496666 :0.8248393159015035 +same:0.015625158090636426 case:0.012798819156615997 people:0.011531898517823998 law:0.010806172243548342 :0.9492379519913753 +ground:0.07416654411267344 surface:0.04404663938319713 same:0.028014190056095106 and:0.027410913084019446 :0.8263617133640149 +that:0.08982829083427704 the:0.05559039781717684 those:0.034404711205387135 a:0.03374801998535415 :0.7864285801578048 +of:0.43643496470817716 to:0.14665818161405184 with:0.08245643286147253 by:0.0554546576103761 :0.27899576320592234 +6:0.0036288637180879857 12:0.0022155428939839693 per:0.0006426913115415355 one:0.0005575299078571887 :0.9929553721685292 +was:0.38554580730122395 is:0.28908229117194423 has:0.07385754391626127 for:0.048777489257583996 :0.20273686835298654 +election:0.03595597369786523 distance:0.029642550162208733 State:0.02482810401981752 eyes:0.021632873869976255 :0.8879404982501322 +M.:0.028229835223543612 Smith:0.02765823338120611 Jones:0.027564379201819818 Johnson:0.0057159638794220665 :0.9108315883140086 +other:0.2083838724722783 man:0.13844103649393485 point:0.0949037821956258 other.:0.07130698821620378 :0.48696432062195727 +qualified:0.9384240195551926 required:0.008381859612356162 prepared:0.007143152242710289 necessary:0.0060994605635807 :0.03995150802616016 +turn:0.14504891297371386 eat:0.12807524314028923 learn:0.12092493999855429 be:0.11971484600034955 :0.4862360578870931 +that:0.7976518627172503 by:0.06938243885054445 to:0.06810385255386478 in:0.006447904298067535 :0.05841394158027305 +side.:0.34051202129969116 side,:0.27299440786209644 by:0.2221231339788609 of:0.03913151763274341 :0.12523891922660801 +and:0.522037030910502 who:0.18013925974113756 m:0.07599253036548072 the:0.05571884161710946 :0.16611233736577022 +kinds:0.3539845114829186 methods:0.28447125670864476 forms:0.011691183835556056 days:0.010095741855731434 :0.3397573061171491 +of:0.6063553312848117 and:0.1312622616897315 it,:0.08919202154305564 to:0.08077404259132562 :0.09241634289107561 +will:0.08811787512801506 to:0.05948232069253375 shall:0.04838988874382739 would:0.040667276011945 :0.7633426394236786 +time:0.019237506320239624 time,:0.017433747524806645 loss:0.007943531976503404 salary:0.00487041045843676 :0.9505148037200135 +the:0.19919639651206675 and:0.07866938918895261 a:0.07030085845887708 of:0.042621973367482704 :0.6092113824726207 +and:0.12085666515010447 to:0.09852476320241187 of:0.047447201689993494 the:0.04714867823187508 :0.686022691725615 +ac-:0.009742237275199092 mo:0.00044101321006544353 development:0.0003388392124695233 past:0.00032592657222779714 :0.9891519837300381 +in:0.7174240154823588 In:0.12146040261435859 to:0.07883633177222651 or:0.04726946955436418 :0.035009780576691935 +carry:0.2509984461829442 up:0.1005172827480142 from:0.09725718923371544 that:0.0914490375918167 :0.4597780442435095 +to:0.2310085447045465 and:0.14487276348682074 or:0.056617541501517044 the:0.05557227292736742 :0.5119288773797485 +in:0.11474505888626602 the:0.10891815611102937 a:0.09573384831908861 being:0.061144046324311516 :0.6194588903593046 +which:0.8924706118255026 that:0.02602975407430393 fund:0.01833589955751041 I:0.009292589400975385 :0.053871145141707745 +least:0.08782335421146494 the:0.05820969916511709 a:0.0554949923767262 it:0.0462169221528748 :0.7522550320938169 +of:0.9995249839458258 ol:0.00014545802654464151 to:0.00013074409173358345 ot:8.482641319330684e-05 :0.00011398752270245711 +plain:0.1611572031260011 executive:0.15731512588452126 general:0.05820957897806717 public:0.03803656418786123 :0.5852815278235493 +Mrs.:0.40757670683482283 her:0.3000343409019692 the:0.09909059529983595 his:0.09096354388993841 :0.1023348130734336 +lie:0.6084010948899466 if:0.10167257878697386 the:0.09002868206463205 be:0.07678786370608279 :0.12310978055236467 +be:0.7949672848458349 bo:0.158337557830093 lie:0.029833093342465738 le:0.002543511651424044 :0.014318552330182336 +tho:0.35918650518345896 in:0.2687609013181118 the:0.22213216996687501 said:0.13351244947038726 :0.016407974061167053 +ton:0.11045521528557886 there,:0.035853012218957085 due:0.00908480617235623 milk:0.008191999688816792 :0.8364149666342912 +and:0.04673511706044941 away:0.021201096649766573 feet:0.018424868359555875 out:0.01129120472950001 :0.902347713200728 +the:0.5514067256349076 his:0.16340862171571824 those:0.042661008402311046 her:0.039740069674345554 :0.20278357457271748 +the:0.42749974976856836 any:0.06199986779486778 a:0.056546907436366 said:0.03556130360817959 :0.4183921713920183 +with:0.312311331250603 of:0.07509947898908777 that:0.049841475465222836 and:0.04591233479686982 :0.5168353794982167 +the:0.4421152933675137 their:0.0795051488657414 any:0.039766085319669305 its:0.03747432975004981 :0.40113914269702583 +of:0.31529677114909027 for:0.2475172358024773 with:0.1754459839927303 produce:0.05610255300976518 :0.2056374560459369 +J:0.3336879010097306 M:0.17927443076314625 W:0.0937598267529152 G:0.07786624842083394 :0.3154115930533741 +war.:0.1503598400575638 Congress:0.03153036017398996 the:0.014566764407485156 congress:0.0030446685814229896 :0.8004983667795379 +of:0.7449378811800926 from:0.04923498962563032 in:0.042219967367596256 with:0.03573479173268059 :0.1278723700940001 +and:0.15609325746030137 of:0.10513245804862 with:0.0815573736615061 the:0.04247278809811251 :0.6147441227314601 +that:0.9021656224344474 but:0.0782105876943608 when:0.004140222842982302 how:0.002955177086215829 :0.012528389941993612 +the:0.24228303514957344 our:0.10534624942614387 but:0.08047042438194502 to:0.05794917912986449 :0.5139511119124732 +and:0.2594828845238604 to:0.06694226538850588 the:0.03326307575910165 of:0.03173821141553416 :0.608573562912998 +necessity:0.12181566066211139 board:0.05167864922240338 road:0.05042819725715938 demand:0.03657664326357698 :0.7395008495947488 +in:0.5949994203943213 In:0.18174738511966027 with:0.09579197237984355 without:0.06373224432418811 :0.06372897778198688 +would:0.549110992749891 will:0.23852885607323915 must:0.0738972084422267 may:0.04365142688883985 :0.09481151584580316 +than:0.33816380878622443 in:0.18054560986441426 work.:0.03657770842835262 the:0.014106690107078792 :0.4306061828139299 +as:0.22556547524783135 and:0.20157835972742064 to:0.19333498818225742 of:0.16548312244239727 :0.21403805440009332 +and:0.17378974518819273 or:0.15730987488830314 of:0.11539680968192054 the:0.040107154559238196 :0.5133964156823454 +was:0.6458571040838743 is:0.21337970109270402 are:0.06123892092282116 were:0.059961359444923035 :0.01956291445567751 +his:0.6091475790920493 the:0.14422251752265255 other:0.07262425011930325 a:0.03557442295284751 :0.1384312303131474 +mortgage:0.04502689379970312 written:0.042369941433713594 own:0.032544613021792845 duly:0.018338641945218108 :0.8617199097995724 +asked:0.5617510474572879 heard:0.20113065895954196 seen:0.06330265950457305 hoped:0.03283623590860036 :0.14097939816999672 +the:0.6403612422888111 of:0.038762449176154234 other:0.03384346541710118 tho:0.031746993235284265 :0.2552858498826493 +is:0.6566395536761446 was:0.30219631460154506 Is:0.015431072890371236 are:0.001941382660455451 :0.023791676171483693 +river,:0.0029198234089347483 Island:0.002881812883021674 Council:0.0028709141005211075 Court:0.0020716727174418066 :0.9892557768900807 +country:0.3905976244515701 had:0.05488575040676889 treated:0.046422817277018136 said,:0.042207871441209785 :0.4658859364234331 +and:0.04284126296740272 an:0.03948394584257474 of:0.029869508986877638 -:0.022656669304577222 :0.8651486128985677 +the:0.4911077883131985 of:0.3289682515320147 by:0.08416517116484877 at:0.06633747737104258 :0.029421311618895416 +and:0.2613095730506803 the:0.07829523248374382 of:0.05576409517514425 to:0.04036152340929522 :0.5642695758811365 +the:0.2591274412224598 of:0.22396519633858852 caught:0.12300753320959355 by:0.1177803716236282 :0.27611945760572976 +time,:0.10977032614500985 time.:0.06866982618765897 time:0.044434584079773486 of:0.02586365474073592 :0.7512616088468217 +and:0.339313346051066 on:0.16671809111589736 in:0.15082162650876155 of:0.1298995528172856 :0.21324738350698952 +his:0.16539795266047055 the:0.15484597739644268 great:0.09739661893540193 a:0.07373377260943045 :0.5086256783982545 +part:0.04480499056546167 ground:0.02432211727914627 bill:0.022812511165968215 stomach:0.016768778348674206 :0.8912916026407498 +of:0.14750626801552727 and:0.10983699301371537 with:0.09307899942080589 in:0.09115656817404036 :0.5584211713759111 +law:0.027482844721897298 kind:0.005588004250810767 able:0.005240549956113493 earnest:0.004400547460706257 :0.9572880536104722 +and:0.17452502692142535 of:0.1471822183870639 is:0.07701543031250283 the:0.052999907088785346 :0.5482774172902226 +rise:0.10812853046756342 build:0.043099666105823255 take:0.04042514507655195 give:0.01747891191779022 :0.7908677464322712 +he:0.5758382397461306 which:0.3021106436957742 now:0.051880410832939046 they:0.019701581446173975 :0.05046912427898214 +class:0.007787275449788161 2.:0.006548302100178746 j:0.005482192322552468 the:0.004824619917929141 :0.9753576102095515 +appropriation:0.26324366094109714 order:0.05108601357925891 in¬:0.03743147593797596 ordinary:0.03244374675783103 :0.615795102783837 +of:0.6233325554705504 to:0.17056734679599614 for:0.08127743325654371 in:0.04529128055251351 :0.07953138392439618 +native:0.33605879145370265 own:0.10698248387741992 adopted:0.0911302229502839 home:0.07477143986751084 :0.3910570618510827 +weeks:0.08004787055147626 men:0.07365820778329846 different:0.06711291871000154 feet:0.038298491758640855 :0.740882511196583 +be:0.8552501796515529 bo:0.1329946474168053 ho:0.003712843477343224 resolution:0.0020598233669174484 :0.005982506087381188 +was:0.19715999871974968 and:0.1905492056155893 as:0.10909335218866548 had:0.08768699821966933 :0.4155104452563261 +Old:0.21912658122820292 and:0.029173955750218736 the:0.0274121999839638 Boston:0.021000016926639033 :0.7032872461109756 +appearance:0.19849035766006187 study:0.09489416329655291 strength:0.09215711809169422 right:0.08562399548803484 :0.5288343654636563 +on:0.4114413833195367 of:0.16868734902747642 in:0.12901326940307473 On:0.06640840844520328 :0.2244495898047088 +not:0.21371303255374133 the:0.16261255292438526 be:0.15010189353485812 those:0.09053740403855993 :0.3830351169484554 +we:0.012643437156842992 will:0.010152703758756468 the:0.006508685533920799 wife:0.004430701639422802 :0.966264471911057 +I:0.19544736713394043 Its:0.10504829898479597 up:0.04250619739748061 me:0.029731385661391652 :0.6272667508223913 +of:0.6317024664471576 and:0.11015020189878827 to:0.08375438088597666 on:0.04928102373923368 :0.12511192702884386 +we:0.7522113561908776 I:0.15083306827737777 they:0.01905189854447631 1:0.0188814512878541 :0.05902222569941431 +to:0.2613928477537353 To:0.11595864419944588 of:0.10251938379173554 and:0.09907369776804045 :0.4210554264870428 +little:0.7620566144018305 own:0.05144631417072034 the:0.00549393210426032 new:0.004126995687953616 :0.17687614363523538 +and:0.14421186869836067 of:0.07301280713740173 in:0.0404089237914191 says:0.031200236088640598 :0.7111661642841778 +in:0.34683540401750246 of:0.23292583418283175 to:0.08644644861952362 In:0.0779626728836126 :0.25582964029652955 +the:0.2654842461994682 and:0.11956716464725256 The:0.08096654467288238 of:0.06249806617429717 :0.47148397830609967 +Street:0.0357708676934815 street:0.03505322197463055 avenue:0.015583196877584936 and:0.013956528088262908 :0.8996361853660402 +and:0.2338554909665692 It:0.09683384249727421 justice:0.08062808601384237 We:0.07690688434762138 :0.5117756961746929 +points:0.5031382276887811 extent:0.025966785763277003 things:0.00850774429529461 property:0.0061552493120023985 :0.456231992940645 +and:0.13201067872004255 of:0.11705120008983692 the:0.060009039550058714 its:0.04940328095877824 :0.6415258006812835 +the:0.5213265275213391 a:0.19067660319282803 his:0.03820025107344819 an:0.02622078524358542 :0.2235758329687993 +share:0.0611895269601193 vote:0.04586952834566244 proceed:0.03236059065907216 maintain:0.028985166850951694 :0.8315951871841942 +belief:0.05562872281801805 only:0.051614210112266294 dollar:0.0483208891482133 lives:0.030357016819686923 :0.8140791611018156 +state:0.06280519948096498 world,:0.05663390310585146 place,:0.04110988874809678 city,:0.03229874949233478 :0.8071522591727519 +Court:0.04060692552009248 be:0.022817293479985484 Judge:0.019600320975888708 Court,:0.019276729502098123 :0.8976987305219353 +shall:0.5658695311562365 Council:0.23516184847482793 may:0.08003309413942274 and:0.015418702429481798 :0.10351682380003104 +His:0.20079573371240794 his:0.1417653062743667 her:0.13572628142927326 whose:0.11266778594567509 :0.4090448926382771 +the:0.26678137026518084 ble:0.03987678090994883 an:0.024300634812107053 large:0.023268299755300363 :0.6457729142574629 +is:0.8304437112757236 from:0.08098915973883453 when:0.042948667893692775 had:0.015317863438189876 :0.030300597653559153 +the:0.9732274332509683 tho:0.010808259176946713 close:0.0007117091467187414 her:0.0005050933555268727 :0.01474750506983939 +and:0.045459062071709286 out:0.03018512405954891 favor:0.022368895039921316 or:0.01672439440029158 :0.8852625244285288 +and:0.06287990051672858 to:0.05817519817920893 of:0.05306603371104698 .:0.04951833046094988 :0.7763605371320657 +so:0.022287178978796 as:0.01627217738578858 pleased:0.011797895347944651 and:0.004111727441224321 :0.9455310208462464 +fire:0.11659829171079125 safety:0.04481052217933959 than:0.0029791012315737234 valuable:0.002587336575590627 :0.8330247483027048 +among:0.49897252649054163 between:0.4533418612621295 and:0.013988592652472504 on:0.008944581497703784 :0.024752438097152447 +said:0.15806652696031032 same:0.03260600623123113 of:0.028238986033621113 domestic:0.027018504983243874 :0.7540699757915934 +of:0.6315536656741424 in:0.06963598599935412 or:0.04511265262005038 ot:0.04217108803057866 :0.2115266076758744 +Mrs.:0.25191354137011973 the:0.23326747661436004 Miss:0.14689870955371961 a:0.05700851346648654 :0.31091175899531415 +the:0.5349116658778184 this:0.16268941241977927 these:0.11669493325784497 tlie:0.06625838851654405 :0.1194455999280133 +man:0.12248439953792817 men:0.09750605376321424 and:0.0888275781009211 lady:0.03730039662641335 :0.6538815719715231 +first:0.024938783880512554 ':0.018933709431344783 old:0.01508644578569619 of:0.010927792644733732 :0.9301132682577127 +was:0.0594916656604039 visit:0.03978044195857194 years:0.028912834236906913 that:0.027301567003816463 :0.8445134911403009 +County:0.5102428974630674 estate:0.03503029837537781 lands:0.02752159143281402 property:0.01545375474254821 :0.4117514579861926 +was:0.39272608602681014 is:0.38976335321132155 conveyed:0.0840904957782239 Is:0.021389745767494417 :0.11203031921615003 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +part:0.3972149003188783 truth:0.15232914362290734 return:0.012304131473608742 sale:0.010860248425853628 :0.427291576158752 +the:0.8513585980701257 their:0.0946181918601646 tbe:0.02254349563124237 your:0.014531348219213886 :0.016948366219253327 +child:0.9917776839241282 over:0.002355395006258037 boy:0.0009953381576157509 after:0.0001369269463326303 :0.004734655965665404 +of:0.12072659685619108 and:0.10010934419310764 to:0.07268770477160004 the:0.042835568484037904 :0.6636407856950632 +of:0.6859734168696205 the:0.07009658406197783 and:0.05603559961340412 cf:0.035619245264670675 :0.15227515419032694 +of:0.9879289186667546 ot:0.003381350001283145 day:0.0006306963222734492 who:0.0004239489277163012 :0.007635086081972398 +and:0.03750800552202777 Wilson:0.002209358461820018 Smith:0.0020506179293646484 President,:0.0020175892457404213 :0.9562144288410471 +of:0.046620834610919606 wire:0.03778642030895443 and:0.030682561996478275 in:0.01756764124447705 :0.8673425418391706 +should:0.6668021425864852 will:0.1382468188837829 shall:0.08305913603692773 to:0.0671891382841028 :0.044702764208701555 +the:0.39818885936095794 turn:0.14853977780517288 order,:0.09014427126330814 a:0.05108336218072858 :0.31204372938983255 +complete:0.07347124163411277 make:0.058105345577498 get:0.05587105422210175 open:0.04590761442007301 :0.7666447441462145 +York:0.7319507480774058 England:0.09908768092322477 Jersey:0.05399447602649657 York,:0.012067905408120638 :0.10289918956475216 +in:0.4343094148057197 the:0.15468418140318727 when:0.14730969557592322 said:0.10430704839874744 :0.15938965981642236 +to:0.47619236708845913 and:0.19134116012333582 the:0.09106448005136218 will:0.07387162632039951 :0.16753036641644334 +of:0.07151105155830723 war,:0.03989480528852414 things:0.026173688997615165 the:0.02615209555197858 :0.836268358603575 +from:0.36561265307855073 in:0.3381812355339905 with:0.12155507780618832 and:0.06979174962017058 :0.10485928396109984 +A.:0.5288239297295542 .:0.04062634494505438 J.:0.014441926928089674 W.:0.00904254815790313 :0.4070652502393987 +now:0.5701390721316293 see:0.08960917313593005 us:0.030721774771718485 know:0.024203158432665208 :0.28532682152805694 +written:0.16113291499243648 and:0.07071460060293239 served:0.035446853927558926 recorded:0.016563051395555806 :0.7161425790815164 +they:0.38635512764453284 not:0.26586734093804076 at:0.06991835561662908 without:0.06268964038745342 :0.21516953541334383 +the:0.4182617346090562 September:0.3297220328650847 each:0.1242550539889805 tho:0.05737189192646053 :0.07038928661041806 +each:0.6495576957011359 the:0.13700724158913594 In:0.05249913970680066 any:0.04656020642439983 :0.11437571657852762 +how:0.24192417772021194 enough:0.17259215364326785 nothing:0.008076228141535588 him:0.006020758221773941 :0.5713866822732107 +life:0.0791236673275377 fact,:0.07109003860735782 which:0.018747360866343547 this:0.017807206186994728 :0.8132317270117662 +I:0.30860423650375135 We:0.13782136944152093 would:0.12784899897473054 we:0.12528112448278994 :0.30044427059720713 +ties:0.2837827739566949 tions:0.09489490025240649 s:0.06970946024030363 part:0.03485416161997503 :0.51675870393062 +down,:0.9340894264323241 ground,:0.021404307947787173 down:0.01664869864290414 up:0.008682049405863436 :0.01917551757112108 +and:0.02977360556005525 .:0.023257159607723277 term:0.009920416218441745 ,:0.009882631073691221 :0.9271661875400884 +it.:0.02542029363650569 not.:0.01954677774759597 so.:0.010429740528370526 it:0.008279214194384103 :0.9363239738931438 +certain:0.7382865760618907 required:0.14814637591161614 needed:0.04630536074797898 clear:0.034439144832476024 :0.03282254244603814 +the:0.6498334908610491 of:0.13817991809586666 as:0.07165219040598657 adopted:0.06380132074690995 :0.07653307989018772 +the:0.23432446712407473 and:0.10868070091064973 that:0.09384688636726705 to:0.059584121361081585 :0.5035638242369269 +and:0.17649137640901502 to:0.09356566139328203 the:0.07688354170428624 of:0.05023160543868265 :0.602827815054734 +been:0.45728722646406794 a:0.22373745043309817 the:0.05898180331146861 never:0.053488734016550736 :0.20650478577481443 +tion:0.044196149910855166 part:0.026357894434855637 of:0.020553536128738985 object:0.019124042015588098 :0.8897683775099621 +a:0.7758821403331517 the:0.1706040563495518 tho:0.021187904766222607 some:0.011338934262029138 :0.020986964289044886 +for:0.5391674097676239 sure:0.11782168893755349 of:0.018722728544010938 at:0.012045601951957325 :0.31224257079885437 +from:0.7382923028470854 little:0.03694540869540699 a:0.034162950972575185 about:0.003877668103395256 :0.18672166938153742 +to:0.32420322875649055 with:0.3085722662858887 and:0.06405212529529455 down:0.0445799619172753 :0.25859241774505076 +and:0.04304987695557513 made:0.03647826099986497 ed:0.024104519096038106 caused:0.013892634764098091 :0.8824747081844238 +fairly:0.8588876790833477 the:0.046097850774611114 it:0.017338274263389193 she:0.012752741180342269 :0.06492345469830978 +of:0.0903157567809129 and:0.08096832847573562 the:0.0633048154962868 to:0.04469242430654311 :0.7207186749405217 +a:0.03151697732477774 the:0.02853304018844721 in:0.026748735961890882 of:0.02053703232043832 :0.8926642142044457 +the:0.3259701415581142 and:0.2359828259933015 of:0.09596035802233978 The:0.05876983925455946 :0.28331683517168504 +now:0.2468759545080719 not:0.10827430473063118 kept:0.08189394792114586 all:0.04002196918292243 :0.5229338236572286 +of:0.21341042190985848 and:0.10256468472322845 the:0.04821583552626247 The:0.03164818146715236 :0.6041608763734982 +and:0.27096500346940844 that:0.1936980014090398 but:0.15857765381198144 as:0.10581883804505318 :0.270940503264517 +the:0.03892817568592419 in.:0.027712010452295273 it:0.009050376459792696 he:0.008349187118346297 :0.9159602502836417 +of:0.7449890822523029 the:0.03476847095232545 and:0.023856180098936544 T:0.01937665211124964 :0.17700961458518572 +us:0.08655188590562454 him:0.06507758171805365 them:0.03273031397343048 me:0.03124850589811367 :0.7843917125047777 +one:0.7612598961513639 ono:0.19820399375810077 two:0.0022349723991130976 One:0.000273494827285744 :0.03802764286413641 +the:0.7119851409622483 tlie:0.21241271588935914 tho:0.016445251211785906 tbe:0.014067264947674895 :0.045089626988931764 +thousand:0.5549704244482652 hundred:0.41807188352092456 million:0.00036509391669251284 millions:2.0284104646530794e-05 :0.02657231400947118 +j:0.017570283512527787 be-:0.002616688964042862 r:0.0023327629115114127 in:0.0014830308916387806 :0.9759972337202791 +and:0.09346504062546852 together:0.03250976277091247 it:0.020322362749581165 him:0.019588725652644697 :0.8341141082013932 +old:0.4140951193532374 summer:0.3644216292241638 way:0.06908693094080941 own:0.007086928448344205 :0.1453093920334451 +Co.,:0.04601424777823325 and:0.015871233334473735 Company,:0.0029926451496191256 bill,:0.0025808093218642365 :0.9325410644158095 +":0.09283477781118346 ;:0.022494430340817183 none:0.005928793499223452 Let:0.005627402222330476 :0.8731145961264455 +of:0.10648852498152225 and:0.09808847014941846 the:0.042037713305723486 The:0.025438590309612062 :0.7279467012537238 +that:0.4526552042111461 and:0.19544504209286664 when:0.0961926350586569 as:0.04153813099560963 :0.21416898764172082 +is:0.4937464238428457 was:0.2367512804003157 and:0.07975301117112091 already:0.07395734964126412 :0.11579193494445351 +did:0.315386267899467 this:0.07684163636043016 might:0.06326706309895648 was:0.040344935062207196 :0.5041600975789393 +used:0.2899296310099479 fully:0.10051747641889235 up,:0.05118334420588479 away:0.04739178682890293 :0.510977761536372 +bonds:0.8340457186913774 object:0.004978261222647376 good:0.0026238641074795297 will,:0.0018966033189044996 :0.15645555265959116 +the:0.3441712549717422 where:0.06097665966087524 will,:0.05019868310940672 that:0.04968740001802207 :0.4949660022399539 +and:0.13620006705502125 the:0.10684696611425627 of:0.0793697690612727 The:0.052546971277633595 :0.6250362264918162 +the:0.45806667853525357 tbe:0.09172964183980196 them.:0.039969973945594484 age:0.021727192153953336 :0.3885065135253966 +members:0.03742160363469271 seat:0.025413240470152032 power:0.02360498575328076 attention:0.016429324303302482 :0.897130845838572 +as:0.016235903978394122 recently:0.01312911176660281 the:0.005178337926242425 to:0.005144690448439224 :0.9603119558803216 +the:0.4937921631287268 a:0.056009168949824606 his:0.03284816840820896 their:0.02944258859048616 :0.38790791092275345 +have:0.406531307771205 had:0.2159082642619885 has:0.1672315370544535 also:0.04174528127126144 :0.1685836096410916 +a:0.10341587316774566 power:0.10000728252280484 right:0.08693320855068684 power,:0.054400907306627326 :0.6552427284521353 +and:0.25372216781119145 who:0.14484599735439202 which:0.1098949960145505 ments:0.07586826282634937 :0.41566857599351653 +in:0.2776033874224046 with:0.249980857152209 on:0.24793429902521463 and:0.11992984881625342 :0.10455160758391821 +be:0.37398876790127505 before:0.3259478820002034 having:0.12151404949477224 so:0.03667188436338854 :0.14187741624036082 +another:0.13419073362160228 and:0.07844670872921036 &:0.06918686120120561 at:0.06801343477665685 :0.650162261671325 +express:0.09319038913022581 do:0.0904962008198827 give:0.07029108970397846 make:0.06119547636951092 :0.6848268439764021 +south:0.5804650385194863 north:0.4106338964568897 north,:0.0044969918141700635 South:0.0024355297012112116 :0.001968543508242781 +in:0.892157377429457 by:0.037801835221330994 a:0.030112704087250343 the:0.005782352237786381 :0.0341457310241753 +Railroad:0.7312442009373202 Mining:0.00591428258357102 road:0.0016200097097133145 ment:0.0014125554200970878 :0.2598089513492984 +he:0.17624984549173325 She:0.1080886779563413 I:0.09582894029577471 He:0.08899688726549332 :0.5308356489906574 +execution:0.066626654438175 year:0.06530420766907646 sale:0.026475214002077873 first:0.01721726538662724 :0.8243766585040432 +and:0.3839579763783206 were:0.15319612148764503 in:0.09268599840255873 was:0.08443905593827074 :0.28572084779320495 +and:0.19670959253427978 of:0.18551091549389864 the:0.041825495048133966 in:0.03565018938804438 :0.5403038075356432 +he:0.2701617830139315 the:0.23388548509738258 a:0.1314564558596127 it:0.11167189268215964 :0.2528243833469136 +the:0.5671605887680985 all:0.20911868849808354 tho:0.1260955855555241 current:0.029873444651791904 :0.06775169252650196 +the:0.15762841473008735 bread:0.08923437892365015 which:0.018781975312549617 they:0.012515679069503708 :0.7218395519642091 +J.:0.2637727952516215 W.:0.14021448097097822 C.:0.13506174618652922 H.:0.10825034833474582 :0.3527006292561251 +bo:0.24802528804337232 be:0.2299937016656541 not:0.15282542713556294 have:0.0968896253056227 :0.27226595784978797 +payment:0.025081064876330415 action:0.02239571189536636 attention:0.01825604382297633 people:0.016949189342120818 :0.9173179900632061 +and:0.19343904000105008 of:0.19225834043565515 at:0.05545038499696865 in:0.05442190296553871 :0.5044303316007874 +of:0.6080656422867143 through:0.0320795653273448 a:0.02260977211016121 what:0.021019378154417425 :0.31622564212136217 +is:0.9524912131495421 Is:0.0051590202680904945 was:0.0012980318815321757 will:0.000960812174466722 :0.04009092252636841 +it,:0.27957210375846736 this,:0.014150655045174916 anything:0.01177509603492445 it;:0.01148529349715207 :0.6830168516642813 +by:0.26743202217167855 That:0.23392114109298057 to:0.18255973894507735 of:0.17356546576607 :0.1425216320241935 +the:0.22646792640981678 to:0.021431594160190318 lo:0.009114695002393385 of:0.00814233780588934 :0.7348434466217103 +we:0.27434940279459485 they:0.21903787239640304 I:0.19782751749510777 would:0.17491638878343754 :0.1338688185304567 +notice:0.29711392791868607 city,:0.08874894690694235 contract:0.008861789159048658 suit:0.002444025726208561 :0.6028313102891144 +by:0.2007468035412503 with:0.14665454689189086 and:0.13858539777382609 to:0.12389764493805253 :0.39011560685498015 +day.:0.059239372505819614 the:0.020310314406884182 others.:0.018746675601794403 of:0.017508156307929883 :0.8841954811775719 +country.:0.02625480357237626 world.:0.02001716808196877 city.:0.016071088170038845 people.:0.01491490952325189 :0.9227420306523642 +were:0.659919265570213 be:0.10672813841546275 was:0.05224566248313363 is:0.04859448534099698 :0.13251244819019367 +of:0.14642202604484147 the:0.13106479447904967 and:0.11328873119954103 a:0.042537457152899735 :0.566686991123668 +and:0.0584155836727771 Court:0.04302496469616195 of:0.03286016535802236 required:0.02510990053126597 :0.8405893857417727 +not:0.20782535396120494 introduced:0.128529897123778 taken:0.06585915506795308 being:0.04318683916081785 :0.5545987546862461 +most:0.1429589386589401 best:0.07389313329815866 great:0.03958442330580439 greatest:0.03874741840440984 :0.7048160863326871 +the:0.4343826493693489 this:0.33000321932781346 said:0.13453052805171678 a:0.05224758584823458 :0.0488360174028863 +af:0.524743807128305 of:0.26104709381933955 high:0.09224206340777154 that:0.075933774706308 :0.04603326093827592 +caught:0.5263642581122103 made:0.23987685232611322 placed:0.09901986613010237 engaged:0.03322714756655643 :0.10151187586501766 +feet,:0.7236583628779754 feet:0.201871166543092 chains:0.006417123144563535 acres,:0.005000173131076944 :0.06305317430329213 +the:0.8661147318607153 tho:0.022491488891728445 be:0.016546051761643206 tbe:0.014551095790265917 :0.08029663169564698 +return:0.2744413450071509 reply:0.08281469457351703 answer:0.07300063881517473 pro­:0.04400255630224253 :0.5257407653019149 +miles:0.13569573251137715 feet:0.0345053590956356 children:0.03347900845164033 times:0.025832824566847223 :0.7704870753744997 +is:0.6982857419139008 Is:0.13602074033609185 was:0.0957977524922523 ia:0.027088340430416465 :0.04280742482733856 +to:0.9880540141703626 and:0.010295741246445068 for:0.00035388741083800624 against:0.00011993436888011685 :0.0011764228034739084 +This:0.21573132391853378 and:0.2041528728280544 which:0.10664075534375193 I:0.06411082920743263 :0.4093642187022273 +and:0.8831584652003232 that:0.021356646504214656 means:0.01512850143300857 of:0.009266746487458226 :0.07108964037499542 +and:0.17181710392613778 the:0.12605506207692646 to:0.0858914970341913 a:0.0522492980260032 :0.5639870389367412 +He:0.17121304404397628 was:0.15524135647932308 who:0.14720981408703557 lie:0.13531006517984678 :0.3910257202098183 +and:0.10435328569230395 ,:0.09896024769797213 that:0.08450279046357534 who:0.04588898193678693 :0.6662946942093617 +be:0.29499175310304404 have:0.033738617325940766 equal:0.03313671588794234 not:0.02713024669118887 :0.6110026669918841 +do:0.06453223444728602 and:0.056843964408236636 the:0.027550648130796156 of:0.021225308477159217 :0.8298478445365219 +is:0.08462663307558897 Paul:0.04061284741736315 of:0.030226168921867674 Louis:0.007355202732204754 :0.8371791478529755 +Young:0.11792639124718458 New:0.0370166385980511 National:0.035341041722358336 old:0.028839136573479744 :0.7808767918589262 +suggested:0.797473790139082 found:0.06903306672791254 thought:0.03915863216360633 all:0.014458072631080954 :0.07987643833831819 +the:0.4121612516596759 every:0.19877998753757772 this:0.05691451810541264 other:0.048756110293926964 :0.28338813240340677 +only:0.568302776211888 alone:0.026090693872387098 look:0.015701310585517846 lost:0.01053782449970117 :0.379367394830506 +came:0.1425463088817926 went:0.11905114751396663 go:0.06462532403137808 is:0.0616497190640012 :0.6121275005088613 +is:0.8589475901007396 and:0.04246031174677796 was:0.031128426500953033 Is:0.01816732768854541 :0.049296343962983956 +not:0.16400871291558491 being:0.14235910048943368 hereby:0.10095588077564069 so:0.09796754685741553 :0.4947087589619252 +the:0.5695056305624573 two:0.08005546484559577 his:0.06723586939858767 its:0.06387537251639448 :0.21932766267696485 +extent:0.02553223659912603 satisfaction:0.025333199797957947 people:0.022652017588947373 top:0.022247292687900086 :0.9042352533260687 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +as:0.40049388987944384 is:0.17138954443125148 like:0.15417622834582856 man:0.13916700337423465 :0.13477333396924146 +D.:0.3699808502029287 G.:0.13756739372028598 A.:0.10808537722604913 H.:0.1049437687592277 :0.27942261009150854 +been:0.42774992979539017 not:0.08062198889763739 just:0.05438049078787607 fallen:0.05043858697195277 :0.38680900354714354 +child:0.1659441274960069 commission:0.08469431034887459 right:0.07387555433577626 resolution:0.057639018978568844 :0.6178469888407733 +had:0.3548837974161941 first:0.1380659503677239 have:0.12151774065332634 thus:0.05896618432089516 :0.32656632724186047 +of:0.716582828680435 to:0.05455192245778384 in:0.046851854880431594 for:0.04470302847039439 :0.13731036551095516 +same:0.027330855825365152 the:0.016204622126640533 ex-:0.014536699430654476 next:0.014175109135787045 :0.9277527134815529 +that:0.4533567736301656 as:0.059959455607535614 and:0.044400512773283905 when:0.03311640765878572 :0.4091668503302291 +and:0.20895118735119633 to:0.06398163262787404 which:0.042051921881802935 Mr.:0.036308019171560915 :0.6487072389675658 +to:0.9678412137904877 lu:0.0008134891479010339 will:0.00031847742798519753 not:0.0002471558532287292 :0.03077966378039732 +degrees:0.33601081708181285 3:0.03014930812063133 deg.:0.009614489991469032 30:0.008269369757775027 :0.6159560150483117 +for:0.34015029716275386 After:0.22541571468580016 where:0.12496066193426071 of:0.07911081263635529 :0.23036251358083007 +The:0.03959250892260397 He:0.021424338457856365 the:0.01906436258582599 head,:0.009737762002062458 :0.9101810280316514 +a:0.43013872830926925 six:0.19055365356577983 7:0.1481956722027022 fifteen:0.07522534280464847 :0.15588660311760022 +wife:0.11337693807328753 are:0.037014605268300735 is:0.025315977360986938 boy:0.01967860692966205 :0.8046138723677627 +on:0.9359961492276758 that:0.03400523290865368 of:0.011502972490702184 and:0.007989274562581633 :0.010506370810386542 +the:0.7421313823171122 was:0.13888789927949813 tho:0.02124877777782571 a:0.014512075539458415 :0.0832198650861056 +northeast:0.022792726788500865 northwest:0.02173139137191602 southeast:0.015643306596433336 senate:0.014841689448825432 :0.9249908857943244 +York,:0.030773448323115342 Columbia,:0.0015780821334119035 Washington,:0.0005775843751630973 the:0.000377796015579607 :0.9666930891527301 +and:0.022030846561823813 .:0.01731575371254021 of:0.009481799354523255 county.:0.00816458040262999 :0.9430070199684828 +which:0.07809585263178785 March:0.032072782305504866 and:0.013204652229008395 peace:0.01287455099475443 :0.8637521618389444 +not:0.4018381785604641 known:0.20104150846588378 second:0.1101078486148313 the:0.06996130440887333 :0.21705115994994753 +to:0.9072291267329021 with:0.07579517513427575 is:0.00593576024584062 The:0.002633461529195836 :0.00840647635778564 +entire:0.08145449197938755 public:0.04366355703032947 upper:0.03889546693526973 river:0.02285061232002946 :0.8131358717349838 +of:0.11945946255468765 and:0.11433812625466608 the:0.07943548080103169 to:0.04397597849243917 :0.6427909518971756 +of:0.8010909918993936 ot:0.02892396460968111 o:0.0030300758807164877 An:0.0023950908616762823 :0.16455987674853248 +large:0.36568351071790656 good:0.2383753004962002 fine:0.23660352702126564 splendid:0.01398233450349057 :0.14535532726113715 +the:0.08623319103302228 at:0.07354796282976021 as:0.07025836300287218 and:0.06763276005215962 :0.7023277230821856 +a:0.5820589140369353 been:0.3451214771212049 had:0.030606324373814053 known:0.015299901902215703 :0.026913382565830053 +the:0.4001584252483969 a:0.03701858316158591 his:0.028107741948594996 tho:0.023523787367868126 :0.5111914622735542 +did:0.34265550674335693 is:0.19011329030629703 are:0.1434376429119732 could:0.09761486417737812 :0.22617869586099468 +way:0.06964455407359642 serious:0.05150907373647029 was:0.04982177338672535 is:0.037196203152972805 :0.7918283956502351 +the:0.5667484869288507 his:0.23319578822299566 be:0.05059758926239144 a:0.03546617011628836 :0.11399196546947371 +the:0.4685438107622366 and:0.13501663858879306 a:0.11318204880236919 ing:0.028073069313391347 :0.2551844325332098 +heavy:0.04774814680415172 few:0.039525521336765936 large:0.035306352167575814 good:0.029369403232880436 :0.848050576458626 +with:0.12560610868123734 in:0.09273573580580054 as:0.0846211469868536 for:0.08423942439370485 :0.6127975841324037 +one:0.07357055158134403 One:0.0067090434729040185 Many:0.004642431279019459 all:0.0028228366264426465 :0.9122551370402898 +rather:0.3255611214633431 more:0.2733945206421991 less:0.03357266988295636 other:0.024289063284960045 :0.3431826247265415 +each:0.4453300928106576 not:0.12293342455248465 in:0.10237800194571435 that:0.09536879138378854 :0.23398968930735475 +the:0.18319636927837368 a:0.09812054071029536 not:0.08271300890498892 to:0.044089286292647356 :0.5918807948136946 +the:0.20276324632465523 their:0.012875425214965283 White:0.006451919494334224 Grand:0.004437723035629109 :0.773471685930416 +he:0.18881360054180518 that:0.12471040680590671 who:0.10306388619517744 she:0.07924394244444308 :0.5041681640126677 +square:0.20103284049315262 thousand:0.05234249780426521 of:0.04499121747402732 six:0.03476133272576696 :0.6668721115027878 +heavy:0.033615501761276534 of:0.0016321960937870066 cor-:0.0007799972938013128 con¬:0.0006464653938745267 :0.9633258394572607 +the:0.6374248789486361 a:0.050634554766171784 it:0.04161628072190105 tho:0.0354076036703728 :0.23491668189291834 +of:0.17286824365510858 water,:0.1051226685810276 other:0.01702596555897809 mine:0.015694203936534413 :0.6892889182683511 +.:0.7870880077170432 been:0.032361985432639157 be:0.018292524492465708 -:0.005747903668301477 :0.1565095786895504 +that:0.10542857131560562 but:0.07090547629731327 in:0.06591595059610172 of:0.050011226670903124 :0.7077387751200762 +of:0.2530523279780698 to:0.14696974308352692 in:0.14259748188543278 and:0.1028707330511603 :0.35450971400181014 +being:0.1644441506039192 is:0.13668901228813587 been:0.11884492297813776 and:0.1000484606829832 :0.47997345344682407 +ou:0.16625740640041478 a:0.14781941921171018 .:0.047297611212572435 And:0.03483585430167951 :0.6037897088736232 +it,:0.039068634443109665 Mr.:0.035742349327348544 you:0.009010510460721323 he:0.006105699906556902 :0.9100728058622637 +and:0.11519527668601766 was:0.04119494604068314 can:0.02439638943714402 that:0.02364502581367482 :0.7955683620224804 +of:0.9509805489965373 ef:0.014368330856458379 to:0.009614662960576835 along:0.007732384330242443 :0.017304072856185033 +and:0.044340315049681174 to:0.02794688379260963 here.:0.020104570661900564 tion.:0.01392048641952961 :0.893687744076279 +not:0.5368610746353887 to:0.14891438595702983 ever:0.041649275389132705 probably:0.03488788923385885 :0.23768737478458987 +of:0.36127353758318215 to:0.17327301232678213 in:0.1517784188902138 and:0.10123309769177402 :0.21244193350804783 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +be:0.8810490215103933 bo:0.016958797185990523 he:0.01424310903524823 come:0.006045824442096974 :0.08170324782627096 +every:0.5663177691685353 the:0.14741333266498208 one:0.1461159170100605 a:0.05263202046309271 :0.08752096069332956 +first:0.07396819753057753 other:0.06071130961491079 young:0.06066518164016642 right:0.05888452357468821 :0.745770787639657 +crime:0.05864373410043336 man:0.016708084928673674 solid:0.00673658135747515 suit:0.005955444624602579 :0.9119561549888152 +from:0.8377544818414274 at:0.027815345048872873 straight:0.018741396178351508 4:0.01825195785197192 :0.09743681907937626 +trust:0.21723971252100438 do:0.18694964150831753 call:0.15933389428371877 use:0.11916917178201276 :0.31730757990494646 +and:0.06476038124552705 as:0.02290034378874995 is:0.018357103240148102 him:0.017102150906252854 :0.876880020819322 +the:0.2911488065377997 six:0.09655808332258478 a:0.033380908753142556 Iowa:0.029541087972083848 :0.549371113414389 +strong:0.2331899621050054 powerful:0.09452455656074635 direct:0.06249943699749674 personal:0.03914286480690675 :0.5706431795298448 +great:0.05418881134765903 various:0.05263509452603766 different:0.03451247671288846 old:0.022421397152409595 :0.8362422202610053 +can:0.3434136147007954 will:0.2935337997521139 to:0.16759677179807955 should:0.10547898032567203 :0.0899768334233391 +distinguished:0.7794790820843375 worked:0.07730829225146922 and:0.006575509532983656 be:0.0027181208753485242 :0.13391899525586112 +offered:0.2392650528026159 all:0.1339272514695392 not:0.07962732629902752 been:0.07710924011756635 :0.47007112931125106 +been:0.3060367162525064 already:0.25919446262634277 done,:0.11525475334158893 in­:0.09881107919690202 :0.22070298858265977 +and:0.6354116341879433 or:0.220768018555038 of:0.08594526118274276 thereof:0.028797752663277804 :0.029077333410998024 +and:0.5258996629631777 where:0.2508770671542323 that:0.13532554636433872 which:0.018553729115117965 :0.06934399440313334 +In:0.11820420458821307 com¬:0.03487998611638123 the:0.02892114127713331 early:0.009924211532066886 :0.8080704564862055 +is:0.3474171182538512 was:0.26249186029449695 were:0.2570222441167403 any:0.07069800806837521 :0.062370769266536445 +of:0.9733049124352033 of.:0.01695325898412921 Of:0.008529534340321266 ot:0.001062823540330449 :0.00014947070001583896 +it:0.054905433258111404 cured:0.03277584348071827 pressed:0.028553235351552995 change:0.004245826254631159 :0.8795196616549862 +and:0.17821785185677036 of:0.09558486861662922 the:0.08264131108946252 in:0.059608247664628265 :0.5839477207725096 +not:0.0980939393557652 situated:0.02927660835740114 gone:0.016450792184630223 now,:0.013140014817724071 :0.8430386452844791 +of:0.9668996311871461 ot:0.010662027950467721 of.:0.004405037573507881 or:0.004383484917704954 :0.01364981837117352 +the:0.624003355323119 these:0.12334862216143533 our:0.11965314773191008 all:0.03820797670327361 :0.09478689808026194 +?:0.10616682849861893 I:0.07316025702912103 house.:0.013676569128388499 work.:0.012576062434244799 :0.794420282909627 +of:0.3241749715515201 and:0.08106481468263836 the:0.06665046858248069 The:0.047237373707492716 :0.4808723714758682 +things:0.07362008537142407 funds:0.016477040028160698 powers:0.012954456320579419 improvements:0.005879945810567402 :0.8910684724692683 +be:0.7223882269487647 have:0.05751268355329995 bo:0.031613065933687165 he:0.019638695267041057 :0.16884732829720708 +not:0.3548191625173314 the:0.10795478979344118 their:0.056477655485122645 it:0.054552608616258186 :0.42619578358784654 +and:0.4904752820597851 years:0.10616950008425327 feet:0.1034798940413242 dollars:0.04713898549880181 :0.25273633831583575 +should:0.9997060224129963 would:0.00023517294726314327 was:4.5361399065535664e-05 am:6.892452912206399e-06 :6.550787762752413e-06 +left:0.054182343995146556 troops:0.034032014568835464 division:0.00342854800378291 name:0.0018816460690139819 :0.9064754473632209 +is:0.3839507123454958 was:0.1565817870207294 really:0.12428714601515478 has:0.1070506147140887 :0.2281297399045313 +of:0.4733304357924122 in:0.10008260562815324 and:0.0965009517918939 to:0.08989176791128066 :0.24019423887626015 +in:0.2967437058787441 was:0.18364775919427823 to:0.14498102088094172 of:0.1407657374654165 :0.23386177658061946 +with:0.30624251999044355 and:0.120468383413795 just:0.06704933667055099 is:0.06304519923824349 :0.44319456068696694 +and:0.253019525055653 of:0.1819071788342095 to:0.1519753854297437 or:0.10318180862595125 :0.30991610205444253 +good:0.15968872714094134 few:0.0874270981661823 short:0.07523170131062375 mile:0.05402012710991333 :0.6236323462723393 +be:0.12189415815778282 make:0.10589652971506058 sea:0.09656424037444745 take:0.07843417129064816 :0.597210900462061 +roll:0.3202397263191125 friends:0.01117689118088816 work:0.006907958967477693 a:0.0061851438041033375 :0.6554902797284182 +the:0.19742311447381874 or:0.17571053629729178 to:0.08445001800751736 from:0.07503587490712546 :0.4673804563142466 +bushels:0.04831789505331407 one:0.03933039657578739 day:0.029868446111648364 out:0.027854947629032567 :0.8546283146302175 +be:0.0048762934082266915 ?:0.003952102478073898 not.:0.0037881143592859864 pass:0.0036193433197135765 :0.9837641464346999 +same:0.4196402776570506 present:0.29422634076597814 proper:0.02671024103895366 next:0.01220202298768781 :0.24722111755032977 +dis-:0.22070463858391176 London:0.09061259513887643 d:0.08178580076206153 Government:0.08142578775935382 :0.5254711777557964 +There:0.1977810290379788 which:0.13738526695485223 They:0.10429109307969692 who:0.08057863865333978 :0.4799639722741323 +of:0.7703270758762325 in:0.04401861292398132 and:0.037532507670900515 to:0.03639890984270194 :0.11172289368618364 +rest:0.04765602201936963 matter:0.02418616368916523 forms:0.021191846327203456 copy:0.007201391873755555 :0.8997645760905061 +said:0.648744290597321 the:0.17268266207486016 this:0.13398047023972476 Supreme:0.002999484300125723 :0.04159309278796838 +which:0.15293184996781178 work:0.0937873454025651 It:0.08347682001795137 and:0.026340605793482942 :0.6434633788181887 +grown:0.2849167469208491 in:0.10086830482266945 as:0.08629114657027988 of:0.08254381592171842 :0.4453799857644829 +it:0.867438692821818 he:0.0493780261992686 they:0.04768797131051673 we:0.019856944583905304 :0.015638365084491256 +up,:0.7612336729217479 to:0.07989204152945376 from:0.051601579056410204 in:0.043130378974905466 :0.06414232751748275 +most:0.12624041832161229 British:0.030332149083787042 different:0.028675058800455736 art:0.027744963392574474 :0.7870074104015704 +continue:0.6861101333896463 remain:0.12248344842938115 increase:0.01948627339561966 be:0.018730113766903117 :0.15319003101844977 +courts:0.35083904086512707 office:0.14772802261130405 house:0.05568888297946749 party:0.054969518890097595 :0.39077453465400386 +and:0.007537173809709025 cities:0.007315718744832129 faith:0.006834670225760633 town:0.005509654435348343 :0.97280278278435 +relation:0.06501563368993359 self:0.060763452662611295 according:0.04463971247480536 and:0.043722725801533274 :0.7858584753711165 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +line:0.09989284207172867 paper:0.04329795414974132 world:0.043282381411056 state:0.0342407769762207 :0.7792860453912532 +third:0.08098520195650043 working:0.05556120700588116 next:0.026383460276926243 present:0.01867458304151066 :0.8183955477191814 +the:0.09032623911696118 privilege:0.04893212250022763 we:0.03513866184649722 broke:0.028762201361076472 :0.7968407751752374 +him:0.025159117557406692 land:0.021177729214249288 in:0.021083079988412468 them:0.016891319884867056 :0.9156887533550644 +such:0.5429458000372791 like:0.13120722131712664 the:0.10475879207603546 writing:0.09209687383725355 :0.12899131273230532 +a:0.9439610347643106 no:0.045066907140948936 little:0.006953640497348772 the:0.003286864457458553 :0.0007315531399332241 +is:0.44372309919051484 are:0.2534887313422386 were:0.1065610884079303 be:0.10443422171428217 :0.0917928593450342 +than:0.13412046975999523 and:0.04329416750328783 aid:0.034526656889691414 interested:0.031413183046467605 :0.756645522800558 +first:0.03463552037854395 great:0.026513177781371217 whole:0.016239194709434433 two:0.015042606587287745 :0.9075695005433627 +John:0.12230606141800528 E.:0.0575491136018836 B.:0.0562750061987648 George:0.05574931965260889 :0.7081204991287374 +the:0.44090050047853185 all:0.13591936736449658 home:0.08421631809730255 an:0.07606937512970124 :0.2628944389299678 +and:0.07741929352217738 went:0.04401897523496463 control:0.03840712104624894 was:0.03513865689645083 :0.8050159533001583 +m:0.5793211519455457 M:0.08334594736392427 d:0.07536288514682146 D:0.06465184270686851 :0.1973181728368401 +a:0.9278205369900671 now:0.043826302370815924 the:0.023292184587391424 i:0.0007176239208356844 :0.004343352130889892 +conduct:0.13292101569608528 State.:0.026764234415786018 money.:0.01928906140969574 body.:0.0064134176247301646 :0.8146122708537029 +as:0.6074393083447269 the:0.11964437343831504 in:0.07609544571094783 from:0.020506570093150947 :0.17631430241285934 +and:0.20487374401022385 in-:0.1126321868212707 the:0.08948399484223116 heavy:0.08790018296932156 :0.5051098913569526 +was:0.89299136550137 and:0.027891428090895672 been:0.010605983161161712 duly:0.0017790489676564737 :0.06673217427891621 +and:0.21796401123213272 of:0.15363889963429933 ot:0.04556175237131112 still:0.044113968333079234 :0.5387213684291776 +date:0.11827553718426553 size:0.024626391782376123 case:0.023910629712912742 degree:0.02347129544411942 :0.809716145876326 +bank:0.035888691322574516 and:0.0036614213656528186 Union,:0.0018311829150698528 Bank:0.0016944993618576972 :0.9569242050348451 +same:0.03754753561209316 people:0.036752902004869754 law:0.03633498934956962 money:0.03433875262731754 :0.85502582040615 +one:0.19794225422733502 since:0.18401536425779558 time:0.09556657880390622 plan:0.06808833754499537 :0.4543874651659678 +be:0.08686227364370491 have:0.07096938026669203 not:0.06443344632448879 get:0.042539247071508794 :0.7351956526936054 +Democratic:0.17980035459079952 political:0.17747573035125624 republican:0.0872642672456193 great:0.038551404466724566 :0.5169082433456003 +was:0.10438449550470288 the:0.08416915597238975 is:0.055253020625487995 be:0.033888918320549515 :0.7223044095768698 +question:0.1777886474639842 effect:0.031653871015957825 interest:0.019089898190445518 center:0.018790166821714947 :0.7526774165078975 +It:0.14364054939372264 it:0.07711852285067615 which:0.055571275058944755 who:0.055003501015240326 :0.6686661516814161 +and:0.713889925692646 ami:0.07159169499709434 coun-:0.06374917186265988 has:0.019095228803672207 :0.1316739786439277 +Co.:0.007272622562995246 James:0.00671382980398763 Henry:0.005220666691067539 William:0.00506408839238051 :0.9757287925495693 +the:0.7295942119110178 tho:0.05528051613817769 a:0.04219395360123022 tbe:0.01732568151227302 :0.15560563683730136 +the:0.35599566890558504 a:0.20129774629986597 one:0.08768351841901602 it:0.03021999614350599 :0.32480307023202687 +and:0.08070943054664767 There:0.07859613206701158 who:0.07571601931862489 they:0.06588129624588683 :0.6990971218218289 +has:0.41959342685088347 have:0.17871209249090061 had:0.1746418088110011 having:0.04554887297335496 :0.1815037988738598 +man:0.6979317850517983 constitution:0.06820129337292832 woman:0.034830721320413545 company:0.03460596585133743 :0.16443023440352236 +o:0.15860575828141302 within:0.0765984157935679 f:0.053083523797209535 recorded:0.037341881232662195 :0.6743704208951474 +Johnson,:0.010597105320150447 Brown,:0.008453574342150355 Hall:0.00544859179788539 Smith,:0.004461790097317249 :0.9710389384424964 +feet:0.1809774103158639 and:0.02971385297301036 chains:0.027007879288927592 came:0.0213221821622509 :0.7409786752599472 +of:0.2724349858728878 in:0.1727254292978937 with:0.10486949480729467 to:0.10113357153245647 :0.3488365184894674 +of:0.31607989168517225 in:0.16185811340923492 to:0.12232416682226921 and:0.08466796901612762 :0.3150698590671961 +case:0.3132309417720968 days:0.10484129708382281 South:0.03597269512623747 world:0.034881611484635484 :0.5110734545332072 +of:0.1538653759477984 The:0.09742852865708021 first:0.07090445439733983 A:0.06655238979396383 :0.6112492512038178 +rights:0.9377414882991156 families:0.0031348973874854025 duties:0.003051137487600197 making:0.0023042291174905746 :0.05376824770830823 +they:0.39556483825853084 there:0.19433987191085939 we:0.16256668405563873 you:0.07232599181358866 :0.17520261396138231 +the:0.5024190881132495 a:0.055838082978119756 tho:0.03521611129407155 his:0.028040522722946413 :0.3784861948916126 +the:0.2624320530213678 and:0.11661032705409105 to:0.09771116404027655 of:0.0376127024382009 :0.4856337534460638 +is:0.657483723160693 year:0.1677684246409239 on:0.01711015187407815 used:0.015079676352852735 :0.14255802397145215 +are:0.8818753236560006 have:0.047867696375557926 were:0.03711860553652816 had:0.009710664054541726 :0.023427710377371673 +Kansas:0.3334484592787314 common:0.10067601483147695 present:0.07949635902663854 existing:0.014696043434817186 :0.4716831234283358 +of:0.7723646918118277 the:0.07730449454119387 in:0.027379396746330716 a:0.018318182118969666 :0.10463323478167816 +the:0.13709150466911138 of:0.13199683836394055 and:0.1137142575566027 that:0.06514292147841864 :0.5520544779319269 +the:0.3601950528764946 a:0.08228890728706235 No.:0.03312212957740602 tho:0.021823986352321915 :0.502569923906715 +is:0.8835792961415916 were:0.06868211130458429 was:0.018543438128308498 has:0.01565777701984135 :0.013537377405674293 +the:0.271552468474638 one:0.26066684075931046 was:0.14434346188261002 this:0.045890361313459097 :0.27754686756998237 +reference:0.20857017015346643 he:0.16437130859803167 It:0.1613370189805531 it:0.1279098985627717 :0.33781160370517704 +miles:0.8375559757389813 feet:0.057116556531849834 minutes:0.005073454758943409 or:0.0023443385078849455 :0.09790967446234043 +at:0.3167813382751696 with:0.2572741626562578 into:0.18488908630358433 of:0.12125127730122721 :0.11980413546376097 +of:0.5010699888424544 in:0.04854058541687595 or:0.025265116899902774 ol:0.02184722943211665 :0.4032770794086502 +us:0.4906959571569159 said:0.08610942017866581 the:0.05079370930127687 and:0.0372518144325028 :0.33514909893063866 +clerk:0.4159591437171243 court:0.03232809967865136 officers:0.028276177372279467 seat:0.0205930419456276 :0.5028435372863174 +of:0.7493424472828386 Of:0.08040462410593058 the:0.06573088826153649 its:0.049847758543759293 :0.054674281805935115 +of:0.8181812237942508 and:0.09083304768571154 to:0.02189772095437463 is:0.01616285550359704 :0.052925152062065814 +with-:0.18747356872576243 brought:0.10180295724159459 make:0.09622228065754378 of:0.06881241873753455 :0.5456887746375646 +way.:0.15723045335656244 position:0.07334285392097363 people.:0.016206681415495746 day.:0.008848915221053577 :0.7443710960859146 +some:0.3755108784650726 any:0.1771222773828992 no:0.11814429122214547 a:0.07784262639418955 :0.25137992653569297 +it:0.1610177643516388 It:0.1471989586259542 he:0.1029245427155661 what:0.09687526061548045 :0.49198347369136053 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +the:0.024421793765390054 build:0.016234422435068337 wear:0.014801850767650983 make:0.011496796596599166 :0.9330451364352914 +the:0.9065221155134967 tho:0.06085412800272748 thi:0.005472054391709658 thc:0.0001172041018217179 :0.027034497990244558 +the:0.4710109937671942 a:0.1618641854073662 it:0.08029717080161769 their:0.037260260908044004 :0.24956738911577792 +a.:0.07600786200417324 p.:0.04249996328876308 war:0.01118809799610245 In:0.005295226495266315 :0.8650088502156948 +same:0.039895010659593624 morning:0.03200888594600917 present:0.024519110438336537 year:0.023798003822957884 :0.8797789891331027 +has:0.37174168800745544 in:0.25649428546781167 of:0.22737895154988552 from:0.08443067219395683 :0.059954402780890675 +not:0.18185164786223124 lying:0.04007673237062833 others:0.03233520931551107 a:0.022274073996225538 :0.7234623364554037 +its:0.6269302033687487 to:0.1980067185800351 the:0.06354628810646064 any:0.0539670606722436 :0.05754972927251206 +to:0.15533534441207109 and:0.13381324935292624 the:0.11273659483628162 in:0.09533868669086784 :0.5027761247078533 +as:0.7117755633381044 and:0.130349490389126 to:0.039421039671305995 aa:0.022808848750254483 :0.09564505785120907 +good:0.1756330011892546 ;:0.012519076210972981 with:0.009453076914446742 in:0.009354243578233331 :0.7930406021070924 +Hill:0.0870369580080037 Smith:0.0627512278389932 Davis:0.05589749228343993 ton:0.025685493814274207 :0.768628828055289 +cannot:0.14545458543682685 learned:0.12294393322736925 believe:0.07784695637617928 took:0.07757386605709296 :0.5761806589025318 +of:0.4390230313747183 that:0.12905465550367567 and:0.11829768268621055 to:0.10286465238637692 :0.21075997804901847 +Brown:0.009700610167701264 A.:0.006128431729190366 John:0.005856795777080757 of:0.002645229723303131 :0.9756689326027247 +the:0.7761659698955793 bank:0.055765075872643254 The:0.03491412244321728 this:0.020856669951911534 :0.11229816183664873 +the:0.5608078709867794 this:0.19226073778653663 my:0.1525333989912144 their:0.0633368998935118 :0.031061092341957933 +ed,:0.02715930552412877 ;:0.02539155053700314 is,:0.015582451344416316 true:0.011296581784202947 :0.9205701108102488 +the:0.5936774268442948 this:0.2160742035831537 grand:0.05937668601300798 my:0.03541626901903167 :0.09545541454051183 +and:0.7968798571848941 am:0.07439117179128002 I:0.04741783491123402 He:0.04628438687927356 :0.03502674923331846 +they:0.20608130953440185 I:0.03238648295026627 we:0.006478198745734108 1:0.0007846964968696226 :0.7542693122727282 +the:0.015795583648543467 -:0.010990014472677482 was:0.007440962675287987 not:0.007115056021492871 :0.9586583831819983 +to:0.14333827320790488 she:0.12302611528594971 the:0.12230881829467852 he:0.10630185006048405 :0.5050249431509828 +and:0.08756036819080125 life.:0.0444378343275108 the:0.03316311667351341 ones:0.017490822990723576 :0.8173478578174509 +the:0.41679215695834465 his:0.13257447482478094 a:0.04985303686148832 tho:0.0283672925505815 :0.3724130388048044 +he:0.4031751163768318 she:0.25769629195750215 I:0.09518364907985068 be:0.08273062443462857 :0.16121431815118667 +a:0.6825375989676291 the:0.05886836571535814 black:0.04889305844162213 white:0.03177225808400816 :0.1779287187913825 +than:0.9190890970753967 like:0.033704592943348266 of:0.013884030423175589 to:0.012994022793787944 :0.020328256764291387 +of:0.8453054697834198 in:0.057819617170836266 The:0.04481694575240045 its:0.027411244064719714 :0.02464672322862369 +to:0.302563210185758 state:0.12830316209782863 State:0.06221322443664899 and:0.04893431970464525 :0.45798608357511905 +Mr.:0.17217671930618292 Wilson:0.13763117336756783 J.:0.03125047490528404 Henry:0.012444680646164497 :0.6464969517748007 +schools:0.37067708701969915 it:0.1033029572348793 him:0.09982183749680956 duty:0.07483897725573625 :0.35135914099287563 +and:0.28380024381259716 at:0.04086619001016823 of:0.04046714739531367 ments:0.032750136119866435 :0.6021162826620543 +is:0.8541672127838074 Is:0.06866550912805261 was:0.05119337073925017 were:0.01355799335723359 :0.01241591399165629 +and:0.13164487538764222 with:0.06698996887370627 to:0.06269901154204527 of:0.04672578892601217 :0.691940355270594 +to:0.6441560266671594 between:0.1270537512082407 the:0.05406556463358893 by:0.04437673291552141 :0.13034792457548938 +full:0.34379459406762486 big:0.30455246706916966 good:0.13991353333821027 half:0.05360355664232346 :0.15813584888267176 +family:0.06859514368574458 letter:0.04480336368967585 right:0.041933907309409164 wife:0.041711469421308885 :0.8029561158938614 +one:0.9995671430281206 person:0.00012554741176935567 man:5.65797300851231e-05 county:3.8392407971341654e-05 :0.00021233742205363013 +at:0.36875258734832866 Let:0.2863974867311707 to:0.13904647611950996 tor:0.057838142684778986 :0.14796530711621167 +steel:0.17262792390010367 and:0.1106902762884514 of:0.10997815481586394 with:0.0937192657781132 :0.5129843792174676 +voting:0.0823002054206246 man:0.011213668501513058 room:0.010318203828253377 father:0.007906784609350667 :0.8882611376402582 +and:0.7193786793328703 the:0.06776461411095985 it:0.03636291749529748 a:0.025796142590801645 :0.15069764647007075 +but:0.20778636983353083 and:0.14730156139776407 that:0.08549162797212559 But:0.0712385234130617 :0.4881819173835179 +nature:0.03900844783598743 one.:0.011633372497063494 of:0.004046789942578655 theory:0.003919363689017954 :0.9413920260353523 +shall:0.8946363133464259 must:0.01515143451128673 will:0.012368923383479991 to:0.0010993141639893326 :0.07674401459481807 +and:0.007360793909888703 pose:0.0006665414679037805 press:0.00015628479525833544 the:9.203704411553628e-05 :0.9917243427828336 +the:0.05277090300680644 large:0.04255268598776237 block:0.03855391472803654 police:0.029526258668142662 :0.8365962376092522 +the:0.4960332540611227 his:0.25711963075703503 a:0.0966943716121782 fair:0.04358993466742516 :0.10656280890223893 +was:0.48733445184129887 is:0.22514493171175626 had:0.09326739776572643 shall:0.06903918773294865 :0.12521403094826977 +c:0.0434535763218003 Union:0.021934015217429482 ample:0.010174382222750755 port:0.007131661241013469 :0.917306364997006 +and:0.6007245610719903 or:0.10072232314088031 a:0.09497650982325954 with:0.05335247386534843 :0.1502241320985214 +a:0.9921030808431478 that:0.001391961029355903 the:3.407827263146764e-05 some:2.6219537904414486e-05 :0.006444660316960452 +form:0.017648182338361497 way,:0.011814744950909709 -:0.011150340261771152 results:0.008048855275575112 :0.9513378771733828 +little:0.18452591762594703 and:0.11194441209237074 thing:0.0890034118450154 but:0.056042872833432934 :0.558483385603234 +public:0.323421646577015 the:0.18065450109416287 right:0.05588953285153736 a:0.036517865945427504 :0.4035164535318574 +the:0.04494583263376095 great:0.026178191330016594 said:0.018786799924631215 in:0.016140280625962983 :0.8939488954856283 +He:0.261151848247461 he:0.2413132900910508 and:0.1435537021502444 ho:0.0787937960551481 :0.27518736345609557 +the:0.29996853204959223 be:0.1374111434282185 pay:0.07058133492586202 a:0.060149542892711724 :0.4318894467036154 +it:0.3801412634572429 them:0.32855431145676567 her:0.0559534722117395 him:0.05243590410168542 :0.18291504877256648 +or:0.5364742161561181 than:0.07379092365992018 the:0.07296181669412233 to:0.03870892877429806 :0.27806411471554127 +She:0.9992425716871336 He:0.0004108434637247539 We:0.0002232050952538009 I:6.669672666315697e-05 :5.6683027224744004e-05 +county,:0.508201757463097 other:0.06930778032183049 and:0.06567734588931036 a:0.053554502741358916 :0.3032586135844032 +the:0.9763628932772566 tho:0.0071647787809728065 tbe:0.005375876518292729 tlie:0.0014453110953691493 :0.009651140328108885 +the:0.985592520286339 tbe:0.014369716975852641 tho:1.584083323060707e-05 your:7.169648413318821e-06 :1.475225616452572e-05 +the:0.7874225870175507 a:0.0816709580464974 tho:0.040959568333024825 n:0.025700012864124128 :0.06424687373880293 +West:0.015957788856313146 City:0.014025719284551446 California,:0.013789377980371754 and:0.011342038027083027 :0.9448850758516808 +I:0.030260193626502598 States.:0.02365159295757855 spread:0.022086819244831822 of:0.01448948474845704 :0.9095119094226299 +of:0.34185228455292005 and:0.16472816755806677 that:0.13083267504827847 which:0.11776745549518577 :0.244819417345549 +will:0.29991767861161184 would:0.2881573464410415 may:0.1788333846013326 shall:0.1179268018885077 :0.11516478845750644 +and:0.11379796587318884 son:0.08846892890326796 as:0.07008672794395496 Is:0.052506448437580955 :0.6751399288420074 +ana:0.059951051977391374 i:0.042807918331434776 and:0.035113010184085455 me:0.02351900247111836 :0.8386090170359701 +a:0.23766395564137682 the:0.1913306192591255 not:0.13665347635912137 an:0.06718727149938328 :0.3671646772409929 +second:0.08888608349933629 little:0.05702672136803 notice:0.037357882189445746 2:0.03377545717283377 :0.7829538557703543 +more:0.3881077602881272 greater:0.17248836981440388 less:0.09688989554682204 larger:0.08821233517985924 :0.2543016391707877 +of:0.6181893199291733 in:0.004339120564415277 stock:0.00401618551313371 and:0.0021310137120831183 :0.37132436028119464 +of:0.9420722489153044 in:0.013481390221168841 and:0.01217176744998997 that:0.009547483639512144 :0.022727109774024694 +at:0.06220232729880139 in:0.042199309443131404 to:0.040834208209259926 and:0.037692949820590266 :0.817071205228217 +side.:0.24499355975828574 last:0.05687894380403846 were:0.008680197881787782 own:0.005521760671002434 :0.6839255378848856 +purpose:0.12571560981481866 time:0.11845957161847132 and:0.028985477959217736 instead:0.02099048663632814 :0.7058488539711641 +an:0.6019486728468962 by:0.04310054580939271 and:0.034388048661196186 A:0.02827175604573918 :0.2922909766367757 +if:0.19898113018341576 with:0.15241327396683793 in:0.1306449786471219 when:0.08632095164094375 :0.43163966556168076 +a:0.5241877145829117 one:0.4420999622084086 the:0.01827636575179364 that:0.00544145661857609 :0.009994500838310078 +friends:0.18742980244122717 disease:0.045186214495123354 satisfaction:0.0413869508915967 Democrats:0.03163593334305867 :0.6943610988289943 +the:0.10722976661033247 or:0.09937806789269303 a:0.0884995189543777 and:0.07972106231287403 :0.6251715842297229 +which:0.7229038853699771 it:0.05470073681357386 of:0.03134610276703965 It:0.03125738736062226 :0.15979188768878727 +see:0.5778823665709991 which:0.18177341640902583 the:0.10956076236259524 have:0.08560916738365387 :0.04517428727372589 +off:0.7442223096627639 some:0.09285329142266374 down:0.09282145316265861 up:0.04197618455404616 :0.028126761197867684 +all:0.4196302601511535 the:0.1616045512423398 of:0.15996683851035548 with:0.10706601862295638 :0.15173233147319484 +sho:0.9937391372965798 she:0.006259255593967542 he:5.482374075930069e-07 lie:1.9138705057054158e-07 :8.674849945745731e-07 +Senator:0.15426250145667672 John:0.08784221473752835 Dr.:0.07454921603536037 Judge:0.055062315116553656 :0.6282837526538809 +over:0.007758773177394512 for:0.0068574792237412144 in:0.006204201548292578 by:0.004676234386150168 :0.9745033116644215 +the:0.08977296240104199 very:0.06734192164796053 not:0.0457476513261459 all:0.04289306847774575 :0.7542443961471058 +and:0.13560558526462657 the:0.048176326758702426 of:0.04157479309545819 to:0.02415382230732238 :0.7504894725738904 +water:0.1647292486376857 water.:0.04867759875273653 the:0.022794128669040018 blood:0.0032983991542861425 :0.7605006247862518 +out:0.8692822884194386 of:0.04146397121989357 and:0.024650168963507083 in:0.019505280981880778 :0.045098290415280094 +to:0.3728367700373923 and:0.22464251901627227 into:0.12063074407295428 with:0.11889014344774346 :0.16299982342563757 +and:0.12353084502865497 of:0.06674592527686776 the:0.06595759142475333 The:0.02814479634875338 :0.7156208419209706 +ad-:0.046140919452684004 same:0.024594725331645414 the:0.0228031966372859 required:0.018189869940337146 :0.8882712886380475 +ordinary:0.10012021847756554 B:0.0900968012612757 regular:0.046917967468612466 various:0.024557202493984666 :0.7383078102985615 +bought:0.18187349494378846 written:0.112423174683416 tor:0.10030132603795643 left:0.07644029661996173 :0.5289617077148772 +turn:0.006063781366650856 not:0.0052137891191075545 from:0.005172644414584951 of:0.004829495836536242 :0.9787202892631205 +be:0.01516369767241056 the:0.002112993992676262 call:0.0012862226399171339 elect:0.0012819940104547482 :0.9801550916845412 +that:0.23452177851060138 as:0.1340862432308064 though:0.12536112065237 but:0.12449997076564762 :0.3815308868405746 +the:0.9134319451436247 tho:0.033902407515608066 tbe:0.01454473241195391 his:0.00993351318184972 :0.028187401746963592 +ot:0.5173626730476014 of:0.2224465789047662 with:0.1883888181436361 and:0.02769608260033744 :0.04410584730365872 +be:0.39891487583549595 bo:0.26173550316832367 have:0.03930088034921347 know:0.03492684495319332 :0.26512189569377353 +farmer:0.20105055443959235 officials:0.13382946616543565 line:0.12753422796494285 money:0.026369728377017284 :0.5112160230530121 +would:0.6899802045025 might:0.2476939498210169 could:0.04103960434110198 should:0.011299594061486371 :0.009986647273894768 +of:0.012474959032279806 of.:0.006193811574456333 which:0.0043468507123586965 and:0.004235397056232267 :0.9727489816246728 +and:0.31941627570331643 of:0.07394065009200837 the:0.038606164567404865 or:0.03473339421555507 :0.5333035154217153 +of:0.03205936455144069 and:0.023680792759890067 fine:0.015011680421370808 to:0.014095947823074849 :0.9151522144442236 +the:0.6357877952901447 which:0.08052878405731612 this:0.03540448536403382 a:0.03337682989571066 :0.21490210539279464 +very:0.5168781988423089 too:0.08713881801832904 so:0.06441093239521962 not:0.047275891725883375 :0.2842961590182591 +money,:0.8969772230955732 labor:0.003562740722957394 water:0.0021021619155617965 money:0.0017840781192786513 :0.0955737961466291 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +the:0.5266590057022732 of:0.17200378908536187 The:0.07350297897677226 a:0.03380741082616105 :0.19402681540943154 +to:0.7888123130850251 of:0.06086733089710448 in:0.0381643418641763 on:0.029821273778645012 :0.08233474037504929 +boys:0.6765912295378762 bills:0.015116214812199802 trees:0.00904661785724066 things:0.005030285641651895 :0.2942156521510315 +allowed:0.17848362465534817 not:0.17224730274141126 now:0.14573939067497688 confined:0.09859500134261616 :0.4049346805856475 +facts:0.6407343137496565 figures:0.04512140397284461 will:0.029700643337144613 to:0.022968136279368886 :0.2614755026609855 +value:0.04023115264206436 right:0.01965013031138231 passage:0.01910596678880289 condition:0.01840550683054454 :0.9026072434272059 +in:0.17493266774061642 for:0.14465735817270955 at:0.11815964820339238 by:0.09240994685693688 :0.4698403790263447 +in:0.42050551702439753 into:0.3163581638050341 of:0.14912644700297156 In:0.07842544081193818 :0.03558443135565869 +of:0.6113521445027711 while:0.12451489901772167 to:0.11014325507124577 and:0.046231655393848596 :0.10775804601441287 +not:0.43348918977716466 the:0.2984061052483103 which:0.03518687830742768 his:0.028066983453379952 :0.20485084321371744 +agents:0.016973726764718033 own:0.01610099572858317 room,:0.012121980392516411 body.:0.009577665050390208 :0.9452256320637923 +and:0.09291452048371228 the:0.07843399762432648 tion:0.06690284575149959 due:0.03499745981171258 :0.7267511763287491 +the:0.898728061507607 tho:0.054113811759023155 this:0.013053727827212171 ihe:0.003454820152502246 :0.030649578753655607 +I:0.24012076441959385 It:0.1422061246675459 He:0.12700752619428043 That:0.12258309255392862 :0.3680824921646513 +it:0.6205280021077166 it.:0.19901894173393753 him.:0.09796720414793898 them.:0.043374771021930825 :0.039111080988475905 +to:0.20756820897662828 of:0.1579979194625683 from:0.15149810728320975 on:0.12394364289722135 :0.35899212138037234 +the:0.3793799995650822 a:0.05032414951305193 two:0.04139237195980177 tho:0.012600061347406228 :0.5163034176146577 +Is:0.9827670313160899 is:0.014819147409386335 was:0.0012061504687484762 la:0.00036056369019449866 :0.0008471071155806833 +the:0.2568933993637703 a:0.09571326079696481 1:0.08367611551124261 tho:0.036852623626189025 :0.5268646007018334 +main:0.3160238588026171 almost:0.06589127035345847 new:0.040397267186430996 great:0.04037458400811008 :0.5373130196493834 +of:0.15172025267563494 the:0.12899100385569034 and:0.06968489296920993 or:0.06608052774209144 :0.5835233227573734 +that:0.5277705777335487 the:0.23728379803140723 a:0.08659517221055672 our:0.017680142645386938 :0.1306703093791004 +we:0.7535959704339488 they:0.15692317339546494 you:0.021554148799023957 there:0.014809896904956994 :0.0531168104666054 +lot:0.17439229463839945 complaint:0.06496874979881186 land:0.048714973623195545 that:0.04696038857794455 :0.6649635933616486 +the:0.23815588962130393 a:0.11286133146982001 tlie:0.07004460309287974 Great:0.04494307693583245 :0.5339950988801639 +his:0.6418923086873105 the:0.06214105119114526 a:0.014068802979678477 that:0.013325144448136423 :0.26857269269372935 +to:0.08750597198792538 at:0.07996797680806178 on:0.07285060456243836 for:0.0671651440498463 :0.6925103025917281 +carry:0.4635894600626018 her:0.12418661025287424 get:0.09888122742351539 point:0.08903177834636718 :0.2243109239146413 +of:0.1709565497348 In:0.16748989058286512 When:0.11041009899564085 If:0.1070456327131984 :0.4440978279734954 +and:0.03213552638082264 out:0.03129068599827861 to:0.022758543210002567 ment:0.021517306420439336 :0.892297937990457 +it:0.45867877838126564 the:0.0931033455550584 sympathy:0.04376132169063621 in:0.038948877568938674 :0.36550767680410107 +works:0.0647373443349051 paper:0.04028249475096842 prayer:0.018234156085568318 name:0.014955459554721311 :0.8617905452738368 +and:0.12380797868846657 of:0.11362425147212367 in:0.10625140060037915 with:0.09333414232354924 :0.5629822269154814 +the:0.7343994195422928 a:0.05202806059161654 tho:0.02516179650912483 tbe:0.01311107726240934 :0.1752996460945565 +hard:0.5716363472648944 difficult:0.18597041880266907 impossible:0.11884276005804027 wrong:0.06252177280406003 :0.061028701070336165 +country.:0.059975754161500104 Government:0.04957830438106685 state.:0.03749560645849129 land.:0.02202040307962917 :0.8309299319193124 +event:0.4967280982124723 which:0.14515379515802618 that:0.031227160514709487 and:0.015972784966581336 :0.31091816114821075 +books:0.38569355124963806 board:0.0832017108159315 records:0.04554260158933757 letters:0.02447343264848041 :0.4610887036966125 +ac-:0.007630381905897128 a:0.002363755173184725 a.:0.0009384425829423203 consider:0.0004401511868502491 :0.9886272691511255 +more:0.2881597783629901 larger:0.27323424369428984 rather:0.0245658220367752 to:0.012127591774164415 :0.4019125641317805 +to:0.275087175606575 and:0.19566139470925986 will:0.04510996249013507 would:0.03521952951700322 :0.44892193767702687 +a:0.2686738291128703 the:0.22674284301810052 what:0.07230816723177089 his:0.029345158882144038 :0.4029300017551141 +a:0.20213663874937826 and:0.15692573417035707 or:0.13747285837832346 the:0.12538349054219275 :0.3780812781597485 +highest:0.7765640043871029 greatest:0.21020565449204054 largest:0.010597159011275031 least:0.0018529290034784574 :0.000780253106102935 +of:0.17761372281436255 in:0.10084838640426853 to:0.09510753263276638 with:0.052344963288962154 :0.5740853948596405 +to:0.06469905386804752 well.:0.04249395337994266 source:0.013874901104853243 or:0.010219146048795704 :0.8687129455983609 +Southern:0.19592268453541156 First:0.08271146416102479 said:0.07312790665739184 Fourth:0.039955012716906615 :0.6082829319292652 +the:0.1290213163299756 and:0.07491237340233452 a:0.06580905626240227 Mr.:0.05604937686989832 :0.6742078771353892 +the:0.22811927607325774 or:0.14921573676395755 and:0.07571475526378432 on:0.06660696317969915 :0.48034326871930133 +and:0.564513236450605 clear:0.1220579489344234 this:0.07573947928489935 of:0.07534187873207285 :0.16234745659799932 +it:0.06387525715216276 minutes:0.0012184095410858198 and:0.0010642543973021685 .:0.0010441110067517401 :0.9327979679026975 +and:0.21518367195113985 disease:0.19038344635422486 has:0.11985203750771015 I:0.06088480100035604 :0.413696043186569 +place,:0.018038336641478973 other,:0.011156162865755147 not.:0.003671311317988234 another:0.002846633780467563 :0.9642875553943101 +of:0.9379329214813216 to:0.03520756507097198 that:0.011209783647667736 ol:0.008093182104628957 :0.007556547695409818 +;:0.03693158242416415 which:0.029522074457229992 if:0.021435726439881272 her,:0.013666877011698835 :0.8984437396670256 +Fred:0.018832626763991688 gentleman:0.01482505472950371 John:0.014371114980188745 Town:0.0073584523301912265 :0.9446127511961246 +of:0.7561204569336362 as:0.09901925422110218 in:0.0889586002256424 Of:0.050301230726334016 :0.005600457893285159 +House:0.24281566652698341 House,:0.1502550079878612 which:0.021988454005224426 so:0.02001647814863578 :0.5649243933312952 +the:0.09237055502662696 and:0.0850866564868612 of:0.05505770094378425 to:0.04466653550278095 :0.7228185520399466 +upon:0.2911448628952362 on:0.275230337812745 to:0.22203379327119654 at:0.1979826988640256 :0.013608307156796595 +feet:0.8952760645516906 feel:0.034305086768872346 as:0.027425990594563993 the:0.00478869058737942 :0.03820416749749368 +You:0.014627439458507112 other:0.012765039036607018 people.:0.011404930563537958 way.:0.0062704046223007095 :0.9549321863190473 +money:0.3133172263322479 good:0.07307226748972595 men:0.02580494625948093 silver:0.020515842488004088 :0.5672897174305412 +the:0.1197233083035465 was:0.03543965740372097 a:0.033311205980196046 in:0.02788502470159483 :0.7836408036109418 +the:0.025521858482147317 life:0.0070434399966879105 a:0.00625801032026075 peace:0.005101210781542105 :0.9560754804193619 +directly:0.06606444639987531 ence:0.040701209809459155 and:0.01614357418135164 I:0.013861556365623674 :0.8632292132436903 +to:0.3117616803006196 only:0.23151282926294367 for:0.18111180793089907 before:0.1519219392339516 :0.12369174327158593 +called:0.6732850135674935 drawn:0.14766773148027956 decided:0.009241940893346384 agreed:0.008865044590644636 :0.16094026946823586 +the:0.17810618953156096 a:0.1480994083763721 him.:0.14484962568878537 good:0.07132033096193315 :0.4576244454413485 +the:0.3098657890099772 a:0.04809012636895533 any:0.03562759484353331 other:0.03335472972621222 :0.5730617600513219 +by:0.3210690468144733 the:0.14608979414491152 they:0.13977908904613812 said:0.05775819093715899 :0.3353038790573181 +in:0.3852871065952959 on:0.2645669415214508 of:0.0777377741648326 and:0.016536528163880283 :0.2558716495545404 +to:0.665543535837461 to.:0.133840614213523 un-:0.05285955861748933 the:0.0234747999028446 :0.1242814914286821 +to:0.2557186546419487 in:0.1532176125572944 at:0.15286582500165208 as:0.12025739282935625 :0.31794051496974834 +passed:0.2853935055238615 been:0.14858395701661561 gone:0.0666034508457076 come:0.03425622774952694 :0.4651628588642883 +I:0.7775625236148025 they:0.09590126568627381 he:0.05466862299693945 you:0.03309885014769666 :0.03876873755428759 +if:0.5521874198777998 whenever:0.17969085130222473 upon:0.12000385043904885 when:0.0978282405603011 :0.05028963782062537 +of:0.6267919984770878 to:0.30670798026891 wo:0.019917123298055235 the:0.013019484905108597 :0.0335634130508386 +of:0.5698645690504366 and:0.08301484424533147 in:0.051867123589535206 as:0.046102891797501565 :0.2491505713171951 +am:0.20803768084342214 had:0.19175655269223563 have:0.17109683824035113 was:0.1628632970770353 :0.2662456311469558 +of:0.8795656865857848 in:0.05177284012732795 oi:0.02474275606625603 ol:0.024145178924659526 :0.019773538295971633 +be:0.7946460454211126 and:0.1604928569241024 He:0.006359080326229855 he:0.004023519542127882 :0.03447849778642722 +is:0.6266571493490561 which:0.12062010157488917 and:0.10052724406566062 to:0.040959002308804685 :0.11123650270158948 +that:0.18340411909890872 board:0.13202006999246324 which:0.05975531732728092 Sunday:0.052501613121261885 :0.5723188804600852 +for:0.8991575532708412 a:0.046329175567475414 the:0.019078844865940477 on:0.01054358024289384 :0.024890846052849015 +and:0.8842876251726968 of:0.027289717298782813 an:0.020636391138913086 is:0.01111835685448166 :0.056667909535125696 +of:0.39819795215176373 on:0.1819869620042685 or:0.1257023525131567 upon:0.09996188389323629 :0.1941508494375748 +he:0.282591646423988 it:0.06271512643982996 It:0.05063057415603629 one:0.01757489839529807 :0.5864877545848476 +States,:0.2850278919052252 States:0.2713622823114435 States.:0.15611686800076727 the:0.007248049664967671 :0.28024490811759634 +for:0.984194164743925 to:0.005459542161845974 the:0.004619506251885304 a:0.0016197565898062683 :0.004107030252537428 +to:0.9788313222973496 te:0.012733542809253017 lo:0.0035432151723356316 In:0.0007780732415754816 :0.004113846479486235 +foot:0.038968505311725486 fire:0.037442589774351415 the:0.019438105273363454 his:0.011839849753887976 :0.8923109498866717 +telling:0.17422352895025803 the:0.15753811483356933 great:0.15024462274636383 a:0.08021931168517225 :0.4377744217846365 +people:0.8428212471230255 him:0.11901618567906064 them:0.0123404370884088 others:0.008162808863975779 :0.01765932124552918 +April,:0.23103218678840354 May,:0.2044258506839963 June,:0.1988669186940343 March,:0.1890300896931715 :0.1766449541403943 +will:0.23795875677485948 to:0.1744333683166461 shall:0.16031285604288828 can:0.15416168745255018 :0.273133331413056 +from:0.6437270948630236 than:0.041361855372236314 with:0.028504482023882085 of:0.016831006384269962 :0.26957556135658806 +1:0.0854680358804423 and:0.061865837752632186 of:0.04451075325301609 the:0.04309046043927209 :0.7650649126746373 +He:0.06702843512188188 who:0.0541386952439005 It:0.04924582323431966 John:0.044323846027045706 :0.7852632003728524 +not:0.8634904916975378 the:0.022791533271515448 net:0.020096269816316577 and:0.009605523302852984 :0.08401618191177729 +and:0.21705589665832992 expected:0.030109704569083715 range:0.028985615364446018 continued:0.025469073739580128 :0.6983797096685602 +He:0.018265325096246694 had:0.010763832028321438 have:0.0015205912349387431 was:0.0009193714488756655 :0.9685308801916176 +a:0.39190247217429336 no:0.2431089362438668 the:0.08220818064241302 an:0.026417904193596936 :0.2563625067458301 +that:0.34912701264749807 as:0.30099472854725123 when:0.1089915667806202 and:0.09030126583277803 :0.15058542619185247 +to:0.9351153600848334 that:0.03238982463082688 of:0.0058691105370945835 by:0.0033889060572945876 :0.023236798689950367 +them:0.012120520789493057 sure:0.0021880426987015136 tire:0.001330790407928738 route:0.0011269084081143434 :0.9832337376957624 +was:0.3799504624348213 always:0.23925319557332533 is:0.1552721722478135 had:0.11369456473520109 :0.11182960500883889 +out:0.03506875243682641 and:0.032683930137009334 amount:0.016868074898872442 day:0.015230618724542762 :0.9001486238027492 +The:0.6488759350356434 the:0.1257141362008889 One:0.10804709534338497 a:0.08567762301265827 :0.03168521040742438 +the:0.5098288685989276 his:0.13330722421143687 no:0.1034492344257469 too:0.07333835830694119 :0.18007631445694758 +the:0.1895324071292746 The:0.17256550985036678 and:0.07391153023984379 of:0.058429967019881734 :0.5055605857606331 +past:0.5330310338519064 last:0.16779810730823894 first:0.0752759621283276 next:0.04414371042019637 :0.1797511862913307 +not:0.48998960913019723 you:0.32852831927309983 It:0.13687533480460395 people:0.026110277712099016 :0.01849645908000003 +ago,:0.01876726756867141 ago:0.016013664847388878 old,:0.008303587651155842 any:0.005346847786791735 :0.9515686321459921 +state:0.03748592260721136 me:0.034756563585504906 line:0.03382883255048229 lot:0.01706819342623113 :0.8768604878305704 +the:0.7302173323417194 a:0.06664834915754665 later:0.06303521294032623 that:0.04351535158954111 :0.09658375397086659 +was:0.3246837469366996 is:0.17937935150776374 were:0.1763846257065091 and:0.16646206561980373 :0.1530902102292238 +a:0.15264831110510058 tion.:0.036939462854929404 state.:0.027060237607751815 .:0.01677155914169736 :0.7665804292905207 +5:0.301801236301212 6:0.23144548055815783 40:0.2028680362752974 7:0.055976035966366335 :0.20790921089896655 +real:0.9654985013855667 said:0.013832270632421968 personal:0.0001327742192978752 cost:8.918384961662089e-05 :0.02044726991309662 +The:0.6338651543351393 own:0.18982344963000877 the:0.013386072416332842 same:0.0036003803333175726 :0.15932494328520164 +its:0.33946394344474634 her:0.23425692416048577 his:0.20626892888126686 who:0.022968127961345577 :0.19704207555215542 +along:0.24892321263698394 of:0.19124992632365342 in:0.18239123397233056 on:0.1778107818248058 :0.19962484524222623 +is:0.38385193204324963 are:0.16900352995848192 Is:0.14841350882178994 was:0.10159024107778539 :0.197140788098693 +the:0.17840109016909048 of:0.17710329960608295 working:0.14245579683839749 The:0.09023297882587361 :0.41180683456055556 +usually:0.09161243187900876 they:0.07959626392171522 we:0.05508182286864684 There:0.05099939522098075 :0.7227100861096485 +them:0.09590843137476099 notice:0.036086904183214176 all:0.029608933213006956 it:0.027994703957724947 :0.8104010272712932 +and:0.4450248634940431 It:0.2149820110492042 sure:0.08700904777398503 they:0.0472083584268378 :0.20577571925592994 +should:0.8613399141367142 will:0.09439493731826186 is:0.016340095099283324 during:0.01426426158915811 :0.013660791856582692 +few:0.993737608578028 soon:0.0006924850658866712 little:0.0006822615467990777 well:0.0004234430541786253 :0.004464201755107644 +four:0.2985435059675097 much:0.19809136437396666 rapidly:0.16080223968783505 far:0.09582272538311087 :0.24674016458757778 +the:0.7423727181223684 his:0.037408096796094026 of:0.036666018761459716 tho:0.031746665150356845 :0.15180650116972094 +may:0.24322682837819617 will:0.07165101176118131 are:0.06663444830476117 have:0.052275703697873176 :0.5662120078579882 +it:0.14749299400342603 It:0.09572038513244145 and:0.08959315491914879 There:0.05627129208584224 :0.6109221738591416 +to:0.23776902990095336 would:0.11563522890219105 you:0.1041405439204521 must:0.05837657688183997 :0.48407862039456345 +the:0.3247000444762074 a:0.07646333586373577 not:0.07513189129185842 he:0.06699337318576634 :0.4567113551824322 +by:0.22167052827018352 in:0.1511107020865119 of:0.15061246374304676 the:0.1103987937837401 :0.3662075121165177 +went:0.022610205359836523 as:0.019872668856931588 up:0.016367202815116246 sent:0.014576979153043833 :0.9265729438150719 +tho:0.3123809857268937 and:0.25956458495111207 from:0.16774724078762138 to:0.02633583375360348 :0.23397135478076928 +and:0.15337294165447465 the:0.1013659552249566 or:0.05593039069069621 of:0.05484248723463153 :0.6344882251952411 +the:0.1432678940659373 a:0.0365301559418461 other:0.02284299883813718 to:0.014224985031318974 :0.7831339661227604 +himself.:0.23556064129552176 men.:0.027708578932486707 him.:0.024829536714492888 them.:0.01936727775935199 :0.6925339652981464 +acres:0.2736280499110705 tons:0.15045160948135472 dollars:0.12903694519855252 pounds:0.06872133621880355 :0.3781620591902189 +heart:0.4454860737790504 name:0.025165051700966373 face:0.020943290143554793 hair:0.01126834412508691 :0.4971372402513414 +be:0.9307457588388369 be.:0.027012491555093995 have:0.02213218968326845 bo:0.00778026149134823 :0.01232929843145247 +his:0.9073673075971438 the:0.05595473838396311 their:0.02633677638313346 that:0.0013039363926836008 :0.009037241243075986 +is:0.35425833396425116 be:0.14549153016148017 by:0.14071731790564818 of:0.14024284039460988 :0.2192899775740105 +and:0.14186950613271299 men:0.10564619743861564 Bank:0.10479225459751271 side:0.07203920172808284 :0.5756528401030758 +parts:0.0643992077872049 out:0.03237199527472978 principles:0.012253658897479409 who:0.00930015370785325 :0.8816749843327327 +and:0.32459684776708897 the:0.2493357408172869 by:0.13166100507264505 ever:0.058758666487551986 :0.2356477398554271 +for:0.0060536936612394215 of:0.0008984951371769491 other:0.000856442765376615 such:0.0007054981127077657 :0.9914858703234993 +shall:0.4943986177269018 may:0.344140774386344 to:0.07511812587545758 might:0.05131023415044316 :0.035032247860853474 +he:0.6579194377785337 I:0.21302301995854742 they:0.0769470418258639 we:0.028894263378968034 :0.023216237058087168 +of:0.30126460528413446 in:0.09918699111791146 for:0.09014117900497876 to:0.07041962199851169 :0.43898760259446357 +of:0.9551949958986932 uf:0.02146855827255192 ot:0.01089388606333621 or:0.005093784196555908 :0.007348775568862862 +that:0.4066906776180968 the:0.40510190250730316 this:0.11034183188527374 one:0.05398219006452659 :0.02388339792479967 +the:0.5965367031049118 his:0.06438397699313132 her:0.04166846789158023 their:0.039553136462051074 :0.2578577155483256 +an:0.9884061279090491 the:0.005232512030929828 a:0.00023081808458275078 not:0.0002288440919099317 :0.005901697883528339 +the:0.4703073131111936 be:0.021905670188078496 tell:0.021733466339491362 a:0.015451357139790083 :0.4706021932214463 +it:0.4510898434855369 he:0.4312873737647009 she:0.07587798782945493 there:0.028290340464029135 :0.013454454456278134 +told:0.2204200635901114 with:0.190741551862486 to:0.11516535578028395 informed:0.06333592215181805 :0.4103371066153007 +!:0.484010225679305 and:0.23186332618689892 given:0.18618286809238113 I:0.061103579652716435 :0.03684000038869848 +is:0.12470708709208446 as:0.042412874013492474 has:0.04137491718618245 and:0.01666784611614952 :0.7748372755920911 +upon:0.32622762590475407 on:0.1331841559760585 to:0.12194403265461001 for.:0.05966461308644521 :0.3589795723781321 +were:0.42671672227341534 had:0.23450439609774237 having:0.1882151775513584 have:0.13625846192465008 :0.014305242152833866 +much:0.2080344250100554 long,:0.17230552730796841 fur:0.17143728991191254 many:0.06848786914752304 :0.37973488862254073 +in:0.29700770906920276 and:0.25412305860793594 of:0.08463826292249596 by:0.06631313369290873 :0.29791783570745656 +guests:0.04024702157568007 officers:0.02375715175333194 agents:0.02373508122044659 man:0.02227752743350893 :0.8899832180170325 +the:0.5115843721395292 a:0.283683011668661 any:0.04919925004361182 with:0.03454788732103556 :0.1209854788271623 +that:0.14096721228385284 and:0.13034276129907632 of:0.06703511957181688 aud:0.0394242920953242 :0.6222306147499298 +bond:0.3211848815863494 out:0.17813697527415656 application:0.11896374837026939 default:0.08483045689226835 :0.29688393787695627 +had:0.13241809087714565 would:0.1270408412817471 was:0.11037860449193483 has:0.08260111115003112 :0.5475613521991413 +this,:0.13407667506512458 know,:0.0533997980106663 will,:0.003378418056954583 testimony:0.001623942246005578 :0.8075211666212492 +which:0.1463344502485853 who:0.0986423033248782 would:0.09556008619711 that:0.0818835935714546 :0.5775795666579718 +to:0.6842826513320558 with:0.1520746190269975 by:0.05411479145542239 of:0.05142362896100874 :0.05810430922451556 +least:0.37279865644529536 ill:0.23491609417282114 well:0.1869104961929546 not:0.16258600901494952 :0.042788744173979265 +in:0.2897525564537363 la:0.22918224718472383 and:0.11772885319888493 of:0.08114593980944335 :0.28219040335321177 +of:0.9738124847158831 ot:0.02256799223013606 ol:0.0022138491911404567 of-:0.0010726100549308217 :0.00033306380790954984 +with:0.2416733489574145 in:0.19438329198447402 that:0.1862137683170069 such:0.15113047373650423 :0.2265991170046003 +the:0.1252012136494575 be:0.09607916689134831 have:0.08769629428326668 at-:0.07578623070988055 :0.615237094466047 +the:0.14389370045016153 was:0.09406997040250234 and:0.07603762744955928 are:0.062396916102853486 :0.6236017855949234 +three:0.0994217623740963 other:0.07764483014905388 then:0.07274265946527558 still:0.07014450120158809 :0.680046246809986 +to:0.36714780969108196 a:0.3011629598975349 the:0.1145211516365663 carried:0.02954811143128509 :0.1876199673435318 +him,:0.018543946038589946 power,:0.018067485211263647 it,:0.009526698363772552 year:0.009298847455415617 :0.9445630229309584 +and:0.6017374028486354 done:0.02498081213144083 are:0.016826031948017458 that:0.01060297970286249 :0.34585277336904396 +are:0.5900003034904995 were:0.21912557693831475 now:0.16515741421715097 seem:0.007355042544468599 :0.018361662809566224 +of:0.2358856281943723 in:0.17555716438061994 is:0.12688174249752104 and:0.12045405773195429 :0.3412214071955325 +the:0.3157890437768546 and:0.13909001035052815 The:0.053387121666898234 of:0.042907004876106304 :0.44882681932961266 +what:0.5395765740916606 which:0.060423573446823524 them:0.02363006626819114 this:0.016600759009612134 :0.35976902718371273 +and:0.2529741551822133 was:0.20386177097660008 is:0.15668746452390583 were:0.10270814735928464 :0.2837684619579961 +their:0.576324906505723 the:0.3305532752034749 tiie:0.018411417707367952 our:0.013441738977816742 :0.06126866160561763 +been:0.9756775961859131 already:0.011473268743495186 of:0.005861913449501307 commenced:0.0014719131755084986 :0.005515308445581984 +it:0.39742880067980624 to:0.303045299199614 him:0.11611394631475477 wide:0.03479222611758408 :0.14861972768824108 +place:0.5771753196839391 both:0.3633965290599334 front:0.019454777378762337 some:0.018153375705956744 :0.021819998171408346 +is:0.7443839410324189 m:0.1958578100556628 Is:0.016511979465490427 was:0.015470485671243369 :0.02777578377518437 +ought:0.7101714197066243 is:0.11089517251381549 would:0.08238713203162866 was:0.055418970373246834 :0.04112730537468481 +the:0.7779300595730525 an:0.08988657624100732 tho:0.028771298095269456 tbe:0.02622480280551882 :0.07718726328515194 +have:0.63043400144333 know,:0.126739581997436 noticed:0.07274487540886608 other:0.035853675392533466 :0.13422786575783452 +late:0.07156814266349851 work:0.028013003337144904 formed:0.026025238356477135 I:0.01718781172461735 :0.857205803918262 +who:0.07262165224711581 which:0.07180483728328826 they:0.05778771317146398 They:0.05331867023768881 :0.744467127060443 +more:0.18600134783517444 er:0.09784687206513273 h:0.03457465155697054 system:0.019225978053319975 :0.6623511504894023 +a:0.5341082884565642 the:0.4410020201753376 his:0.007803435867769874 my:0.0015291718341064766 :0.015557083666221794 +and:0.04374417421006398 with:0.011089567599198661 the:0.009865294545692845 or:0.003880420264248641 :0.9314205433807959 +Where:0.2655182658148121 It:0.1450790094637179 which:0.12198257218546489 and:0.08509520280114363 :0.3823249497348615 +the:0.1141123539407714 and:0.08970653850119402 of:0.0889391686099544 to:0.057905436317160545 :0.6493365026309196 +cent.:0.1264781276270977 day.:0.05028145472653302 year.:0.03985704553179971 ::0.01535186161946103 :0.7680315104951086 +and:0.16927245814437492 refused:0.08889128562913702 Company:0.08835395354647674 ple:0.05467445162301446 :0.5988078510569969 +the:0.34210521858341364 a:0.042708765205356665 their:0.020026160080575388 tho:0.018142785238215248 :0.5770170708924393 +which:0.18000216811758304 and:0.13305227492062877 there:0.10017277225768106 It:0.07209446175378897 :0.5146783229503182 +own:0.25373260394491093 be:0.007616833730947894 in:0.007335449893794175 was:0.0027045970275774694 :0.7286105154027696 +of:0.30487744854825544 in:0.1443096640386189 to:0.12460848758927615 and:0.09633090600532807 :0.3298734938185216 +of:0.21715154890491375 and:0.15016080515769978 The:0.10444250042932363 with:0.07462407200703411 :0.45362107350102876 +to:0.4173160687973859 and:0.09032402510527708 that:0.03647987662661247 were:0.03491328021639136 :0.42096674925433303 +boy:0.9093000000495062 fire:0.0037553331691583106 life:0.002046103667970843 man:0.0013511283149978128 :0.083547434798367 +I:0.4438972276477168 We:0.30439579410580103 we:0.12177210229518116 1:0.046325002470584915 :0.08360987348071616 +who:0.9397094155903389 present:0.006420111019097077 i:0.00238042951672482 de­:0.0011309531459114718 :0.05035909072792784 +in:0.13475262797904125 about:0.12808373486207394 to:0.12191880759785706 on:0.04644467016417589 :0.568800159396852 +and:0.10838549817170691 of:0.084198829866684 the:0.08000981141485193 were:0.06827759151531847 :0.6591282690314387 +by:0.578733939867197 to:0.23017938191975015 of:0.07080045585386671 among:0.05515656671003128 :0.06512965564915471 +be:0.7049799314266257 exceed:0.11651884500486995 apply:0.07312800995281106 bo:0.01883750957482784 :0.0865357040408654 +will:0.26702569680561755 on:0.1376780739260962 of:0.10861025042358244 and:0.0886263962057256 :0.3980595826389782 +satisfaction:0.10519539154183209 single:0.014465857440049525 in:0.008681260793613109 executive:0.006292644085853964 :0.8653648461386514 +and:0.1439899424531484 of:0.04946823403056962 that:0.04878910421615619 ;:0.019738815969930365 :0.7380139033301955 +annual:0.033746936212107254 meeting:0.030591423418041254 next:0.025840498801200564 national:0.025277184967620006 :0.884543956601031 +things:0.759551017452113 California:0.07133062017087002 affairs:0.06136631192035331 it:0.003164078960776171 :0.10458797149588739 +State:0.922233172973803 Washington:0.0041206907579852264 State,:0.0009528071252865499 the:0.00037621082663142486 :0.07231711831629373 +and:0.14630132356849765 the:0.08479727041608176 of:0.06683700931612194 to:0.05917448773252384 :0.6428899089667749 +God:0.016139799365547228 damage:0.013686824715947857 it:0.011736485202391312 Germany:0.007205904732647137 :0.9512309859834666 +a:0.564243607429432 the:0.1316088140974966 such:0.07889216264411593 as:0.03431546745969471 :0.19093994836926065 +been:0.238010621003032 a:0.07435500196897625 already:0.0379372774469418 to:0.03717132612249472 :0.6125257734585553 +and:0.26983063389059453 though:0.2308480120749531 while:0.08046243312354115 I:0.06553261852047944 :0.353326302390432 +them:0.38315781653694814 the:0.2748349899884171 it:0.053727034089741145 all:0.03636641103014866 :0.2519137483547449 +the:0.7224861032117619 tho:0.20981422033809802 that:0.021932363171427795 a:0.0167810427182792 :0.02898627056043301 +and:0.6361640145283287 that:0.04078239019599314 added:0.03661972036623513 addition:0.030030778456374075 :0.2564030964530691 +is:0.753434626432794 was:0.1330803815190781 of:0.04200947034759389 .:0.035067515806349696 :0.03640800589418427 +ability:0.14853878449969873 power:0.14117022520349187 capital:0.10252627425209718 right:0.03783675989131409 :0.5699279561533982 +and:0.20576314294334366 as:0.1372588750450298 to:0.11486428496826269 the:0.07423203834265119 :0.4678816587007126 +of:0.625819133972102 on:0.13657637641924994 in:0.04753258023682377 cf:0.03494604395168024 :0.15512586542014406 +and:0.8342464166559461 delivered:0.06831572765381555 who:0.04059381683217265 but:0.03220322922821956 :0.02464080962984609 +the:0.44877518916863735 a:0.08170490480271932 this:0.034551080594040405 their:0.03227963591324564 :0.40268918952135735 +be:0.8874749326365474 he:0.01097437454005683 bo:0.009072478706614075 also:0.008232993840034047 :0.08424522027674777 +is:0.4974459644838439 are:0.4898512780161675 was:0.007344753199930552 Is:0.00271196206501517 :0.002646042235042904 +the:0.14794265059373193 a:0.03425079381337658 other:0.03251940823887831 in:0.02850497330319403 :0.756782174050819 +laws:0.08858234845693837 sub-:0.053558532351464704 the:0.0309698962886118 to:0.004898191103494298 :0.8219910317994906 +it:0.7862133161474775 It:0.034667675990564695 He:0.029577700864531466 and:0.029009904513915063 :0.1205314024835114 +party:0.2269709571175854 Congress:0.11020917206769855 way:0.07747344038618746 life:0.05027590156039945 :0.5350705288681291 +Mrs.:0.27549433694572106 and:0.062330314501723744 Mr.:0.049755689059103145 of:0.038322723352690664 :0.5740969361407614 +the:0.47324999996570694 and:0.15100617255346527 in:0.07044646616233394 The:0.04718225351669882 :0.258115107801795 +fact:0.08381595014609104 necessity:0.07482190884252617 question:0.042773562445689306 change:0.0424479863658075 :0.7561405921998859 +be-:0.0185521278477204 -:0.011247883617016598 of:0.007581620784538253 and:0.006829526970852757 :0.955788840779872 +portion:0.4707577885628977 part:0.16472766577823517 one:0.02679417469705593 some:0.01901236152744548 :0.31870800943436567 +ar:0.11544105215832233 the:0.07961522018614238 The:0.06834107079872774 par:0.011900522940962598 :0.7247021339158451 +the:0.12200336537384858 of:0.08901992004367079 a:0.08879779503483083 is:0.05352824886352859 :0.6466506706841213 +the:0.7692075651363939 this:0.17883060901989037 that:0.021431227718963705 thia:0.015361725784623373 :0.015168872340128762 +of:0.9351641085271615 across:0.01644517365442269 and:0.015819740795565168 in:0.013540878449343848 :0.01903009857350666 +placed:0.10178251573435809 put:0.05894533355632255 kept:0.058490954542524176 done:0.03585979247863351 :0.7449214036881616 +of:0.46828105667766035 and:0.12518781171936166 that:0.08216808066693032 in:0.052119962510613176 :0.2722430884254345 +of:0.8776251332395829 for:0.0613840958230682 ot:0.01785988169869896 ol:0.009978318594259435 :0.03315257064439048 +acting:0.006369577620304899 posed:0.003583017859824579 not:0.0022714148341856466 claimed:0.0013779234971165067 :0.9863980661885685 +of:0.8432318072216822 and:0.02084483429608217 the:0.020592506812411242 in:0.01631448664472316 :0.09901636502510121 +I:0.9635521466535256 we:0.03625078585881228 you:9.898221067882337e-05 she:4.999631695985826e-05 :4.808896002337131e-05 +being:0.16847296884360827 not:0.12582748916414718 also:0.10348029910004297 clearly:0.07997643128934144 :0.5222428116028603 +make:0.2594355068383118 be:0.14590622616221516 get:0.05410379045896222 such:0.05401495830504515 :0.4865395182354656 +a:0.45074948054262476 some:0.31752367532661163 two:0.16987977192606357 three:0.018981330648843123 :0.04286574155585702 +tho:0.8534159578654379 the:0.10637484390680546 your:0.0046072255347481385 they:0.002697433896322205 :0.03290453879668642 +Robert:0.10537700126504423 William:0.023779114156918153 and:0.018352290339075716 James:0.010130420406665926 :0.8423611738322959 +this:0.9579254764879418 the:0.015464148829318639 some:0.00838892882825603 that:0.0052789981468225255 :0.012942447707661196 +and:0.10569157086484454 the:0.09717540537716066 of:0.0881913181446089 The:0.060750212465036514 :0.6481914931483493 +our:0.9975781526090542 his:0.0009658151807211388 a:0.0005467403719278574 11:0.00032099378305792926 :0.0005882980552388673 +near:0.17672794911801648 a:0.13342555572998346 them:0.1260345379171293 the:0.11919786178491068 :0.4446140954499601 +ready:0.19607155762918108 little:0.06062754629235686 new:0.04949057987631249 large:0.03313551538568249 :0.6606748008164671 +receive:0.9973854452046697 paid:0.0003538974448467926 at:0.0002408239113624079 of:0.00022947873517004035 :0.0017903547039511134 +the:0.36165755135182626 her:0.16403820831446095 be:0.0694423737051594 a:0.03527528788782913 :0.36958657874072426 +matter:0.08375122548035538 especially:0.06987911186570851 and:0.0560675382061851 mentioned:0.03372558901851118 :0.7565765354292397 +long:0.050597851669379024 large:0.04640500301644093 trial:0.018666897524344413 wide:0.01719146403529054 :0.8671387837545449 +of:0.44164152824355857 during:0.2008261166204232 for:0.14325116568958712 and:0.05696261709088011 :0.15731857235555116 +a:0.32662822360122334 the:0.1978654598635836 he:0.09315583834594696 it:0.06794158241266716 :0.314408895776579 +death:0.09533508413797445 time:0.05908856713150839 end:0.05684970858746217 occasion:0.0413674956410833 :0.7473591445019716 +the:0.03785507357604131 -:0.03512828660162698 and:0.03442505348400962 i:0.033974527464363975 :0.8586170588739581 +Court:0.04965572100971758 and:0.04760908200907543 or:0.036395952101868904 whether:0.028274695755335866 :0.8380645491240022 +and:0.21340423269264955 to:0.11488728565895442 the:0.07331114622724286 in:0.06992387590676397 :0.5284734595143893 +the:0.7392195316572497 when:0.07903498657623734 an:0.05564684774008229 a:0.045578567992504336 :0.08052006603392632 +himself,:0.27469153537287994 it,:0.10123380736690868 it.:0.05615694636752156 the:0.05598720684402411 :0.5119305040486659 +to:0.07565358607779521 a:0.06229363016968628 every:0.05885902889049394 as:0.049413155075285625 :0.7537805997867392 +half:0.5268447552576444 for:0.07837715933666825 over:0.07327432600234297 of:0.06729605906794285 :0.2542077003354014 +Is:0.393308149710406 of:0.12300991529951087 drew:0.07352331773837258 when:0.06914174313814561 :0.34101687411356496 +the:0.08053695579693404 and:0.07882461421518856 of:0.07698790309747619 to:0.03308911272338291 :0.7305614141670181 +government:0.3701716596070459 located:0.27637069185472096 close:0.036206775160530245 conducted:0.03102860412573788 :0.2862222692519651 +the:0.058109052279793426 The:0.037813618464545014 A.:0.022408727203398995 .:0.009856953637017309 :0.8718116484152449 +to:0.006163926131581777 treated:0.0035110418485817738 two:0.0015052811354481707 of:0.0014703176719528973 :0.9873494332124355 +the:0.14165740542987762 not:0.116668516464811 no:0.07845233182090552 will:0.053554181007747816 :0.6096675652766579 +was:0.09308135441306956 since:0.0854570824595414 be:0.055909153433466974 until:0.05319722262119756 :0.7123551870727246 +in:0.37116624033154944 on:0.33090603244133043 from:0.14640840524653112 into:0.0772056533124539 :0.07431366866813506 +.:0.001855273922808749 com:0.0009562104405656836 in-:0.0007780893394342998 con:0.0007485356479321041 :0.995661890649259 +four:0.27475354051431805 two:0.16140589429741659 five:0.1418096870190619 fifty:0.13356932646158617 :0.2884615517076172 +from:0.5219599957964994 To:0.181483506961017 In:0.1457746005299464 in:0.08931744852722906 :0.06146444818530793 +is:0.3147851330208983 Is:0.23533118960109345 and:0.10155198356061114 ally:0.09244089749568997 :0.2558907963217072 +the:0.441668969387161 a:0.12998795639109495 this:0.0447187922058718 their:0.03740671974062521 :0.34621756227524714 +the:0.4838421674286751 a:0.1468739164156451 tho:0.029932039632510395 no:0.018092491553219073 :0.3212593849699505 +of:0.1229360351185249 and:0.10734124393974191 the:0.06412800266404631 to:0.04069677061279482 :0.6648979476648922 +and:0.1396839112145961 of:0.12800670116807988 the:0.05161763635398137 to:0.03782281235511404 :0.6428689389082285 +and:0.13180847325482264 the:0.09345102055025913 of:0.07361203667964424 to:0.06426409593434208 :0.6368643735809318 +of:0.8770966465540556 in:0.04010187921062562 before:0.03736962259579363 ol:0.016207940211676753 :0.0292239114278486 +thing:0.5642708720642199 man:0.06619269016905532 way:0.01932771736456341 place:0.017330366278566645 :0.3328783541235947 +war,:0.3129052059312787 God:0.1872749875596991 I:0.04097878729246201 people:0.02555190342667518 :0.4332891157898849 +now:0.42495914520129924 it:0.1780421773843823 this:0.1225642187325271 that:0.10616703584423834 :0.1682674228375531 +a:0.20055337597314735 the:0.05437337738118152 in:0.04450494337071123 not:0.03898873560389105 :0.661579567671069 +and:0.20196283360965453 the:0.10228096621437922 ing:0.07839544552497951 of:0.06101635471066299 :0.5563443999403238 +that:0.11961632749166508 and:0.09657757044072979 it:0.08835897323106272 he:0.08476635788548616 :0.6106807709510562 +the:0.8312584661963799 their:0.06598628242442858 good:0.05115150354936054 his:0.027115487210832973 :0.024488260618998083 +of:0.40672905368024215 the:0.21034949463952646 made:0.058392646463641895 and:0.05006329253839278 :0.27446551267819674 +of:0.7784450663886178 is:0.0608145787986219 that:0.05536263758781659 and:0.04315299670264408 :0.06222472052229977 +and:0.2431578243304649 or:0.07415975749029008 as:0.0537407230127185 that:0.04874814325192605 :0.5801935519146005 +of:0.4631746577006896 Mr.:0.15654089783024225 on:0.15138511007432856 are:0.05988610073253051 :0.16901323366220902 +that:0.10013903606529553 not:0.0889240390074439 a:0.08834037845834347 before:0.05126200642454001 :0.671334540044377 +appointed:0.9763685337318478 unable:0.003515636923444445 compelled:0.003390233189396566 made:0.0015373482606544791 :0.015188247894656668 +to:0.4170592960176123 You:0.2894593391620008 To:0.11258111812528153 We:0.0945482147855239 :0.08635203190958148 +they:0.928062408382141 we:0.030334705650797954 there:0.009620790111907258 you:0.004705197016598498 :0.027276898838555264 +own:0.24462647912257188 financial:0.10403220848072367 ordinary:0.09791658676234731 immediate:0.04152214152510181 :0.5119025841092553 +his:0.10249249555393997 practical:0.08518209627636626 most:0.058940012125468434 ad-:0.04587102500904984 :0.7075143710351757 +of:0.825303808068784 ot:0.05440917025977178 as:0.03339191740200371 a:0.01740582746750078 :0.0694892768019398 +are:0.36868010251890176 were:0.26516811284357394 have:0.05249993430734002 be:0.04579802722182425 :0.2678538231083599 +been:0.9772545998766344 not:0.009201772817377267 be:0.0014197310816823478 scarcely:0.0012754097002228677 :0.010848486524083274 +and:0.10690569157442528 of:0.0918217362072339 the:0.07841048552579091 to:0.039954119414733494 :0.6829079672778162 +of:0.30347805080805135 and:0.09981863546790903 the:0.04760731875376683 to:0.031165483028999547 :0.5179305119412732 +the:0.20775239360034262 to:0.09101279602330932 and:0.07928066144998053 their:0.07641132156027729 :0.5455428273660904 +just:0.11893855244341886 almost:0.03545261827974138 getting:0.012198140338768744 it:0.005409270983835296 :0.8280014179542357 +and:0.1566407895747214 the:0.0969756783514702 of:0.06436549080931807 to:0.039344592509054865 :0.6426734487554354 +the:0.13304400573532094 this:0.1111192909620755 public:0.10779528046703533 1:0.10248101356970317 :0.5455604092658649 +1:0.229839883960016 of:0.1432828021723872 than:0.061179222736086475 and:0.05424054779629481 :0.5114575433352155 +principles:0.3010382620687396 form:0.24483466290460082 days:0.01847388136708401 effect:0.0118737989867846 :0.42377939467279097 +the:0.16296913826516632 of:0.1159711132638495 and:0.1030804799121719 was:0.10131468503775252 :0.5166645835210597 +know:0.0574380277508228 had:0.0516566869584248 believe:0.05039138549267812 was:0.04905219497111878 :0.7914617048269554 +board:0.2527780461019055 company:0.1188544665978734 corporation:0.054557671443478874 city:0.05440955419913771 :0.5194002616576046 +more:0.25575627076694024 the:0.2487017741423685 this:0.1694493446868685 any:0.11986686551403819 :0.20622574488978432 +a:0.6012536441445266 A:0.31301375017024236 Every:0.027270176616387767 by:0.013041173608147166 :0.04542125546069593 +and:0.07401152691821358 of:0.06302532508343 the:0.049559588722077955 to:0.027671375762810087 :0.7857321835134685 +and:0.1853932305709359 ;:0.10653275853273098 with:0.04598531984696098 work.:0.030258302635483608 :0.6318303884138885 +and:0.1100590037976719 of:0.09681493288469997 the:0.0854755318473046 to:0.03336832770646895 :0.6742822037638545 +would:0.42581775089555046 can:0.14871567906125613 will:0.13001074034826296 should:0.10684761505715268 :0.1886082146377778 +the:0.5023632289407585 safe:0.3733627821717007 tho:0.12181481455076157 American:0.0012993933764317447 :0.001159780960347705 +this:0.4704743306622126 the:0.3446199236785778 that:0.06312607938485731 its:0.05738876764232408 :0.06439089863202803 +first:0.03677731011810701 great:0.0274428006977824 general:0.018087022773991053 total:0.015498111076776597 :0.902194755333343 +the:0.985175922734337 Black:0.003841796594942438 tbe:0.002196502780981126 tho:0.0013142095462481973 :0.00747156834349134 +to:0.1963110610624796 are:0.13424452711243448 and:0.09724887166801065 except:0.09057082623096076 :0.48162471392611444 +the:0.3967337440677353 a:0.2106517784304619 this:0.16798598969974152 two:0.027374032262942643 :0.19725445553911863 +of:0.987435664128873 in:0.0035774700656090496 like:0.0016045679192513375 about:0.000578111691339937 :0.006804186194926708 +in:0.5927511547642329 by:0.10645638495324275 with:0.06057142515366966 to:0.039568575922899245 :0.20065245920595545 +being:0.27419164121358314 to:0.21029435951155953 now:0.19280350949019298 not:0.0283031823856593 :0.2944073073990051 +away:0.2042020607002593 about:0.187314932748035 and:0.06852195340387239 spent:0.0371448080524392 :0.502816245095394 +a:0.4768617644754614 some:0.2855510145605897 half:0.08366760039646264 the:0.043690137383558245 :0.1102294831839279 +lands:0.20406636610372916 provided,:0.15382057560421636 and:0.13109664562498008 organized:0.06388857902949907 :0.4471278336375754 +here,:0.449500401755035 if:0.27380271577287274 on,:0.06125641137336977 here:0.04855441218508151 :0.16688605891364108 +at:0.3624698525736178 afternoon:0.23592241853678858 from:0.14555846625618574 in:0.07611151127422815 :0.17993775135917967 +the:0.3331554291776617 five:0.06163773582904555 t:0.014434421353671845 n:0.009959083016744169 :0.5808133306228765 +be:0.0821961470289753 admit:0.008269933374467596 know:0.007143522282264159 now:0.0064741624773031435 :0.8959162348369898 +who:0.1275353911017506 would:0.12653381201818176 We:0.1243315288221069 I:0.11174314534494735 :0.5098561227130135 +the:0.4364010744543928 as:0.12134196232635823 for:0.10594000767009713 their:0.0835116023545771 :0.2528053531945748 +re-:0.5971867834549518 re:0.1256502294457612 then:0.10967380716049266 re¬:0.0968366658374245 :0.07065251410137 +the:0.2096966437906817 and:0.11077259039349796 to:0.09175486149256849 a:0.08846759141296712 :0.49930831291028477 +day:0.1287277375737129 tion:0.029372054262716316 ment:0.021401679357998016 ty:0.015102483862882474 :0.8053960449426902 +life,:0.1780413450931275 and:0.04596272439374338 of:0.04298066929131643 party:0.024398419983776485 :0.708616841238036 +the:0.9338544187901362 tho:0.021497039975180408 tbe:0.008027845402187032 tha:0.0013870782583359717 :0.03523361757416055 +are:0.20579640639628763 have:0.071799223960369 were:0.05054809860876743 hope:0.05031662736087093 :0.621539643673705 +to:0.41588264834706246 will:0.22281852644850764 would:0.12207444199323653 may:0.05278493900839146 :0.18643944420280195 +the:0.5709574972444903 West:0.18391214446052853 tho:0.0759240372261869 Miss:0.011487470946056169 :0.15771885012273806 +for:0.5682566929571339 to:0.10271930969650128 the:0.09473539180834577 by:0.06825040546116673 :0.16603820007685233 +the:0.6044609125743844 a:0.3096948737107961 any:0.03423699426824939 its:0.03284525534156097 :0.018761964105009032 +would:0.41732195331741556 to:0.1956660086315092 were:0.15952920243709798 that:0.032934796888255055 :0.19454803872572213 +want:0.09855650876435568 city:0.05846894617495372 use:0.04263261419220056 sale:0.03641682637519 :0.7639251044933 +the:0.36544208876514406 their:0.22180040116415806 your:0.09668548086330438 tbe:0.05882178174634627 :0.25725024746104724 +and:0.563432950652222 of:0.07717245018998198 not:0.015967159447895715 for:0.013935206715944533 :0.3294922329939556 +meeting:0.1378957892264623 caught:0.11544460695387529 attended:0.088914767147481 received:0.056235865048471924 :0.6015089716237094 +to:0.4181760776871369 of:0.009588233373884966 in:0.008398271487583648 from:0.0058193325740354225 :0.558018084877359 +of:0.0013030265324394164 mind:0.0006975911276332444 Senate:0.00039218352097726984 France:0.0003594728471602366 :0.9972477259717898 +west:0.6552421602222919 east:0.12683850663467391 south:0.10438229040618818 K.:0.057617777476851297 :0.05591926525999461 +six:0.01056262590850667 ton:0.007683481073072741 7:0.003615631824719276 25:0.0035615067286430525 :0.9745767544650583 +iu:0.8729360733270802 in:0.12696374766811006 by:5.566098391872395e-05 within:2.4741501531617813e-05 :1.9776519359563756e-05 +to:0.46383969450760243 the:0.19930549212449036 and:0.04941727424677634 you:0.019232974635435256 :0.2682045644856957 +great:0.28050759942989245 the:0.1447128584182757 very:0.09812509966244182 good:0.08495719750975868 :0.3916972449796313 +party:0.10218596399335823 legal:0.05078817310710693 committee:0.041468783958593894 the:0.02706992610280264 :0.7784871528381383 +number:0.16745883722757188 es:0.040722077230990895 of:0.012212958237316064 which:0.011375531495504057 :0.7682305958086171 +look:0.14732005433888676 pair:0.11760650007657318 glass:0.11691185128028772 bit:0.06698524240660444 :0.5511763518976478 +passage:0.07798783377673182 first:0.05291610482388055 that:0.028781077375687088 service:0.02163313688611092 :0.8186818471375896 +that:0.062367111782687876 him,:0.031432024775912074 his:0.019682491141220813 be:0.0042387366289251705 :0.882279635671254 +and:0.09480711874380107 the:0.06786967125889418 evening:0.05534066807221646 No.:0.04862409856327448 :0.7333584433618137 +Her:0.23917272086660887 He:0.19772469028083128 I:0.09050263939850724 The:0.07087391922375096 :0.40172603023030157 +the:0.3038092366451075 a:0.1627967880730354 cash,:0.06724993340100371 their:0.056672177579596486 :0.40947186430125687 +for:0.11403014508800079 Only:0.10902929837262874 in:0.10323058969434351 and:0.09443614162293615 :0.5792738252220908 +.:0.015277012661641743 i:0.0011015245953479628 ,:0.0007873052651943832 M:0.00027053760394410567 :0.982563619873872 +-:0.09426072311033853 d:0.08784123943979345 t:0.06094100455315766 prices:0.05297543396525366 :0.7039815989314566 +J.:0.16380434693875615 T.:0.08074443283287526 B.:0.07130893332684163 H.:0.06534935161566943 :0.6187929352858574 +as:0.5351618912715578 and:0.1405819978841339 but:0.08397793682366325 that:0.05631589226901217 :0.1839622817516328 +such:0.20597757253268392 have:0.02488256148178895 within:0.013846328705260896 meet:0.013383194711468344 :0.741910342568798 +of:0.9738165112986424 along:0.016120942149865026 to:0.0030254516370817252 on:0.0028265543206626373 :0.004210540593748154 +officers:0.12005088966906892 officials:0.041113310999709066 of:0.015904524427948753 house:0.011825029669137517 :0.8111062452341358 +the:0.00044291927670703874 of:0.0003720702565789813 a:0.0001489104693585936 vice:0.000100883918278374 :0.9989352160790771 +which:0.09413131719231499 life:0.08280530298376151 the:0.0363925590649677 them:0.028206506282970608 :0.7584643144759852 +with:0.42517570341957384 above:0.21950226357823485 around:0.17018766019275583 in:0.1291183452675593 :0.05601602754187629 +as:0.12281942303745653 and:0.09555240264417059 power:0.08328810305955806 work:0.06841219632479668 :0.6299278749340181 +on:0.5437123562186821 by:0.15427702598776308 In:0.1308297186873787 in:0.10706507089975797 :0.06411582820641823 +more:0.28649909796317824 part:0.059606810379522084 service:0.02847489566595436 limits:0.02315945016380159 :0.6022597458275437 +deal:0.8242373397174392 share:0.06767869903564423 number:0.027818552276322944 idea:0.013608548734525088 :0.06665686023606866 +the:0.1572418087937637 this:0.11563188049668414 that:0.11390151563097815 said:0.034462429527827285 :0.5787623655507468 +He:0.1883641141522707 and:0.05327429576666021 he:0.022365622227770377 lie:0.012626317549740142 :0.7233696503035584 +be:0.8108684131802029 bo:0.07539611244530274 he:0.05798866884490939 lie:0.025990732587837465 :0.029756072941747574 +all:0.302815987095475 same:0.29103483492691234 exchange:0.049242711739631476 fact,:0.04728347458707466 :0.30962299165090645 +all:0.8683533300565668 of:0.0382366169079207 been:0.024679149063973057 with:0.011286670098165422 :0.057444233873374016 +By:0.3412973384314296 Under:0.2865913376238495 of:0.13699855394238789 under:0.09964058447806817 :0.13547218552426488 +the:0.9579772790630641 her:0.006270458343549303 tho:0.005421203745773289 tne:0.004705933461536556 :0.025625125386076912 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +of:0.21588824769602247 along:0.1674243356604442 on:0.16606068723121378 and:0.14237782518102582 :0.3082489042312937 +they:0.40352576805429313 he:0.3294312103756766 she:0.12624524387568298 it:0.04664757982248818 :0.09415019787185924 +It:0.2369842822166932 which:0.08337710137282642 and:0.056815267104231355 it:0.039890685492057855 :0.5829326638141912 +took:0.22638767713277738 large:0.22466608783242395 no:0.10967362018952122 and:0.05856583423285256 :0.3807067806124248 +been:0.30462288091836304 now:0.0008173725698288594 all:7.727070287989906e-05 steps:6.543622133191765e-05 :0.6944170395875963 +a:0.16658936500591728 also:0.06274674747701778 in:0.055687392792388726 not:0.049196206222353524 :0.6657802885023227 +of:0.2125225891594033 and:0.10005274717592753 the:0.042649280445236255 to:0.02421982856930586 :0.6205555546501269 +the:0.6201883158400624 their:0.05232686869164309 this:0.0421230477632958 a:0.03919357303983366 :0.24616819466516512 +the:0.5880444866107591 The:0.16548128762545164 in:0.02992896040235073 an:0.029400473741340367 :0.18714479162009806 +the:0.11078302852505109 a:0.037292499897357584 is:0.035777302276001115 be:0.024606980017180518 :0.7915401892844096 +to:0.626767731469952 on:0.1600547925534142 in:0.15967304343553163 of:0.030895332790785122 :0.02260909975031689 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +not:0.29559708556204634 entirely:0.12764318213696177 a:0.12175624089729434 brought:0.11535038231443855 :0.339653109089259 +and:0.15575077728127593 the:0.11695497654825526 The:0.11672801301574584 of:0.07840687337403428 :0.5321593597806887 +formed:0.04103777804252959 -:0.019259879762452994 so:0.0034536649535214393 deed:0.0027806472301972807 :0.9334680300112986 +the:0.40316722378126557 of:0.14764859457511284 and:0.052801942386651146 to:0.04632413124755637 :0.35005810800941406 +occasion:0.11412530644806995 previous:0.05141999439815041 man:0.012635222723367541 far:0.008048713178453917 :0.8137707632519581 +the:0.33249744441132223 its:0.20273961568035487 and:0.1217841258732302 The:0.034593338384511 :0.30838547565058183 +elected:0.10565506901963422 one:0.06580114496363752 brought:0.05542336608901625 wholly:0.03611732119427781 :0.7370030987334341 +the:0.8045478326556461 read:0.032925234624283505 her:0.017860675597888453 gives:0.01051963799827419 :0.13414661912390782 +thousand:0.2421916538579821 per:0.123477620672318 million:0.1168104018475645 in:0.07111071263245747 :0.44640961098967785 +the:0.2954266164368844 twelve:0.1694690121586105 spring:0.029028466455770056 more:0.02344199955234133 :0.48263390539639367 +with:0.8815837117410043 of:0.0959808834519773 as:0.016559818502445766 was:0.002000420052624209 :0.003875166251948435 +on:0.7742929981039305 as:0.17122976883858426 under:0.012024194476311112 to:0.01043655795637673 :0.03201648062479736 +the:0.4112627150246132 to:0.29410010368365586 a:0.10457876421837889 gold:0.06678571381644599 :0.12327270325690616 +will:0.380612116075659 to:0.16447636388387224 would:0.12199657360170595 and:0.10683264724748523 :0.22608229919127773 +the:0.7292382750730607 a:0.044593970895101205 tho:0.03978700087862539 his:0.026584125288782495 :0.15979662786443 +and:0.19635699663694048 the:0.19593928392872897 The:0.11946652694664181 of:0.0656805439420563 :0.4225566485456325 +for:0.6199550597059058 in:0.0810773392322837 spent:0.0502078012488971 at:0.033131211190620735 :0.21562858862229287 +election:0.7684221895684827 election,:0.06903274584121007 sale:0.034071590930403094 publication:0.008276076302505521 :0.12019739735739858 +a:0.6645601970263433 the:0.09937376630523483 not:0.011547430382496197 men:0.008324066499563418 :0.21619453978636233 +to:0.2818799986644353 a:0.044570675931727984 the:0.04127846772937501 not:0.03812679251781006 :0.5941440651566516 +be:0.44856258863219267 and:0.07245861294520577 spend:0.04128509035823922 of:0.03494575753103106 :0.40274795053333123 +state:0.22742615611898828 condition:0.17088141127679954 system:0.07984956502170647 House:0.025247613564902908 :0.4965952540176028 +men:0.4644705369526637 soldiers:0.15099291389326316 people:0.08807323449807965 man:0.0723039991498473 :0.2241593155061462 +1:0.0022116062570188403 of:0.0019279732401006184 il:0.0015008597852059847 and:0.0013956032150161438 :0.9929639575026583 +less:0.017109313375296493 worse:0.006624561877198619 greater:0.005307353841795509 more:0.003963979863879068 :0.9669947910418302 +in:0.1740525991524972 all:0.1583124780130192 free:0.05436094675485114 if:0.015194822844893026 :0.5980791532347396 +the:0.25204626921748857 a:0.1377106958740478 cash:0.05228559302664491 and:0.05228174521417121 :0.5056756966676476 +work:0.012475809287706986 change:0.0034681647133485375 mortgage,:0.0033842572072153455 piece:0.002434276559974622 :0.9782374922317544 +the:0.5574849825851346 an:0.17727543363105977 a:0.10258604988868388 November:0.04990231531421285 :0.11275121858090907 +the:0.6618059352481832 his:0.1289440176394148 a:0.046477431885089994 tbe:0.029895033021422584 :0.1328775822058893 +two:0.1876714135329764 above:0.040573411696687704 nations:0.034954604605807627 articles:0.027344804210196274 :0.7094557659543319 +With:0.5312281437918549 or:0.13206907980540214 with:0.1101886881875339 out:0.07009396592872125 :0.15642012228648783 +property:0.2909850505954529 premises:0.1518910584671828 club:0.012111533140743556 sum:0.007693178914775879 :0.537319178881845 +to:0.547261415837213 with:0.09518500324362425 in:0.06444152742387892 as:0.045878705407230456 :0.2472333480880533 +president:0.3202986825840014 case.:0.030944402450311936 of:0.010444675327328012 ground.:0.009436370857670962 :0.6288758687806878 +work:0.0997338650928404 time:0.0739448125371359 ground:0.039791372189927524 money:0.019000220765004 :0.7675297294150922 +few:0.3446289746604367 six:0.27852278733738445 for:0.1779916509655792 For:0.07963028910914867 :0.11922629792745114 +,:0.23753407642014207 and:0.05138702113519481 until:0.03176856300187048 Just:0.024377980445777454 :0.6549323589970152 +could:0.6027044920753964 should:0.05053259734538084 can:0.01948745731454813 small:0.012002271713509146 :0.3152731815511655 +failed:0.24268680640600976 sufficient:0.031138794903916064 made:0.02416516969482055 commenced:0.02019148217273661 :0.6818177468225171 +and:0.28727034981365857 that:0.052216977169712527 ana:0.03048677578478303 to:0.02317805501853674 :0.6068478422133092 +application:0.10274536666371528 he:0.08351868942684879 mortgage:0.08058055410424789 corporation:0.06966545061258822 :0.6634899391925999 +part:0.2972266601780283 days:0.1980841568773492 stage:0.07931060236702556 training:0.05927979760943714 :0.3660987829681599 +the:0.438457139084693 feel:0.09926616212698179 a:0.07667368686601926 to:0.06712998808042174 :0.3184730238418842 +relations:0.11366986025236676 of:0.09739674018354395 con-:0.05049341587748538 practical:0.02918878927730949 :0.7092511944092945 +in:0.22992258370484148 17:0.10052309384285549 and:0.07800559376823642 24:0.06973903461105004 :0.5218096940730168 +by:0.3725749722140891 with:0.14328879567832073 to:0.11216391684286316 as:0.10632365657389824 :0.26564865869082877 +as:0.5941614792136343 ia:0.14579700066340073 if:0.0224890332632872 and:0.015147102322115176 :0.22240538453756267 +into:0.5298439175965606 to:0.23209339298090517 under:0.12845822346655722 from:0.05017146240183276 :0.05943300355414437 +was:0.8024787257786921 is:0.09754347272913766 had:0.024865301639797957 Is:0.011122679826884672 :0.06398982002548755 +a:0.2906717242613437 the:0.24013795011667935 an:0.052665954866356085 to:0.043556385770473584 :0.3729679849851473 +do:0.3294549961132406 try:0.07588060892780296 take:0.06246408534029811 meet:0.04309298179133113 :0.4891073278273272 +at:0.29117803233602785 or:0.1289645043799179 as:0.09182702400020396 to:0.08674060888595596 :0.40128983039789423 +entirely:0.5940916895266845 entire:0.17635199651906452 almost:0.011145817041997961 if:0.011040556008954849 :0.2073699409032982 +per:0.6271206345233552 payable:0.1758673684025566 gold:0.09988259523645181 of:0.0449777734500294 :0.052151628387607174 +firm:0.38022501291405647 company:0.11298589546802293 association:0.03257240408406246 person:0.01705812050545827 :0.4571585670283999 +been:0.28943417171174807 p:0.26143710676487186 a:0.05708484236228031 the:0.02698777148690883 :0.3650561076741908 +whether:0.127332004640131 that:0.10667739762449824 not:0.0565193345861382 if:0.02993772738998317 :0.6795335357592492 +came:0.17704140987670158 comes:0.01590947799093509 come:0.006598549877762314 gun:0.004687735021640369 :0.7957628272329607 +ground,:0.14265125971570694 of:0.09536240302415541 ground:0.0774209617953793 that:0.03382097008810987 :0.6507444053766485 +of:0.029806888067695613 by:0.027452585336290563 body:0.021466196281533338 until:0.015755877403250317 :0.9055184529112302 +im-:0.12399197108190242 pro-:0.09818665317332513 pro¬:0.06260163231973864 ex-:0.05802254332963471 :0.6571972000953991 +the:0.19789300916231112 a:0.04156139770823127 other:0.029396675361478605 probably:0.025116089451479504 :0.7060328283164995 +to:0.31917530928463944 must:0.1347637511221243 and:0.09520092344476905 we:0.08919983506671327 :0.36166018108175396 +start:0.26375170396978515 so:0.1314960147585854 than:0.07517577694747753 of:0.007836786065595645 :0.5217397182585561 +in:0.33672200393199414 into:0.24091115629296916 under:0.20970829162613785 In:0.1671576425401295 :0.045500905608769154 +the:0.2178645886113324 and:0.17151892960256465 The:0.09876714743523456 of:0.08153473668440483 :0.43031459766646346 +means:0.3243234069632564 one:0.20348335745947613 all:0.16009694190061602 reason:0.14771875118965871 :0.16437754248699296 +It:0.17390981221255708 it:0.14263515692026074 and:0.0851511316258691 which:0.0660890409529884 :0.5322148582883247 +and:0.5147093907887259 fed:0.14299680183359378 aud:0.030641817812712843 can:0.023196346648961672 :0.28845564291600595 +hundred:0.3312147479028304 No.:0.16384839821531486 of:0.0987083679739088 year:0.039895794784318844 :0.36633269112362704 +4:0.04469502849764695 J:0.030812320247485942 25:0.00909589798140168 10:0.008677490029956 :0.9067192632435095 +F:0.2515622604412721 J:0.21684000492108615 H:0.19208943082759347 G:0.174060454132523 :0.1654478496775253 +and:0.23708203003799166 regard:0.20145257847204034 relation:0.14890209045080338 reference:0.13791919099733546 :0.2746441100418291 +facts:0.16012861039997578 people:0.06382701424749367 doubt:0.05809006193082105 information:0.053480035191078336 :0.6644742782306312 +and:0.2879080800321161 until:0.19535739349200318 with:0.19359479538016422 when:0.1918659048774411 :0.1312738262182754 +great:0.516025430583112 of:0.03766089071014749 the:0.02318351047651998 for:0.022701569797493118 :0.4004285984327276 +the:0.3992596604352527 tba:0.3473856705707615 an:0.017964513307133723 The:0.011122045054001186 :0.22426811063285107 +the:0.26431232189907305 ii:0.08339503040311945 to:0.07884334969106487 t:0.030676134414803893 :0.5427731635919387 +they:0.4201722418221974 we:0.09538536240384783 there:0.06151216250901463 all:0.04259575545804985 :0.3803344778068904 +impossible:0.545399770294762 sure:0.2089740332465425 certain:0.07160222554844999 ready:0.011820689668443733 :0.1622032812418016 +the:0.5994259967007916 old:0.12163395753914731 a:0.059408157283849704 in:0.041960443939901226 :0.17757144453631019 +to:0.137124603817266 I:0.12215943722533161 you:0.0959679594876077 1:0.08283273963096667 :0.5619152598388281 +the:0.7193160621924761 tho:0.2586592842544787 New:0.007487511623604961 America,:0.0031603793607790356 :0.011376762568661164 +is:0.19701697160163859 in:0.19555270077493758 that:0.09995385441221892 way.:0.02516582607368535 :0.48231064713751953 +the:0.1854867087364527 r:0.051285343710537154 If:0.03853363270146092 My:0.034250232440799465 :0.6904440824107497 +the:0.8204624520936661 tho:0.04471381286326192 a:0.04257299713172922 this:0.022231429271274857 :0.0700193086400679 +again:0.8755687285528994 home:0.035317978911056834 on:0.01147209751220972 to:0.010108007886411011 :0.06753318713742296 +W.:0.7289463238776183 No:0.06577901771999636 E:0.035620859823783005 R:0.031978879754938 :0.13767491882366426 +seen:0.14491419692484223 put:0.08742438775957324 found:0.056776118701125956 expressed:0.019265554788800696 :0.6916197418256578 +that:0.6226170059128483 what:0.1552834566657629 as:0.07056317398874193 hut:0.0505016227565642 :0.10103474067608266 +were:0.2913928048143976 suit:0.17131427026929624 of:0.12006348179842802 was:0.06491403254182955 :0.3523154105760485 +and:0.3135250223771446 that:0.19684602635544357 which:0.09363671799991712 until:0.08147152084950528 :0.31452071241798935 +was:0.6114330836176959 waa:0.3151840586500516 has:0.008784401279455538 ia:0.002459669488568611 :0.06213878696422842 +word:0.6624799127581797 know:0.011402206722094018 n:0.005363484327861603 friend:0.004670497827694584 :0.31608389836416995 +with:0.5597170564853469 at:0.0993268275091572 in:0.08714524501836625 the:0.04334788872685102 :0.21046298226027868 +of:0.7917414546808837 was:0.04797929587136991 in:0.043782689884160134 is:0.034004634027960834 :0.08249192553562523 +other:0.057389405245449866 such:0.04229043402053902 one:0.03212448744822977 Senator:0.031277573589571346 :0.8369180996962101 +which:0.33102143228665665 re-:0.22319608776004699 in:0.13605437701133094 and:0.13010417013615555 :0.17962393280580993 +the:0.7565415283827834 both:0.03999690682848133 their:0.017447423060778337 tho:0.01265398683454772 :0.1733601548934091 +and:0.297275831214806 the:0.26723815975833837 he:0.11099287494312955 but:0.05619091997718971 :0.2683022141065364 +the:0.16444889712349622 roll:0.1515177098473401 any:0.14349291168194378 a:0.10635710767246559 :0.4341833736747544 +is:0.5522633424989705 the:0.20521886720687152 only:0.037716503905607636 every:0.02935803863917047 :0.17544324774937992 +the:0.49326638955202645 this:0.09596767757703732 his:0.04302291309533654 their:0.03626505986424222 :0.3314779599113575 +be:0.126691395183781 have:0.07057287443275544 make:0.06623765743201881 not:0.05326445265623965 :0.6832336202952051 +the:0.943691683554379 tho:0.0177151670085296 their:0.015852514149800268 tbe:0.012845297105502865 :0.009895338181788251 +of:0.8339420762470187 in:0.040089366106352255 throughout:0.03864587552146891 from:0.027540958877153954 :0.05978172324800623 +a:0.9476560755416651 very:0.026010491734096423 the:0.010397329463881751 n:0.004195779351733959 :0.011740323908622589 +of:0.06987350384509716 was:0.06497943631837808 am:0.06103430894842369 the:0.04125031994899444 :0.7628624309391067 +the:0.8493556706261423 this:0.034839996334553106 tho:0.03403255116429799 tbe:0.03066200131084689 :0.051109780564159775 +the:0.08053695579693404 and:0.07882461421518856 of:0.07698790309747619 to:0.03308911272338291 :0.7305614141670181 +old:0.05712230155143501 the:0.02190711817393913 American:0.020301890902020038 inch:0.019516424930048952 :0.8811522644425568 +which:0.08803623620199523 that:0.06790267755574803 whom:0.03946377672837575 this:0.035492010559918165 :0.769105298953963 +touch:0.41741127239883097 paper:0.00045615708871133006 and:0.00027052944116425816 fight:0.00017987124517154516 :0.5816821698261221 +in:0.015268166074479395 effect:0.012020244931509935 ing:0.01021126175545034 progress:0.00698556631556079 :0.9555147609229996 +soldiers:0.11612086662952566 people:0.040634956763250775 state:0.02070802908484782 other:0.01981474291473497 :0.8027214046076409 +yet:0.614371595126443 and:0.24142874184422766 the:0.052271872085522655 are:0.04655223483247097 :0.04537555611133572 +of:0.9146126949693028 on:0.02153584565488274 ot:0.017191080301149034 by:0.012240347138921305 :0.03442003193574416 +no:0.998163850824068 an:0.0006793107645913203 to:0.0005409393226203112 one:0.0005385274037898852 :7.737168493061955e-05 +and:0.19208906873329393 But:0.08150791402479211 not:0.07584599607380793 Not:0.04542541123023278 :0.6051316099378734 +of:0.7496022444965593 in:0.16806720326596344 In:0.044938340503530155 ot:0.011178621029113751 :0.026213590704833298 +the:0.4007395697087249 an:0.20279599729297823 every:0.09222161318527192 it:0.07171200045354556 :0.2325308193594793 +the:0.27858626342252524 its:0.06651757534647929 her:0.05963236379998245 hand.:0.05774747070806171 :0.5375163267229514 +said:0.03806337842382317 least:0.024591185309901308 tax:0.016799619071023522 once:0.014785848068632555 :0.9057599691266195 +prevent:0.06845689179931465 all:0.05528160013723453 make:0.040066115959460746 follow:0.02936456858186993 :0.8068308235221201 +the:0.47186888175319325 a:0.1416906514697715 all:0.05218451030624763 tho:0.027015498197329808 :0.3072404582734578 +hundred:0.6976288849899009 million:0.23999598508812006 thousand:0.03289424921208507 dred:0.00017663951725684359 :0.029304241192637064 +This:0.814312274473034 The:0.10219953000180292 the:0.03230662936063204 satisfactory:0.017754847517063084 :0.03342671864746796 +the:0.4935096706154009 a:0.12163722284571697 tbe:0.0963822023060347 wind:0.049213452787804486 :0.23925745144504287 +The:0.35668294140641393 "The:0.17019876119351424 Tho:0.030779557811152877 the:0.024923020468482722 :0.4174157191204362 +many:0.13259271028531477 much:0.08480132523233247 some:0.04960459201673293 the:0.021160257133225613 :0.7118411153323942 +a:0.6905736909906229 in:0.14345901612426484 the:0.039294791601408224 to:0.01669796964593613 :0.10997453163776783 +the:0.5231590654435558 tho:0.2252564308459249 make:0.07469440158578719 that:0.06600654871632501 :0.1108835534084071 +Sec.:0.6970781442156755 Section:0.04824086658407435 with:0.0003937861742460724 I:0.00010758029239175256 :0.25417962273361233 +and:0.3500646745956124 The:0.21937149835815858 from:0.19800203412479453 It:0.010462080164673206 :0.2220997127567613 +rights:0.1812614624641304 people:0.07641050778144892 names:0.05690466489035922 battle:0.04537631756542401 :0.6400470472986373 +of:0.9873084260303154 Of:0.0012377795220309834 ot:0.0001274519435786166 or:0.00010680818310486581 :0.011219534320970136 +of:0.5829207250016043 with:0.10263502377287337 in:0.05569714752293366 and:0.054709304458124164 :0.20403779924446447 +lot:0.04543579823127472 the:0.035152297391751755 to:0.01970603331056129 Section:0.018201710990018796 :0.8815041600763934 +and:0.209817683825 to:0.1462457498244765 I:0.03420769796669229 who:0.028645731125027538 :0.5810831372588036 +the:0.15104810873259475 them:0.0672023304534111 steamer:0.049150160373204105 him:0.032156249292038856 :0.7004431511487512 +the:0.2756783302194561 his:0.1663136131382326 her:0.1158735123758395 Mr.:0.07151299775254015 :0.3706215465139317 +It:0.13409557249852833 who:0.12458191181565736 which:0.11756598518374375 that:0.09751636737654747 :0.526240163125523 +and:0.32889155186471414 old:0.05755892998433021 but:0.04172028519414179 American:0.03356949432847192 :0.538259738628342 +payment:0.025081064876330415 action:0.02239571189536636 attention:0.01825604382297633 people:0.016949189342120818 :0.9173179900632061 +which:0.23545388032048561 who:0.1880429098519045 head:0.13402993737723315 that:0.06921002617320379 :0.3732632462771729 +mind:0.20371830502729169 soul:0.10222137594644888 heart:0.09481138349084062 course:0.06178574099606189 :0.5374631945393569 +people:0.24262625630496787 capacity:0.06376959632198226 times,:0.040896495437428466 Government:0.03353883701122495 :0.6191688149243963 +to:0.999599226023102 will:0.00011566010774797526 only:7.07994795750661e-05 not:3.433868880064317e-05 :0.00017997570077434624 +are:0.7802116691164284 were:0.1240461926875751 arc:0.07476462992006322 be:0.006775541012802301 :0.014201967263130978 +has:0.298696622250318 he:0.2811473885755418 were:0.0905383231894294 had:0.06269170804291271 :0.2669259579417982 +people:0.16774272848872945 secretary:0.12675295529274264 officers:0.06505811398206916 management:0.04420614103689229 :0.5962400611995665 +has:0.24977104335302955 then:0.21174112046065852 who:0.16290847492223814 first:0.09841834396759742 :0.27716101729647624 +other:0.08691915982858525 north:0.05947716601938898 forward:0.05757844732952919 right:0.05035220268343581 :0.7456730241390607 +of:0.22565821252972273 on:0.14417191640197957 ':0.1393678982066583 for:0.12446793049447674 :0.36633404236716255 +will:0.40715245185000903 shall:0.24187022363272406 would:0.20819134498781605 to:0.08206894542994887 :0.06071703409950183 +asked:0.2868085541426574 stated:0.24805490611046327 add:0.13114367192440565 provided:0.06109018051104541 :0.2729026873114284 +which:0.1475150240795895 It:0.09699134699853929 and:0.0711604404683048 That:0.060346579102650934 :0.6239866093509154 +er:0.24896960265873425 the:0.07957590579242692 and:0.045544163686272246 He:0.030714127197298057 :0.5951962006652686 +members:0.03428468612437746 David:0.012461508546380395 and:0.007391091262397897 to:0.0060287377111584795 :0.9398339763556858 +fee:0.5445469068626926 satisfaction:0.059938571674839396 discharge:0.027294139873850556 conditions:0.021664832907142634 :0.346555548681475 +to:0.5612841962116407 in:0.17320358444888825 of:0.12502500900181482 away:0.09864387128677579 :0.04184333905088045 +ing:0.35959069723729 miles:0.35201604725681857 taken:0.03183051344070581 feet:0.031345517496936655 :0.22521722456824897 +with:0.18203242265207265 for:0.16944100158818182 to:0.15159133863872676 of:0.11288679483887079 :0.3840484422821481 +made:0.24884108387003384 in:0.15321437369520605 at:0.054806692891269826 being:0.05216123161153806 :0.4909766179319522 +to:0.9073895706425152 in:0.027269828130703836 at:0.025607683932495042 by:0.015711719835373363 :0.024021197458912385 +to:0.4046272376621164 his:0.08401819867544841 the:0.0739846450430617 and:0.06456941778776007 :0.37280050083161337 +and:0.23004189137443096 says:0.05604336839660701 so:0.03951490169228041 felt:0.02384788055152965 :0.650551957985152 +frequently:0.3840962978538021 ate:0.05909969415310896 to:0.04464246796809072 ing:0.036132960236793896 :0.4760285797882043 +the:0.3919324291461594 a:0.10327113564089456 tho:0.025801226317924163 an:0.025576772558716005 :0.4534184363363059 +of:0.8145974962883163 and:0.06878090306707176 the:0.0207154024743599 are:0.01648094837584576 :0.07942524979440636 +of:0.20351160391091225 shall:0.0982295341361165 with:0.0656388481365888 as:0.04476692955988288 :0.5878530842564996 +party.:0.0020511317710545257 business.:0.0018853601653729796 of:0.001170734537506848 way.:0.00032117281435604803 :0.9945716007117095 +for:0.9915670728665295 after:0.008274714398651586 and:9.435775477876978e-05 in:3.54358309739834e-05 :2.841914906618656e-05 +be:0.5034623562756785 have:0.07818047760714601 make:0.05001100082790551 me:0.024671035661151208 :0.34367512962811875 +E:0.19435826136229484 J:0.1681366454872925 O:0.11106595805146308 M:0.07625539990982418 :0.45018373518912547 +the:0.4935757707825099 said:0.042243331127199205 a:0.03007958274543439 those:0.027221387015115187 :0.40687992832974135 +ed:0.05814967855499895 and:0.0537286455661759 up:0.04630747628245911 ing:0.03502127903164263 :0.8067929205647234 +side:0.12489858389795637 ture:0.055027725189791585 standard:0.04524120017616489 calls:0.04205695040645355 :0.7327755403296337 +the:0.08419970800025811 thi:0.038385331184125834 Railroad:0.012180268976867893 Charles:0.0050675823474332785 :0.8601671094913149 +matters:0.4594371689786217 questions:0.36541016139984894 measures:0.05301201589507198 matter:0.03191172347938914 :0.09022893024706816 +made:0.2105020370787349 now:0.16010456368705905 is:0.12798291700404282 are:0.09171247765757194 :0.4096980045725914 +to:0.15015634342258014 due:0.010586812360493103 clear:0.008749274184863442 necessary:0.007251743665667521 :0.8232558263663958 +ac-:0.4103599228812745 honest:0.010217155035069293 an:0.006527164361887082 official:0.0020906391238758783 :0.5708051185978933 +to:0.26190351373111215 he:0.1538334686401302 of:0.1376512020778423 and:0.10848751515256412 :0.33812430039835123 +of:0.2408669165975522 and:0.20442449931891823 the:0.10778411203343727 in:0.09936494393280315 :0.3475595281172892 +in:0.7342428662958346 iu:0.0265757047183437 of:0.0005837103040713865 In:0.0003980182107298406 :0.2381997004710204 +man:0.336739284262194 she:0.06723236161709609 officer:0.045955074268079626 that:0.03148068537575748 :0.5185925944768729 +to:0.3218888994534033 for:0.16397171507312905 if:0.14241084553130728 in:0.12865928457460313 :0.24306925536755722 +in:0.19951679394556565 and:0.19349938507189157 on:0.10501516034106217 to:0.08538518145123213 :0.41658347919024835 +of:0.1635241188587566 and:0.09173273494270456 in:0.07499832132728233 to:0.07327848678329478 :0.5964663380879619 +green:0.2410455010806317 white:0.08091542148617237 silk:0.05741955490620515 silver:0.048183652037105264 :0.5724358704898855 +the:0.21616757461693903 will:0.17450144377133084 to:0.1494377420552597 shall:0.08755386730590495 :0.3723393722505655 +and:0.11835161829651579 anything:0.10145986420324209 don't:0.056023372472997976 up:0.04809201058963795 :0.6760731344376062 +him,:0.43264587330363263 us,:0.01871746923045089 them:0.017492253287050615 them,:0.015367001257155656 :0.5157774029217103 +and:0.18348692564351168 in:0.08378951972252965 of:0.07996484392737031 but:0.0437923891179937 :0.6089663215885947 +of:0.8644356605545547 as:0.06830558259653892 ol:0.04360193752236958 the:0.004673675872201353 :0.018983143454335428 +the:0.1228665263005488 to:0.1090943643358051 never:0.10842118572823081 he:0.039237836265048454 :0.6203800873703669 +sheep:0.23689545457804942 Indians:0.010410814575595595 boys:0.006104948306085594 the:0.004214847431243697 :0.7423739351090257 +had:0.3192281559009829 and:0.2227157430035388 you:0.19863852269907384 In:0.1779132530375004 :0.08150432535890399 +within:0.40306686672725434 of:0.1818144220380238 in:0.08329604070068042 for:0.0435494021344746 :0.2882732683995668 +the:0.19514952827310578 and:0.15617906464042783 a:0.07421962212497459 to:0.06586657875943093 :0.5085852062020608 +lying:0.06538902701619152 m:0.015280355485198724 and:0.009868228413154026 ut:0.008742515149437271 :0.9007198739360185 +and:0.12748154341411863 of:0.06664491503254183 the:0.03709795702314286 to:0.028519160451025854 :0.7402564240791707 +as:0.37228589601756684 and:0.16121018524215522 but:0.10199251567626343 that:0.04444217053388298 :0.3200692325301315 +been:0.4829192799874499 a:0.10854567387345532 the:0.07364063268689691 not:0.038544207067086354 :0.2963502063851114 +manner:0.9726927552127166 very:0.007613194233603499 most:0.0064439825508260645 more:0.005773059241686692 :0.007477008761167063 +strength:0.028991318583940526 more:0.007636048740772285 less:0.0021337451510496097 me:0.0019734857595238263 :0.9592654017647136 +Rev.:0.005683815539037847 Dr.:0.002257416779359019 In:0.0008892288189434624 Mr.:0.0006656867367533216 :0.9905038521259062 +seen:0.4242842475610047 fed:0.1226525711217179 been:0.10653121760177443 had:0.07478770560152247 :0.27174425811398034 +that:0.3076376574595839 if:0.08457679690396736 when:0.05535523454846577 of:0.05520437451957602 :0.49722593656840697 +control:0.03243709016227022 agricultural:0.03209034168206716 laws:0.030644449544327195 firm:0.026941573888013468 :0.877886544723322 +will:0.33767599298435724 to:0.2780638660425447 would:0.14154443109183207 may:0.09369586588394084 :0.14901984399732526 +of:0.2505772313464445 from:0.20994859117189654 by:0.15547390882739942 and:0.11461778599825913 :0.2693824826560004 +of:0.6288271366809738 in:0.06787197130561326 and:0.06785630615934747 was:0.03567334357320812 :0.1997712422808573 +in:0.6938268165624784 quickly:0.06449321962205863 of:0.04484996953534617 found:0.027201406599373056 :0.16962858768074385 +the:0.20463560363703923 a:0.03920408683611386 other:0.03454930733979228 his:0.02154156923577757 :0.700069432951277 +not:0.993875364355322 uot:0.005089534306499556 be:0.000439264359697968 if:7.318575437331652e-05 :0.0005226512241071549 +wish:0.3103911855379596 want:0.2451650373453577 care:0.14095915116210447 come:0.029245659366675926 :0.2742389665879023 +in:0.4042013778963762 during:0.34432058763191137 and:0.13031724249766505 of:0.0931173963929654 :0.028043395581081758 +water.:0.01885363473834416 life.:0.009552873455435346 the:0.007765457451465609 them.:0.0058571830203049775 :0.9579708513344498 +himself:0.4086655320623611 them:0.32148197309209464 him:0.18113080973095874 you:0.04950637334499983 :0.03921531176958565 +July:0.3053124699734675 January:0.22849556204828192 January,:0.17800820737351747 October:0.1454928503097117 :0.14269091029502143 +and:0.4995021238375687 It:0.17781447512161525 which:0.08558494251600232 This:0.06773179707393003 :0.16936666145088372 +and:0.08228990780695049 and,:0.0479877555842742 they:0.027512048426681358 of:0.01747195580478031 :0.8247383323773135 +the:0.30188148398814135 to:0.06574081451040895 its:0.053343728867690815 for:0.04108264705626138 :0.5379513255774974 +will:0.24498202134686764 should:0.19803917482272007 must:0.1825052333165437 may:0.14165419118790384 :0.2328193793259648 +time,:0.21909495461904488 wood:0.034370125674363754 one:0.011532414796223649 it:0.0032778572730481717 :0.7317246476373195 +the:0.33785659741572543 not:0.23219852815667208 only:0.2014446240035172 about:0.11583640371944433 :0.11266384670464104 +the:0.41728103881045975 to:0.15325514468562204 and:0.06453301278986319 of:0.04444890289156731 :0.3204819008224875 +The:0.027924625098404886 the:0.024073455151755015 of:0.020549521827721 and:0.01394985226808185 :0.9135025456540372 +and:0.4798690238347168 from:0.2698032780569844 land:0.09305027142488617 are:0.056303994957421936 :0.10097343172599073 +followed:0.29122346988057424 accompanied:0.16561599556645923 elected:0.03256120918152112 met:0.031483606146596635 :0.47911571922484886 +a:0.214634381353313 to:0.1661355807542166 the:0.06785109867258844 not:0.06765620265505053 :0.48372273656483145 +that:0.5219131836879503 a:0.14903332983176845 and:0.1445164826539186 finally:0.12609095254033104 :0.05844605128603167 +that,:0.08215204666465466 settled:0.05487461572548842 money:0.03322507649186739 a:0.029075170139155733 :0.8006730909788338 +such:0.8158446516870982 the:0.08479556356199487 said:0.06504539682635493 this:0.03423496643851074 :7.94214860412274e-05 +with:0.98775390116152 to:0.007076766189573558 in:0.0025728142494055423 In:0.0012465139175351855 :0.0013500044819658003 +as:0.8450288537215435 an:0.025077014101793825 aa:0.023937059724042996 us:0.003368318173264128 :0.10258875427935552 +request:0.8221121447683389 time:0.0562204199986997 sight:0.017909682448251113 end:0.011228213450133513 :0.09252953933457679 +us:0.2838882587016437 them:0.20206424101557943 Europe:0.1151632324132524 which:0.10485231636165408 :0.29403195150787037 +in:0.34442557870645335 In:0.29805244351520754 to:0.1285519831047519 and:0.12135798722505636 :0.10761200744853075 +had:0.9367735608984218 have:0.020609151298816925 to:0.018336020150393394 haa:0.015556438835934947 :0.008724828816432932 +Lord:0.04129018520359529 people:0.027756945849405433 distance:0.026900981882665348 company,:0.022381111968768987 :0.8816707750955651 +have:0.5577317917742523 had:0.3651617242712081 bad:0.021964179974257567 havo:0.012939031426684948 :0.042203272553597036 +of:0.11734647426630032 and:0.0991172778408423 the:0.06275534890164106 to:0.028090245498320374 :0.692690653492896 +.:0.8689398977127478 the:0.029833037290546656 American:0.016780442152423015 of:0.012549468418655422 :0.07189715442562718 +Why:0.0520613805801495 Do:0.04037995643348697 He:0.027508256881645224 It:0.019248982311827992 :0.8608014237928904 +to:0.4440094219593266 not:0.433794214477641 a:0.0506070783938195 his:0.021233291037698974 :0.050355994131513954 +work:0.08250021934972039 life.:0.003285148388452678 products:0.0005572799044026709 work.:0.0005236622714519889 :0.9131336900859723 +of:0.15674162507420167 and:0.11602918514780566 the:0.07708474460079183 to:0.036282099701029843 :0.613862345476171 +Union,:0.11627696288776648 of:0.030564726860808886 race:0.0097634362787635 in:0.00800816591699104 :0.8353867080556702 +it:0.4538822592313531 he:0.20298890872780082 I:0.14629765073576703 It:0.0913582389007518 :0.10547294240432721 +to:0.1921964816677462 the:0.0650625029840133 simply:0.016308984065367453 do:0.014607420814889345 :0.7118246104679837 +of:0.43833932063902353 and:0.18219438336914318 on:0.04686632411247266 lor:0.031257155517072595 :0.3013428163622881 +boy:0.2765337873640527 man:0.19406150922512366 one:0.02744219795256019 foot:0.011611416673526656 :0.4903510887847368 +the:0.4364837146664589 a:0.06456048508330654 his:0.02519156044896665 tho:0.021731156419461804 :0.4520330833818061 +it.:0.3136067736918942 them.:0.29531507019160264 before.:0.13926004682268414 that:0.04418108738934954 :0.20763702190446925 +or:0.6544405407531928 it:0.09816365570112147 all:0.09030270200345895 and:0.06579504167776623 :0.09129805986446059 +hand.:0.14545622177068634 long:0.08493745867343042 death:0.05462584213367731 men.:0.04739759106786442 :0.6675828863543414 +to:0.6048897386873583 To:0.09178301958443626 not:0.026154162127862507 and:0.023369432362765452 :0.25380364723757753 +per:0.993943731711436 par:5.663679143366208e-06 years:3.1017004314211434e-06 feet:1.8408090627895017e-06 :0.006045662099926469 +express:0.14600441526889896 by:0.06210245772818729 be:0.02952716703962321 have:0.026112092262874226 :0.7362538677004166 +of:0.12145637035031874 and:0.11843163768410295 the:0.11118226486149939 to:0.031684790116747595 :0.6172449369873314 +people:0.07443863394744046 public:0.044342241722636136 body:0.04383059233978228 war:0.042928654219083075 :0.794459877771058 +done:0.057971624648332436 caused:0.0034708555084014972 made:0.0022370658578217324 occupied:0.0021815353345243428 :0.9341389186509199 +standing:0.5057369875176979 request:0.013669026232095201 statement:0.01099468965082378 agreement:0.007900985020319693 :0.4616983115790634 +allowed:0.25711250389724793 called:0.2271429248969711 had:0.16530299027453035 was:0.028897792907614028 :0.32154378802363653 +I:0.2582581193792739 we:0.23748562515420316 he:0.17212800044815876 eye:0.06026088322096096 :0.2718673717974031 +from:0.36134657689125554 and:0.3143669961104784 with:0.015518468462200227 default:0.006945795335483748 :0.30182216320058197 +also:0.671502670857613 not:0.1792915632177552 you:0.08724471699329003 he:0.030281365956788805 :0.03167968297455292 +2.:0.15165982323205515 home.:0.03130908665302475 body.:0.007193370812007668 limits:0.003292954299057929 :0.8065447650038545 +and:0.10704940917726961 on:0.07870277808416973 is:0.049192981105223556 within:0.03425499482272942 :0.7307998368106077 +and:0.46276529601208943 I:0.13396061070698997 there:0.1254774303901062 you:0.07011640276435506 :0.20768026012645938 +the:0.5653056711901444 a:0.07341088696777878 his:0.031730224781104675 this:0.029598541397700007 :0.299954675663272 +for:0.4200705355244359 Last:0.23655445858606539 thc:0.16056953320016604 the:0.09413265414287446 :0.08867281854645827 +peace:0.24273207855530807 home,:0.09181040715742746 that:0.05875532164050089 sea:0.04652303850136701 :0.5601791541453967 +the:0.3849438791727775 his:0.03465406536160869 a:0.024628336525517366 truth:0.024209245007758767 :0.5315644739323376 +on,:0.24902319981705226 through:0.2329512684995368 away,:0.1871692230297647 her,:0.09771356811310394 :0.23314274054054243 +be:0.32171278634623285 have:0.20431724396823203 he:0.028214388635672258 be,:0.023229688808568093 :0.42252589224129455 +or:0.9997806101301987 and:0.00014205407492240941 of:3.830217367521135e-05 said:1.2085031198740748e-05 :2.694859000471046e-05 +and:0.1569009109384631 but:0.09961074909206352 number:0.03466496240447221 that:0.021866765902860498 :0.6869566116621405 +of:0.2879955439104885 and:0.2076853730735472 degree:0.0563310742621642 at:0.052328121169248495 :0.39565988758455173 +use:0.13647863986383812 office:0.11446347870714409 application:0.05687379303417192 terms:0.055886067698126825 :0.6362980206967189 +an:0.19445286659433986 the:0.06846584325349973 and:0.05565068641982879 of:0.02413363386131832 :0.6572969698710132 +the:0.2809883470190755 all:0.07063332201349436 make:0.056485176493905255 give:0.05097983313779295 :0.5409133213357319 +be:0.19748779231342337 to:0.16223468370640978 its:0.14821884743741026 the:0.1344549397041785 :0.35760373683857827 +had:0.3726218846161355 are:0.17103444457913838 place:0.04309629699661444 were:0.024191940842718588 :0.38905543296539297 +day:0.052817139580138284 tion:0.04577865170513107 ment:0.042306553745934505 line:0.03563345705899566 :0.8234641979098005 +of:0.5586142014275314 for:0.11713329895240467 or:0.01982905926652948 pur-:0.019058237910567894 :0.2853652024429665 +said:0.9796207239325384 aaid:0.014266629077730544 sold:0.0034344401261511017 aald:0.0023601378114284704 :0.00031806905215136925 +of:0.34089343558041946 as:0.2080763807376431 in:0.16851191354226644 from:0.12434698434710136 :0.15817128579256964 +it.:0.1267226580565099 him.:0.07613450987507935 work:0.07165244188747877 them.:0.03154939729625457 :0.6939409928846774 +first:0.13175653978459828 result:0.04200778328442225 number:0.034041309003903564 majority:0.03138248625316719 :0.7608118816739087 +of:0.015311262587033492 V.:0.0075549197379541685 W.:0.005910108091076368 and:0.004939833711401803 :0.9662838758725342 +not:0.06874059984907835 but:0.031128079076822888 is:0.017122022442829433 than:0.008504262288082756 :0.8745050363431864 +and:0.1646408896710449 whether:0.14734682855061176 raised:0.07096819464005963 made:0.05551817581883435 :0.5615259113194494 +of:0.7409899730519439 ot:0.1575452137383484 to:0.017816617492856488 or:0.0031578472299811683 :0.08049034848687035 +have:0.9129597917491162 havo:0.016364428749383486 hare:0.004052289587537439 had:0.0029129069005547894 :0.063710583013408 +The:0.3096718298406659 and:0.22762543138343988 aud:0.21340921872584045 a:0.16701305067517255 :0.08228046937488125 +bv:0.24625118899261023 from:0.22499956547049665 in:0.1479190153576549 to:0.11357535153285969 :0.2672548786463785 +the:0.08885798274603886 from:0.07109058657932525 of:0.04166380061078567 a:0.03455790733452761 :0.7638297227293227 +of:0.44166455934043475 ol:0.18670381610489264 unless:0.12138675582006296 in:0.10390090507576516 :0.14634396365884453 +bill:0.3870800635672246 boat:0.3669352912701155 building:0.08811357514176082 parcel:0.07881064964767154 :0.07906042037322764 +that:0.05908273631344987 store:0.03998635014052022 which:0.038189957042253024 who:0.03199436145753562 :0.8307465950462412 +man:0.05663074557483349 and:0.05216269735748105 officers:0.051234691830023195 people:0.034209722638057966 :0.8057621425996042 +and:0.01831974549767051 Johnson,:0.011175945247660662 D.:0.010376703626919923 W.:0.008380617512885012 :0.9517469881148638 +the:0.4204109222654965 he:0.06128511082423597 a:0.05607736590753741 will:0.050765599270930224 :0.4114610017318001 +consideration:0.9863431559703066 account:0.0056171436162754445 a:0.00024876938279501956 is:0.000195486244444543 :0.0075954447861783445 +of:0.3960297980447952 all:0.18687493504791947 and:0.17837135897544223 into:0.1420110487947965 :0.09671285913704662 +the:0.223565525998499 from:0.03176662796468144 this:0.029830468046266156 be:0.029629565854066106 :0.6852078121364872 +of:0.3228863083659841 to:0.143531988109407 and:0.1190584356951451 in:0.11461244006365245 :0.2999108277658112 +try:0.2233758667851487 are:0.15358315224780825 amount:0.04751576638018308 act:0.0034060995465269605 :0.5721191150403331 +third:0.07610588927418768 latter:0.055334229178539265 enemy:0.03467529662234692 President:0.026902839590141853 :0.8069817453347842 +been:0.5515966567947808 not:0.13130383035399026 never:0.08905112894523305 had:0.0751241712440999 :0.15292421266189607 +to:0.8872055035272716 in:0.03380928205469948 from:0.02642176740797765 upon:0.01676703894970259 :0.035796408060348825 +the:0.1212057781713402 and:0.10467758686892062 to:0.1018043940264231 in:0.052750183549554186 :0.6195620573837619 +to:0.784194959848596 with:0.006886997531784953 found:0.005927394580330265 for:0.005654129396178959 :0.1973365186431097 +he:0.38166133086993137 the:0.20631839798578436 that:0.10086205604839585 from:0.07586101105287853 :0.2352972040430099 +in:0.33921401611295743 and:0.3231060300425429 to:0.13826098182212745 of:0.10734039554632648 :0.09207857647604561 +not:0.9540631963195066 they:0.008340938358103454 he:0.006337640514708587 I:0.003146278424067577 :0.028111946383613643 +the:0.5624825723934548 a:0.05893944641834699 fully:0.050839805600565176 about:0.04696527344233208 :0.2807729021453011 +been:0.9331926542028626 gone:0.03114612231240154 started:0.005710737983696513 passed:0.004764871027497898 :0.025185614473541514 +Southern:0.02636859023905251 the:0.02463518644902143 terrible:0.01587336305760459 con¬:0.015808492240640615 :0.9173143680136808 +of:0.1258199647757124 the:0.1254295308401144 and:0.0794067853586085 a:0.06074833077325927 :0.6085953882523055 +be:0.10903054646302815 go:0.0947692343294701 fall:0.08737981183257484 look:0.0769764342964692 :0.6318439730784579 +arrested:0.38304387152499353 killed:0.19379798437310752 one:0.04130975558753588 sold:0.03303192851702874 :0.3488164599973343 +and:0.06895646463619466 do:0.01653403758826115 or:0.012790072770087648 but:0.01113896987094267 :0.8905804551345138 +the:0.46061517745969693 a:0.13476198917377386 their:0.07173449196028993 only:0.049117578030342925 :0.28377076337589624 +keep:0.41773364482279984 be:0.2547278420620442 receive:0.12833136371043669 make:0.12456199762857981 :0.0746451517761393 +decree:0.4513039486852865 deed:0.02383030986965372 power:0.011304426329088398 native:0.00826653126844078 :0.5052947838475306 +the:0.06455112680820789 country:0.024694762619526762 great:0.02083605176231417 city:0.02018137282253494 :0.8697366859874163 +the:0.5130878871430715 a:0.11515031208111097 his:0.039385672085911316 this:0.03691522021112371 :0.2954609084787824 +survey:0.35197788824459836 road,:0.01239699555303343 let:0.004181206812549904 line,:0.0036414671234227315 :0.6278024422663957 +Miss:0.21537484285777037 L.:0.12928268927595704 E.:0.11105740826668561 B.:0.0915968204465883 :0.4526882391529986 +contain:0.021137926754116305 put:0.013614546300554583 be:0.01151645333864196 bo:0.004670996368172535 :0.9490600772385146 +As:0.7463782071785092 as:0.018284841291596174 which:0.015786673377156734 that:0.01461829092297805 :0.20493198722975994 +the:0.643219146536745 of:0.004771851120701232 that:0.004320552487337945 tho:0.0023364607049749866 :0.34535198915024073 +church:0.15095319125095105 office:0.12127839463352309 senate:0.049268812060414634 hands:0.04399716878033212 :0.6345024332747792 +up:0.1584006619974298 authority:0.10673912787825088 and:0.07307574797782643 face:0.05833375351664653 :0.6034507086298464 +minutes:0.7030858521292482 days:0.06126588069878301 years,:0.013473284298333079 feet,:0.0087527370518513 :0.21342224582178454 +the:0.1301650608963796 and:0.11323727881970545 of:0.07534260558168358 The:0.04177161070177783 :0.6394834440004534 +original:0.3764799945135104 other:0.1136744761627804 one:0.09032086717718832 principle:0.07968841431007681 :0.33983624783644395 +in:0.16504010074448291 the:0.13139702396855676 and:0.10577018135858166 All:0.05589967152588167 :0.5418930224024969 +and:0.11814864230724262 the:0.0789108615310413 of:0.06569106790874889 were:0.0550377814583865 :0.6822116467945809 +the:0.44908154274273127 those:0.15561372368429957 after:0.10841163286062296 tin:0.09617739108699472 :0.1907157096253516 +with:0.8608270628134359 is:0.0681040499551086 to:0.017124306231298295 and:0.012377263247193888 :0.041567317752963275 +own:0.06875450295135141 home:0.011076067607155633 residence:0.010174664190015078 in:0.009367904438306469 :0.9006268608131714 +It:0.1117037203487492 and:0.10229452781109015 which:0.061849556535047326 it:0.06151368818700425 :0.6626385071181091 +to:0.3879753935780012 in:0.2791051269686618 on:0.1057405275376069 from:0.10444123888458776 :0.12273771303114217 +The:0.22282712568819693 She:0.10883080030917666 Miss:0.07033430873811806 A:0.05938715564180952 :0.538620609622699 +the:0.3028047503269224 and:0.09736320372249994 a:0.06569393092464357 of:0.03773900778488694 :0.4963991072410471 +the:0.31156730391198806 a:0.14428924152349673 an:0.04294764915368534 his:0.03790752755934848 :0.4632882778514813 +to:0.18561063759842492 and:0.14170317989248932 the:0.06422542981839159 of:0.04450394463158681 :0.5639568080591074 +It:0.9874513594011601 it:0.010906051648012222 the:0.0007315757132961168 too:0.0004347926881905069 :0.00047622054934103725 +which:0.45738717123764716 men:0.28291113121009376 and:0.07161641714000208 is:0.04592936671134131 :0.14215591370091568 +ed:0.13613568905192433 executed:0.10514256128768193 employed:0.04231477557652836 told:0.039604771551097775 :0.6768022025327676 +for:0.28448280762620126 to:0.16982460879701305 out:0.1605498142953356 upon:0.15539232506759404 :0.22975044421385601 +to:0.5498503099543811 into:0.22399231017773502 through:0.0819276601020875 on:0.06612223573900969 :0.07810748402678681 +money.:0.06733895648925202 to:0.056352778147121835 the:0.048422243826516824 of:0.04601772275284778 :0.7818682987842616 +object:0.06194530935785096 being:0.028757028973213153 of:0.02675860122679533 to:0.015308169657589514 :0.867230890784551 +It:0.19579541338473014 it:0.007854359127006525 to:0.006838514381992676 there:0.004414344720100105 :0.7850973683861706 +hut:0.4981633498742324 and:0.22914770088880457 being:0.05746795509293457 in:0.02969454826648919 :0.18552644587753933 +quarter:0.06539336145092317 State:0.028090811090580238 and:0.018947745428289663 position:0.01602022297889956 :0.8715478590513076 +fund:0.36418400105346765 resolution:0.10113113020470563 bill:0.051012286208925985 motion:0.026651349686861205 :0.4570212328460393 +most:0.030471692500114857 the:0.02006035832421784 whole:0.015013430030494025 great:0.013795270550297464 :0.9206592485948758 +false:0.10774399160790069 American:0.07217618819291918 whole:0.040611714251595314 first:0.026662879978021123 :0.7528052259695636 +has:0.45551669885605633 should:0.37544187866113654 to:0.07372895899375033 who:0.04913939657254212 :0.046173066916514814 +and:0.11280915302539408 of:0.1044281968028762 to:0.065905032558226 put:0.06132683878012848 :0.6555307788333752 +and:0.3797036048356784 so:0.08244502886458023 is:0.07975889394103203 but:0.04809113966277341 :0.41000133269593597 +He:0.6418589709600062 lie:0.06096516796622096 he:0.02721447276347639 Mr.:0.024354239279364896 :0.24560714903093153 +a:0.5553675269159936 feet:0.2509983604515084 with:0.05262766909503285 many:0.04870721219270663 :0.09229923134475844 +and:0.11676512205810713 but:0.08490509831989147 determined:0.07563171653446168 opinion:0.06484737841072859 :0.6578506846768112 +hud:0.2582355684717971 is:0.23502970319484048 Is:0.22663568131273876 but:0.08201776881294119 :0.19808127820768245 +In:0.923150499757842 in:0.0418459244564981 by:0.020022424643667294 for:0.0073557568781440754 :0.007625394263848529 +by:0.2328804954609721 for:0.10321911794685981 one:0.10116956311014971 In:0.09614885478993605 :0.46658196869208246 +already:0.669908786577931 that:0.08152294501813957 may:0.04180235361602114 I:0.036361384293896404 :0.1704045304940118 +fifty:0.22344089409688883 twenty:0.0393471691808232 City:0.03776547580025887 forty:0.02877558924693426 :0.6706708716750948 +bushels:0.18316955404117502 ion:0.0382276512183709 and:0.036298208026358594 ber:0.03280071834345765 :0.7095038683706378 +increasing:0.15191256068662562 pleasant:0.12997593743673683 the:0.030906175293877965 growing:0.02787353214990712 :0.6593317944328526 +the:0.5047042529924656 to:0.21815064606917522 and:0.08378319864144398 a:0.03518011294041449 :0.1581817893565007 +bring:0.47255129971475435 prevent:0.217520183037955 a:0.1906742436397759 the:0.023653009111859077 :0.09560126449565565 +women:0.3485040876033651 .:0.16740380080384779 those:0.05754990066438938 and:0.028818968411160075 :0.3977232425172377 +the:0.42321112403319716 that:0.07076812518203203 these:0.05100049666826013 of:0.04951581886422868 :0.4055044352522819 +of:0.11769568726191043 and:0.11426472314906075 the:0.10093354924991382 to:0.06107223809132454 :0.6060338022477902 +have:0.10948981146098197 continue:0.047885440195411556 the:0.022075753614267057 more:0.018653889751168946 :0.8018951049781705 +Court,:0.9490239576529463 was:0.011331396130385979 has:0.0027476189945899615 of:0.0010177036945631796 :0.03587932352751421 +of:0.9655911692695104 oi:0.009257472049629019 ot:0.007305200565519714 cf:0.006229528286500837 :0.011616629828839925 +at:0.5821057026669959 the:0.24206829519442155 not:0.06762579459986305 our:0.02388412173723247 :0.08431608580148703 +containing:0.9416121106961913 about:0.01387900136386903 said:0.005087013635637387 of:0.003281312178008039 :0.03614056212629424 +of:0.34905741151904024 to:0.12729840925417985 in:0.12058192694774233 and:0.09083461521936267 :0.3122276370596749 +lady:0.09650372701022833 that:0.06169400195686851 schools:0.04723562366796029 which:0.041987008938476345 :0.7525796384264666 +to:0.9512295457453963 not:0.019853377527952937 then:0.010201097123177983 fully:0.0047178166982611075 :0.01399816290521169 +wife,:0.12318965958989198 are:0.09152332412801982 very:0.0586587135885038 with:0.022751473769216463 :0.7038768289243679 +American:0.018242274948134157 most:0.01818630414044712 United:0.01806547407248767 old:0.017167532173737125 :0.928338414665194 +then:0.35635320290422934 already:0.29396002525028986 Just:0.15759258328497094 now:0.13482118764512221 :0.05727300091538752 +as:0.437215368139539 the:0.09788788157868336 a:0.08619824085203259 and:0.08197922017746895 :0.29671928925227603 +of:0.08876614907828856 for:0.06676773853957657 and:0.0642705094776798 -:0.05258345272939941 :0.7276121501750556 +of:0.7808098886012673 and:0.05200176177501662 to:0.030731083013520538 with:0.029926136582139377 :0.10653113002805606 +H.:0.27048162351250354 A.:0.2270734953595195 J.:0.17203341441756978 B.:0.12800839045020956 :0.20240307626019743 +facts:0.05304278033538391 men:0.05171099507212917 bonds:0.039981582730505394 points:0.03307658651694041 :0.8221880553450411 +just:0.524681298764779 ":0.1545130354550103 equally:0.08343517322957004 quite:0.08219722655571474 :0.15517326599492592 +and:0.14024289776266036 which:0.10101753364883902 of:0.05576101473051108 would:0.04691762397092494 :0.6560609298870648 +well:0.20115852494510356 as:0.19861265093228722 was:0.09987934720076978 be:0.09608720021536864 :0.4042622767064707 +was:0.8675847963014615 is:0.10075680748505488 were:0.01537790672638243 are:0.004835314457382452 :0.011445175029718578 +and:0.15606465405865694 but:0.0342127740785756 or:0.030529471558073437 ed:0.029308717472689892 :0.7498843828320042 +of:0.9579819611061595 cf:0.0019304041965645781 in:0.00020503174043983067 ol:0.00010233218708678076 :0.03978027076974935 +and:0.19169656665174667 for:0.062180953818307176 that:0.04542568421246039 taken:0.040692055418760364 :0.6600047398987255 +of:0.9205785672421829 to:0.026287019659676406 ol:0.020168044256314275 in:0.00752978481644632 :0.025436584025380023 +or:0.3842256593846172 of:0.08238318033398526 and:0.07882587554745873 The:0.056878164601484024 :0.3976871201324547 +was:0.34350689738410656 then:0.13044629665547763 gave:0.12199835608114763 finally:0.08146021458829371 :0.32258823529097447 +meeting:0.09292431969256688 and:0.054539778760109736 hearing:0.03392161419974263 to:0.026432398467138494 :0.7921818888804424 +the:0.9911554608122486 The:0.0012263677049200547 Ihe:0.0011098117757773443 tho:0.0010393836581973743 :0.005468976048856577 +this:0.18063707148404126 50:0.12799915890211067 a:0.12484914010737361 their:0.10625766204378728 :0.4602569674626873 +is:0.557986800253193 Is:0.36603997619694273 was:0.021790118724172934 as:0.006788712803066361 :0.04739439202262504 +port:0.5268193290459461 the:0.006411658759456023 -:0.0033046279747023697 The:0.0026000696344707706 :0.4608643145854248 +often:0.3669696828309157 have:0.30014534665094944 would:0.12129926440383725 will:0.11284048501384769 :0.09874522110044981 +ten:0.6433843135046708 more:0.28521515750539833 16:0.042209231420692155 nine:0.02314593330659755 :0.006045364262640989 +treated:0.3873839858585436 turned:0.06477292222183165 turn:0.012951361486481966 moved:0.012308426937520664 :0.5225833034956219 +faith:0.18779480979187438 division:0.0719451277444614 truth:0.0710480232653047 confidence:0.05877111525325793 :0.6104409239451017 +step:0.08175595333102662 de-:0.011902590189589774 and:0.01038870831316369 faithful:0.009160161302798056 :0.8867925868634219 +colored:0.4044315447334028 young:0.15925330123168416 remarkable:0.07228513796533949 business:0.05738293296554993 :0.3066470831040235 +of:0.2537409955116173 for:0.07673028716219708 the:0.05593411397268208 in:0.05095716231331301 :0.5626374410401906 +it:0.3881772719619517 there:0.22710290744022535 matter:0.18383991338755803 he:0.10485780264765669 :0.09602210456260829 +in:0.2433646502154559 of:0.17238610361882753 from:0.13733216416916508 are:0.10743745581013342 :0.33947962618641786 +years:0.0673721804827876 end:0.05048872084267335 year:0.04615833374262958 n:0.03741954368957961 :0.7985612212423298 +and:0.11995747007223374 the:0.11713452064332319 those:0.11513439805610376 for:0.09099046869693754 :0.5567831425314017 +of:0.2595023708543129 and:0.07724268364954345 to:0.05311863965767842 which:0.0296636215899029 :0.5804726842485625 +New:0.7655104078639667 that:0.05928484012332083 which:0.031043127743731993 while:0.024773064709750083 :0.1193885595592304 +and:0.027610174499883573 it:0.02664390750997517 them:0.023322608814820484 according:0.021633403149245233 :0.9007899060260754 +of:0.3428065393201565 upon:0.14233089958952577 on:0.10350073302899665 and:0.0954880619652415 :0.3158737660960796 +city:0.09361479854628045 County:0.09006756208506736 way:0.08753200986589228 county:0.051718177566880984 :0.677067451935879 +and:0.07474942250986832 of:0.06338870678849355 by:0.023183975047805873 to:0.016630449310433768 :0.8220474463433984 +be:0.13845318529046652 make:0.10385855277474157 such:0.094432034560431 have:0.04033250100825788 :0.622923726366103 +r:0.1270412417963285 the:0.03131526809141275 send:0.023477458499378764 ill:0.013175729357777107 :0.8049903022551028 +possible,:0.029090108314230166 part:0.02425024370145756 serious:0.01747721853280038 similar:0.012586279101393073 :0.9165961503501187 +engine:6.42698057207082e-05 fund:4.076948438734191e-05 table:3.5747959035578906e-05 crops:3.2647916264743095e-05 :0.9998265648345918 +the:0.2020343872299476 me,:0.04859333958471755 last:0.04630709349766997 when:0.04171640981063614 :0.6613487698770287 +the:0.4568071232087882 Senator:0.17768810102151494 a:0.17273573337188827 eighteen:0.07403549364613812 :0.11873354875167048 +of:0.4967238187720335 in:0.40680192713420016 over:0.04588865358672266 throughout:0.029959665973221028 :0.0206259345338227 +to:0.2190854503441818 and:0.18101964495854672 of:0.1454188294974408 be:0.12451489945787418 :0.32996117574195655 +of:0.9612677750108733 ol:0.0247950866419136 ot:0.01178193231075508 and:0.0004637355221659064 :0.00169147051429213 +forced:0.17388700009668057 follow:0.08004960870003926 send:0.07798002802112318 leave:0.07588807910189449 :0.5921952840802626 +conditions:0.24467795156851002 upon:0.0385877378693575 form:0.03325223475443071 laws:0.02179844037225256 :0.661683635435449 +leave:0.0763054197888565 get:0.07501076428738708 reach:0.07075042337913376 make:0.07002941007583495 :0.7079039824687876 +young:0.07240799460194372 three:0.024678274531387802 ten:0.021998491723691123 five:0.02063944031495873 :0.8602757988280186 +to:0.284655793824285 not:0.15263207987749652 almost:0.09955131442017517 a:0.004438509905408431 :0.45872230197263475 +governor:0.4475010400210967 deeds:0.13327663692471597 men:0.021773293770129366 women:0.01318959441838187 :0.3842594348656761 +it:0.3153535240977115 there:0.2902059772857315 he:0.14961939394016727 I:0.059552282637862025 :0.18526882203852785 +further:0.6645631649934688 future:0.16810001714483613 usual:0.034643070721399286 good:0.02635197530144894 :0.10634177183884701 +of:0.47812366180762644 the:0.023975619628551513 a:0.010815309402954807 in:0.009686532200999293 :0.4773988769598679 +by:0.29788267820675224 in:0.26530434233807904 at:0.18093540789312987 that:0.04248691488004873 :0.2133906566819902 +a:0.6095340735319 the:0.054991433311790495 their:0.009710278672935023 our:0.009299769567913601 :0.31646444491546083 +the:0.3269368986337111 a:0.11433993169492503 his:0.05368266637211282 their:0.04823275971433249 :0.4568077435849184 +and:0.1570551309037117 Mrs.:0.07333967825775106 with:0.056129870478127696 for:0.02904755633883449 :0.6844277640215751 +The:0.24848262208396885 a:0.21741452949206766 little:0.07844095547563962 for:0.036021783296088794 :0.4196401096522351 +are:0.2812658253497782 is:0.2418221579050951 if:0.10405860796855251 o:0.07274156539915164 :0.30011184337742247 +ers:0.059151213498877274 up:0.03824351347559733 returned:0.034597524731203685 as:0.027925296601804785 :0.8400824516925169 +which:0.6873395337287694 and:0.09793830680070297 that:0.030450965138995967 clear:0.013442909953053804 :0.1708282843784779 +of:0.3951155296997448 required:0.21638724236214582 as:0.19952689190840395 in:0.10463310061220935 :0.0843372354174961 +on:0.9321436037416313 at:0.055910975225951676 by:0.0039609985547715484 in:0.0024073140647733124 :0.0055771084128723135 +paid:0.3456625069550514 of:0.021976296323139664 present:0.021483105405992825 gone:0.008129804896411396 :0.6027482864194048 +the:0.8857389528513454 purchase:0.04209607407041111 thc:0.03561739219409616 and:0.018719089159231962 :0.01782849172491534 +a:0.9666462367623009 the:0.006435276990630955 being:1.9532927869527487e-05 press:1.8629238658190392e-05 :0.02688032408054038 +which:0.23873198998833348 and:0.13553716469083718 It:0.1293602263736968 it:0.1233515573289444 :0.37301906161818815 +brought:0.19573820159679947 and:0.12969975438117537 win:0.06807074119383125 the:0.0557588764091905 :0.5507324264190034 +again.:0.2545100250732128 a:0.06725383517112399 there.:0.061131210932333056 and:0.021550202048554967 :0.5955547267747751 +its:0.3941774138737627 their:0.2889643623029153 the:0.16221870246645476 he:0.0632088454314011 :0.09143067592546615 +a:0.8464748449723016 the:0.11609911639091323 tlio:0.0195307034815347 great:0.0032437822853351437 :0.014651552869915213 +of:0.7383770035087578 and:0.06071818890589873 belonging:0.0274211215888911 granted:0.021723332226988874 :0.15176035376946365 +who:0.5527531659431598 I:0.1835251460672201 wo:0.10133777172318995 may:0.03226184517923112 :0.13012207108719892 +under:0.25297498789566253 over:0.19288144552136158 through:0.06746837051467747 by:0.06599383527882002 :0.4206813607894783 +there:0.4592226228586814 which:0.310092284768798 it:0.08338531323110006 who:0.0743181661244942 :0.07298161301692654 +to:0.9883588952591411 must:0.0058747930824470315 will:0.00230656219045689 should:0.0011619342297150728 :0.0022978152382398314 +of:0.2190052485706661 and:0.11119292211889366 the:0.05083293666933841 The:0.04892844462702203 :0.5700404480140797 +that:0.008137401568293632 |:0.0019113812784374562 .:0.0012023251078262824 I:0.001143656629882076 :0.9876052354155604 +of:0.6166504928456038 about:0.32492263248905423 with:0.033375839907089686 over:0.017819000457065665 :0.007232034301186472 +men.:0.08099833245486522 thia:0.028481900773725404 trade:0.008181777491866795 death:0.0077575868760679624 :0.8745804024034747 +our:0.015751740128860523 man:0.014835045639608184 body:0.013932818016306369 bill:0.013211182767065755 :0.9422692134481593 +the:0.10711267327926037 and:0.09859678866044984 of:0.08905512754371236 to:0.0645334993410866 :0.6407019111754908 +upon:0.47876249669868554 on:0.44124219219305366 with:0.01923220083885771 in:0.004923031048945612 :0.05584007922045738 +done:0.10815147374600832 made:0.03129166307221359 here:0.02988052767865619 connected:0.02126423098930457 :0.8094121045138172 +it.:0.278832614163447 him.:0.011742306215841745 it:0.01095178539993369 her.:0.00559062271034765 :0.69288267151043 +people.:0.12437797235083932 the:0.05081532786826804 officials:0.03849419597020388 in:0.030466237016793532 :0.7558462667938953 +the:0.19229106318294598 business:0.05259549691483636 his:0.01116416594376094 it:0.007846306236368871 :0.7361029677220877 +true:0.1527520088775361 new:0.09972266066685037 fresh:0.08423943887869906 bond:0.04249029582920637 :0.620795595747708 +or:0.03813621591565704 which:0.033468632664754513 company,:0.020855580103988705 Company,:0.01948486224746891 :0.8880547090681309 +it:0.268237304105574 It:0.16683439009693635 circumstances:0.04435678871230711 two:0.044184900893224924 :0.47638661619195755 +as:0.9909242854854444 men,:0.0009558363172626809 that:0.0005299988474153244 after:0.0004596909380004409 :0.007130188411877173 +none:0.9468194621864947 some:0.014484460034169418 out:0.002644222903043413 many:0.0014851805160751605 :0.03456667436021734 +he:0.44509485454717584 e:0.32913698105621814 the:0.08094239864305607 lie:0.027284196961612914 :0.11754156879193714 +of:0.6361308870646594 and:0.08999700604541425 in:0.055185818904788554 to:0.04202225651831405 :0.1766640314668237 +nnd:0.9991099089731007 and:0.0007661657582431992 but:9.199856111512505e-05 who:2.1007607274930592e-05 :1.0919100266143595e-05 +people.:0.012223184023572765 law.:0.008971677729307447 government.:0.007361537917014514 country.:0.007356145307583012 :0.9640874550225222 +as:0.9116168601893319 ns:0.03695401651311637 a:0.010685828565672401 is:0.007849418652373808 :0.03289387607950564 +and:0.12085666515010447 to:0.09852476320241187 of:0.047447201689993494 the:0.04714867823187508 :0.686022691725615 +that:0.882740556870642 the:0.005024487376014426 of:0.0017805713578881528 in:0.0012617490221665223 :0.10919263537328877 +lots:0.04607222381405484 note:0.038658530431730086 property:0.03791256463336849 land:0.03551610826662356 :0.8418405728542232 +of:0.7322264859151618 and:0.09268273729276953 are:0.03601324125546163 the:0.030720478339269993 :0.10835705719733711 +and:0.7919192664768037 nnd:0.06716383133541401 a:0.029246571251312747 ami:0.028231445331907138 :0.08343888560456265 +have:0.5811995299807494 be:0.2704087153395786 bo:0.11455183535939975 yet:0.026808547382853237 :0.007031371937418885 +favor:0.2927641099250633 front:0.14221506393459238 behalf:0.12667244499605787 honor:0.05460155888733623 :0.3837468222569502 +would:0.3472918035805957 will:0.31789055685938 may:0.11123799589651907 might:0.10251770192905016 :0.12106194173445489 +rendered:0.1532545156172094 and:0.03607503624480337 a:0.02410556391216545 was:0.023138729559039544 :0.7634261546667822 +be:0.2726171466257838 only:0.206002833274431 help:0.059968185216288744 to:0.05762454165691885 :0.4037872932265776 +it:0.030908190368749127 me:0.02424674711387643 Congress:0.010623941964207928 contest:0.010315172947568252 :0.9239059476055983 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +they:0.2244087485912348 of:0.04186095855164471 up:0.013071063468619502 the:0.0061458772979853605 :0.7145133520905157 +States:0.5873319528182617 state:0.0997409843927303 was:0.05840478658688659 is:0.017859169188172 :0.2366631070139496 +and:0.10167387841472482 the:0.07906969918564895 of:0.06073172993518158 a:0.05368061495333682 :0.7048440775111079 +of:0.9934705818766026 The:0.005722894921779318 for:0.00038728022257142087 on:0.00011122963581577042 :0.0003080133432306981 +forced:0.002217672856858344 closed:0.0021471612033837455 correct:0.0018529198239338235 scribed:0.0015328832796233222 :0.9922493628362007 +and:0.3246480993487032 But:0.2510312098306409 of:0.18365268235987478 with:0.07425966757603962 :0.16640834088474146 +for:0.8618124482827941 of:0.04623921199325695 in:0.030532463613301017 lor:0.02711407545679593 :0.03430180065385204 +nor:0.5520761186934371 or:0.08432873982268241 the:0.028788841845526 to:0.027071511153304844 :0.3077347884850496 +and:0.10203400589471352 the:0.0963171344517439 of:0.08495020149754155 to:0.048841290600927484 :0.6678573675550735 +It:0.6260097104084078 There:0.22626667865296357 it:0.03919990987387868 there:0.025916793471890767 :0.08260690759285913 +great:0.5788519545578273 large:0.12772891182801 vast:0.1110119440346665 superior:0.03298058061733547 :0.14942660896216073 +from:0.4404895137434097 were:0.4383826812514294 had:0.026718705676671214 to:0.018616832699697185 :0.07579226662879249 +and:0.08463407251118496 of:0.06443003931849449 the:0.054854561085128886 to:0.03565328744632414 :0.7604280396388677 +to:0.26287177361192093 a:0.1342635625531267 the:0.11868935163404944 it:0.10415307521803044 :0.3800222369828725 +and:0.07819207522421688 the:0.05324068162805765 of:0.04277949658250841 a:0.03227725818987453 :0.7935104883753425 +she:0.1903357392387106 ami:0.10479397571422136 and:0.08834615809064349 There:0.08726204482189472 :0.5292620821345297 +the:0.5521258938766932 tho:0.021878424054142746 two:0.016377872831393657 tbe:0.012420860353466437 :0.397196948884304 +was:0.8068421222872727 are:0.0680030875754481 is:0.03224232706393542 had:0.018259882551794324 :0.07465258052154941 +depth:0.05534074422359561 failure:0.047566757450358835 population:0.04403091256866304 capital:0.038419438618788285 :0.8146421471385943 +is:0.5354648776977038 that:0.15776570620600078 Is:0.12091056163156161 to:0.03845602725572359 :0.14740282720901016 +stand:0.1605165415316596 confidence:0.15523288847688485 been:0.12286277077044538 it:0.07854261594813235 :0.48284518327287773 +been:0.874749038184969 a:0.024561617486969747 at:0.021354420329027932 the:0.00858934412534832 :0.07074557987368509 +great:0.04482536576823339 is:0.039414979620842464 good:0.039338703874869124 little:0.02921033101377978 :0.8472106197222752 +the:0.031355936851695604 this:0.027707551430315794 city:0.010152071776868197 such:0.008979424638670108 :0.9218050153024503 +the:0.10946103050191895 regard:0.06588393529189811 order:0.06204530785659156 a:0.040085055721163346 :0.7225246706284281 +of:0.6503859661862261 and:0.05887872013292428 the:0.05565961706577677 to:0.029241143795860857 :0.2058345528192121 +have:0.3577869801505569 never:0.18709273002512394 had:0.0947930744528143 long:0.042061925556263494 :0.3182652898152412 +of:0.7128749397245044 and:0.07165691406152673 as:0.06177161712107151 the:0.042236647430435655 :0.1114598816624616 +a:0.5944653154597219 the:0.17628339930936252 her.:0.12944931028108 tho:0.021559499209164893 :0.07824247574067061 +extent:0.198490778258108 and:0.08081377159936864 for:0.030580983587126673 number:0.026157809608816626 :0.66395665694658 +apply:0.11957492186932024 be:0.08833989511856102 have:0.05746705722493363 seem:0.057355561642242356 :0.6772625641449429 +that:0.8253261715799268 no:0.09309055198166195 when:0.0496003430590853 not:0.016159490600325517 :0.015823442779000434 +living:0.00780616463712084 taught:0.0050786210193313475 taken:0.00364327569016993 born:0.003298631583715453 :0.9801733070696623 +grand:0.2031967180780319 good:0.04735874971239689 of:0.03676286175423793 real:0.031723275929098065 :0.6809583945262352 +a:0.20263687162287194 the:0.1339552846039747 in:0.06454832173083296 an:0.04785241545185514 :0.5510071065904654 +other:0.09926987703972538 Atlantic:0.07539191703797515 ice:0.04147405577618879 railroad:0.039971057207250645 :0.74389309293886 +the:0.1729426625834279 and:0.1352940153696169 to:0.1138591127333669 in:0.08969742766607951 :0.4882067816475088 +secret:0.1510725843680902 patent:0.003137047771073352 means:0.0007062156104844513 the:0.0005699067467385213 :0.8445142455036135 +are:0.2875615190489419 were:0.1377158025760559 was:0.11219434577023059 not:0.11137184036025198 :0.3511564922445198 +and:0.08458724765239696 or:0.048078905880084156 the:0.02481653895378667 I:0.01860939649908739 :0.8239079110146448 +to:0.4094719093433348 on:0.23561284765028565 at:0.11133773521203837 of:0.08393373997953876 :0.15964376781480238 +respect:0.4674721577087996 the:0.002666950011006783 hope:0.001479769546204875 left:0.0013268554737766677 :0.5270542672602119 +In:0.56144277286454 to:0.12168349322714465 left:0.10168566420538103 from:0.09663240645502288 :0.11855566324791149 +follows::0.9281286621876953 to:0.0159738283906836 a:0.0015340427806858248 was:0.0013846772054837402 :0.05297878943545151 +killed:0.0375042915975455 and:0.02014769233895165 ?:0.014683493071130394 but:0.008786811924381788 :0.9188777110679905 +of:0.3014517682916398 to:0.12270183460431075 in:0.11738486147509147 and:0.09385991063283197 :0.3646016249961259 +fired:0.6707991874518453 selected:0.06306497884194004 taken:0.03929872586428427 brought:0.020234948979350752 :0.2066021588625796 +square:0.1085305685386564 of:0.08246774741054608 and:0.05302114412428382 two:0.048535111504620046 :0.7074454284218937 +the:0.9525899050041368 his:0.007489148981896435 an:0.006182963768967509 this:0.005319270849824815 :0.02841871139517449 +the:0.49087498571341737 a:0.18918142518918118 an:0.06569512929968063 true:0.02153504133230118 :0.2327134184654198 +at:0.42583431670133143 In:0.310529973632599 of:0.12487864476345077 in:0.06551060837050234 :0.07324645653211648 +their:0.22116145190658829 any:0.20801024522865397 his:0.19839331214683684 the:0.19795393309608011 :0.17448105762184096 +he:0.520046548667563 be:0.19918646045410335 ho:0.17476801531866176 I:0.06955842012315373 :0.03644055543651813 +the:0.22815548450626827 he:0.2090416017273845 they:0.14580356887401857 are:0.08855716576399823 :0.3284421791283304 +car:0.03277848121883685 mail:0.024834057683363123 now:0.014696898005519737 cars:0.012951384682052652 :0.9147391784102276 +his:0.7451339295272006 bis:0.07783191611684595 a:0.05403306228441394 the:0.01662209963348513 :0.10637899243805427 +be:0.6417037220166282 bo:0.3131008246772196 is:0.007905665985237741 be,:0.0066101023417896735 :0.0306796849791248 +I:0.5798429970732666 we:0.2630756580015316 they:0.054617972297963585 there:0.04374980568215423 :0.05871356694508416 +full:0.027564030248144942 laws:0.026939266438030147 and:0.010597774813369489 to:0.007531048583436731 :0.9273678799170187 +hundred:0.2608666222562472 Range:0.2061825542196014 seven:0.062014240668584804 North:0.05840510016264976 :0.4125314826929168 +are:0.2334941279575112 were:0.1595845333913957 have:0.08238270459295627 will:0.08098137131880978 :0.4435572627393271 +strong:0.3822871102869162 powerful:0.010029413033239275 great:0.006367095179565969 a:0.0030932093741790016 :0.5982231721260995 +true:0.3164765988370922 certain:0.14625947021366062 alleged:0.14218300162928738 reported:0.1289899159565093 :0.2660910133634506 +the:0.37243106730494946 and:0.13282148157181758 a:0.11256239392450942 de­:0.10833161133818826 :0.2738534458605353 +permanent:0.12615382500360728 the:0.09646056947102771 a:0.06544432568753862 my:0.03386715088840939 :0.678074128949417 +left:0.2578606107520847 taken:0.2531145378562875 been:0.10593676257224394 evidently:0.028345235124135365 :0.35474285369524844 +the:0.272068827303269 from:0.2251008896595629 in:0.10572244499857102 and:0.09113620057005938 :0.30597163746853767 +dollars:0.6141587227926255 dollars,:0.21733947968213213 miles:0.027871891306853202 feet:0.022105416725722173 :0.1185244894926669 +of:0.19206826094851706 and:0.07785003065062315 to:0.03872221551933511 the:0.03291314099758911 :0.6584463518839356 +the:0.6199323346398955 that:0.3257160062088555 this:0.02941361217605047 tho:0.00985744603886018 :0.01508060093633824 +it:0.8958674485947609 It:0.03818552534016411 is:0.031594469920636276 k:0.021562204055547256 :0.012790352088891477 +of:0.837250225713679 is:0.0421486841922436 Is:0.01564743983266198 and:0.015061722078153985 :0.08989192818326142 +paper,:0.03692045642327131 depth:0.02415926507341967 new:0.01877999092664469 other:0.01768903363273327 :0.9024512539439309 +day:0.046664236223337305 tion:0.038739422449090025 ment:0.026822470103633606 corner:0.025605707043503404 :0.8621681641804356 +I:0.855034074865152 he:0.04603137020690388 1:0.03458281532230884 lie:0.02917329686405045 :0.03517844274158471 +good:0.13435227981300807 same:0.032449907364341266 moral:0.03143968783901061 most:0.023685848886092552 :0.7780722760975475 +twelve:0.186750519624752 one:0.17778525368620188 three:0.058609516525342666 fifty:0.053973005992285494 :0.5228817041714181 +and:0.09810994982387612 the:0.08022323795444035 of:0.05612048183829606 to:0.04943779751864878 :0.7161085328647387 +laid:0.16193214332970537 and:0.06801068053858496 of:0.06708391987233644 went:0.05675457039514394 :0.6462186858642294 +York:0.25952216874191947 York,:0.017142644107088288 S.:0.01374056537749685 Carolina:0.013276544968264225 :0.6963180768052313 +meeting:0.02205516752296829 court:0.0015679167132487955 attorney:0.0005509324990514121 and:0.00019379803891923642 :0.9756321852258123 +It:0.20385345088989218 it:0.10131784286581767 This:0.0808095273732154 which:0.07419164892446835 :0.5398275299466065 +amount:0.036328803884115655 State:0.022871666172386895 balance:0.02158530710782835 number:0.016298663236597392 :0.9029155595990717 +the:0.5950907008651434 a:0.07753601877141862 his:0.05511584847709559 this:0.05179890256760476 :0.2204585293187376 +God:0.04446037770232314 broken:0.031481365074260165 house:0.017304417204912326 children,:0.012813812438499743 :0.8939400275800046 +not:0.14353055824310448 con:0.12580682860844264 so:0.09254717452523276 largely:0.0733238440762345 :0.5647915945469855 +When:0.3953028130949928 and:0.16941927973494988 at:0.07731865355753356 State,:0.057250952640479136 :0.30070830097204454 +John:0.17470561401408097 Thomas:0.1148388236863629 James:0.10818858992763244 William:0.06993739439037443 :0.5323295779815492 +place:0.06452445624784765 answer:0.05324467632295255 public:0.03507912880884799 remedy:0.02372023857105676 :0.823431500049295 +dollars,:0.08957940030938832 the:0.056037471306720626 black:0.046682997961048404 these:0.014042675328178546 :0.7936574550946642 +record:0.24903624224021992 demand:0.027479461036450856 trust:0.018491990305128908 bond:0.012619035495541756 :0.6923732709226585 +in:0.5807011956570935 of:0.3916320779334127 to:0.01127910102057539 and:0.0096297689065049 :0.006757856482413579 +Johnson:0.17196389373764576 to:0.00843752286762639 Hall:0.0010998319328736788 Hill:0.000681696878581997 :0.8178170545832721 +and:0.17797442306724265 the:0.12982028089395253 of:0.10029218444760601 with:0.06262150545989563 :0.5292916061313031 +and:0.11645711936080987 the:0.08475492080329974 of:0.05755557963556464 are:0.052066466276762195 :0.6891659139235637 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +Not:0.3188446341876823 and:0.08998719729128205 that:0.07393670428800563 but:0.05407973679570582 :0.4631517274373243 +be:0.33120555359150966 have:0.13165363322415985 not:0.03776687528527266 just:0.025974456546589406 :0.47339948135246845 +but:0.1271825584000642 and:0.11910744459705729 love:0.03282520786614179 himself:0.02447011543699842 :0.6964146736997384 +and:0.24740980179919703 up:0.24620265558776672 here:0.084590766711822 out:0.03741384267847875 :0.3843829332227354 +course:0.10902310460726211 presence:0.07421901924773658 provisions:0.07288111337678646 face:0.0515892476523196 :0.6922875151158954 +granted:0.1107369953524266 closed:0.04926437491270053 opened:0.0475786777248886 sold:0.00403140394208684 :0.7883885480678974 +and:0.2513688349936445 On:0.20396502028137062 on:0.13448350240884102 ou:0.050304488352611816 :0.3598781539635321 +heat:0.25707335320154784 weather:0.034292244061252315 scene:0.00891753016773264 time:0.006322345623751104 :0.6933945269457161 +at:0.6496368891068347 in:0.10372963084867165 yesterday:0.07211887321114382 from:0.05539016762845382 :0.11912443920489593 +the:0.44155852543346474 a:0.049284675885441116 his:0.03717215004259767 their:0.029226004776742823 :0.4427586438617538 +expenses:0.36338518729183505 the:0.20858660095931625 it:0.0912770625868766 that:0.08740644346557684 :0.24934470569639516 +field:0.06164295956094538 man:0.03292272596967213 citizen:0.014463351194526434 kind:0.012435232397655942 :0.8785357308772 +by:0.7207141471298737 with:0.1675250957538862 to:0.050121373141302356 in:0.03539513458124878 :0.026244249393689006 +reason:0.041321875760384486 provision:0.03714255774771738 use:0.03498685183711928 necessity:0.0334341093515144 :0.8531146053032643 +body:0.458814097669987 South,:0.017355318277361986 person:0.01231561089146437 people,:0.012306474412679342 :0.49920849874850737 +it:0.21366988975157847 this:0.16236515480818287 we:0.14646048460214967 I:0.03303108789849323 :0.4444733829395958 +one:0.20834639043307107 to:0.17244671823132035 sure:0.1635425569435528 in:0.11993482076780286 :0.3357295136242529 +to:0.08792070777270589 in:0.06725536547187418 had:0.050871705323264904 I:0.0474430624831849 :0.7465091589489702 +They:0.14566969064473742 day:0.10556293217831644 We:0.09611843354899383 returned:0.03639316091931671 :0.6162557827086356 +ing:0.33580139077815424 be,:0.029601389972173334 homes:0.009063314158453753 ly:0.008454100308819214 :0.6170798047823995 +John:0.027033585367441198 Henry:0.025172526615201526 Frank:0.018801553603065603 Charles:0.01849445407118372 :0.910497880343108 +to:0.7288215976949398 a:0.2010608775524422 the:0.025562102636087377 I:0.01971637852302829 :0.024839043593502315 +and:0.9999661961556351 shall:2.1198768499392147e-05 to:8.657349042541393e-06 !:3.313360428857849e-07 :3.6163907800630944e-06 +he:0.7302830303765961 they:0.09638627994114292 it:0.04723390025013305 we:0.046177399000475336 :0.07991939043165272 +at:0.2719239416697666 for:0.25696488739952056 of:0.17966371349668686 in:0.15890128230121997 :0.13254617513280623 +the:0.9072422936806469 tho:0.03890028295054655 tiie:0.0105221362797139 tbe:0.010395426582559542 :0.03293986050653316 +and:0.17126104957508684 or:0.060826647451484264 a:0.031322850507099 do:0.018403786821087547 :0.7181856656452422 +of:0.15844184431799074 a:0.1248500381965635 and:0.07001394300077554 la:0.036376294433874766 :0.6103178800507953 +and:0.015004830786287999 employed:0.005410135604364554 was:0.004180038469504745 committee:0.00362677417804217 :0.9717782209618004 +the:0.23809742098149073 by:0.15901496980880345 and:0.08903978245455348 in:0.06657021176892675 :0.44727761498622554 +the:0.40695390169739165 a:0.04567966081483503 his:0.03157435646520703 tho:0.02668914441584199 :0.48910293660672444 +place:0.21101043815934228 cities:0.14320817858060608 bodies:0.07253735163061174 point:0.021598587960257966 :0.5516454436691819 +There:0.4093106419031883 there:0.30143423605871705 It:0.08293814834669547 it:0.04342805479628839 :0.1628889188951108 +of:0.2736294430935048 in:0.15495921083026454 to:0.1385104353895726 and:0.11206911826220098 :0.32083179242445714 +of:0.19587020533179236 and:0.0636992006098924 in:0.05702741660158798 to:0.04338572621618683 :0.6400174512405404 +and:0.31050939056533183 Ho:0.169601500602051 They:0.08803433986221208 He:0.0757277083679891 :0.35612706060241595 +kind:0.04088539820125247 fact:0.03701655751117494 money:0.031925883715724745 work:0.02956635341503015 :0.8606058071568178 +had:0.03493312429860254 placed:0.023362729586575405 held:0.014476755671670808 80:0.010877140972328163 :0.9163502494708231 +session:0.8411346434053646 day:0.05284844209996507 act:0.01585953342485356 out:0.006331035138527133 :0.08382634593128974 +labor:0.1300321493467963 weight:0.11470577008245735 of:0.07073142739424415 and:0.05056746797139262 :0.6339631852051095 +and:0.12568115094343357 the:0.11251990018724492 of:0.088993438313073 The:0.043698629680069476 :0.629106880876179 +by:0.02851036388108271 So:0.015854577615888994 of:0.007026063920496619 that:0.005191747469458788 :0.9434172471130728 +the:0.9527054022733397 their:0.02884081155558289 a:0.001725338712167202 her:0.0007121943652033903 :0.016016253093706644 +and:0.07833825729031525 the:0.03313260866912801 hand:0.02537694809971799 Saturday:0.02413267143749685 :0.839019514503342 +laws:0.1537203426205727 secretary:0.0715231155075285 part:0.05861908427634401 payment:0.011791244640046985 :0.7043462129555078 +won:0.10821896285339003 made:0.05709635733338459 to:0.03220328692099654 provided:0.027452841683565654 :0.7750285512086633 +the:0.29336998586089613 my:0.16340728553586434 who:0.0897589917920445 this:0.046323762310925665 :0.4071399745002694 +did:0.34732855398043827 does:0.12213603240918072 will:0.11765322782824306 could:0.11254480791183331 :0.3003373778703045 +said:0.011349321943266707 selected:0.007112574882626673 entirely:0.0024143735175448052 a:0.0022044417691945008 :0.9769192878873675 +the:0.4969919187766074 Some:0.08911526169022796 any:0.05689449732469099 The:0.04592878355728115 :0.3110695386511924 +the:0.021096283714260394 first:0.01274516285901887 chief:0.012081264682784528 great:0.011759777055727378 :0.942317511688209 +books:0.4335484271731808 ones:0.020293353877892977 building:0.010388011284442587 cases:0.008921912857592813 :0.5268482948068908 +P:0.07139144652571672 .:0.07062098495977928 ol:0.027001961155940245 E:0.013375929852231686 :0.8176096775063321 +out,:0.24890524910409767 out:0.14297540659826036 seed:0.09834412212645738 of:0.03455521227710531 :0.47522000989407936 +charge:0.11172195842110866 half:0.10326884764933295 team:0.1021139072103748 side:0.09140176766465592 :0.5914935190545277 +in:0.026239675560886706 that:0.011997935325096767 I:0.008553404745918779 !:0.005829060041463324 :0.9473799243266342 +have:0.7849132814417936 be:0.18891103129488268 bo:0.00786886605894701 not:0.005788791713008048 :0.012518029491368541 +the:0.6907144955638527 a:0.12551325350544457 tho:0.03296574806631966 this:0.01276399016397984 :0.1380425127004033 +man:0.19542134095152774 ship:0.09382796813497532 touch:0.05569598194024235 child:0.03347560212531339 :0.6215791068479413 +and:0.408571891870809 When:0.12177185475691758 that:0.10252991065203056 er:0.07343014296829953 :0.29369619975194333 +the:0.7785079216963674 tho:0.037580415529683484 a:0.03595119999513135 tbe:0.0180475831117038 :0.12991287966711396 +The:0.2781723459181829 and:0.1322205678944223 the:0.10447176044746394 follow:0.037605937322456526 :0.4475293884174744 +lie:0.23590294407141246 and:0.16981050512746484 demand:0.03015482804641084 except:0.02354741796212759 :0.5405843047925842 +than:0.13221231293738675 question:0.04485384010937176 national:0.026696972793774174 de-:0.010643878734032717 :0.7855929954254346 +It:0.9481900543979915 What:0.02246757279042478 Ho:0.010508285443091212 There:0.010111032165372687 :0.008723055203119822 +on:0.03316095514639935 It:0.028876650433070274 ed:0.02570068376749836 exercise:0.018490989284333594 :0.8937707213686984 +and:0.10564634366515568 the:0.10534686664381575 of:0.0904721614519399 to:0.05506586254200822 :0.6434687656970806 +If:0.513980752410388 said:0.3257729896317575 And:0.06651885932285145 if:0.03745934314004081 :0.05626805549496241 +-:0.2302613138277884 he:0.10520783148177583 whole:0.07689041335532998 a:0.03151758264790404 :0.5561228586872018 +and:0.1665097955872185 services:0.11286655345318966 troops:0.06949033529842727 They:0.0632156274410441 :0.5879176882201204 +of:0.15409719769479047 and:0.0844464441243764 the:0.07851209960325359 that:0.02230853192812773 :0.6606357266494518 +of:0.22886540897289803 and:0.10413507969943339 the:0.05848081528349854 was:0.030109123731367527 :0.5784095723128024 +the:0.11659280861155995 and:0.10196398235576344 of:0.05558071746294582 The:0.042973543237967725 :0.6828889483317631 +of:0.17056259722439243 was:0.14064888235054254 and:0.10490002016590531 is:0.07387860149106451 :0.5100098987680952 +upon:0.1719819724602449 and:0.13188137154262058 and,:0.07887911885224767 from:0.07809092614468467 :0.5391666110002021 +no:0.9581338630808641 any:0.02480805729025953 some:0.0033949883927074575 an-:0.002906249951918442 :0.010756841284250609 +and:0.15127829885131877 the:0.13324331950489363 of:0.09528497823910373 a:0.03670365451659255 :0.5834897488880914 +a:0.4609284817044968 the:0.2792763463386817 every:0.053319053927846895 this:0.05052481839010062 :0.15595129963887394 +ball:0.07706144323884768 lead:0.06266303242202396 place:0.06236945985051908 stand:0.048364120358759914 :0.7495419441298494 +make:0.2393137700703113 put:0.22714559578621601 spend:0.19482216112606657 get:0.11330297012832226 :0.22541550288908385 +two:0.31259922328369116 a:0.19224841143225455 thirty:0.17214512869668153 six:0.11985236257542556 :0.20315487401194715 +up:0.09371775403079972 well,:0.044112477528194874 her:0.014933208803784953 them:0.010457415916576182 :0.8367791437206443 +very:0.0779240085824268 most:0.04011409985432273 great:0.031017608616744907 large:0.03019096222501949 :0.8207533207214862 +his:0.0018152458254743341 the:0.0015379741194216038 her:0.0011132725099247116 my:0.00044761020115366716 :0.9950858973440254 +and:0.14047464116230018 but:0.03524884593729627 or:0.014146959070760218 is:0.011909652803572954 :0.7982199010260705 +and:0.9973414931920164 to:0.0013687336930104726 by:0.0006931631203060246 in:0.0002660672609966907 :0.00033054273367044175 +for:0.8302574920279973 with:0.10555317787844594 that:0.0389209899259779 in:0.006928783199650912 :0.018339556967928054 +near:0.039152978409743584 most:0.02736998474447345 his:0.024731616569193076 same:0.021219712581004233 :0.8875257076955856 +don't:0.9999993721835544 cannot:3.086161453928603e-07 will:3.72050333436627e-08 to:2.7942578101696624e-08 :2.54052688810818e-07 +basis:0.14936091407825125 principles:0.07243950074101314 limits:0.05163122581861645 ground:0.013973021018538345 :0.7125953383435807 +and:0.12121199606945489 of:0.08832313574847638 the:0.06033821251471707 to:0.030330400845113962 :0.6997962548222377 +is:0.5811605090723124 was:0.24217914556422918 has:0.045085602750905736 becomes:0.0293227801055738 :0.1022519625069788 +the:0.9990502164851205 tho:0.00034318914245230064 some:0.00020297890006337873 our:0.00016868926795611132 :0.00023492620440768985 +be:0.18451194795465245 come:0.14415284239871365 go:0.10883786138033563 break:0.07240940350402623 :0.49008794476227213 +to:0.2249453251169108 has:0.22413180909203909 were:0.18953989892331166 in:0.12556130779346705 :0.23582165907427138 +main:0.3213819568291901 simple:0.2070770871048237 principal:0.19474372846034818 probable:0.10862958640612706 :0.16816764119951103 +is:0.41004040977955686 was:0.10568091555125803 Is:0.07671586526653656 will:0.04731950662875717 :0.3602433027738914 +It:0.25335410215802345 which:0.24609595454558555 who:0.08194146750037885 and:0.05204217952057848 :0.3665662962754336 +on:0.7753300303063378 of:0.22442971286592409 upon:0.00013902889655812838 the:5.066962926668471e-05 :5.0558301913449515e-05 +try:0.27952846187709274 ty:0.05968474156292662 premises:0.0007663226945748947 ties:0.0007640777260858596 :0.6592563961393199 +a:0.6323537262255222 the:0.1399305414579267 one:0.06293248093401119 in:0.04478060426172029 :0.1200026471208196 +a:0.1643563197854803 worked:0.04408088141854059 into:0.011546936524899758 of:0.009741897132818488 :0.7702739651382607 +to:0.5716394558234038 for:0.20433681814205729 of:0.14346026582889077 and:0.03835012057112081 :0.042213339634527114 +person:0.9210864806858919 corporation:0.031300265027812475 vessel:0.021509885185318683 man:0.0070172075087756944 :0.01908616159220128 +and:0.23973717341755746 my:0.17203495278714992 it:0.09186221983350198 to:0.0876317214642941 :0.40873393249749645 +all:0.17133468757966475 which:0.05617344584392991 of:0.05490275424044016 at:0.02379115976874741 :0.6937979525672179 +at:0.5122332297226959 for:0.04061087269071384 with:0.035276879975203956 to:0.021695573834175388 :0.3901834437772109 +the:0.552045936683271 The:0.1833705646201019 At:0.08839540390591406 and:0.06934335219641662 :0.10684474259429637 +that:0.9731997511820888 the:0.003760052410979926 when:0.0032467233576157464 in:0.0024186983550082254 :0.01737477469430758 +as:0.27453077871271464 and:0.2162990929223925 even:0.08434373099132893 that:0.05458321583779113 :0.3702431815357729 +and:0.2813786269191367 h:0.06850866866299953 the:0.06367600271257211 which:0.03882181755177777 :0.5476148841535139 +small:0.26599516348987495 little:0.066559053269431 Chinese:0.017637650610118127 country:0.015988805773760207 :0.6338193268568156 +as:0.12129485155684203 conditions:0.0944965525188204 treatment:0.0877137053252464 a:0.06757583115332857 :0.6289190594457625 +said:0.33045881925945997 states:0.14059544333743146 stated:0.08960379052490286 declared:0.08082394111033435 :0.3585180057678716 +of:0.2750635546941548 As:0.06629839248673196 and:0.06320210278551201 to:0.01157674167749482 :0.5838592083561065 +a:0.248888872495124 the:0.17553977482647967 an:0.088847934459934 to:0.06399081756406147 :0.4227326006544008 +due:0.381070402144555 confined:0.1552674733169075 brought:0.043736441191505875 found:0.028488089109847237 :0.39143759423718444 +of:0.20883468240423658 and:0.06286465868414631 the:0.0573310124180543 a:0.04371458602042602 :0.627255060473137 +he:0.10891053081585728 He:0.09944773697962193 dent:0.018882810138730628 broken:0.014699945827742015 :0.7580589762380482 +of:0.6158182734267413 to:0.09067390461387417 in:0.08833156374674983 on:0.07242794227798262 :0.13274831593465222 +notified:0.32673840629581297 given:0.12439995793380465 ordered:0.07490827906470936 declared:0.06281337518219537 :0.41113998152347764 +land,:0.11782242184034249 was:0.07997816253927137 of:0.0537684808784736 in:0.044515770692856255 :0.7039151640490564 +and:0.17209281935893325 this:0.11080702154149703 the:0.09711700368776996 to:0.0669064287416648 :0.553076726670135 +ship:0.0554568901644261 sides:0.04025054739345501 real:0.004249689307096566 man:0.002760816052849033 :0.8972820570821733 +have:0.20234810533052866 are:0.18365783140601818 cannot:0.15134954636198097 must:0.12379946110620661 :0.3388450557952657 +to:0.32958374963545695 you:0.31949527649761694 in:0.13278439609647508 into:0.1063238805261074 :0.11181269724434362 +seen:0.3181964701673912 been:0.019394209815716934 be:0.017947933891359076 to:0.017479247710277958 :0.6269821384152549 +the:0.2635680181868353 in:0.10414461908663082 a:0.04289520155474254 ":0.03685221815590101 :0.5525399430158904 +California:0.7867061839810293 it:0.011950564198536821 the:0.00885011407331817 there:0.004304820789429054 :0.18818831695768673 +of:0.44780947233915086 for:0.19454538672286426 is:0.12285260935067699 a:0.09873440812091322 :0.13605812346639456 +the:0.5202225125790807 be:0.0533449621498296 a:0.025100434655313367 their:0.024963075571466015 :0.37636901504431036 +of:0.9287259595239775 from:0.020782199370644915 to:0.018542435433644495 or:0.014873077811119965 :0.017076327860613232 +the:0.546179847916766 that:0.054550874537249605 Saturday:0.03376421562420146 tne:0.02911500113876268 :0.33639006078302025 +conditions:0.013185080278050161 and:0.0007167042350731249 forces:0.00031388475349378365 it:0.00028587430263090756 :0.9854984564307521 +the:0.07876933060794786 mother:0.059800694186423996 In-:0.0388790936313557 E.:0.02659027220183878 :0.7959606093724336 +the:0.6285371104453176 rates:0.07276091741451195 a:0.04676261458191993 tho:0.028624913038046054 :0.22331444452020452 +new:0.07690700166662195 great:0.057022446711344876 single:0.05672775609150656 serious:0.03825143160390473 :0.7710913639266219 +be:0.47587830037558115 bo:0.07513068376120413 ever:0.027460442154366143 ber:0.022007422417076216 :0.39952315129177235 +of:0.5722842762282377 pounds:0.2129025454968487 per:0.0728553195462067 at:0.030342996981911993 :0.11161486174679475 +of:0.57502075265929 a:0.1992262898644565 to:0.08001612075271161 the:0.07692246186505271 :0.06881437485848921 +and:0.3338720301607922 or:0.1573528808684899 not:0.0719652260052247 to:0.03968388902441836 :0.3971259739410748 +of:0.7573541469163123 in:0.0848862589642937 and:0.05924948918020878 to:0.030174992222802337 :0.06833511271638291 +in:0.048647079778060084 States,:0.04635332844856284 business,:0.03559501889144674 petition:0.02361324313633249 :0.8457913297455978 +the:0.8025093388716923 tho:0.038958092602233846 a:0.033252957977368394 tbe:0.017810424877004224 :0.10746918567170115 +the:0.3732942706665109 a:0.1737050009587613 at:0.11476029528213404 and:0.07459427698874906 :0.26364615610384473 +of:0.8718450224455183 with:0.055242369489417326 for:0.04046116873335358 on:0.017770568342512748 :0.014680870989198003 +and:0.15522764186775087 the:0.11369816859961884 The:0.09199404394623628 of:0.07793257437704619 :0.5611475712093478 +the:0.2772542623077151 him,:0.21896976022240328 you:0.12528810576728786 my:0.1103255156783574 :0.2681623560242365 +much:0.020732521726299028 me:0.00975580222453585 something:0.009622774961061103 a:0.004637590236739526 :0.9552513108513644 +business:0.029714918187208148 I:0.01842427286675692 en:0.009549466391323733 city:0.005139435851968768 :0.9371719067027425 +the:0.005324898862725844 his:0.004788787860670837 and:0.0033216328736582184 my:0.0015440879382077651 :0.9850205924647374 +of:0.18337121294735523 was:0.16466936559321887 the:0.13967249745856294 in:0.10245341230055854 :0.40983351170030446 +to:0.32751317886257014 will:0.22148058008306484 may:0.0970041576256393 should:0.09554604099459554 :0.25845604243413023 +for:0.16812821194892835 And:0.04994263017456952 tion:0.037438554923143644 a:0.029632033410246686 :0.7148585695431116 +carrying:0.2325410850536192 wear:0.033182819700822125 keeping:0.0321730800984899 calling:0.03203386725229163 :0.6700691478947771 +them:0.041782266789646604 such:0.024152255885656133 or:0.02348891502639084 him:0.018941270301544313 :0.8916352919967622 +of:0.20545752860474553 -:0.05302471510404026 and:0.03918741207583748 to:0.02536664203395496 :0.6769637021814218 +the:0.06448819338187826 that:0.043645014558479106 when:0.04318367771702203 as:0.04178497876231489 :0.8068981355803055 +to:0.19959661650646604 that:0.19940447975002007 of:0.16130985386466912 in:0.09038417483859792 :0.3493048750402467 +that:0.3649136139108125 but:0.10465957651457294 you:0.05010782840824109 would:0.02146989621754024 :0.45884908494883325 +the:0.7210782307171273 a:0.0625560092318311 tho:0.030711596572660944 tbe:0.01683192940761426 :0.16882223407076646 +in:0.6664614332911225 In:0.21477597810383642 into:0.09795835527535568 Into:0.011967524818159932 :0.008836708511525551 +the:0.560853900379592 a:0.3004999766895613 said:0.08201977886361277 that:0.030199143424887047 :0.02642720064234681 +the:0.4192938436729892 a:0.07744922097698112 tbe:0.0726349065514491 W:0.04272147643339711 :0.3879005523651835 +and:0.1139330531676093 to:0.10175219549855281 in:0.08083013215812564 the:0.07916158778866937 :0.6243230313870427 +the:0.08910672274164044 was:0.0308230475898143 a:0.02790298672477108 in:0.022752778272245738 :0.8294144646715285 +names:0.12219214513771173 source:0.08417193489556224 attention:0.052125938940482015 best:0.04620186673429861 :0.6953081142919454 +extent:0.04004864214215428 memory:0.032566421831933215 principles:0.022810086038146216 development:0.0209964022817253 :0.8835784477060411 +Last:0.5486694654701233 This:0.11108449211350038 twelve:0.07874653098897205 last:0.0524536847509957 :0.20904582667640875 +capital:0.8058244434496846 and:0.1453107982037268 while:0.01117692837171896 or:0.010214762216612626 :0.027473067758256874 +in:0.015424004140902225 ment:0.00647789284293927 and:0.005823210711299738 In:0.005154413472587639 :0.9671204788322711 +highest:0.03191422945462141 world:0.023942993293770223 \\:0.02371908850410665 State:0.018484601608268012 :0.9019390871392337 +the:0.16609745496038053 and:0.1337164381576856 of:0.11800438746655512 The:0.09782532489452117 :0.4843563945208576 +Mr.:0.9999766648019773 the:4.421547282828652e-06 to:2.883983130086879e-06 he:2.7825024047338726e-06 :1.3247165204853045e-05 +or:0.995642164915802 par-:0.0004417930654528315 par:0.00010675690084547944 the:7.657733124075509e-05 :0.003732707786658899 +and:0.04724645827888955 M:0.013890637135407223 S:0.011978741398516764 as:0.008003111210615286 :0.9188810519765713 +and:0.023995406017584674 full:0.010767891205418217 out:0.00996601815170771 of:0.009799472385237677 :0.9454712122400517 +were:0.22797274966013753 are:0.1705783695432144 want:0.15523272145196682 must:0.10372867903282745 :0.3424874803118538 +of:0.3124098569003265 and:0.12063914826365153 or:0.08913447581002798 the:0.06725881500391627 :0.41055770402207775 +and:0.46165348665233275 men:0.029102940673874707 is:0.007419167988252164 that:0.005256661592133291 :0.49656774309340695 +particular:0.2614454276716827 a:0.21698954323041839 the:0.1485389578701964 A:0.0792100286918897 :0.29381604253581267 +and:0.22324794250431845 to:0.16235238011244596 who:0.11242309926098444 of:0.06411061327671444 :0.4378659648455366 +no:0.5977042508311623 a:0.2886226716225694 the:0.06477292808306419 still:0.014198571451141572 :0.03470157801206265 +bonds:0.8340457186913774 object:0.004978261222647376 good:0.0026238641074795297 will,:0.0018966033189044996 :0.15645555265959116 +of:0.11115383606233187 and:0.06098972603760833 the:0.053443248901834266 to:0.02302708503921352 :0.751386103959012 +in:0.26745372505112086 not:0.06536159581699648 on:0.049570218943029765 a:0.04298675494965198 :0.574627705239201 +not:0.0789116108735534 history:0.058535807978628986 it:0.035077607680541564 what:0.020263135391977563 :0.8072118380752983 +of:0.7415432918285446 be:0.09819454296929966 and:0.015249119774427514 the:0.010953352158538543 :0.1340596932691896 +as:0.04641265301690144 lay:0.028456780969901525 lying:0.025701627090487265 arrived:0.01777812669075198 :0.8816508122319577 +into:0.4439716114011663 to:0.23608430605897568 with:0.14234291747940528 Into:0.10547867646263381 :0.07212248859781879 +of:0.3811583563433092 received:0.10263053825971545 from:0.0995660676428568 and:0.08549644107424718 :0.3311485966798715 +line:0.04701698137314032 laid:0.03623258144955724 group:0.02350785069793362 h:0.023417979659841017 :0.8698246068195279 +girl:0.16077783889813374 world,:0.0859968736020981 child:0.0536966785609331 soil:0.04777496403137114 :0.6517536449074639 +balance:0.03755421002367314 other:0.035938338779547475 people:0.014137232364676807 manner:0.012503548442297162 :0.8998666703898054 +he:0.7029342478291315 she:0.10139734087344673 it:0.1002597190725767 there:0.052729549404118954 :0.04267914282072597 +attorney:0.08155081767012369 governor:0.025672856202247574 same:0.0089461754918 next:0.004833264849792034 :0.8789968857860367 +of:0.9801523671331316 in:0.00990401552031378 and:0.0034155806762245578 which:0.0022192151427579 :0.004308821527572235 +gets:0.6375556098516437 of:0.07558588066508147 ol:0.04910793271065547 hut:0.043521191424399884 :0.19422938534821946 +number:0.2622698361218569 amount:0.16670078926458406 variety:0.12922593643237293 degree:0.12763951761608217 :0.31416392056510384 +hour:0.9970507155314435 long:0.0002045322868119147 advanced:0.0001743033044011114 years:0.0001418463696986715 :0.0024286025076447814 +see:0.18302162477191772 say:0.16994520950826061 find:0.11416215742915259 believe:0.10769224146406042 :0.4251787668266086 +this:0.4729154290473013 no:0.3205685871488225 that:0.10278505640249046 what:0.0516114543626835 :0.05211947303870219 +are:0.9751237095105145 have:0.0017926683495677364 a:0.0013696555530598716 the:0.0013214449417113367 :0.020392521645146412 +that:0.5510862805070362 of:0.11429506597176738 ing:0.08639440037040647 and:0.07366875738606418 :0.17455549576472565 +be:0.6083227562904746 firm:0.11443714420939176 which:0.10022762136265156 had:0.07021126011987508 :0.10680121801760713 +to:0.12301695968702091 are:0.06684201256458656 of:0.040232342305344435 even:0.022039271702479702 :0.7478694137405684 +advance:0.059997213614789914 regard:0.03569308212446457 ground:0.013864040773109947 of:0.01201218597692139 :0.8784334775107142 +walk:0.9944195431118332 on:0.002004567661242585 for:0.001101198065134785 though:0.0010684332076882944 :0.0014062579541011296 +a:0.9622519504520178 the:0.016353404583568674 A:0.00712008710858989 some:0.0025186179645114775 :0.011755939891312015 +feet:0.5071166265058987 inches:0.10900810170482637 miles:0.07759355124776808 millions:0.01791984538799452 :0.2883618751535123 +and:0.07191904603614628 of:0.04477892537754415 the:0.03549037343155281 at:0.019683131651690375 :0.8281285235030664 +the:0.15594228015149797 to:0.14154665304020647 for:0.12313291270573949 in:0.11856837309717756 :0.46080978100537834 +It:0.18774520719295457 which:0.16497700223574846 and:0.09563564820623158 it:0.09174632085510656 :0.4598958215099589 +the:0.3746775074924693 a:0.058449137466144156 50:0.021985230864287116 15:0.018505070804112688 :0.5263830533729867 +may:0.4551646454359725 would:0.352058703732812 by:0.08227209388621758 should:0.07816750777264277 :0.0323370491723552 +is:0.19237224445545156 was:0.10672994162847038 now:0.054357410342289456 formerly:0.0538395494886909 :0.5927008540850978 +the:0.2559558339686367 Van:0.07392405644376711 White:0.06178440092191198 Fort:0.05848517029989665 :0.5498505383657876 +the:0.1987545263318956 i:0.06136974777400484 North:0.05404239124763123 New:0.012064597189626464 :0.6737687374568418 +head:0.14141958615879371 face:0.03698488615675035 head,:0.033130672978169386 clothes:0.019855088695449358 :0.7686097660108371 +I:0.18264850740477995 a:0.15031008085023134 The:0.0894378600093012 and:0.06832754022598106 :0.5092760115097065 +of:0.21105100819604558 and:0.1110287926536864 the:0.04233104428775952 The:0.029530246182234255 :0.6060589086802742 +not:0.27504123116184653 the:0.1741189261345958 a:0.13562946413330135 from:0.1108696384125357 :0.3043407401577205 +and:0.37006882135399666 in:0.24573449844044956 or:0.15074147937561447 on:0.12183972330791756 :0.11161547752202161 +him:0.9765924173565886 the:0.00835720952925506 of:0.002063246445969295 it:0.0008496250852295647 :0.012137501582957526 +single:0.3440037659182659 the:0.10885180614620997 particular:0.0994729724543871 private:0.07128534830759792 :0.37638610717353904 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +but:0.30922587588309336 is:0.2158736234526605 and:0.14664507675406577 that:0.04719154970681137 :0.2810638742033689 +and:0.610722061409693 off:0.18359123602461358 at:0.09361592262013219 in:0.07314186577863677 :0.03892891416692468 +of:0.598428489772507 by:0.07993874157235654 for:0.0523473754167567 with:0.05051238540595828 :0.2187730078324215 +to:0.054402043661380434 the:0.041173936580601665 and:0.03828529765527944 of:0.03142004540186191 :0.8347186767008767 +of:0.4046357518664564 to:0.1840651115237184 as:0.0885823658306902 the:0.05895813897929383 :0.26375863179984116 +and:0.19194364846688278 has:0.06720872099057748 seemed:0.04257312995342511 proved:0.04134277680541003 :0.6569317237837048 +not:0.21307318496351738 of:0.11065542178252129 in:0.10168442873447006 also:0.09881263334186938 :0.4757743311776219 +the:0.1516096591435707 American:0.12760330195073555 in:0.060339986918012345 are:0.05063015325723306 :0.6098168987304483 +He:0.7083580299628237 It:0.16206603899944033 There:0.049505622213826164 That:0.015870113129504128 :0.06420019569440563 +carried:0.4814938041983916 placed:0.02002969146546829 engaged:0.016135233196677014 not:0.012148510838036758 :0.4701927603014261 +he:0.03148906132599814 it:0.024238183974577256 ho:0.0028547656606890534 she:0.002552134605334933 :0.9388658544334009 +would:0.8335284060370861 will:0.09570436463723905 and:0.021525407000888293 to:0.01950896093399672 :0.02973286139078985 +did:0.7457193101192495 does:0.22277164540377004 is:0.015219129255543166 could:0.006912333467621579 :0.009377581753815777 +and:0.23205883910340758 where:0.11743002150991537 that:0.08330018497416816 but:0.0777810707583478 :0.4894298836541612 +her:0.1846766586510387 soul:0.1611139659301553 In:0.1133066351364416 heart:0.10856472868539736 :0.43233801159696694 +northeast:0.35457296424560203 southwest:0.29166955394294447 southeast:0.21421657891435095 northwest:0.08905628543641153 :0.05048461746069114 +of:0.3095820277131413 took:0.19063433360740534 and:0.07607454540156741 beat:0.02703042819439825 :0.3966786650834876 +the:0.06527875065783424 ran:0.0350977306304835 my:0.03132425813847373 and:0.028413548033855505 :0.839885712539353 +the:0.47874308013500605 dark:0.1421280788300181 my:0.014501093050805472 his:0.01015356013558443 :0.35447418784858575 +country:0.27761898279711994 1:0.06855250778526652 bill:0.03140832017073378 Constitution:0.02368757532313571 :0.598732613923744 +possible:0.2551375418909155 impossible:0.12755758790502064 necessary:0.1177586123077151 ready:0.04102372941056314 :0.4585225284857857 +good:0.06610676532242045 few:0.03826639723639352 bill:0.037273138987471456 colored:0.03217979947938269 :0.8261738989743319 +of:0.9982449983222594 in:0.0009095721165912153 for:0.00039773031010827765 ot:0.00021333432468607032 :0.00023436492635484194 +top:0.029317440883685878 end:0.025618506589568716 people:0.023023370427795897 extent:0.019759965405014818 :0.9022807166939346 +of:0.0737644379617609 or:0.009112392363697354 large:0.007306645573238933 in:0.006725476872281834 :0.903091047229021 +tax:0.6366268765748441 work:0.025455593934591896 one-half:0.013540191797881924 taxes:0.008758356112999978 :0.31561898157968227 +the:0.578211414046527 these:0.08247574094133453 all:0.06662116788302878 this:0.06546721161807793 :0.20722446551103174 +as:0.6270188309858494 that:0.17145810589694563 time:0.06362011036447283 time,:0.03855643689019467 :0.09934651586253757 +not:0.0717764836457595 being:0.03304493321480671 also:0.03125942005834705 then:0.02450842162232903 :0.8394107414587577 +be:0.5565474101351265 the:0.23994869213981185 seem:0.03402932249367938 do:0.030915430745900058 :0.13855914448548223 +strength:0.8240630512101235 her:0.13159818702107842 the:0.015506085197538265 like:0.011026457003599168 :0.017806219567660642 +25:0.40173612192806446 about:0.0929570679303106 10:0.054997819144910615 over:0.03823212987784464 :0.41207686111886976 +the:0.9365133763342418 a:0.060352862049911665 tho:0.000717999148469562 this:0.0005578575918680918 :0.0018579048755088538 +in.:0.05066023498281547 born:0.032670386026780414 it.:0.022275250898718884 a:0.012985664914857527 :0.8814084631768276 +posed:0.8559710398696271 appointed:0.010510452978888394 satisfaction:0.002575006345038784 covered:0.002194178782122422 :0.1287493220243235 +tion:0.020105995480461773 and:0.012079229743957665 company,:0.011261283526618484 ple:0.00955294352391994 :0.9470005477250422 +been:0.6136473174065903 a:0.05378952687878324 no:0.04517195068552706 the:0.04064131004455969 :0.24674989498453972 +and:0.13490839328492307 is:0.10652294967712997 the:0.07985399228282473 No.:0.07473852755602962 :0.6039761371990926 +somewhat:0.6387178994683959 a:0.004732263956349309 little:0.0013865563584998179 much:0.0011320033316966566 :0.35403127688505837 +light:0.16590387523292993 statement:0.09805111554477924 house:0.0978098609413593 law:0.021300616345988947 :0.6169345319349426 +that:0.4272104864264058 if:0.07837348355736644 to:0.04170881882857254 when:0.03488804755408789 :0.41781916363356725 +ment:0.05759241396685665 thought:0.046011843372266506 feeling:0.03780724517149459 out:0.03722293589580153 :0.8213655615935808 +the:0.15137054447153972 a:0.08610193150704606 in:0.035903090646423434 made:0.030045008080474108 :0.6965794252945167 +being:0.23075378589212828 not:0.1585656606048507 con-:0.15079831267895208 too:0.11114351183469068 :0.3487387289893782 +and:0.17865623936809388 of:0.05821330902886476 the:0.0527880722415299 or:0.052176130021372495 :0.6581662493401387 +day:0.5309988725429804 Mr.:0.2118869137191455 and:0.11738294375821128 to:0.10669584618193408 :0.03303542379772877 +together:0.11690823971806709 bed:0.04137978280131581 hand:0.0401750357554502 now:0.03824972126913826 :0.7632872204560286 +do:0.06085303286338665 .:0.06018069729688538 will:0.04471644015156905 did:0.040605005860175646 :0.7936448238279833 +will:0.2537009944555837 could:0.21445926632599766 may:0.19713123084646533 can:0.15299597517252592 :0.18171253319942748 +to:0.8898983800483444 on:0.04283642672882032 in:0.03191087093932023 of:0.0264641864670103 :0.008890135816504786 +and:0.12962156604830585 of:0.12663459626920742 the:0.07268542948730723 pur-:0.042430736738171715 :0.6286276714570078 +great:0.17325949915557134 large:0.02641339060863001 small:0.01777644397303443 strong:0.016522445908748917 :0.7660282203540153 +tion:0.1783445960689529 ment:0.11996294415494003 and:0.036646658964833385 tions:0.02173088227450665 :0.643314918536767 +party.:0.006804905042168725 country.:0.0037751041133790367 life.:0.0023680067726972367 way.:0.0013310510103633018 :0.9857209330613916 +and:0.13591290761404412 the:0.11697619712187862 of:0.0896352437670527 The:0.0752513038441531 :0.5822243476528712 +protect:0.38798898114822045 maintain:0.14243755413068973 secure:0.10249833294381255 obtain:0.022253744734727486 :0.3448213870425499 +love:0.07528694445540593 -:0.04073298974428492 the:0.01983378169790477 I:0.01305900198021162 :0.8510872821221929 +these:0.07034691585202368 who:0.0519939574150244 which:0.04187327062867056 the:0.04071503516737914 :0.7950708209369023 +ber:0.5722993644448187 without:0.24219167614032122 with:0.06377087148955805 and:0.05720948081625339 :0.06452860710904869 +and:0.19316087722118308 the:0.10920291243983687 of:0.04765994700793848 The:0.04568258381239073 :0.6042936795186508 +variety:0.08098701126809484 certain:0.01621575209388876 one:0.007579738624812566 some:0.004796221898888508 :0.8904212761143154 +pain:0.15473217325992225 long:0.05874409208294175 loss:0.01908112684575443 the:0.01884296064106398 :0.7485996471703177 +thing:0.17194958745052225 things:0.12006111791433811 points:0.11897380973869576 places:0.1166621660657877 :0.4723533188306561 +of:0.4054035538944307 and:0.09063598357104422 the:0.04800805906707712 in:0.04678796871043305 :0.40916443475701486 +accordance:0.2963124564597343 connection:0.07539623045816785 company:0.07205895337372391 love:0.03960531939414326 :0.5166270403142307 +Carolina:0.05854691851495758 Dakota,:0.04686311913356426 and:0.02871283658784624 of:0.021982550630519317 :0.8438945751331127 +are:0.7823214102263089 those:0.0325033716800812 was:0.01138112902218539 be:0.0071469988906703585 :0.16664709018075427 +the:0.8304100928161419 a:0.13315831542086545 tho:0.00839826644358766 immense:0.0037270422175555424 :0.024306283101849353 +few:0.2242308688941555 short:0.16122586369146716 month:0.040458883792333075 small:0.013312414772336916 :0.5607719688497071 +and:0.8452866032459152 but:0.01562397577370834 that:0.014092561363053315 yet:0.013444402984731908 :0.11155245663259111 +heard:0.15476791490608022 said,:0.07732030913490852 plenty:0.07497283439149094 had:0.05359903482564161 :0.6393399067418788 +.:0.6325488031049911 A.:0.007753169917621008 the:0.0006393564189096966 of:0.0005172261582469137 :0.35854144440023117 +the:0.3785871236149316 this:0.21912208298003802 that:0.1316807019346626 North:0.11332731547917488 :0.15728277599119295 +could:0.426690189800789 are:0.2859332171720513 can:0.1206258407829309 need:0.09201302584687307 :0.07473772639735564 +the:0.19058123643029667 and:0.08244233745203985 a:0.051227858197810436 The:0.0361441842416562 :0.6396043836781967 +of:0.02464819745138512 open:0.022772649700261712 and:0.005570992787749673 to:0.0027568675879216784 :0.9442512924726818 +supplies:0.1351969530567681 property:0.12363650310048528 lands:0.1105195065214664 time:0.1066171152791464 :0.524029922042134 +the:0.22090495880471128 to:0.10039146492893587 thirty:0.08174450095488871 your:0.0488230224730369 :0.5481360528384273 +House,:0.22485067906746947 court:0.04923992389430338 commission:0.04878767305982765 people,:0.0447220883076569 :0.6323996356707425 +farmers:0.10251298863741902 country:0.04879762708076059 States:0.01506773448769171 so:0.009674953145694137 :0.8239466966484345 +a:0.5942569963559323 of:0.07665609869507953 and:0.06793939966264449 the:0.044833013401135095 :0.2163144918852086 +Wm.:0.05912933032691784 Frank:0.04610528523034751 I:0.03439683312131142 James:0.03328824080862088 :0.8270803105128024 +Board:0.2806115694570874 Department:0.02485943211798455 B:0.00570496640717687 provisions:0.004500419564942869 :0.6843236124528084 +The:0.26863437366823684 or:0.22033942335572582 and:0.11906163764991334 ment,:0.08721279701593411 :0.30475176831018985 +of:0.28198277369461083 to:0.23096608766546278 from:0.1453212319976795 and:0.1374633705228211 :0.20426653611942583 +right:0.03957937676800351 time:0.028105253594738245 city:0.021034787593801563 talk:0.020671469055247995 :0.8906091129882089 +acre:0.1877513633527588 original:0.13923464983888337 ex-:0.06208388143501571 immense:0.04113104991783814 :0.5697990554555038 +the:0.20552123050694088 of:0.039395308987979626 a:0.03699795718674603 devoted:0.03241524413907741 :0.685670259179256 +and:0.986896706439238 thousand:0.0023815887275602855 aud:0.0016676920627286818 men:0.0004311044868156826 :0.008622908283657244 +been:0.7429986246787755 the:0.07914734437071452 The:0.029125593087227297 any:0.014576971044747537 :0.13415146681853501 +sale:0.9725577544244497 sale,:0.0032364895132879984 sat:0.0015464947904551933 safe:0.0011371047957886027 :0.02152215647601853 +protection:0.2807489704223324 chance:0.052617137904799556 one:0.009211674745191844 information:0.0073494026892882295 :0.650072814238388 +the:0.3811295385708055 The:0.11702654027230695 his:0.0967381676361343 His:0.07794661998702394 :0.3271591335337294 +now:0.1327002751222032 still:0.06265629883146223 republican:0.05685692096951677 payable:0.0557970698150735 :0.6919894352617443 +and:0.030480578601248545 the:0.029049496350595543 The:0.019986788255109068 of:0.018303602615146842 :0.9021795341778999 +the:0.9917879141132216 tho:0.0005191672025308026 The:0.00025489251036202906 of:0.00018457593586767378 :0.0072534502380179 +the:0.0696391476286762 to:0.021419947526450496 of:0.01025708329147389 may:0.008950803560854044 :0.8897330179925453 +and:0.11267564561010328 the:0.099227372100504 of:0.09241224006105754 was:0.08573159068655793 :0.6099531515417771 +by:0.8254348352217651 and:0.0607432272593561 the:0.05141853879445141 of:0.02289548348654626 :0.03950791523788099 +the:0.9293125903494107 a:0.03821836847768482 tho:0.018761905022723926 Ihe:0.0021776624416796828 :0.011529473708500918 +range:0.10783765158188699 plenty:0.10091377826236869 state:0.0543547442419375 waters:0.03551401439130259 :0.7013798115225042 +the:0.9446759778532106 tho:0.00809178651791564 my:0.0047501320756584125 that:0.004277163630665921 :0.03820493992254944 +and:0.28400958122581915 that:0.17796183622745493 but:0.14868284284318864 But:0.07186375030017851 :0.3174819894033588 +a:0.25914867908905986 the:0.15839597944834605 of:0.10063680810733591 and:0.04703927731544987 :0.4347792560398083 +quickly:0.015487844247307411 than:0.003345334463573452 as:0.003193665027844278 money:0.0031490406328484304 :0.9748241156284264 +and:0.3219685944362054 ting:0.16684923159439247 to:0.1592168759665749 the:0.07541091297750627 :0.27655438502532104 +directed:0.00045714179428784724 seen:0.0003026601996191509 not:0.00023658533773318898 going:0.00013257290480292536 :0.9988710397635567 +Into:0.7997311524856812 the:0.04397566198664999 a:0.007748734222647896 your:0.0047819501851605615 :0.1437625011198605 +ago:0.3774618443961442 old,:0.20859806702382974 as:0.046058416354898706 and:0.023155646268747096 :0.3447260259563803 +the:0.27655932559746105 very:0.10196578066287287 Mr.:0.09973072739013117 he:0.08650134991934487 :0.43524281643019 +of:0.20000845619181387 by:0.1426770697376018 to:0.09805318988042391 and:0.08844709712967241 :0.47081418706048805 +at:0.2984381536646564 that:0.24699905822590892 and:0.24505478955245358 of:0.167909200366655 :0.041598798190326254 +to:0.9989737151521395 and:0.00048190907354649857 will:0.00014127714702882036 would:0.00010023678926280044 :0.0003028618380223555 +the:0.9712156050263325 this:0.010230369802323195 Ihe:0.006713922627621668 tho:0.004844765102833783 :0.006995337440888801 +of:0.8884975649805968 cf:0.027295738746453153 by:0.026959053565748577 Of:0.012248587991034376 :0.04499905471616701 +the:0.8191040707051865 tha:0.04426461674678687 tho:0.03297303916951475 a:0.029565276919511566 :0.07409299645900029 +a:0.192889385574844 Mrs.:0.0658369244596326 the:0.05921829729264137 an:0.039304131262355796 :0.6427512614105261 +the:0.6309573608333386 page:0.10682413678866995 a:0.06995583212249344 tho:0.03669484863301273 :0.1555678216224851 +the:0.13479053801601132 of:0.13237004441055503 his:0.09416977791039698 in:0.07455918571286325 :0.5641104539501735 +and:0.2648345983174661 of:0.161571331254867 with:0.10198904677954844 to:0.08698515325510886 :0.3846198703930097 +approved:0.02484428233626603 perfect:0.013334804144492543 important:0.011806648986640675 of:0.011415677114119142 :0.9385985874184816 +the:0.1267681829299325 many:0.057716191656083146 certainly:0.045153842093526554 well:0.029877379111734576 :0.7404844042087232 +think:0.4121943340532041 thought:0.23888797971242406 speak:0.13343704274436885 bought:0.08485967255402357 :0.13062097093597946 +The:0.3435189237851864 My:0.15982212323699413 Their:0.15713786228142612 the:0.1559564027652404 :0.18356468793115305 +to:0.9975930888785578 lo:0.0008895415234522918 10:0.0007136562170860006 may:0.00023779547366632804 :0.0005659179072377498 +his:0.19029258130545662 its:0.1620348436551777 a:0.12140743537983853 their:0.11997819036513642 :0.40628694929439085 +believe:0.2714129737151516 him:0.0887186589760028 notice:0.07742549997816182 you:0.06691917594381376 :0.49552369138687014 +of:0.2937287467099234 to:0.11800887946840417 in:0.11228030978664347 and:0.09500947314390702 :0.38097259089112195 +tract:0.6031374667403082 deed:0.03367032100872733 means:0.024394873115428026 result:0.019535860401497206 :0.3192614787340393 +hundred:0.9362363616251137 dollar:0.0005672722764741654 of:0.00021271270697173933 side:0.0001150802048503633 :0.06286857318659005 +from:0.2602783536537605 while:0.2051943226351871 toward:0.19813175849753423 after:0.18807694244176884 :0.1483186227717494 +the:0.04999890723884119 him:0.013039542387605942 them:0.007387766846472372 it:0.006908749562708715 :0.9226650339643718 +own:0.34464917120149946 natural:0.07133646226717526 respective:0.03485461914140508 new:0.034620351508342494 :0.5145393958815777 +to:0.39570083456058114 will:0.24625900513843121 and:0.19026499827253981 tions:0.08675468292940494 :0.08102047909904302 +per:0.16413807581461987 the:0.13981583385917892 their:0.1273879040936111 her:0.05542986232938011 :0.5132283239032099 +done:0.20144564264511788 with:0.16937858244289458 closed:0.154533082174058 been:0.10228398308402056 :0.3723587096539089 +and:0.11673201294782479 the:0.08362462129657441 of:0.07239788182914757 a:0.04974897594237555 :0.6774965079840777 +the:0.7875517009919206 said:0.05126425116339783 every:0.04841617204004781 tho:0.024431864462447425 :0.08833601134218631 +and:0.06461991892268454 was:0.01496649666058677 is:0.013618826885641911 or:0.01052705592863977 :0.8962677016024471 +the:0.4333554507684157 not:0.0821616086689909 a:0.06523739456649544 all:0.03812646543745459 :0.3811190805586434 +W.:0.09081463558782517 H.:0.025328606564584463 F.:0.01477237959422274 O.:0.014650450303951566 :0.8544339279494161 +ac-:0.7533811916631061 a:0.014458843551111739 Texas:0.0024876050193407525 the:0.0005900397706990461 :0.22908231999574244 +longer:0.16023552323976037 aad:0.08777054060207465 in:0.05551835289174591 if:0.0383390852826113 :0.6581364979838077 +time:0.9438514792116358 three:0.0003965088096445471 one:0.0003262707761279168 lime:0.0003112424620473263 :0.05511449874054453 +in:0.034003087223859155 ;:0.013361691769364154 ing:0.013018640499576207 the:0.012468831248668055 :0.9271477492585325 +country:0.08274589886867437 way:0.034211479287086746 answer:0.030767002324868918 attention:0.027973810859078782 :0.8243018086602911 +and:0.02940296909953407 play:0.027049151868450257 plenty:0.027033668192427463 out:0.023849158448953165 :0.892665052390635 +if:0.8651597542716388 should:0.017444636761452532 then:0.01263920577879287 it:0.008111139442159349 :0.09664526374595651 +to:0.8072397824614496 in:0.0920850223093736 into:0.056671347354828296 by:0.028047221472756886 :0.015956626401591505 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +four:0.9309552587455738 one:0.016303567586895686 two:0.012888006537402075 three:0.0031708212728176373 :0.03668234585731082 +the:0.9114463467154831 tho:0.07882312749961189 in:0.0015261177884302822 of:0.0014945113517507728 :0.006709896644724025 +iu:0.32864427946255353 in:0.19529812543628516 to:0.12379754478479761 This:0.1001822829971115 :0.25207776731925197 +of:0.39869557963831354 by:0.15470880175596458 and:0.14283595052498166 to:0.07014162400915348 :0.23361804407158676 +leading:0.3236919277020791 shall:0.11488614135614887 and:0.03991344608124577 er:0.031812897430859154 :0.48969558742966707 +up:0.49439206130711755 by:0.12910806482393533 of:0.11705149963219835 for:0.08419330605826326 :0.1752550681784855 +and:0.011326961091516461 character:0.008342574413393991 in-:0.005486701503556182 the:0.00535682974605452 :0.9694869332454787 +excellent:0.061631629442630044 la:0.06034587925339049 the:0.05179309674110658 entire:0.02110465769225913 :0.8051247368706139 +said:0.1475560130294268 ma-:0.028230641273513924 fol-:0.02587713625427951 of:0.01916193382421353 :0.7791742756185663 +come:0.9048067053008758 agree:0.031160364463765883 attend:0.01714868823322218 go:0.00847790662580867 :0.03840633537632756 +of:0.3030422517890965 in:0.16095080136757262 to:0.12288513238074619 and:0.11544766256692637 :0.29767415189565827 +of:0.3622377543382407 in:0.12494073277386555 and:0.11536866285703828 to:0.1095571405665934 :0.287895709464262 +road:0.2267206754613624 room:0.18918669312184433 box:0.05732836557660269 house:0.0448613114593645 :0.48190295438082614 +know:0.3231524380297512 believe:0.18162952025867143 think:0.10863877896150222 say:0.07047031469682681 :0.31610894805324824 +is:0.15972298906051577 goes:0.14181184931218552 seems:0.09480482947367941 failed:0.07186378765534297 :0.5317965444982763 +from:0.6736901188672565 above:0.16581375826721384 below:0.10091039785980258 to:0.0471550470560248 :0.012430677949702217 +the:0.5936059215344799 his:0.06439032355737845 their:0.04034934945561399 a:0.025948335042585393 :0.2757060704099424 +he:0.08492400741194958 the:0.047292143292753816 lie:0.04130893536329482 .:0.03293334186171316 :0.7935415720702885 +served:0.03623227935473761 opened:0.013312313382972264 placed:0.01262560290949779 moved:0.004866432460947986 :0.9329633718918443 +mark:0.4080885176594541 location:0.056171648021592274 attack:0.050819524386645894 one:0.0197218607414287 :0.46519844919087905 +on:0.43221532774243415 from:0.2015309317470879 in:0.1622237182027157 upon:0.08009767002603081 :0.12393235228173133 +e:0.06299063224652421 when:0.018147452143879157 and:0.011741883838535284 the:0.007380924412984528 :0.8997391073580769 +the:0.15365869353511466 of:0.11635916975148412 and:0.09592630016575614 that:0.08236152850103848 :0.5516943080466064 +Mr.:0.7863969872424063 Dr.:0.10418942127848163 G:0.017024860012935062 John:0.0006386248617536807 :0.09175010660442352 +half:0.28556161904046123 of:0.26469999169879843 about:0.1526918594055809 White:0.03972442449228387 :0.25732210536287564 +the:0.5701061601451592 said:0.2961647593795112 aald:0.026201451282134223 tho:0.02092878587571609 :0.08659884331747932 +me:0.7188987103034866 that:0.09794165451505552 him:0.051638637875860205 them:0.02470855439209294 :0.10681244291350483 +of:0.29215692553170813 in:0.0908124499003061 and:0.050687087772314454 to:0.04348634457451693 :0.5228571922211543 +was:0.6432832534503686 in:0.1715312240842426 and:0.04697127524975486 a:0.02832822889204793 :0.10988601832358605 +of:0.20195909489212774 and:0.10946635602163103 the:0.05014433180100296 to:0.03317439862812025 :0.6052558186571179 +sum:0.06476682994272476 scene:0.03233134320381028 loss:0.028118484611298376 City:0.027749994044506943 :0.8470333481976596 +will:0.46753677489640183 is:0.21635180466077414 was:0.07703080646158424 soon:0.03052621584044865 :0.208554398140791 +of:0.28457138390122305 and:0.08785523058490471 or:0.07991477744546174 to:0.07695456518897216 :0.47070404287943834 +ha:0.25115066291153204 e:0.02574753242646909 i:0.010924668626851833 a:0.009264198492783444 :0.7029129375423635 +Notice:0.6671767531233358 notice:0.17653800773408632 It:0.020093734816955228 it:0.01849271017269494 :0.11769879415292764 +by:0.6802852909650104 in:0.17895131061172645 bv:0.09180425764994243 on:0.038403073311370176 :0.01055606746195051 +and:0.20923191866287674 of:0.06943087158865525 Miss:0.03619303399464225 to:0.03133038899054057 :0.6538137867632852 +only:0.13491037729494154 up:0.1042104644112318 but:0.054113677808564846 and:0.04833142979903448 :0.6584340506862275 +to:0.9898417987184014 a:0.0031685283388647235 the:0.0016314089376072583 no:0.0014232736701124378 :0.003934990335014114 +say,:0.2895338019489495 keep:0.2595732297019957 the:0.1502482331876319 as:0.09200396934102963 :0.20864076582039337 +the:0.9120710392358643 tho:0.04553534974748804 tbe:0.01828150280086123 tlie:0.002878503135639156 :0.021233605080147332 +of:0.1982837024998093 was:0.15199015803728264 and:0.0791518284483351 is:0.06622709116585977 :0.5043472198487132 +Senate:0.28361841030294066 House:0.09078584288480103 house:0.04807911179860402 committee:0.04104438026952885 :0.5364722547441256 +of:0.36379794689672923 to:0.11961189854606818 and:0.09634222123721296 for:0.08414735604016908 :0.33610057727982057 +federal:0.7194012420794403 general:0.044845995757518485 General:0.04424258118885208 Federal:0.04098308118079309 :0.15052709979339585 +It:0.31389795233045603 This:0.1278493931131579 as:0.12576846456577603 He:0.1024236492694962 :0.33006054072111396 +most:0.021650457576182464 the:0.01770760149536388 said:0.014359123491971161 United:0.013707969613830707 :0.9325748478226518 +and:0.27594342055327814 the:0.10606077026059321 or:0.07067063979117384 of:0.05322211754125592 :0.4941030518536988 +a:0.08193596435172723 the:0.07689020901293576 so:0.06029421817623721 in:0.03538708673134295 :0.7454925217277568 +of:0.6516637101582481 and:0.07734191591809865 to:0.0371482488610939 in:0.03597534418098074 :0.19787078088157867 +has:0.4819975803150393 had:0.2909651652983457 have:0.12631488125035606 and:0.010073642793928467 :0.09064873034233037 +section:0.9892862200714143 sections:0.007351340712533792 land:0.0002757836095052298 all:0.00019871989662552858 :0.002887935709920996 +the:0.2097882128742604 called:0.05518076373709712 a:0.048540171303379995 done:0.03642573472350917 :0.6500651173617532 +the:0.14130631202562394 and:0.10302792580404654 of:0.07323957959665985 a:0.03428657758229288 :0.6481396049913769 +and:0.3288470767205225 unless:0.14525345638265683 as:0.08411482527426418 when:0.08299689324357275 :0.3587877483789836 +presented:0.26593373673962606 received:0.16880245044515665 left:0.12901419283594268 furnished:0.06337981583352166 :0.37286980414575294 +long:0.9367590531246954 once:0.0014760516336801528 has:0.000626444191617874 many:0.00037479064655249986 :0.060763660403454045 +in:0.343729670499359 by:0.27091922331206525 to:0.1469801220101865 of:0.12721553094045077 :0.11115545323793845 +or:0.5395270991391713 to:0.4116792064000158 and:0.030172241702568322 nnd:0.0025695434670419746 :0.016051909291202517 +the:0.5228105609086536 their:0.09992730279503555 every:0.07328042446647827 this:0.06971421108485729 :0.23426750074497515 +he:0.3285732039068782 to:0.1332794424643053 u:0.12819500623539223 certainly:0.12047614426537007 :0.2894762031280543 +For:0.644865480064548 of:0.16677063614963142 ter:0.07380622841642508 to:0.05448340550601514 :0.06007424986338022 +the:0.6654615384279317 large:0.16172704227304718 to:0.028783722156658118 an:0.02569189680480164 :0.11833580033756134 +that:0.2928051045449558 by:0.10009855405161741 her:0.06774461678436025 the:0.054439503912800453 :0.484912220706266 +take:0.7937654252157401 took:0.14474031061134232 kept:0.007291480868308472 leave:0.004987604560733805 :0.049215178743875106 +to:0.5481584955435148 will:0.1392541484166201 may:0.11157928126770185 can:0.09599444316060575 :0.10501363161155758 +colored:0.2908081335675926 of:0.04370381526982237 and:0.03779269522528294 the:0.021590141803611875 :0.6061052141336902 +no:0.4934345845888003 an:0.3475845081786467 neither:0.04934541300645151 any:0.04449024418141665 :0.06514525004468466 +the:0.7539649125572003 tho:0.20796404514412142 our:0.00616783089207833 its:0.0046827246786352444 :0.027220486727964753 +any:0.4541554908674299 this:0.334838536619453 so:0.18431877742962421 an:0.014730166377777224 :0.011957028705715621 +matter:0.8758233272459742 source:0.0668144077242669 subject:0.03661666230254384 day:0.0030363113154389786 :0.01770929141177589 +and:0.17645973058803754 The:0.12856327342564566 the:0.07302523854783056 of:0.05272786373370715 :0.5692238937047791 +going:0.23776452780828147 being:0.16403548347947877 the:0.11706367933823178 his:0.10713477048834694 :0.3740015388856611 +arrested:0.2965011253280392 given:0.24633061221247948 turned:0.06805112706128076 taken:0.05390365460271891 :0.33521348079548186 +him:0.05541461290946668 up:0.03186638948862175 us:0.031208274221396562 according:0.027874324380014665 :0.8536363990005005 +of:0.5494633652886356 in:0.33747109076362003 is:0.06445617748549008 that:0.0279255765050356 :0.02068378995721869 +scene:0.1269299326374298 water:0.05224871971853098 heart:0.04219893034344733 air:0.028529269079312063 :0.7500931482212798 +said:0.25479723511293617 the:0.16694523434523473 lands:0.02647024719163052 a:0.02223267517085608 :0.5295546081793426 +is:0.1928901795485402 and:0.1138452061209421 was:0.10923057702730399 of:0.0909195248897148 :0.4931145124134989 +the:0.6541055729931138 a:0.21297614483505606 that:0.0554070589688002 true:0.012301362254118106 :0.06520986094891196 +or:0.2480393163478291 and:0.11347925388157912 of:0.0590417428846956 the:0.041257056875896723 :0.5381826300099994 +new:0.06369512958513303 same:0.05485681568504045 City:0.04916788823174663 United:0.04775558487691928 :0.7845245816211606 +This:0.17581932688076976 which:0.1207209999773097 that:0.10347326387159017 and:0.07105377587359524 :0.5289326333967351 +with:0.43947765926292065 a:0.23950564612674904 of:0.09535752416730056 the:0.060818829775509786 :0.16484034066752012 +which:0.17233218115806134 the:0.1670163254835885 by:0.09389242418512621 of:0.06804189692212319 :0.4987171722511008 +did:0.08590210171289966 could:0.03719196098869845 would:0.024274728189921827 does:0.01634697788908317 :0.8362842312193968 +which:0.13235688669540566 and:0.12556685363174827 aud:0.10958673225818677 to:0.08056852092731966 :0.5519210064873397 +the:0.22250091206073006 an:0.09156743563033042 my:0.015411459648517246 his:0.015080777583937917 :0.6554394150764844 +it:0.43768804252370624 he:0.19330243647800618 experience:0.0985455605102557 ho:0.06070677725100654 :0.20975718323702527 +a:0.08249009265271422 the:0.06840131763965998 asked:0.06661196291889374 very:0.04630396716293688 :0.736192659625795 +r:0.6067935217336691 der:0.13302838103479936 under:0.11075922927734805 by:0.07184222418382769 :0.07757664377035571 +whole:0.9601309076830314 Southern:0.034549814001726804 American:0.00284404129485053 young:0.0004737648108604942 :0.002001472209530823 +the:0.4202960130767651 a:0.09317748311191959 this:0.04004544586835288 his:0.03281761046546114 :0.4136634474775013 +the:0.3911190516065924 a:0.04794815584681825 tho:0.026057258729007632 his:0.018834781299757814 :0.5160407525178241 +years.:0.07700236466544753 days.:0.0018037335641677885 days:0.0014454335454190366 years:0.0014154293124100338 :0.9183330389125557 +been:0.8230989891795354 a:0.060088800936145347 it.:0.0548796315609959 to:0.022896528742473228 :0.03903604958085019 +much:0.8517298486522198 now:0.03089480461295692 not:0.025072839261735244 far:0.016055406761226316 :0.0762471007118617 +of:0.33490258807117407 ?:0.028291673989638923 In:0.015351207868042045 on:0.014909686790646769 :0.6065448432804982 +they:0.622196332743051 of:0.13921298892333916 and:0.10261719707951845 that:0.050544149967665236 :0.08542933128642606 +which:0.7624764270646491 the:0.08192478016930708 our:0.05255998236009925 their:0.021911914664904074 :0.08112689574104048 +will:0.4094816102746681 to:0.3818814205502087 might:0.08996077775500558 would:0.06455250825192255 :0.05412368316819507 +State,:0.0875377679395675 years,:0.01144922522382628 town:0.004256115138198663 line,:0.0035393897466337743 :0.8932175019517739 +my:0.33095751689290887 the:0.21997196531275554 all:0.17111726913196687 some:0.09123301679331204 :0.18672023186905695 +of:0.800204935699198 and:0.0803534336674961 to:0.035024566742332425 in:0.029334616613266893 :0.05508244727770648 +done,:0.36857358778545474 and:0.09184005450074109 only:0.08366728660111393 him:0.0765521520121366 :0.37936691910055376 +the:0.7600588338836818 a:0.09961672559865704 his:0.0426555548300803 tue:0.037716720259618926 :0.059952165427962154 +any:0.03388734668210792 the:0.01739667517080113 parcel:0.017362636910769905 sale:0.01568320362714025 :0.9156701376091807 +be:0.9243080101454477 have:0.043666574284836564 bo:0.02508797007669909 well:0.00158610249522809 :0.005351342997788451 +hands:0.23111713951544077 ground:0.15853989603019444 bread:0.07205886108381637 house:0.0669993955945725 :0.47128470777597586 +and:0.3188701555526253 the:0.18314161417834807 when:0.15463038760779177 was:0.05581048453166234 :0.2875473581295724 +three:0.11378052689593839 forty:0.010124163512811443 ten:0.00859871711570862 thirty:0.00604233785441702 :0.8614542546211245 +of:0.9552300659755777 in:0.031728604987854445 the:0.006799022291245642 and:0.0028173601953128432 :0.0034249465500094125 +and:0.03503564729543083 !:0.005705867994459054 land.:0.004938543877595025 is:0.0043208663601057235 :0.9499990744724096 +of:0.46726308442008996 in:0.11031518580249966 to:0.08938872475232026 and:0.07558701493172941 :0.25744599009336067 +board:0.123387020026371 the:0.017074579621466753 his:0.011489566307231913 certain:0.004407255533976888 :0.8436415785109534 +and:0.25413861287149503 enough:0.041209388478255046 but:0.02981269109099573 speak:0.02752153744312383 :0.6473177701161303 +to:0.13671404268654241 of:0.08889981720656644 in:0.0809677589036065 that:0.05420339464461497 :0.6392149865586696 +t:0.25329611873269264 west:0.03153330522204155 reaching:0.004488491408389417 ahead:0.0036390207009075006 :0.7070430639359689 +the:0.3696522459341351 that:0.28394354568015046 tho:0.25503912801478607 such:0.048852960055293354 :0.04251212031563502 +city,:0.3396039015358527 country,:0.2644672557950525 place,:0.13020312821686586 country:0.08650202752161434 :0.1792236869306146 +a:0.02454987018609575 the:0.02122410565261232 cent:0.018558021257440133 e:0.008406626714712491 :0.9272613761891395 +is:0.4102669881585577 was:0.38441886315300056 of:0.1190933552459643 is,:0.039237155388305155 :0.046983638054172196 +or:0.13273670008937216 and:0.05235460770659853 aud:0.04783924552806086 up:0.03013351374999445 :0.736935932925974 +treated:0.07937503154493744 if:0.05457235246136311 and:0.016827716895467724 it:0.009069525730293017 :0.8401553733679389 +the:0.5451746805918954 a:0.11445140224711138 said:0.04759419001194091 this:0.0403174484574784 :0.2524622786915737 +of:0.604133217870652 and:0.06860481170075426 during:0.06470204167312064 in:0.05696190016496383 :0.20559802859050916 +been:0.5091249868718509 generally:0.18021397246812698 gradually:0.06113503638974136 largely:0.036946048979440926 :0.2125799552908397 +him.:0.019861657120498248 sea:0.002276858144633924 ;:0.0020519903993980303 al:0.0017423963832091905 :0.9740670979522605 +the:0.583499486824782 an:0.10635970104299486 our:0.06699631679967682 tbe:0.035681843668509454 :0.20746265166403674 +a:0.7227194160359562 the:0.16562051883108211 some:0.05679814321821873 tho:0.027658582616298846 :0.02720333929844418 +page:0.8778517089378564 the:0.07344048940445641 this:0.00408129350080922 his:0.0033339918578023917 :0.0412925162990756 +ple:0.12137651545366199 people:0.08302623512542373 seems:0.07006566514829064 and:0.06980791607883481 :0.6557236681937888 +fired:0.3393747462253052 that:0.015231730452137554 tired:0.004989044942528788 to:0.0037946014580895774 :0.6366098769219389 +intended:0.08195661022483758 agreed:0.055005239310356994 signed:0.022297962965821278 who:0.01769156624078288 :0.8230486212582014 +can:0.3138849096391622 does:0.31151019616779213 will:0.06555763445941552 would:0.04286747242533513 :0.2661797873082949 +been:0.26072274798425293 not:0.08455896679412782 a:0.052474485811200636 to:0.04045221492480956 :0.561791584485609 +to:0.12426464312824909 .:0.06415906999666439 said,:0.03488547771482698 A:0.025749268019294645 :0.7509415411409649 +the:0.37185267739615396 a:0.23582540947544478 been:0.08269877054847932 had:0.044921728405549574 :0.2647014141743723 +and:0.218626237497916 the:0.1481651297797328 of:0.11498446872950974 or:0.10535792081898801 :0.41286624317385334 +the:0.6358995499753298 life,:0.045204662530349465 its:0.03262685152711039 a:0.032613350572238554 :0.25365558539497185 +to:0.2702446355901493 entirely:0.15372336153794025 the:0.08862546193996905 before:0.04377793870694813 :0.4436286022249932 +high:0.1323394576699147 French:0.02787886675151821 Atlantic:0.02684935036663702 ,:0.013448301584339028 :0.7994840236275911 +the:0.8829847666031959 tho:0.043808195043875696 this:0.036809682585449595 a:0.02026127953899569 :0.01613607622848318 +the:0.7185220968891219 a:0.06078728544253104 tho:0.0281980979495551 any:0.016183281965519238 :0.17630923775327248 +the:0.20355569022889622 said:0.08869150595870674 It:0.05593340793878352 a-:0.023950841037188017 :0.6278685548364255 +of:0.4271827361837531 to:0.10654395161225785 House:0.07557936519502638 is:0.04624086396823751 :0.34445308304072547 +in:0.17902185830336206 to:0.16103887555745022 at:0.09495409316749444 on:0.07055388663397767 :0.49443128633771555 +The:0.6462679677234293 the:0.1192990206963908 A:0.08405046352743545 Tbe:0.07219126817907986 :0.07819127987366462 +as:0.8433443046791066 us:0.04753278545218413 aa:0.020612518913036695 ns:0.013795878980930426 :0.07471451197474206 +exchange:0.1090410883254735 Republicans:0.07651220915082417 bill:0.06346091269059823 people:0.046351228490001735 :0.7046345613431023 +you:0.49505883133899176 I:0.13969330515368744 he:0.0694149222035184 1:0.06400650470556231 :0.23182643659824023 +Board:0.508094679845446 Department:0.052396117553019664 board:0.04816617025113233 Bank:0.027402552028946377 :0.3639404803214555 +of:0.22943747454586838 in:0.1757816039938469 with:0.1660557994141482 and:0.15019933529437135 :0.27852578675176537 +and:0.10159573237844002 regard:0.09571507286073494 the:0.07148300258144476 addition:0.04970861353805336 :0.681497578641327 +of:0.48936332220955353 and:0.08727909808742226 the:0.06632084457469403 or:0.0598407217193972 :0.29719601340893287 +and:0.16067400296195375 but:0.054622634375008666 and,:0.03489517915413176 such:0.030129205256971377 :0.7196789782519345 +paid:0.3796950642269673 respective:0.15989008174214372 local:0.009073206810932977 foreign:0.006001127717043846 :0.44534051950291215 +one:0.15556825885554984 as:0.09095395730866714 it:0.08173457559076215 It:0.06597533582577482 :0.6057678724192461 +the:0.020024566279973715 wit::0.01875490310911502 him.:0.01629229241716711 it.:0.01461249663877961 :0.9303157415549645 +it:0.4422062576312627 him:0.1476282214060835 me:0.1269318480452069 wall:0.10752255897409368 :0.17571111394335315 +country:0.012810482377080016 country,:0.011599807865742355 people:0.010861088906551694 city:0.010189724367902905 :0.9545388964827229 +nearly:0.25837193667985536 once:0.06947956608032167 among:0.04771937405842972 times:0.03128256723170112 :0.593146555949692 +who:0.27565911408309896 lands:0.23675574660065926 farmers:0.11880517966385776 They:0.09905916641449669 :0.26972079323788734 +the:0.028589310729735085 do.:0.0069205084992215995 it.:0.004147338702083322 us.:0.003461516567610752 :0.9568813255013493 +.:0.03968158236100023 the:0.010076160344638036 covered:0.007181543566163177 form:0.005971052612699344 :0.9370896611154993 +day:0.0908541165200212 tion:0.0267461731896733 line:0.015577594217954429 of:0.015360756964415006 :0.8514613591079361 +that:0.3528280098135727 are,:0.2706149695633953 until:0.15839691317712656 and:0.10354681715084746 :0.11461329029505808 +for:0.10042323219516222 together:0.07010321024385695 and:0.06300543836395177 ed:0.05936290248376507 :0.707105216713264 +their:0.15913757151361027 the:0.1437379307498575 and:0.127793638028316 to:0.10359509493062964 :0.46573576477758655 +the:0.2931703258608972 and:0.22768658016616453 from:0.21437763461627665 ami:0.10628826651154576 :0.15847719284511583 +of:0.5571958564302268 and:0.12290992448262816 they:0.06502305814031807 ;:0.0430943804152391 :0.2117767805315877 +He:0.3175665460819138 he:0.1775956193134089 and:0.1664907749542936 but:0.08378756902204673 :0.2545594906283369 +of:0.2392584852456308 and:0.18101153754483765 as:0.06457635691075805 the:0.05490266224399612 :0.4602509580547775 +time:0.07393674056085342 place:0.04941826342453096 purpose:0.027918550540329334 necessity:0.02480335530903892 :0.8239230901652473 +;:0.04480336527714265 right,:0.026427053619729638 party,:0.01286487683618086 body,:0.005734706216312432 :0.9101699980506344 +the:0.9999656174297723 country:4.536056661108404e-06 its:3.048940404688454e-06 our:2.3672388511184436e-06 :2.443033431085856e-05 +side:0.722036187905832 line:0.26361494738435926 boundary:0.005411023255518387 end:0.0038603039899944122 :0.005077537464295976 +States:0.5073580941658216 States,:0.32139134404223607 State:0.0028726528868982123 State,:0.0027217508398075766 :0.16565615806523654 +all,:0.33809899888012607 us,:0.2985794278579324 those:0.2059576748433477 which:0.08475463060127064 :0.07260926781732319 +persons:0.09209343101935484 people:0.03029116358667126 one:0.01604949038116025 those:0.015584288357272269 :0.8459816266555411 +his:0.3523199939599679 and:0.0350421812530025 it:0.023598690790790085 much:0.013849342195466552 :0.5751897918007729 +the:0.5058067722213619 a:0.08413188963891549 Mr.:0.04075478506900683 he:0.03904176480215725 :0.3302647882685583 +him:0.1605729270350624 them:0.12717255710070252 and:0.07340019192229866 each:0.062003853089514255 :0.5768504708524221 +had:0.22167282443169664 is:0.18942647016488465 as:0.14759119816621116 was:0.08901896916781415 :0.35229053806939337 +large:0.25073280441118606 that:0.22882869925854032 The:0.18334606457042987 His:0.17660093590847661 :0.16049149585136707 +all:0.1529359234611335 the:0.15209218571161143 which:0.11016915861769641 of:0.044669862113471064 :0.5401328700960875 +one:0.03757752345231659 out:0.024443780122439068 and:0.023776000023198265 tion:0.012047863093926515 :0.9021548333081195 +of:0.2680800637838498 to:0.14007839293258328 and:0.13698056796723337 in:0.13160768744904383 :0.32325328786728974 +himself:0.8279249301035686 as:0.028537643763537603 is:0.005743314102788666 are:0.0034756760454911894 :0.13431843598461393 +growing:0.24490543188318362 in-:0.09952779447134312 least:0.09023837194483762 same:0.04621721822748478 :0.5191111834731508 +The:0.08414762896321244 the:0.05302488764770891 of:0.032033874709131945 and:0.029577457771215513 :0.8012161509087312 +than:0.9978719064395523 that:0.0013264121722135916 or:0.00030068213855320003 twenty:8.886751245599454e-05 :0.000412131737225065 +No.:0.1290901695317401 George:0.05882660441996799 .:0.05526724526064922 at:0.04228890906374642 :0.7145270717238963 +of:0.1533696021479819 and:0.10120143702642995 the:0.07059641936407161 was:0.06333746308809345 :0.6114950783734231 +on:0.40774966269523955 upon:0.23318473027742703 of:0.19505428299159436 by:0.05066145774092854 :0.11334986629481042 +a:0.8378629867955315 matters:0.11800247524526399 bad:0.03147089368140929 me:0.007798295147876527 :0.004865349129918696 +avoid:0.045659795920361415 on:0.040584968424053014 take:0.037040359413239576 prevent:0.03601826411759955 :0.8406966121247464 +year:0.11933186187057733 year,:0.06707760874688368 month:0.058336193415834854 school:0.04241984714932395 :0.7128344888173804 +be:0.7804198464782868 take:0.07939698394538452 her:0.01769632912677549 lose:0.012917076183776762 :0.1095697642657764 +the:0.4670535908193356 down:0.12742276752171688 out:0.06032056388089229 a:0.059008152766912715 :0.28619492501114246 +of:0.859526188771568 in:0.08729475982858963 for:0.024306567159829217 on:0.0008096380509028405 :0.028062846189110337 +of:0.9180184504402216 ot:0.048172936318484974 ol:0.003053782930765794 o:0.0020077676298991556 :0.028747062680628554 +of:0.4959537563913088 to:0.256839446698736 in:0.08634244852503276 will:0.04633702650545211 :0.11452732187947023 +of:0.9042847675588984 ef:0.060692215501711486 ot:0.02099955007499853 or:0.01308764713448101 :0.0009358197299105586 +court:0.5037124967927643 law:0.022214098807522373 I:0.019520523678119153 they:0.013467119453951777 :0.44108576126764243 +No:0.814585431657907 The:0.11855217677581262 Every:0.015189660616811446 If:0.007939162441260495 :0.04373356850820841 +no:0.5347240219516294 little:0.2614119712487881 any:0.09538674736665659 the:0.04894181227548899 :0.05953544715743684 +destroy:0.2240721701485413 after:0.1366095625307699 in:0.130000537364387 on:0.08339914750077428 :0.4259185824555275 +New:0.8708973534216894 Now:0.07026962130476846 now:0.0016923404361441335 the:0.00031603551401470243 :0.056824649323383394 +the:0.5677028737456711 us:0.16721430357158276 them:0.09969286427480767 me:0.07890522903719481 :0.08648472937074368 +and:0.20365729361565316 passed:0.18077246496944116 to:0.05137737327088973 where:0.048950059949429 :0.5152428081945869 +read:0.035915486513292114 the:0.018432679698464714 him,:0.01157076208132 them,:0.010660122194191733 :0.9234209495127313 +out:0.4370127595071881 line:0.09162045247224997 part:0.06965693458675017 defeat:0.05506013325375612 :0.34664972018005563 +we:0.3060932223634357 to:0.28218026903027116 I:0.1944232197124085 and:0.07383517861197429 :0.1434681102819103 +and:0.32674667763992743 that:0.11600408506804863 That:0.06860078193516236 then:0.06269665461260227 :0.4259518007442593 +or:0.7363900716761033 and:0.08858006298477332 even:0.0553126852217011 with:0.026329398685714288 :0.09338778143170792 +kept:0.01719210106454675 left:0.013775195022625229 turned:0.0070998082879673895 lost:0.004862252996885798 :0.9570706426279749 +and:0.40271560840713955 or:0.14612599727935402 of:0.09646905526500367 in:0.0688103052247576 :0.28587903382374513 +its:0.5516378949519636 our:0.19512207364494033 her:0.05084519290572639 Its:0.018042998261377053 :0.18435184023599263 +for:0.483090243108306 to:0.4067283690746595 or:0.010162594408464051 had:0.008253815406509784 :0.09176497800206097 +o'clock:0.7110977359135352 miles:0.07890560137449155 per:0.06926375527484377 »:0.049641650297564795 :0.09109125713956467 +which:0.05572972130376735 reason:0.030768393039761154 giving:0.01709657666253327 taking:0.009238148495696895 :0.8871671604982414 +town:0.03431548821974985 giving:0.006848705468956679 firm:0.006212337124988059 in:0.004981675245802956 :0.9476417939405025 +of:0.09108837814040324 standard:0.042400931452214186 from:0.039001588828560044 in:0.03860976098726858 :0.7888993405915539 +stands:0.9817064781121347 the:0.004770079499248698 and:0.0026019976196415685 is:0.0007601027348734411 :0.010161342034101262 +out:0.1371897118453762 was:0.0776407033679492 had:0.07106536374266358 can:0.05715428512694286 :0.6569499359170682 +and:0.3853216618146711 had:0.10691334477507965 etc.,:0.06581692504512862 he:0.06528672682806394 :0.3766613415370567 +find:0.23698201177509526 have:0.18439706583940946 made:0.16192238372794782 makes:0.13124227384667894 :0.2854562648108686 +prepared:0.745705142902667 conveyed:0.002358333033921129 and:0.0008077735972931988 to:0.0007239425942442976 :0.2504048078718743 +ing:0.9454364620402416 to:0.00020311634255674012 for:0.00011140762790904006 on:3.2281101972692556e-05 :0.05421673288731986 +have:0.1260089662212347 was:0.11130080004046176 will:0.0754420883626003 am:0.06640038429664669 :0.6208477610790564 +attempted:0.4750464146875629 enough:0.050620833315493836 sought:0.0329040741810142 given:0.02799612348896425 :0.41343255432696485 +the:0.6726443662592163 a:0.04524586924982797 tho:0.03134316166392281 tbe:0.023946910988981294 :0.22681969183805173 +the:0.5958140265665132 a:0.05111843032594259 tho:0.03201949969603947 said:0.021318009124698382 :0.2997300342868064 +and:0.13957510654550037 the:0.1031277276053466 of:0.05833133580747827 to:0.05347402528556003 :0.6454918047561148 +story:0.16110957659673775 large:0.06883535758723618 new:0.046268206457332435 fine:0.04109720039208793 :0.6826896589666056 +and:0.2254599264989309 because:0.15825396753042725 but:0.1517751133899369 that:0.09782721324306003 :0.3666837793376449 +All:0.979800085683433 all:0.018709223175385297 In:0.00019745381867993157 On:7.49673878183573e-05 :0.0012182699346833968 +people:0.10884571514664164 report:0.04528383326962257 words:0.036812397899660794 condition:0.024518378795511463 :0.7845396748885636 +his:0.2072553898593893 of:0.08786732168572095 a:0.07893077320991436 the:0.06600843012954256 :0.5599380851154329 +and:0.9638192331821702 ,:0.019724097276424327 to:0.0059216140118747915 of:0.0033106991766843714 :0.0072243563528461355 +up:0.10909216673189491 road:0.08214137533231643 and:0.07648167125070429 line:0.043163143210819196 :0.6891216434742651 +ho:0.2635923090661754 as:0.21955035084581273 hat:0.11249461122095926 inch:0.03831012671900324 :0.3660526021480494 +and:0.10649601880034235 the:0.0995022015875691 a:0.03400796278465751 The:0.030951661181537093 :0.7290421556458938 +lo:0.2860889549490929 into:0.14999413581047727 to:0.12701853294469487 any:0.09186771678286464 :0.34503065951287026 +years:0.7355121385399223 days:0.17868308305252004 minutes:0.04345238801936698 months:0.013052171041208451 :0.029300219346982386 +is:0.14510966072806192 showed:0.08947543621092627 was:0.06018916950059444 holds:0.038153376292525666 :0.6670723572678917 +who:0.3877081438715668 be,:0.03201757563608342 the:0.03125206282487755 them:0.01848547791367842 :0.5305367397537938 +come:0.001175657433356655 results:0.0011335523578829996 follow:0.0010456405385611434 enough:0.0008080276613902899 :0.9958371220088088 +it:0.30459629064384136 books:0.1454589106206965 It:0.04143797958262442 which:0.03143265860915188 :0.477074160543686 +and:0.44715379831231145 that:0.08486058507412904 ed,:0.04756361168225406 when:0.04043465265612574 :0.37998735227517977 +of:0.18788133116918931 and:0.13603331239970268 the:0.05317344184980432 The:0.03879750617379903 :0.5841144084075045 +necessary:0.6632055915914737 proper:0.030359499328641168 best:0.01910062659030275 sufficient:0.010202520708429605 :0.27713176178115256 +it.:0.48149503236327257 K:0.06638692449832898 J:0.05175927291364275 and:0.025874308533459397 :0.37448446169129623 +of:0.1389201686620104 No.:0.10650291635387454 the:0.056082616383176846 and:0.049475994405635756 :0.6490183041953023 +the:0.12017484073793165 of:0.07450148324212533 and:0.07194567374824117 a:0.05082466729871532 :0.6825533349729864 +matter:0.2803733193074366 remedy:0.20286421804201998 result:0.08871164164957329 advantage:0.03976131243332738 :0.3882895085676427 +you:0.11524888443320368 I:0.08657521235674706 they:0.059441983821369816 to:0.05476159953098824 :0.6839723198576914 +his:0.23630681273500456 the:0.17547064530186252 England:0.053118863831454144 other:0.011774300474632331 :0.5233293776570465 +by:0.6037207617229398 j:0.11579085545960356 in:0.06267171323308536 and:0.05816287642751609 :0.15965379315685532 +The:0.2648780773384121 the:0.1748641482488411 and:0.13406218691443644 ever:0.11882149644035819 :0.30737409105795216 +which:0.45087892260293416 whom:0.2908651865913852 the:0.07825362439473443 what:0.025627519679210918 :0.15437474673173535 +States:0.04781064681889896 coast:0.04506187942545587 States,:0.01391017048755296 ready:0.005857299572207048 :0.8873600036958852 +largest:0.26231914686300867 con¬:0.04942246058881537 papers:0.04660594174605476 several:0.020763114056463944 :0.6208893367456573 +to:0.27222584207852146 the:0.09749721132576673 and:0.0677100450995811 in:0.05225170313942887 :0.5103151983567019 +to:0.5518752766029849 war:0.12678924917024761 field:0.030811431705707083 now:0.020079304800559358 :0.2704447377205011 +church:0.011072297446807159 nations:0.0042107656965918745 man:0.001715417407127216 hopes:0.0012817077764336088 :0.9817198116730402 +read:0.07827733560370306 remove:0.07177112046722779 use:0.07039422396429452 ring:0.061864608672679934 :0.7176927112920947 +they:0.29272664518216823 we:0.2495579524887736 I:0.215552415542391 wo:0.10458082502751198 :0.13758216175915527 +by:0.2189581638756466 if:0.12336374832220309 whether:0.11416935870524296 everything:0.08263913235943099 :0.4608695967374764 +power:0.1030952416413632 failure:0.02602896077664846 a:0.02580997111035914 work:0.025139748453414084 :0.8199260780182152 +even:0.04865522433162374 two:0.0309995983826591 refuse:0.0298756664992568 attempt:0.029304792124576127 :0.8611647186618843 +and:0.1005178577308316 of:0.07515889514743421 the:0.06359222716827753 dollars:0.051368844681342736 :0.7093621752721138 +to:0.8434948555777658 in:0.0711051474323372 and:0.024182373641912905 may:0.024109200738764658 :0.037108422609219656 +at:0.886418731237408 to:0.04205590237194544 and:0.021892788936729655 until:0.017403602359924667 :0.032228975093992154 +time:0.03963336557080859 that:0.030574046243137892 day:0.029035832617409857 and:0.023476108321054647 :0.877280647247589 +and:0.4774826225250984 It:0.14166476598285643 in:0.0478928372083126 which:0.04321636414615384 :0.2897434101375788 +the:0.24981970908806092 of:0.19579292049845368 The:0.07913740003979283 in:0.07883064684906366 :0.3964193235246289 +and:0.8399538324207569 of:0.02689392069228007 with:0.01591933130140294 by:0.012561715666052443 :0.10467119991950762 +at:0.3066611959907057 on:0.29039920236677796 and:0.1501712183348064 On:0.1338601712024043 :0.11890821210530564 +for:0.9928523355924682 and:0.002113576610071274 of:0.001975507585059058 till:0.001759146031223852 :0.0012994341811774922 +the:0.7613997219379522 tho:0.1098319730871559 (he:0.014969061402553892 a:0.012836590673181927 :0.1009626528991561 +beginning:0.3600932725953786 the:0.08822420871569439 begin:0.02754492415099622 a:0.014656759215603344 :0.5094808353223275 +and:0.605280818644655 of:0.14797483552508311 it:0.13216678307946997 was:0.04669299093172237 :0.06788457181906941 +as:0.17514278112597642 is:0.13757580752848594 in:0.09625196202918736 of:0.07954563112329066 :0.5114838181930598 +in:0.6546010114041511 In:0.20339794232358593 and:0.04404799289374724 not:0.030717936414627882 :0.06723511696388793 +the:0.5729971437503846 The:0.16598076095503392 this:0.06165766301277606 a:0.05839138273715533 :0.14097304954465015 +it,:0.15618537690278866 improvement:0.10744445871210909 and:0.09590287870564254 of:0.017397775506261842 :0.6230695101731978 +I:0.2710655054408193 and:0.2386371881092748 both:0.22904343522185858 however,:0.1536896798244949 :0.10756419140355239 +did:0.3864359491269115 has:0.2515344834094891 could:0.14923032911124143 this:0.04569197731124161 :0.16710726104111642 +the:0.10919069189631829 is:0.0819648712316209 north:0.05522890419599903 presence:0.047578686859494256 :0.7060368458165676 +year:0.15688959325527396 which:0.14091339403398817 of:0.028726345825024136 and:0.026848008077362814 :0.646622658808351 +that:0.0003390778603750579 done.:0.00032404805967991293 upon:0.0003135131481177707 as:0.00011064006775218766 :0.9989127208640749 +day:0.0030694158465281876 -:0.0022789689474488535 pressed:0.001278171379055249 for:0.0005014599420289234 :0.9928719838849388 +late:0.3746642279430867 the:0.014143507462162632 in:0.008733338659334617 of:0.00759948180967714 :0.594859444125739 +J.:0.08142452829086651 B.:0.04759342707380973 .:0.027804473250183107 and:0.023313113100588433 :0.8198644582845525 +with:0.2731539623419966 and:0.16301650601283724 was:0.08104716427320342 or:0.07787818135540077 :0.4049041860165619 +trying:0.16319445643992772 determined:0.12126259468442986 came:0.10182198256275118 like:0.08535215526284007 :0.5283688110500512 +the:0.4261728414691273 be:0.11882090028214266 his:0.09778843755365006 a:0.08200310935016998 :0.2752147113449101 +United:0.9931172299914237 several:0.000368165442389425 Southern:0.00033688478977574916 northern:0.00013534476490747522 :0.006042375011503685 +he:0.35090078370574845 it:0.28929624442938895 she:0.06490472519175795 there:0.05542382775490572 :0.239474418918199 +us:0.3869694989879994 as:0.31137331390009587 tbat:0.1211251394564403 from:0.06990379044197348 :0.11062825721349107 +and:0.09067197627835123 ::0.059928700686830746 bound:0.04355986645132704 placed:0.03974538976861041 :0.7660940668148803 +the:0.6551212159725193 their:0.3070827557490036 his:0.027389001966076614 tbe:0.00635889665985284 :0.004048129652547532 +the:0.2298367750191736 be:0.20679885956862976 a:0.051270714938858354 and:0.03189534329440471 :0.4801983071789336 +the:0.3511119481430672 and:0.09431102925147947 blow:0.07039376495806637 cutting:0.06890206280489178 :0.4152811948424952 +been:0.34512071145949585 become:0.0545259024958361 its:0.01799585828145303 the:0.014060520025608904 :0.5682970077376062 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +if:0.09316789058955809 provided:0.08245176806157996 recorded:0.052103847333806456 stated:0.04420344617952227 :0.7280730478355332 +of:0.27395691211417594 and:0.17986527161262356 the:0.07938413451618914 to:0.03618777272665671 :0.43060590903035456 +are,:0.00783583020124194 satisfied:0.006067444432176443 own:0.004997001281587369 much:0.0016430541327879821 :0.9794566699522063 +There:0.3909347138594905 shall:0.27816225495461816 and:0.12693227533397328 to:0.08559892881474304 :0.11837182703717489 +it:0.04901235911606176 him:0.031820865746012096 the:0.029018422727197055 which:0.02705909361445414 :0.863089258796275 +words,:0.2726439376325542 words:0.08619759660112895 the:0.06490766379447652 a:0.029202302415744636 :0.5470484995560957 +of:0.6257726963475181 on:0.10364224214612183 in:0.09220965501653841 to:0.08158417062108433 :0.09679123586873721 +or:0.22426623363647713 training:0.0638404359731311 and:0.03734131754454321 evening:0.03140571124459331 :0.643146301601255 +of:0.9904368173852418 ot:0.001139855070188376 of.:0.000343649745056044 ef:0.00022077887074934283 :0.007858898928764532 +to:0.34090181173243755 will:0.15405937759074975 not:0.10163776548293334 thus:0.08904985338956055 :0.3143511918043188 +his:0.5825573685830133 my:0.24389318912107907 that:0.08924816663665892 this:0.042469494768022226 :0.041831780891226474 +There:0.3426680855203835 This:0.20831955753390452 It:0.1933854251103086 He:0.06734489332594384 :0.18828203850945946 +society:0.013176251744647772 the:0.005286230507864477 affairs:0.004199062801661553 exchange:0.004177548163697006 :0.9731609067821291 +he:0.8006828294961225 and:0.0903855180325605 it:0.020003372214882777 past:0.018757432931172335 :0.070170847325262 +whole:0.0662552634877775 Democratic:0.05408219527060764 law,:0.04602949837860826 true:0.041840703158057914 :0.7917923397049486 +is:0.7562943389747867 being:0.14080134989718485 was:0.08270088788503654 be:0.012478365533460408 :0.007725057709531428 +and:0.31993364942580876 or:0.11933660866330642 ed:0.04469837149182432 ought:0.031212551372868786 :0.4848188190461917 +said:0.08868906886573585 this:0.03144131299815919 of:0.028021800679326775 to:0.025354312368968734 :0.8264935050878094 +more:0.09930338108011558 better:0.0507772217651274 larger:0.026061846664815317 er:0.014511253534664252 :0.8093462969552776 +cured:0.42467730449428687 taken:0.05659062216058159 covered:0.042929882303592744 won:0.006467965639528027 :0.46933422540201086 +degree:0.1262998723254286 and:0.09786008199824003 of:0.0618517924141389 the:0.052063352959466104 :0.6619249003027263 +as:0.34005308162921655 which:0.18365561465156371 that:0.05434740193008624 there:0.03704528798285499 :0.38489861380627843 +Miss:0.22328002165918207 of:0.11761706099392548 and:0.0778305621361749 the:0.051059380009204174 :0.5302129752015136 +brought:0.08144981987294922 taken:0.056231343663872876 due:0.051027461803137567 referred:0.04354437607428825 :0.767746998585752 +connection:0.22205781263015864 w:0.22166151860242295 t:0.09117791303006105 W:0.05956785055494432 :0.4055349051824131 +is:0.14619927397042487 season:0.1169797360878286 and:0.11691368379662997 of:0.06512838319902194 :0.5547789229460945 +the:0.7641540818458503 various:0.10722568399102089 her:0.029195162246795726 his:0.02652968717697787 :0.07289538473935517 +of:0.8379263730854523 ot:0.1055373719203959 to:0.023080911992900927 or:0.01850996903780426 :0.014945373963446588 +the:0.533848309766856 these:0.2584512097806238 tho:0.04621951034063437 our:0.03943038720875347 :0.12205058290313224 +people:0.15338523399964793 young:0.1251427272367536 own:0.013707718329356024 best:0.009283609618097509 :0.6984807108161448 +of:0.9739864674578995 ot:0.026001716315328112 the:4.4453730071412324e-06 iu:4.156787784648328e-06 :3.214065980491908e-06 +devoted:0.21098372854286487 opposition:0.1731910544484327 as:0.0645159128154786 itself:0.04019339862568763 :0.5111159055675362 +that:0.39608549890332323 the:0.10515805816921521 W.:0.08863324244584427 as:0.0802225749937781 :0.3299006254878391 +and:0.3690706942864661 which:0.10667028121147623 one:0.06653497243054836 that:0.06593055604261025 :0.39179349602889924 +Democratic:0.18266092410489224 vice:0.09411240886146136 Republican:0.048178862847061674 republican:0.041730878825052005 :0.6333169253615327 +and:0.08222705529963784 of:0.059481968871319076 the:0.057950594844834266 to:0.02809366332175124 :0.7722467176624574 +the:0.6715364478720987 these:0.0956091350493848 all:0.05313368015480633 its:0.04067139094637777 :0.13904934597733237 +the:0.8935223804292297 Congress:0.02484661862814754 Jackson:0.00509637497101575 tho:0.001972880530024969 :0.07456174544158191 +chief:0.1677798717800348 largest:0.06672272741998454 disease:0.047745195213668774 native:0.04215361986290877 :0.6755985857234031 +such:0.07064406808013743 the:0.039683017758435093 other:0.03845859457620838 commercial:0.03526632599728524 :0.8159479935879338 +one:0.16279710986262966 nine:0.10537842117419557 11:0.08874921349305326 2:0.07930146055084616 :0.5637737949192753 +more:0.01704509549620237 and:0.009072900388124243 of:0.0060268178771897335 to:0.005831569713013396 :0.9620236165254703 +died:0.9360360477311503 raised:0.028320563070172434 returned:0.021523331297623172 suffered:0.010471049328143465 :0.0036490085729105684 +for:0.009667250114586384 coun-:0.004449895028855135 let:0.002777711859683082 to:0.0024890674032746487 :0.9806160755936008 +cents:0.11742726326250404 25:0.06910277879646474 cash,:0.05793852069701427 cash:0.05564319298478581 :0.6998882442592312 +him:0.2405448429882593 herself:0.1971731200104106 him.:0.19265790173393113 information:0.0657198967357847 :0.30390423853161436 +the:0.46859616239398943 my:0.19411580106807844 their:0.13636366177135048 his:0.09198673494174697 :0.10893763982483465 +the:0.614824002351559 extra:0.04987050240222276 of:0.03353240635291603 their:0.023246078294991434 :0.2785270105983109 +find:0.9844788760192786 draw:0.002249970852123073 look:0.0020417227425625377 go:0.0009626086865787328 :0.010266821699457 +of:0.08293862700993442 began:0.08251845084936232 and:0.06760471676790981 came:0.04998963526319737 :0.716948570109596 +to:0.29858433023757464 hand:0.12844598642043148 upon:0.02170319807624142 -:0.019473803072682667 :0.5317926821930699 +than:0.23551282956981018 or:0.06205375237175968 nearly:0.03483302292915294 tha:0.03188181654795256 :0.6357185785813247 +the:0.4000869964065889 this:0.1256054535654026 their:0.11261790114832261 a:0.10242262289389084 :0.259267025985795 +Texas:0.009518596885434398 all:0.00815585541326412 government:0.006664220920652022 the:0.0035524848191798354 :0.9721088419614694 +said:0.016915088958268997 most:0.012558724480134361 the:0.010538149714088249 following:0.009712351749882046 :0.9502756850976265 +the:0.2930491700705175 a:0.11207875021246985 being:0.08867017703629082 his:0.05955621323748909 :0.4466456894432327 +and:0.11232243391687703 the:0.10504647937443601 of:0.06977806878122954 to:0.043217754423394865 :0.6696352635040626 +name:0.7754690649174466 sell:0.08891160363925131 party:0.01555916269757957 brother:0.011491407573285175 :0.10856876117243763 +no:0.988855965231555 a:0.0031547532801526083 some:0.0020434304254075917 many:0.0018481289443757069 :0.0040977221185092465 +that:0.16869232078834395 but:0.102783011487147 to:0.08253993839612768 and:0.07317205934074733 :0.572812669987634 +to:0.7397124152493122 lo:0.231010858043174 by:0.01751401943053701 at:0.0062116155278061505 :0.005551091749170696 +corner:0.16968649144741088 I:0.05290257550593093 con-:0.03625690524241044 house:0.02841296336314996 :0.7127410644410977 +the:0.35438206089268354 Dr.:0.1960394311054174 a:0.09664270771089432 Colonel:0.06461508689890941 :0.28832071339209525 +for:0.4507330197690817 with:0.180940585674576 on:0.09016943818935572 to:0.08896941111072663 :0.18918754525625986 +to:0.8528313328162395 will:0.03678020499109016 should:0.03461934806205949 can:0.021590164808048155 :0.054178949322562876 +or:0.9443078258800599 nor:0.034982849626345035 ot:0.012021669688672047 in:0.0020582312704517376 :0.006629423534471384 +the:0.4059732321125688 many:0.07988181463977362 three:0.07846316601338327 several:0.05638414742665615 :0.3792976398076181 +the:0.6346323156273063 a:0.07902188714985736 in:0.045516660311887974 by:0.03375878479137673 :0.20707035211957164 +to:0.47703973215962014 a:0.21806486401056863 and:0.04619898290473008 the:0.04439295896273624 :0.21430346196234504 +situation:0.3775147921030574 power:0.0588745573399965 world:0.0469678714928975 campaign:0.039091140207267464 :0.4775516388567813 +were:0.11891117645409024 papers:0.049051496282157464 near:0.031224792412700424 the:0.018167579493253528 :0.7826449553577985 +three:0.4392575223488374 two:0.24798787436883427 five:0.11613964271755103 one:0.04698911968119364 :0.1496258408835837 +lies:0.2465375438806636 not:0.22033636537446188 of:0.18403106302192956 is:0.09760427233072222 :0.2514907553922228 +of:0.999904860722399 the:5.820054130471685e-05 and:2.988096995247433e-06 ot:1.0353142988933354e-06 :3.2915325002164794e-05 +There:0.00014286085121533216 there:0.0001275062906571019 brought:0.00010856548570236769 pressed:7.328018752503947e-05 :0.9995477871849001 +the:0.3739472524846806 pay:0.08410255888167031 be:0.06349990590987273 drawn:0.04818069481634755 :0.43026958790742875 +claims:0.6324664393479321 g:0.11056397356323834 the:0.021473502585809885 and:0.017035467853294094 :0.21846061664972555 +the:0.23749912632180054 all:0.1951331738828931 a:0.1321759394582384 its:0.06940210816986181 :0.365789652167206 +ac-:0.015136068521596137 mo:0.00018362674235012464 new:0.00010707190478752185 at:9.361125650838739e-05 :0.9844796215747579 +if:0.35494100781112137 as:0.31290450169532397 too,:0.10969563043491214 again,:0.09417044073474427 :0.12828841932389826 +It:0.015231747817246072 the:0.015113707364559375 and:0.01137111283461343 The:0.009488403807184876 :0.9487950281763963 +and:0.10594255865966555 in:0.06844475026218869 but:0.06381056867470765 for:0.01279926835121146 :0.7490028540522267 +going:0.12072284587269984 now:0.07740418928500176 the:0.07246963852150362 believed:0.046057503626657295 :0.6833458226941374 +the:0.546438650310593 The:0.23643874510459498 His:0.03847522499708629 our:0.017800843432026592 :0.16084653615569913 +mortgage:0.04502689379970312 written:0.042369941433713594 own:0.032544613021792845 duly:0.018338641945218108 :0.8617199097995724 +and:0.13201770151520267 for:0.11614801313598609 lie:0.08209022966694542 pre-:0.0793645111758959 :0.5903795445059699 +of:0.23720268955976628 and:0.12584415153843023 the:0.05191251728293601 The:0.03758553483016975 :0.5474551067886977 +the:0.11549072948436637 tho:0.008771690577985969 an:0.008115155770498919 mon:0.006254395035315108 :0.8613680291318336 +of:0.15599390314184464 and:0.1307750207708705 The:0.05420825245000367 the:0.04033832561426946 :0.6186844980230117 +of:0.3153873636188699 as:0.07330519193766363 its:0.04497557905336573 and:0.01642731859457491 :0.549904546795526 +benefit:0.03293672090094351 appearance:0.03097802016259667 loss:0.017260495717520218 experience:0.01440252947885522 :0.9044222337400845 +of:0.6579465475139482 that:0.20922983735062578 upon:0.04736298940468913 only:0.0391707189551183 :0.04628990677561868 +great:0.22055665038318084 poor:0.17712826050786717 eat:0.06974535161431157 few:0.05236756585506459 :0.48020217163957585 +see:0.4709643132142368 know:0.041107610751575346 be:0.03752733475888514 do:0.03614149937804106 :0.4142592418972617 +member:0.44138834970616475 means:0.02589198921459451 effect:0.020105159445227803 law:0.018116344535937016 :0.49449815709807604 +place:0.01848481144327866 city,:0.014003421292122021 country:0.011624725885264009 ward:0.009695427726375348 :0.9461916136529601 +and:0.15139028757120293 of:0.08400858486912223 the:0.07418524139358755 to:0.03627872224090601 :0.6541371639251813 +of:0.007526962646891534 words:0.006658412260025747 ;:0.006651887364157159 than:0.0035231161288490336 :0.9756396216000767 +report:0.105908962992535 influence:0.046919084057791834 reports:0.021724979030981258 effect:0.016265199268202968 :0.8091817746504889 +and:0.0965075817155273 Mrs.:0.04859519343103306 boy.:0.018916443467827775 of:0.018757317918907893 :0.8172234634667038 +on:0.2845102768909011 of:0.11352977449175866 around:0.019416523457048626 in:0.015202096859953499 :0.5673413283003381 +now:0.5710848115546059 first:0.4121116925008191 not:0.006717600522066204 needs:0.001209607259713426 :0.008876288162795476 +the:0.17742749397469476 this:0.04955450453260867 Columbia,:0.040802795394558826 Columbia:0.03426777403379383 :0.6979474320643438 +sell:0.6828085634720102 meet:0.1558046810599116 understand:0.08845906916373425 know:0.03489616192897423 :0.03803152437536965 +in:0.11792634911330531 and:0.10913030733245813 to:0.09827097313936586 of:0.08860174426108522 :0.5860706261537855 +of:0.5892523400998723 for:0.1115530679031308 and:0.10008882258058781 to:0.0483947829066489 :0.15071098650976023 +tho:0.7507391853825446 II:0.09220039585403729 It.:0.0551250582611199 the:0.03170693327437793 :0.07022842722792015 +to:0.15303733384009696 and:0.09442553687415522 of:0.0410989768655222 the:0.03965098682234797 :0.6717871655978775 +the:0.7978226815800267 tho:0.04622495459657991 this:0.024598183084971345 said:0.020658956133789604 :0.11069522460463266 +The:0.0674821631304232 and:0.034800210459846846 and,:0.0037829078687648403 that:0.0022263729446521784 :0.891708345596313 +left:0.11921013484880283 made:0.10327045147424929 had:0.09643167966836183 for:0.05201817023271725 :0.6290695637758688 +tin:0.06325939959273445 little:0.045863299342514305 feed:0.03107126566956848 paper:0.025410669981590736 :0.8343953654135919 +and:0.4200613960183774 under:0.12076092847718305 with:0.11531249518018759 on:0.10761812655511802 :0.2362470537691339 +to:0.42876249770245106 fields:0.15781866553922033 still:0.15465200569399687 will:0.0870314681853715 :0.17173536287896027 +of:0.26400845482062657 and:0.06901379069323553 the:0.038500438495544145 to:0.03556626625674621 :0.5929110497338475 +enable:0.22259216891469094 allow:0.0737481335910314 bring:0.04480852789029258 permit:0.0443439245480304 :0.6145072450559548 +previous:0.8594563251981702 long:0.06400933493909611 ihe:0.031001323118029306 the:0.021379283840395648 :0.02415373290430874 +and:0.28324080418105296 the:0.16848735363121256 which:0.1302528276801427 to:0.0732626179526559 :0.344756396554936 +bonds:0.18544681503353513 State:0.1624235912636121 city:0.07074464111286287 fact:0.04030011248715793 :0.541084840102832 +come:0.42112398042234334 given:0.0565491688914039 been:0.05236747078962514 used:0.027641169478225334 :0.44231821041840225 +in:0.32148404055530505 on:0.22108798848483432 to:0.22055653693796368 and:0.12139981521948037 :0.11547161880241655 +twenty:0.16600058740443466 and:0.08763782186405897 goods:0.026917915511650632 year:0.025351993935163835 :0.6940916812846918 +events:0.5142065634453761 life:0.31510318686432937 to:0.059069626807966735 order:0.04255032878648455 :0.0690702940958433 +an:0.8379429806039639 no:0.13736314334559005 nn:0.0034436933173607504 very:0.002523084354224878 :0.018727098378860434 +it:0.11429987570048543 It:0.10363687889260244 side:0.04744459419773188 there:0.03760146782367202 :0.6970171833855082 +to:0.41502755857796797 are:0.14824906409597602 but:0.11824555345454829 have:0.07843051109714883 :0.24004731277435887 +hundred:0.6393474005525298 dollars:0.3267574128225642 dred:0.011889468632581994 thousand:0.004603298211423324 :0.01740241978090065 +of:0.5410778836760036 his:0.2724418570442679 in:0.05442486072843635 bis:0.04721513081550269 :0.08484026773578947 +and:0.14900538246243641 of:0.11088591196231849 the:0.07210295974660678 The:0.04559148141136669 :0.6224142644172715 +the:0.025415356925207855 and:0.02233809631924239 to:0.019655080115385318 great:0.015044656946594662 :0.9175468096935698 +The:0.1851368173227777 in:0.053053436747009595 the:0.05100710991789466 Tho:0.04918479489166839 :0.6616178411206496 +been:0.48661385179704225 to:0.0910014148528669 no:0.07142516462188538 become:0.058649620740478164 :0.2923099479877272 +first:0.23266031352072689 summer:0.06915077844819979 last:0.05052518254906774 entire:0.041377368910889084 :0.6062863565711164 +the:0.44164249628191726 a:0.2043466838584291 and:0.085274169259874 their:0.07552634606695878 :0.1932103045328209 +to:0.2263816071022507 on:0.2257918651367446 for:0.20385581292510577 of:0.10392619473354511 :0.24004452010235386 +another:0.1910371112366783 in:0.114864053506722 more:0.10433421763169193 of:0.10334193828686732 :0.48642267933804045 +that:0.21114424324880585 they:0.13158601137246945 who:0.07713237795603421 and:0.05143741603920253 :0.5286999513834879 +to:0.24560518791196181 and:0.17851475255679447 by:0.16196934628726636 in:0.15950192914850297 :0.2544087840954743 +in:0.3079803573993284 of:0.18087110298564216 on:0.15384279241241788 by:0.039376003050947725 :0.3179297441516639 +i:0.07205737322151605 j:0.013529987321828394 a:0.007943019033713809 have:0.0049520860095884104 :0.9015175344133534 +numbered:0.1653715907092166 connected:0.05437107688080952 made:0.044629996343011 satisfied:0.028222880581203817 :0.707404455485759 +after:0.2794033534092135 On:0.2277365726252883 Upon:0.18790189136686203 before:0.1683329771329464 :0.13662520546568965 +be:0.23544231973518714 offer:0.08275086423789238 vote:0.05965326511813623 leave:0.052323995709095183 :0.5698295551996889 +and:0.27567635168114424 the:0.09558397956722654 aud:0.09282768516364565 in:0.07595048785246523 :0.45996149573551837 +to:0.025235969615629315 trade:0.014882539673995027 agreement:0.010872343848411218 consideration:0.0010727330806190442 :0.9479364137813455 +presence:0.10312148061923547 truth:0.06837122016605648 absence:0.03526185268258739 character:0.03207476202552403 :0.7611706845065965 +to:0.11922514997602794 and:0.091580936649858 of:0.0836502631097545 .:0.04211882930007546 :0.6634248209642841 +is:0.3740726737945462 was:0.1700113699111289 as:0.0915741359679507 will:0.07728119974154603 :0.2870606205848281 +The:0.19726375781235916 the:0.17787333795436663 and:0.15454638718488048 Their:0.12075416254908589 :0.3495623544993079 +the:0.8107008085594628 any:0.0550876170125462 my:0.03705112469814364 his:0.020464146014698318 :0.07669630371514896 +same,:0.01574978214756924 ;:0.003308067527113325 mine:0.0017498669131491402 church:0.0015465082395910003 :0.9776457751725773 +the:0.31127976419621184 General:0.1057406253200287 be:0.03523817640101074 his:0.0318096704661715 :0.5159317636165772 +11:0.25369876861909757 S.:0.02360786793805375 D.:0.01254323749410527 J.:0.00871587900012001 :0.7014342469486234 +and:0.12676478290659557 the:0.10355632677455151 from:0.08160511185187584 or:0.0806828770506392 :0.607390901416338 +day:0.729520717805542 side:0.027887918501631772 line:0.013476530072175554 tion:0.006244848911523177 :0.22286998470912744 +the:0.9681154307127718 this:0.01812314325029336 a:0.010098051696971021 that:0.0011915003630144922 :0.0024718739769491855 +and:0.194266562813545 the:0.08874632240600659 of:0.06933923764562447 to:0.04905424296224446 :0.5985936341725795 +notified:0.9947723918653676 ordered:6.053956077157894e-05 informed:5.468104118032561e-05 provided:2.681924434739102e-05 :0.00508556828833303 +man:0.22664830968628022 paper:0.15895546064876812 house:0.07076636155681344 once:0.053470721340712575 :0.4901591467674256 +of:0.28335600511359016 as:0.25894049011667414 for:0.21929909870774134 and:0.15431884133352017 :0.08408556472847416 +and:0.2489903375116552 that:0.24661334168084642 as:0.09222553737459267 re:0.08716606106008787 :0.3250047223728178 +of:0.36201983377853797 and:0.1588728759158998 or:0.07333512091823308 in:0.06166988568581118 :0.34410228370151785 +was:0.2703565499451729 be:0.04973419630921502 cities:0.0371525648909264 and:0.034925728527377374 :0.6078309603273084 +of:0.10082680850725917 to:0.0822240079596411 and:0.07569851163528922 I:0.05502807852760839 :0.6862225933702022 +and:0.19579393971084602 is:0.18098606393275216 ;:0.14342466648564603 it:0.11735849358644486 :0.362436836284311 +the:0.8452421904400653 he:0.0753013710872083 tbe:0.027455119589738588 tho:0.02091417586488227 :0.031087143018105248 +and:0.3508771679453582 has:0.34049399979154926 of:0.13252000854291063 is:0.07208931540395727 :0.10401950831622454 +a:0.4067125353512928 b:0.1526189172021325 be:0.039649670260374706 er:0.02103640646415501 :0.37998247072204505 +the:0.5155029933296726 National:0.04113335708542401 said:0.027414879217740044 State:0.025873557013157366 :0.39007521335400613 +the:0.2902812439601379 a:0.13988241629010326 his:0.06145841397891838 their:0.04935557736129745 :0.4590223484095431 +State:0.03271804364489048 one:0.016860784064257946 the:0.014871456392409605 that:0.011864592504182493 :0.9236851233942596 +and:0.11231379207881824 by:0.07909907556880348 rich:0.02642181541352125 passed:0.00667305428551403 :0.7754922626533429 +we:0.7635797619548321 tn:0.07016289884074142 to:0.020260447453272587 and:0.005770778044450274 :0.14022611370670354 +for:0.36027051189855563 to:0.25541916908484685 over:0.13112685937937424 on:0.0905294923160478 :0.16265396732117546 +of:0.11869101663484545 in:0.08076528115228788 to:0.07935271065490805 and:0.07204124997638853 :0.6491497415815699 +the:0.4283372436514622 a:0.06826488607752237 tho:0.01855987055925581 other:0.01648548443589738 :0.46835251527586225 +of:0.16908341759749473 and:0.1000427278886933 court:0.056907143098489904 to:0.0535054600799315 :0.6204612513353905 +by:0.02675811322758629 for:0.01575531392791826 round:0.005496418746963797 not:0.004009353094536428 :0.9479808010029953 +that:0.8347093158878314 by:0.07261348847422988 at:0.03867828822329353 to:0.0299037580809343 :0.024095149333710875 +each:0.9811446924710593 the:0.01746849943053768 an:0.0005248913443393112 any:0.0005074934924076736 :0.0003544232616559528 +and:0.16640156811340984 the:0.10010181619200306 The:0.04515294202684342 of:0.042155436316191855 :0.6461882373515518 +of:0.6122645963304068 on:0.1032951621794716 in:0.08753023909328618 upon:0.07612571189389279 :0.12078429050294277 +of:0.9119054219326178 in:0.08661314932984912 at:0.0006842986588661541 to:0.0004038193132800508 :0.0003933107653869217 +nnd:0.5445099244177365 and:0.08257989810969002 people,:0.007162795621954656 people:0.006355475014815583 :0.35939190683580335 +and:0.16015695824884213 but:0.12128657157169564 that,:0.09618336878304493 that:0.08687901574414136 :0.5354940856522759 +time:0.3296745945101111 the:0.27266818978550783 my:0.0737549743098025 day:0.020377410534892355 :0.3035248308596863 +the:0.8891263879792031 old:0.05145085077557818 this:0.022977289352868413 tho:0.019716928914222772 :0.016728542978127463 +by:0.26833851174530493 of:0.21689147139785606 to:0.19999118166211985 in:0.10699150876060304 :0.20778732643411613 +the:0.012152509612248083 ordered:0.009120901520900088 others,:0.004867856889823924 declare:0.0032119994420611625 :0.9706467325349666 +and:0.17667655899466536 not:0.13168114682862148 are:0.07174558015555639 is:0.05222067152855524 :0.5676760424926018 +R:0.21309829736800984 .:0.21059557944578272 A:0.08049047097319059 00:0.04939263020937791 :0.446423022003639 +and:0.19521304621740135 or:0.07222989164561196 of:0.06801518421323374 to:0.04864900436918264 :0.6158928735545703 +dead:0.4108179405798163 lying:0.12743686353772038 sitting:0.03013502095359539 that:0.0159907004357128 :0.4156194744931553 +it.:0.009092723966979391 the:0.008657334267683277 .:0.005051029515206895 him.:0.004385866441803383 :0.972813045808327 +been:0.9882407278978687 caused:0.007318705822003309 one:0.0008535376722524474 always:0.00046020688748275076 :0.0031268217203929308 +they:0.12212861524489359 They:0.1217775390147431 and:0.08003665203874794 There:0.0511787353157946 :0.6248784583858207 +of:0.4232594620909425 her:0.1720099720318299 their:0.15854478477275347 and:0.10156307203046798 :0.14462270907400618 +the:0.5647289444067654 to:0.13427962890161338 for:0.10162461283513169 her:0.09882231208296936 :0.1005445017735201 +can:0.4331198133713945 will:0.2738082419039118 your:0.11798677374787982 can't:0.08880140822216026 :0.0862837627546535 +She:0.19614474907984955 and:0.19213820515185673 is:0.05959022026843132 that:0.05883479603645224 :0.4932920294634103 +to:0.8678195643943794 will:0.012615230159244838 they:0.01117902863781842 can:0.009401089561814896 :0.09898508724674247 +he:0.33699902901605805 It:0.16454995145710521 she:0.14653083772154762 be:0.08468286840537102 :0.2672373133999181 +who:0.40636040499193454 he:0.06643690989910608 It:0.06584804042034617 He:0.04870817068303188 :0.4126464740055814 +and:0.09289196931127998 was:0.048810811679552646 of:0.029595129173020804 which:0.021668055778860384 :0.8070340340572862 +tho:0.8428527611236761 the:0.1566683275309663 a:0.0003308583401849952 railroad:1.3962962135946848e-05 :0.00013409004303646291 +and:0.3262967698930001 I:0.15451901856059286 he:0.13206779094451712 He:0.08836588487635426 :0.29875053572553567 +The:0.4887451383022167 and:0.09571201586358347 the:0.06873021235091561 to:0.05741351793463693 :0.2893991155486473 +of:0.06439527821784738 and:0.05995413300605868 the:0.05565377279469915 a:0.033207440797564686 :0.7867893751838301 +in:0.7692732718904562 of:0.09376284816842785 In:0.06952828653354186 throughout:0.04872644683983789 :0.01870914656773603 +order:0.09192751102509264 the:0.04736526361548985 proportion:0.021397117305747778 counties:0.010229023993762661 :0.829081084059907 +of:0.6648521418566252 against:0.09800547966869874 ;:0.03835611432791243 ol:0.03254943039877878 :0.1662368337479847 +in:0.6976940062214373 so:0.12197105963203242 until:0.03927679907298359 of:0.036510998640698324 :0.10454713643284835 +is:0.4625583404050329 and:0.1912091456595348 are:0.1367473443167617 so:0.09603180262393923 :0.11345336699473146 +first:0.04579157898936745 whole:0.04294552009406615 following:0.020991692774329416 second:0.01716994538666797 :0.8731012627555689 +method:0.06347232590968042 state:0.06284270999033266 system:0.05825676750222666 form:0.035424725662603206 :0.7800034709351571 +a:0.32465544915856726 this:0.23915862156453463 the:0.12986256833281834 tne:0.07885325678460822 :0.22747010415947155 +about:0.42401378469825296 only:0.30593845137657394 selling:0.062116982261266364 within:0.0510961554922215 :0.1568346261716853 +all:0.15732838109605626 of:0.04895920394914403 upon:0.016897577070665897 which:0.0156478810646959 :0.7611669568194377 +the:0.21953162975476745 not:0.1502894588225201 he:0.09370020807013854 it:0.05738501687613194 :0.47909368647644185 +City:0.4304787513497923 city:0.4145265066337165 town:0.07099090238783742 village:0.04385329461304448 :0.040150545015609405 +it:0.8365655488099654 home:0.1587443121169564 that:0.0018751210148571396 the:0.00019704354032937075 :0.002617974517891706 +the:0.6954776667798936 any:0.048905749408553474 a:0.04115650206437561 uot:0.0054356115139505695 :0.2090244702332267 +into:0.03255524870201299 did:0.009188763386575583 ful:0.007647143316533199 the:0.006898822100229523 :0.9437100224946487 +the:0.1460800663162693 and:0.09380727719073281 a:0.08836347344971889 to:0.06900945778476826 :0.6027397252585108 +kept:0.46758584630039535 running:0.041775903431952324 steamer:0.018175609585444227 sold:0.018103808832345344 :0.45435883184986264 +not:0.9792208396902717 you:0.005888698433000801 not.:0.0027236740887761506 uot:0.0016781303940165385 :0.010488657393934736 +the:0.2148832936319976 their:0.11739025136326472 less:0.09965606111611068 his:0.0892601129271582 :0.4788102809614688 +be:0.4842558498379884 he:0.26797692737582507 exactly:0.11571824849425223 now:0.079076225396162 :0.05297274889577238 +own:0.13146267027975642 national:0.034402796978129487 public:0.02193077791043856 present:0.018252980549022073 :0.7939507742826535 +not:0.38563707357431665 claim:0.26998961137748634 it.:0.11778948599585844 therefore:0.07996074193473304 :0.1466230871176056 +as:0.04101107530992698 State:0.02184448109912241 selling:0.009097165080505317 state:0.006956789370333434 :0.9210904891401116 +and:0.28682814114933464 It:0.12446377333189512 it:0.10074516518127324 who:0.060008547451116216 :0.42795437288638083 +one:0.35348879282774487 nine:0.24539659159713906 five:0.1534530798317713 two:0.10937268719383984 :0.138288848549505 +along:0.24958494079337223 through:0.12279233966011378 across:0.09511412415643394 to:0.09029967596135 :0.44220891942873 +to:0.19235649797992355 would:0.0402385101929261 will:0.02575465352536901 could:0.020963932169812797 :0.7206864061319684 +used:0.04796982925062863 shown:0.032479608915194844 engaged:0.02503770330668613 charged:0.016026357234001736 :0.8784865012934886 +wife,:0.0943363147492362 con-:0.08325868477136812 case:0.03885377451194021 d:0.03508858907589106 :0.7484626368915644 +her:0.2526194813864268 me:0.13863840266314956 them:0.11085808732666608 it:0.06281586212028552 :0.43506816650347224 +also:0.12843525949597182 now:0.08113336097925418 hereby:0.07527031332415537 already:0.07331031642380921 :0.6418507497768094 +be:0.3685991691973497 come:0.21719393693752023 see:0.06881180108379138 the:0.06117509349022668 :0.28421999929111197 +and:0.06736018392046278 tion:0.04189701319183707 as:0.021213778321211633 according:0.020675615781050115 :0.8488534087854384 +up:0.17801931828964404 out:0.10136220447639781 down:0.1004573867428715 if:0.06126229527839989 :0.5588987952126867 +follows::0.9963268188320049 follows:5.367966337056185e-05 feet:4.0539614744461105e-05 In:2.1983289605194897e-05 :0.0035569786002747237 +to:0.31686955994946403 at:0.30989545047105455 from:0.2190479596112954 during:0.09629332985715926 :0.05789370011102672 +could:0.23367781126488713 had:0.09468886671776532 was:0.08541579868727325 is:0.06784570021604944 :0.5183718231140249 +the:0.7263682974196011 a:0.21390512137719878 being:0.0294367392562003 her:0.015080598085646529 :0.015209243861353371 +will:0.22214928459793573 would:0.21159874708954632 and:0.14936023283375927 the:0.11002463474526511 :0.30686710073349355 +is:0.284224111057204 must:0.2024595991370789 has:0.09221927326967351 may:0.06827625077714781 :0.35282076575889576 +to:0.14643519673687985 and:0.11889541729686726 of:0.09001303756603024 the:0.0870853934551441 :0.5575709549450786 +man.:0.007469002022614114 him.:0.006610255378999473 you.:0.006461769489647344 it.:0.006217098680519324 :0.9732418744282197 +for:0.9985175903100658 in:0.000822334584474295 at:0.00015824310557846586 with:9.935743860425248e-05 :0.0004024745612770908 +open:0.5075521081103496 be:0.2006549440435194 the:0.08659624195034629 bo:0.012254251560753276 :0.19294245433503154 +if:0.2767256503343595 as:0.25055367665532524 because:0.17571334924725387 and:0.1682608342633706 :0.12874648949969095 +of:0.48086704957602255 in:0.2680633888091228 by:0.10244534694578389 to:0.0884122720435066 :0.06021194262556422 +and:0.5567681336467584 when:0.17040476478101713 she:0.04826622186164227 by:0.015016380206863094 :0.20954449950371912 +and:0.1842294492369129 the:0.08113309862744045 of:0.05932106367139838 for:0.057411840795078654 :0.6179045476691696 +the:0.7000817950772443 a:0.1396654519734022 distant:0.028798263224028925 tbe:0.028462132896469983 :0.10299235682885452 +sides:0.2715754116268962 feet,:0.0034873893264021566 houses:0.0007452876881546745 are:0.0005116286395301463 :0.7236802827190169 +so:0.28324688315173646 and:0.15276603900777175 at:0.07019304346818826 is:0.06410624566381272 :0.42968778870849084 +so:0.7049768770520776 the:0.13612745519958638 and:0.07067652810298612 its:0.038938854173819704 :0.04928028547153019 +money:0.13319039129192833 money,:0.08217048170594526 that:0.025259176359868084 other:0.021777492586765593 :0.7376024580554927 +the:0.9920974856700014 a:0.002652816857744643 district:0.0021854748868141366 made:0.0007373969267146488 :0.0023268256587250396 +to:0.13700975169139576 and:0.12021064471463741 of:0.08040121230850591 the:0.07056346505603561 :0.5918149262294252 +(:0.018983789589729332 by:0.015846986973781656 of:0.01468825754254312 into:0.013091618665508903 :0.9373893472284369 +only:0.15091815839833295 regarded:0.08578003588325227 taken:0.060588154144512435 known:0.04878720474017886 :0.6539264468337234 +to:0.9958153892926314 in:0.0026551083864975325 of:0.0008129146191514583 for:0.00022706004780541285 :0.0004895276539141704 +That:0.11901394481727648 the:0.1029209640032576 and:0.07928242827588718 of:0.044996168570424946 :0.6537864943331538 +and:0.1801564591529371 the:0.16221501913978045 he:0.10594956869676665 to:0.08836094961154355 :0.46331800339897217 +from:0.9850661823165556 of:0.006513144719329685 in:0.005836974590395154 to:0.001716719294243212 :0.0008669790794763198 +the:0.5248459215965631 our:0.11000395395214556 his:0.04862805335312428 that:0.04062114364941141 :0.2759009274487558 +for:0.022043135363608087 tion:0.021512162722570817 out:0.018633009663477564 and:0.016626577295233983 :0.9211851149551094 +on:0.48589030835084224 in:0.361310107825933 m:0.038255004489059864 In:0.03528570090308375 :0.07925887843108118 +is:0.48860907715158214 was:0.26590475728148777 Is:0.17673155296730067 for:0.046828085057659855 :0.021926527541969675 +of:0.6963909281155939 was:0.1028978854685529 about:0.070670057317993 in:0.06339240788251196 :0.06664872121534822 +the:0.1885064663663681 and:0.1409864727069763 of:0.11832138058709007 The:0.11795379081920422 :0.4342318895203614 +is:0.22746087923611025 <:0.07325451287442827 has:0.06423876404100841 it:0.053432886717362585 :0.5816129571310906 +the:0.7921499364183073 this:0.10245485464858459 a:0.007050986311474929 so:0.006723073336472103 :0.09162114928516119 +The:0.26561213320677995 that:0.25822731824665973 and:0.22772470914146134 of:0.10398327438785121 :0.14445256501724774 +a:0.4971710238141401 to:0.3621714591898264 and:0.06274479874746604 the:0.011682656941643658 :0.06623006130692367 +the:0.5268104679503902 Mr.:0.12605137386845316 a:0.07602518190449772 tho:0.0688935852042798 :0.2022193910723791 +and:0.46343636001286104 ner:0.005274768431585819 who:0.002611456693198697 never:0.002513350701840772 :0.5261640641605138 +day.:0.017693697641473584 people.:0.00790799075290336 land.:0.007222907432256845 city.:0.00500612740961668 :0.9621692767637494 +government:0.07765390813673155 settlement:0.07484014032138799 consideration:0.06841161976754898 President:0.05903190456967697 :0.7200624272046544 +Treasury:0.3536836588818426 War:0.20896457226039092 State:0.06298793628472049 Indian:0.018794104329060268 :0.35556972824398586 +and:0.09712686513802866 of:0.08338528423577199 to:0.03780189566169421 met:0.023813100610690464 :0.7578728543538146 +with:0.9933308295915659 organized:0.003854495502049024 for:0.00017954663250904784 to:0.00014045383017201706 :0.0024946744437039847 +miles:0.13202077648718472 men:0.09117015183390485 feet,:0.05349850787009634 years:0.049288047111996885 :0.6740225166968172 +out:0.014175190543044119 up:0.0025416320467082187 them:0.0012580403244276705 the:0.0012534447496815825 :0.9807716923361383 +said:0.019642027653085196 most:0.016421607262400276 the:0.014740005529366686 same:0.010783265808254868 :0.9384130937468929 +the:0.17780501722012781 kind:0.05290824109381093 value:0.049221779596407035 quality:0.04200495948777123 :0.6780600026018827 +of:0.015177096132697349 tion:0.009858134668579023 party.:0.008031721048459079 .:0.006072605404730455 :0.9608604427455342 +is:0.7153399218929765 Is:0.11840889100738045 ia:0.08011037167618967 s:0.07955470782963685 :0.006586107593816635 +sense:0.9054651484854046 all:0.03469536559767878 life:0.0119728653145132 salt:0.004037557232546541 :0.04382906336985674 +be:0.2988865755620419 the:0.10874779788393038 give:0.0493057965445555 make:0.0365017305918836 :0.5065580994175886 +com-:0.07824514698593979 most:0.030463621152877245 the:0.02612808515874692 defendant:0.015743028556084306 :0.8494201181463518 +in:0.4487257836045543 which:0.1359572591331309 work:0.046457136077862976 church:0.04386244815003245 :0.3249973730344194 +the:0.745813994595448 those:0.09058907679991687 its:0.038630382852617225 our:0.034391617642565146 :0.09057492810945283 +D.:0.14128306413952083 D:0.04973961866872385 M:0.03145314920571713 J.:0.022023595851325614 :0.7555005721347124 +the:0.35351668611207765 Joseph:0.035586556541957255 John:0.02825402211611378 without:0.01701729188121018 :0.5656254433486412 +office,:0.1619297606804531 room:0.013224925685674706 house:0.012635911841373663 house,:0.008284091615504885 :0.8039253101769935 +a:0.672982558977887 the:0.1526730524672255 two:0.0719868577952307 six:0.03232860012236986 :0.07002893063728688 +the:0.26585484529324394 much:0.18326845288776486 in:0.1497158984017256 to:0.1396999110194432 :0.26146089239782233 +of:0.8409430683472391 and:0.05614215095580284 paid:0.022972212248323846 at:0.022750149332514766 :0.05719241911611949 +had:0.6307126469675081 has:0.28407265887483146 lias:0.04355159128968324 having:0.013622762427120445 :0.02804034044085679 +of:0.9531698564375589 ol:0.009364287005824295 ot:0.008701386396787525 to:0.006900713129863575 :0.02186375702996562 +in:0.3136378203890929 that:0.16913319081052622 but:0.1554930826639195 of:0.13355722783740537 :0.22817867829905605 +are:0.2995851838794345 be:0.21481460314108883 is:0.20224526394100517 and:0.0848914840134748 :0.19846346502499676 +as:0.03624493630417709 and:0.034527575535520785 according:0.029572818278333787 feet:0.028254873425914102 :0.8713997964560545 +and:0.22080850556273196 of:0.12007388017276996 the:0.04563104384521326 to:0.04238975769741814 :0.5710968127218669 +I:0.1368452093969504 he:0.11256569050488932 and:0.07031137280613596 they:0.06364085937796127 :0.6166368679140631 +and:0.12039199716750613 the:0.11324370633280546 of:0.09858117535754087 The:0.046212470429183625 :0.6215706507129639 +the:0.4361998671390752 his:0.09490592475859005 a:0.0927735422729713 any:0.06329354230232075 :0.3128271235270428 +relief:0.1586495060484906 sale:0.152804081775127 food:0.10343104471736601 aside:0.084508068227723 :0.5006072992312933 +the:0.6841627673629314 a:0.1396839481990448 enough:0.05819668876251202 long:0.05081433494646734 :0.06714226072904435 +when:0.28827148872361974 and:0.2733983858566204 but:0.1831611390397618 that:0.12715722159675735 :0.1280117647832406 +make:0.27392799413426594 give:0.15101818180002968 have:0.06753809515594313 be:0.06240103714706845 :0.4451146917626929 +that:0.6980247278422548 to:0.028235960318412898 to,:0.006338986284173693 and:0.006054569504960546 :0.26134575605019794 +necessary:0.09902901125781804 possible:0.03923459437164363 the:0.0017632012892223469 published:0.00015995512504349594 :0.8598132379562724 +and:0.9950434273045031 aud:0.004857698034152418 nnd:3.4162526479507155e-05 or:3.395426797413614e-05 :3.075786689071163e-05 +with:0.7813807009065346 on:0.06256933229296252 arc:0.03874043942643713 if:0.037230695012317384 :0.08007883236174859 +prove:0.25355009478588525 they:0.1683906433591042 be:0.1476722725700677 I:0.12667225190463338 :0.3037147373803094 +to:0.2513777773786065 by:0.22251903381242857 in:0.13595572342879708 on:0.12507276197860287 :0.2650747034015648 +the:0.02428963109079068 -:0.015316768512887302 in:0.013279543695731486 (:0.01064096363136165 :0.9364730930692289 +distant:0.3175870244711254 difficult:0.12366085127430874 important:0.07602395424829196 interesting:0.019217141290517402 :0.46351102871575656 +the:0.02975542525790186 began:0.01804399910751411 those:0.015456379792060297 this:0.007680665716012985 :0.9290635301265108 +latter:0.1267235278829587 rooms:0.039222159506941565 trees:0.032659888047891966 cars:0.009979384289488025 :0.7914150402727197 +his:0.29927711983583555 their:0.25793715448594684 our:0.2120202174006372 my:0.09029188388855329 :0.14047362438902727 +months,:0.11349871911144002 of:0.03196581255341198 points:0.024865713405563903 years,:0.019598634881196737 :0.8100711200483872 +all:0.19184526337979677 of:0.054223171380831325 the:0.03642063564594287 which:0.03349959183465654 :0.6840113377587724 +of:0.5533264923682304 by:0.09509153573051898 in:0.05355937278127237 to:0.049579446632451986 :0.24844315248752644 +on:0.9400180163785153 below:0.03226209743096922 in:0.016418155053578326 upon:0.004887274626875638 :0.006414456510061329 +The:0.4690505028950388 and:0.13557769515169796 Both:0.06258055039579395 Several:0.05033966893364127 :0.28245158262382797 +United:0.8740812578106895 Southern:0.015180024455155204 Pacific:0.007614336448563409 old:0.005655210762393446 :0.09746917052319849 +the:0.3253232834760902 a:0.058533228724330866 be:0.05298635791819935 tho:0.022128591316213368 :0.5410285385651662 +and:0.13708309862944842 the:0.11227856904619256 of:0.07601940998674009 to:0.0435473117026504 :0.6310716106349685 +the:0.6281076946587874 bis:0.12008357584112374 this:0.05914831562230273 o:0.028032712890444775 :0.16462770098734136 +up:0.29935366709732186 second:0.009474441538392955 with:0.002796835253398087 the:0.0019375973158698317 :0.6864374587950174 +in:0.16348020734924473 to:0.09160624049755693 for:0.05114341048030235 by:0.039840749430765696 :0.6539293922421302 +heart:0.14602644604389556 world:0.06923507485840366 city:0.04778116060279716 county:0.04278058621990417 :0.6941767322749995 +aforesaid,:0.2191271895073434 now:0.03711167910375693 well:0.03557775425162321 aforesaid:0.019023539492775972 :0.6891598376445005 +from:0.68270147967776 in:0.004522159117479401 of:0.000343823828814063 would:0.00017300312736067905 :0.3122595342485859 +strength:0.10202826417261601 of:0.046600894252718766 ness:0.019771579821694994 disposition:0.015918572617817473 :0.8156806891351527 +of:0.8395870739821316 a:0.14857161908683048 his:0.004742927821284293 the:0.003673005643511146 :0.003425373466242448 +been:0.379941839005142 yet:0.1449149387802114 only:0.06133708607727159 had:0.03349757910445582 :0.3803085570329191 +and:0.20423267426783298 the:0.07113734753879587 of:0.06293920957305653 but:0.0446049460767818 :0.6170858225435327 +very:0.162790149051145 not:0.15801294816459993 quite:0.08048815286111706 the:0.07441430571188119 :0.5242944442112567 +made:0.12673550492589516 felt:0.07421632967208622 given:0.0683125982114556 marked:0.0527849065331271 :0.6779506606574359 +not:0.24292881922434723 told:0.18662480353683084 sure:0.18475447922400623 informed:0.13417985287264372 :0.25151204514217196 +went:0.07354709262887489 served:0.06671913658918605 applied:0.04662760829519338 got:0.026052383404437086 :0.7870537790823086 +each:0.7157963514540874 and:0.0895182670691438 not:0.07419277806172075 capital:0.043952559849566 :0.07654004356548204 +to:0.416000645570692 in:0.3774723152940435 on:0.1292596291050731 In:0.058889469969880044 :0.018377940060311432 +the:0.1379062673047987 of:0.08066668151830789 and:0.05059582722396104 Mr.:0.047079446729212104 :0.6837517772237202 +and:0.12193209458376439 the:0.0570986511211947 a:0.04908041838182249 of:0.04426384822552956 :0.7276249876876888 +100:0.07729904038040326 cent:0.028247391074275537 year.:0.023911345583490732 the:0.021958725933086887 :0.8485834970287436 +a:0.49628221085714197 the:0.3610187978796406 my:0.06733236215360287 that:0.028295280904395828 :0.04707134820521869 +my:0.12247197383493183 our:0.0908030397053496 was:0.07598085029763822 her:0.06644198000979226 :0.6443021561522881 +that:0.37802696928230856 this:0.09622559048065119 it.:0.030247446361980967 slowly:0.026388626194991115 :0.46911136768006817 +of:0.5136778197444609 and:0.10837998069299341 in:0.06988774649830039 to:0.06564974230775021 :0.24240471075649497 +of:0.9668034296726287 ot:0.01054655141953189 ol:0.005259153241554319 in:0.005167538594683358 :0.012223327071601824 +of:0.9401250241051045 cf:0.045378600556255366 of.:0.0065448333217464445 that:0.005094468234875192 :0.002857073782018469 +bo:0.8415756150544843 be:0.12209506463264702 have:0.028005571491251335 he:0.004297344278645327 :0.004026404542972143 +salary:0.09573195359521404 was:0.043086700513398586 that:0.03769334610871759 of:0.034561399576105274 :0.7889266002065647 +he:0.4272333849654353 she:0.15285455282828556 it:0.13006080723908753 they:0.12926626838805383 :0.1605849865791377 +and:0.3050130171205484 af:0.13158187903265375 that:0.12371496216819745 but:0.09726814604893479 :0.3424219956296655 +the:0.2791501199834427 a:0.0717427469294264 process:0.039118563300824395 actual:0.034566583782698314 :0.5754219860036083 +with:0.02842636008100177 it:0.02011147603028444 said:0.01986510680412245 .:0.01873896880133201 :0.9128580882832594 +C:0.1606809075671959 Mrs.:0.1406557286239914 The:0.061622893141530986 in:0.042163109193921335 :0.5948773614733603 +in:0.39588490445340563 some:0.1348023175138394 the:0.12839210549109517 at:0.10396545952170944 :0.23695521301995043 +of:0.8230108131578892 among:0.10423795662960886 to:0.004740613603555355 in:0.0028219015318710016 :0.0651887150770755 +was:0.24001408453488252 is:0.2321733044989082 and:0.1354749774838964 been:0.11977002795060188 :0.27256760553171105 +and:0.042094454057967294 people:0.009898340919425049 farmer:0.006599620413353802 man.:0.006116776075712547 :0.9352908085335413 +work:0.1064123003027069 power:0.07250135432503102 One:0.06787182063992232 side:0.06520508664900886 :0.6880094380833308 +and:0.27946083368525004 or:0.11194593545529169 taken:0.06720061851708681 free:0.059809973439810586 :0.4815826389025609 +not:0.09198649685478517 the:0.09091480227639889 a:0.08038443367987101 in:0.07705906691637918 :0.6596552002725659 +to:0.07502793997162523 that:0.06723722627171473 His:0.04576647647022796 for:0.04092664247197101 :0.771041714814461 +of:0.9677141861723323 ol:0.012165668413632043 or:0.009910243709902978 ot:0.008644870598194934 :0.0015650311059377368 +and:0.15328451143263191 work,:0.0014280868365499715 is:0.0009947892306857871 works:0.0008948482267636409 :0.8433977642733688 +be:0.92439090190823 bo:0.06490827421197509 he:0.003265553949886969 lie:0.0016935199311647153 :0.005741749998743074 +of:0.883971621717934 on:0.04543058893767464 for:0.02464519528229682 to:0.024403322772139576 :0.021549271289954906 +closed:0.05513658202111683 made:0.015688354332096355 followed:0.014110382029026154 accompanied:0.01366241489429041 :0.90140226672347 +had:0.33515253924390465 baa:0.18318831961907744 has:0.13270805314897885 haa:0.07197993015347691 :0.27697115783456205 +the:0.3826964770581059 It,:0.26692236599182717 fact:0.19560673017513833 tho:0.052469331696772294 :0.10230509507815642 +the:0.674849314176481 this:0.06210061351270244 in:0.049162585593761174 its:0.04715816913736618 :0.1667293175796891 +closing:0.17155488866471968 raising:0.11910361668771052 making:0.07107261382820705 keeping:0.028766722312346685 :0.609502158507016 +thousand:0.2820378384261885 hundred:0.13560893051117945 million:0.021585462190881793 .:0.0008088241410504567 :0.5599589447306997 +as:0.4123842731678342 life.:0.11682174218210985 up.:0.04073198932356254 here.:0.00785268206590755 :0.42220931326058575 +the:0.8762384533722553 our:0.0666528513903671 The:0.022681186384725827 and:0.013893058577875704 :0.020534450274776142 +the:0.9035071456012282 to:0.02626642821679084 a:0.023622676574717515 by:0.015480348641238319 :0.03112340096602494 +He:0.3261251636664712 and:0.10122133193025525 who:0.09098070140787227 he:0.06842166974655986 :0.41325113324884133 +J:0.30922535349693286 W:0.1411897697205085 thence:0.12567198321382209 H:0.0825984513559213 :0.34131444221281526 +at:0.9037690919885759 about:0.04467661682166489 to:0.02445407606041717 as:0.012321503269963967 :0.014778711859377921 +government.:0.07918474042354938 people.:0.0032928875718327673 and:0.0012889179362979425 government:0.0007808115088546538 :0.9154526425594652 +and:0.1485558701810992 with:0.08581120609277412 a:0.08246204237143093 to:0.07105259093820601 :0.6121182904164897 +to:0.999697474173884 will:7.974671341019296e-05 shall:6.073796949380017e-05 may:4.809142193013112e-05 :0.0001139497212817758 +and:0.07885770432215529 were:0.04167541040155975 was:0.039022228513742395 are:0.033502696861269145 :0.8069419599012734 +known:0.1510733313056968 that:0.07462626689631677 before:0.028232565593981143 as:0.026132980472928165 :0.7199348557310771 +It:0.25907387673269555 it:0.11136760545372988 a:0.08617380017265704 that:0.08262811225443545 :0.46075660538648217 +he:0.18097081773687151 He:0.17270305694571383 It:0.0991823010168327 and:0.09246107206978173 :0.4546827522308002 +go:0.445839667905909 fear:0.07128473015686179 get:0.06146497836754597 put:0.017669074231227964 :0.4037415493384552 +the:0.5479341590595885 their:0.2624997342824362 these:0.08846770672169856 his:0.0359889155351778 :0.065109484401099 +in:0.49021589209917504 and:0.16511882390789093 the:0.06572080149203062 In:0.05277216010100604 :0.22617232239989749 +character:0.1071382434237363 efforts:0.09691567120736828 only:0.07697508027090494 time:0.0702875177865364 :0.648683487311454 +times,:0.026305934552844596 use:0.011605651969321434 times:0.011482214165559898 prices:0.010014509883906295 :0.9405916894283678 +is:0.7191554610086472 was:0.16777622324220678 13:0.058560763241167886 Is:0.037819709687030335 :0.01668784282094788 +of:0.5647745499455121 in:0.4315946972400702 here:0.001894576729790561 from:0.0007398105135400965 :0.0009963655710870328 +and:0.034986003609188826 water,:0.008797489708364952 or:0.008091421341422402 districts:0.005307699675001407 :0.9428173856660222 +spirit:0.243216201895449 morning:0.0425846631791459 arrest:0.04248813188055446 North:0.03513099675822633 :0.6365800062866243 +important:0.48263385949189863 good:0.10604239008309842 valuable:0.042686857480091885 interesting:0.0362373580086354 :0.33239953493627566 +made:0.0127813867693124 is:0.010823188074138432 was:0.005260048140074796 of:0.005164024169795185 :0.965971352846679 +little:0.01377999873483559 If:0.005698751283256226 is:0.004961896995203338 glad:0.004317824661502787 :0.971241528325202 +to:0.949441822060579 and:0.02103284068748501 a:0.00572604322534407 I:0.0016403893668614916 :0.022158904659730496 +purpose:0.2143725286284238 sale:0.052431995486653796 sum:0.041801701404791274 hearing:0.027719681871752617 :0.6636740926083785 +has:0.21819909674110588 was:0.191145402467621 waa:0.06803762002546955 had:0.06719253184970848 :0.4554253489160951 +in:0.2862672168728642 In:0.21471311618419697 along:0.09132982157312688 see:0.09004496527234071 :0.31764488009747127 +and:0.08763451115515498 is:0.060345493033998866 was:0.04628156297941315 are:0.04326261670938232 :0.7624758161220506 +a:0.22973568216462048 the:0.12811006558915247 in:0.12193979169984784 above:0.07608673785779728 :0.44412772268858197 +the:0.22814079127816445 his:0.04440413306926403 other:0.04188928669353501 tho:0.02792399000269073 :0.6576417989563459 +be:0.8687046552230053 bo:0.08002234812661448 lie:0.019648330444759384 he:0.019633128007012102 :0.011991538198608518 +and:0.12751551095420258 of:0.11962791980611813 within:0.11007845644939943 the:0.08328181600429743 :0.5594962967859823 +peo-:0.6428697752242345 the:0.031114506481977264 ap-:0.01684608620654045 B:0.013826947305065049 :0.29534268478218273 +will:0.7637385700535526 would:0.07419250658733996 can:0.06210132635168931 may:0.0419527752553094 :0.058014821752108696 +He:0.4222791289135028 It:0.3856718859589448 She:0.04578889422850652 They:0.025692873876793476 :0.1205672170222524 +meet:0.16111377053625345 look:0.15510639618682326 read:0.06580839905694606 be:0.047969531036928456 :0.5700019031830489 +United:0.7306802091863274 U.:0.11981804926243315 Pacific:0.07122446210999323 Western:0.022504086818292527 :0.05577319262295373 +the:0.7501479826095221 his:0.0825443189325189 that:0.05928716309038575 a:0.05283918977528957 :0.05518134559228365 +of:0.30609439241944547 to:0.13128216009330404 in:0.12205195943089653 and:0.08832570375068309 :0.352245784305671 +least:0.018836312427182374 medical:0.00837866309401054 present:0.007038638105284673 i:0.00555110884893578 :0.9601952775245867 +of:0.5815956168902058 and:0.09159877169933477 in:0.046459882253110055 with:0.03862449693821431 :0.24172123221913502 +the:0.9998750330653599 tho:4.146586976608456e-05 no:1.824088241023522e-05 thi:9.023182924824625e-06 :5.62369995387586e-05 +its:0.7499268348491697 the:0.07168814401863524 Its:0.027470078326838013 their:0.022189048453024496 :0.12872589435233264 +the:0.3524591520437697 take:0.193581314778179 be:0.07918546350463301 his:0.05739705430611302 :0.3173770153673054 +of:0.5927898535474444 and:0.09573792740198167 in:0.0680160324733226 with:0.051056124118812454 :0.19240006245843896 +we:0.15163094344186823 and:0.12043154995598053 There:0.11806604135317422 We:0.10010058239407824 :0.5097708828548989 +made:0.21033546362976066 paid:0.1290711118594048 urged:0.06672023666983704 held:0.051104183159348844 :0.5427690046816487 +done,:0.01943096912942909 ;:0.018871799031326318 done:0.017376169814887564 made,:0.006036234059656652 :0.9382848279647005 +with:0.5068159439918082 in:0.24472489877149894 by:0.1260990905661261 on:0.04614028212699267 :0.07621978454357406 +posed:0.028553725338237784 pressed:0.006984355307822317 ample:0.00430049020353031 port:0.003752678650893721 :0.9564087504995158 +of:0.25656610186142986 and:0.18006666444144806 Land:0.06794244007214657 the:0.04482098956165508 :0.45060380406332046 +one:0.22513968295471953 some:0.10828440752673363 out:0.0971123136598803 members:0.08235262622857929 :0.4871109696300871 +hand:0.43431204639957643 it:0.15673239994957927 nut:0.036169583363002134 put:0.03404422913747774 :0.3387417411503643 +of:0.9360101851040716 ol:0.019616993368201302 to:0.015546882106817896 ot:0.010804149998739956 :0.018021789422169025 +a:0.3826925583816285 the:0.13496204867568926 an:0.08929278768355481 not:0.0684800248831996 :0.32457258037592784 +Judge:0.6531703784403518 the:0.11939946637276448 lor:0.09109179353267184 in:0.07027065413489379 :0.0660677075193181 +old:0.004003019287305206 and:0.0015542999577751783 so,:0.0010215373221058152 I:0.0010026755213762468 :0.9924184679114376 +way.:0.014232714876724133 party.:0.004003453851002359 home.:0.0019745676320286954 country.:0.0015150466755924179 :0.9782742169646524 +at:0.08694156126129221 country.:0.050413611831629686 method:0.03950596209684997 country:0.038316904630870445 :0.7848219601793577 +more:0.1812888574598283 is:0.04609740819021414 questions:0.03684260063627258 be:0.029544244809161485 :0.7062268889045235 +the:0.18840316029299153 payable:0.09400740100246628 a:0.033325235518318105 other:0.03282912866139849 :0.6514350745248255 +that:0.30454864856884994 and:0.15387249699922662 which:0.14691552422185036 where:0.06552313458314216 :0.329140195626931 +way:0.003962736125324491 failed:0.002390314981397675 its:0.0019208110936754289 continued:0.0016047577696878584 :0.9901213800299147 +have:0.4649575398015901 would:0.16994904532427485 and:0.023658941219146773 with:0.020706047560496595 :0.32072842609449165 +the:0.233157148337258 other:0.0937980129554777 persons:0.08554085034479252 that:0.060150158010628306 :0.5273538303518435 +found:0.663966408138959 and:0.16828849769785187 so:0.0376040273936262 I:0.014981872763554565 :0.11515919400600835 +was:0.01893508261835509 by:0.017766465332019667 of:0.013103213223526235 when:0.011752115219963902 :0.938443123606135 +the:0.36258212798597367 a:0.096280781385822 their:0.07528973109366965 least:0.06793919909995748 :0.3979081604345772 +the:0.6396529293566467 a:0.09360782436273365 tho:0.040061171171975954 some:0.03989182158871706 :0.18678625351992661 +corn:0.13026932737116667 and:0.12917795435843124 sold:0.03859265385363519 bushels:0.03545898563314214 :0.6665010787836249 +came:0.12082235154472816 in:0.06137792651171027 the:0.032791058535164695 that:0.025933138495345686 :0.7590755249130513 +French:0.06559065139956263 unknown:0.03257610397902485 famous:0.02078557957394771 the:0.0150752351433672 :0.8659724299040976 +time:0.5484077704977051 moment:0.10748165436869184 late:0.027773072284161916 beginning:0.020020131956582293 :0.2963173708928588 +the:0.27465786656371627 a:0.2463309761390009 an:0.04024258412920331 his:0.03927570498857837 :0.39949286817950114 +own:0.16287733239453453 new:0.041369318358056725 mind:0.02679765652712484 daily:0.02395131327540228 :0.7450043794448817 +the:0.26586568803843197 you,:0.2583871679297275 be:0.12754827360088813 present:0.11047790615449944 :0.23772096427645298 +and:0.45291911391570844 be:0.0604190513482882 interest:0.05006630864744428 is:0.03903488548451291 :0.3975606406040462 +J:0.17378103621749172 A:0.14521129483481177 W:0.12576614999723168 M:0.06715038195870848 :0.4880911369917564 +pressed:0.2485022328289611 of:7.28228786195527e-05 to:6.271689167210872e-05 and:4.472328267773392e-05 :0.7513175041180694 +it:0.5006899626933249 him:0.09165660405146003 you:0.07594071313346071 himself:0.03144226830588402 :0.30027045181587037 +of:0.958978106591613 ot:0.011000105275405073 to:0.008367356662633671 with:0.0047573088943192055 :0.016897122576029138 +and:0.1286074889502326 the:0.0797570827207694 of:0.07444023768443363 to:0.045219032022425866 :0.6719761586221386 +May:0.2512591789361109 they:0.21764553904616987 we:0.05719178368097779 there:0.03294470620794446 :0.4409587921287969 +It:0.14434190027955376 which:0.12940979563157498 it:0.12254493288882323 that:0.08188534397807733 :0.5218180272219706 +of:0.82637156927414 the:0.06684184637277936 in:0.055985794107035795 iu:0.02625561250826182 :0.024545177737783048 +of:0.3048086075145987 in:0.23510195928251035 on:0.11924715295223244 and:0.08864092150930937 :0.25220135874134897 +and:0.17205590264078283 the:0.0874409586614709 of:0.07712360073426457 to:0.049592689397460775 :0.6137868485660211 +is:0.3162817566839786 was:0.16447095005782159 has:0.09865340976272044 may:0.047523910015787 :0.3730699734796922 +the:0.6194404007871516 legal:0.03449177469735262 w:0.03215193136740987 our:0.019067104762861557 :0.29484878838522427 +of:0.9594268833667239 ef:0.01442942252030256 or:0.009910780198523206 oi:0.008284273569770698 :0.007948640344679755 +a:0.49830984496455355 an:0.2933359131128422 not:0.0756896369935231 one:0.05423249373741678 :0.0784321111916644 +be:0.9744795855998779 bo:0.01507536453764164 he:0.0069115950996114185 was:0.002237892521851751 :0.0012955622410172419 +has:0.9537022332835798 was:0.027770998602528612 spoke:0.0013998670229819685 had:0.0005198025172677803 :0.016607098573641774 +who:0.5519114162162739 and:0.197872075810454 to:0.07958916033785243 not:0.052570120551690566 :0.11805722708372916 +ever:0.6958653726190309 done:0.13254095458043844 been:0.05905242896489612 never:0.033704844106509826 :0.0788363997291246 +in:0.9920838846551524 In:0.007736675760124762 and:5.3638908839117344e-05 from:2.317468285023109e-05 :0.00010262599303337764 +and:0.2865640498151158 where:0.1385238637994902 or:0.12682720498209393 with:0.1070064921096573 :0.34107838929364287 +States:0.5100392415117364 States,:0.01286897079702611 States.:0.01152015659947475 was:0.009201005298264363 :0.45637062579349824 +the:0.655819849213493 Gen.:0.10872049015600732 General:0.09361470163843609 tho:0.05149017229429983 :0.09035478669776381 +that:0.5690537510027296 which:0.11326642712672301 she:0.11051538985250578 calls:0.08898582125682003 :0.11817861076122167 +of:0.10981747671590567 the:0.07407912151839903 and:0.06362613864643991 to:0.03868959938008811 :0.7137876637391674 +a:0.048641302162080235 taken:0.029949692929962045 Mr.:0.02812783397230937 completely:0.025493267576834188 :0.8677879033588142 +seem:0.9801659219290163 mean:0.00504649672433179 appear:0.0028011587080896995 be:0.0005584980512661859 :0.011427924587295909 +upon:0.4466775091394537 in:0.1211380317990371 by:0.10203338704309821 a:0.07965281476942966 :0.2504982572489812 +in:0.43329391287358704 by:0.20104115778573747 to:0.11856825915053076 at:0.0833365421653567 :0.16376012802478807 +has:0.23302630764728843 had:0.1848151500990408 found:0.13076062812635103 was:0.11326662889663479 :0.33813128523068486 +I:0.2563305450926198 he:0.10142039386305875 she:0.06745190268544389 we:0.06416721986145532 :0.5106299384974221 +price:0.08596888138827694 race:0.030002761807253527 order:0.01622133519342124 grade:0.015636327551620418 :0.8521706940594278 +and:0.1232199542850552 which:0.12280504185292516 But:0.07079521673429078 that:0.04816142498433605 :0.6350183621433929 +a:0.22636174829448671 the:0.09890587914732242 an:0.08333317922021231 to:0.05635037432241138 :0.5350488190155674 +make:0.11489900550056609 let:0.07695891190955 forget:0.07436527486399716 perform:0.07301370191386623 :0.6607631058120205 +with:0.8367010425633865 of:0.060237505493690266 and:0.027464796493195723 had:0.025846994238164594 :0.04974966121156294 +lime:0.8477072680224631 time:0.14576435769816823 times:0.00281861109187937 five:0.0008160165969475366 :0.00289374659054201 +the:0.20363744492892133 that:0.04144780626284293 Third:0.015328691666951362 B:0.013843241349340858 :0.7257428157919437 +though:0.4409455315859827 if:0.3570132414595814 it:0.11716884965309705 If:0.03629987646482503 :0.04857250083651385 +It:0.26808072143940365 it:0.1949676196256009 who:0.10047137764993556 he:0.09942725679824636 :0.3370530244868135 +healthy:0.21587268945358318 the:0.03554359296705896 future:0.0322114135200905 re-:0.028591646375110327 :0.6877806576841571 +and:0.2605117631285869 of:0.1040146336272219 Yet:0.056745934069242485 for:0.04270019362949016 :0.5360274755454585 +and:0.3063843939411323 taxes:0.09392947172108423 tion:0.0827433391206917 be:0.054563424503764266 :0.46237937071332746 +made:0.7312392822927082 made,:0.011370750199903405 not:0.009834442737164625 commenced:0.00931239622525338 :0.2382431285449705 +In:0.5530459767386842 in:0.4003557490785527 have:0.006839475113046286 only:0.006244539679518978 :0.03351425939019787 +situation:0.07001539758727786 land:0.06298474854217741 should:0.03772247668278934 government:0.033926389508141794 :0.7953509876796138 +physical:0.08212170740859252 natural:0.05180066326211575 social:0.03279384455171552 three:0.031604255039775236 :0.8016795297378007 +a:0.9893317261578637 very:0.0046183251707336654 a.:0.003404231543436845 somewhat:0.0013748819818622034 :0.0012708351461038403 +who:0.2713207566926541 which:0.13941841262091784 I:0.10527714678201125 We:0.07915890872299912 :0.40482477518141774 +and:0.03826313494857222 the:0.03509358371966325 of:0.01607596582327622 a:0.01280244975609936 :0.8977648657523889 +and:0.2800111391187864 in:0.1456755653864974 of:0.09801808656399727 with:0.08603318984242163 :0.3902620190882974 +an:0.44203708519168716 one:0.3595257903339661 the:0.0975806492221508 considered:0.06337350161679817 :0.03748297363539787 +sat:0.42230908680664075 was:0.3274196555199503 Is:0.11837291495581825 is:0.04523593904672333 :0.08666240367086721 +yet:0.8674948473408529 this:0.03369941561027204 since:0.02317369780463503 actually:0.0132338473307486 :0.06239819191349141 +pro-:0.7301225644118751 pro¬:0.09277103500275463 pro­:0.011626376796752054 pro:0.009279110179939912 :0.15620091360867838 +man:0.04986024186897412 offer:0.028755569329590135 officer:0.00872600684035958 enemy:0.0048839960594398765 :0.9077741859016364 +great:0.011945774248764666 large:0.010896034933929896 the:0.0056336005104269705 making:0.00503074271538963 :0.9664938475914887 +few:0.047583169627172225 great:0.036528335116044613 very:0.02792616093234634 large:0.023945793315196397 :0.8640165410092404 +the:0.9840253539580023 his:0.00708608217321175 your:0.003039365276696146 an:0.0024162126672590194 :0.0034329859248307523 +profit:0.047997405590032724 strength:0.0375382561957774 amount:0.02804858868402965 survey:0.025898162822975152 :0.8605175867071851 +the:0.15531532158812023 and:0.10846721880570342 of:0.09128175794756889 The:0.06959048782041809 :0.5753452138381895 +of:0.0848837781325353 and:0.0727817127915283 the:0.06824127198184073 to:0.03592784416145284 :0.7381653929326428 +the:0.0007214274236930143 more:0.0006685523790026895 so:0.0003279048855554782 connected:0.0002248914604059588 :0.998057223851343 +November:0.042462594150424735 and:0.029416026557102813 at:0.022856251687214398 the:0.01675423766397569 :0.8885108899412825 +the:0.6833333822938974 building:0.07449825735332082 cold:0.02979330826161412 big:0.023070811858030373 :0.18930424023313736 +.:0.8751345427960756 C.:0.008757107246822491 S.:0.006760320670244204 D.:0.004368247927383819 :0.10497978135947401 +to:0.3387149549210474 him:0.1361534933878149 her:0.12467404361788187 one:0.0722351589935238 :0.328222349079732 +hold:0.4515789958696571 make:0.0413104140267072 of:0.004304028444436003 to:0.0024611925174276004 :0.500345369141772 +the:0.2776739924975934 to:0.1351177415678384 a:0.09045721938173375 his:0.07515814189448199 :0.4215929046583525 +get:0.2215917792670889 find:0.21978302114163398 pay:0.17332585420535218 carry:0.169974365863784 :0.21532497952214097 +of:0.6502702325319198 in:0.15829709515345985 and:0.14197422616751817 the:0.007898854539267638 :0.04155959160783439 +and:0.2480969135420085 to:0.12761692846113398 of:0.12235109638341723 which:0.04079886688699267 :0.4611361947264476 +West:0.14449187038089778 petition:0.13507435641821486 tax:0.09542847559629075 is:0.09050175210115757 :0.534503545503439 +form:0.1391339505135823 number:0.10077570288956267 hands:0.051107387240232165 possession:0.05044251844910684 :0.658540440907516 +dollar:0.4092692164794708 hundred:0.1321366547099986 for:0.051654293723086046 thousand:0.04020602961653139 :0.36673380547091317 +game:0.2312405772329238 out:0.012209124912918746 warm:0.010349106577648464 help:0.009292369455189214 :0.7369088218213198 +sister:0.17667454640426974 is:0.16607202183678754 wore:0.15851303429361022 of:0.14532607579353854 :0.353414321671794 +vast:0.023405370541863105 such:0.02292636335157039 vote:0.01892476715702886 people:0.013414216989025 :0.9213292819605126 +of:0.8419530097808104 to:0.028237643777007423 and:0.017217320200661093 that:0.01537635692756229 :0.09721566931395868 +and:0.23439002078786556 to:0.10880027866492312 of:0.09718565341932536 will:0.05655458040784635 :0.5030694667200395 +and:0.6829830045757228 to:0.07488654804240037 he:0.06703344134333744 the:0.02211784474155028 :0.15297916129698913 +me:0.4669563532807146 directed:0.15136042644551484 license:0.042190107558327646 and:0.03125938496082438 :0.30823372775461855 +tba:0.014621470508526658 square:0.004010936987402362 the:0.0031850654670110452 ar:0.00039395187305424736 :0.9777885751640056 +and:0.056866710003034435 .:0.041790419838752674 of:0.03810737094197539 the:0.031204367770357483 :0.8320311314458799 +deed:0.1653989631729659 fact,:0.08337573424714284 the:0.05449375510800238 such:0.020607748667416277 :0.6761237988044726 +Miss:0.09873916202358411 of:0.06564315955790537 Mrs.:0.05816575088549231 and:0.05402051122781368 :0.7234314163052046 +where:0.45830538208988714 of:0.03511868579804319 general:0.02754315728007335 by:0.024596442665123928 :0.45443633216687235 +the:0.40607585360669235 The:0.24971239988605062 and:0.11030852286667481 at:0.07439404547118071 :0.15950917816940158 +on:0.36230005421523687 that:0.1108763311975659 and:0.08678161885938694 but:0.0720134602584472 :0.36802853546936315 +and:0.0900056380006153 they:0.08720602231350388 live:0.05180033563342937 years:0.04233311452387775 :0.7286548895285737 +it:0.41270188076627434 why:0.38441451528780135 she:0.09980177839501186 and:0.06868745671316667 :0.03439436883774576 +and:0.056193098921094385 on:0.050252866191964625 now:0.049249763599187944 the:0.04782096660891597 :0.796483304678837 +in:0.056717786420857494 to:0.010974484945982358 regarded:0.009912364362841335 re­:0.00741332200561478 :0.914982042264704 +the:0.582982951823924 if:0.04633068844173361 our:0.02518882526757959 interest:0.02280243093167655 :0.32269510353508607 +of:0.9421762559387554 ol:0.025587198505918993 ot:0.012844730461400087 or:0.002552907017777036 :0.01683890807614846 +will:0.4258031434999407 may:0.1645865117826043 of:0.08162097198642561 appeared:0.07483439146722022 :0.2531549812638094 +accepted:0.11671394455662548 only:0.09039247265342214 probably:0.06774974785985642 not:0.06213750521664908 :0.6630063297134469 +it,:0.6004901357565383 it.:0.30709022590670804 it:0.043802355949676595 him,:0.0015162799215766528 :0.047101002465500405 +law.:0.048885732295910464 time.:0.006868911555441227 trade:0.006407407481124125 state.:0.004847031116308582 :0.9329909175512155 +sent:0.12565808040288318 new:0.08643922234162843 sold:0.06890660269489085 carried:0.06671957856280243 :0.6522765159977952 +thence:0.5309641520666993 at:0.04930487054923561 street.:0.0465436274437157 J:0.02099274541391133 :0.352194604526438 +the:0.9245681279546661 tie:0.026780286464172978 tho:0.022304892679079247 its:0.01227856214786598 :0.014068130754215443 +say:0.23726534860856063 know:0.2262693691911967 believe:0.18371004434927996 make:0.09832502597181234 :0.2544302118791503 +in:6.145707580239739e-05 ;:6.374000927992517e-06 George:4.998636253095911e-06 old,:4.938382285557454e-06 :0.9999222319047311 +an:0.9515950395732611 without:0.011308238373305288 and:0.006711715200644327 every:0.00664215266833316 :0.023742854184456087 +and:0.29874698994040233 the:0.11141449801848652 to:0.09709816583204589 with:0.08638911749649422 :0.4063512287125711 +sea:0.16326647763383473 or:0.09701551092254193 thousand:0.05329325573790998 days:0.02833692179225501 :0.6580878339134583 +be:0.7279246479103564 the:0.09354138314498021 bo:0.0480324626998258 this:0.01822983449187614 :0.11227167175296149 +of:0.8907021809822248 If:0.022097156964585314 without:0.02106415200260267 for:0.017858527411336946 :0.04827798263925021 +office,:0.3175868935126168 coat:0.08908000265658142 party,:0.07308889094640679 house:0.04649118146305823 :0.4737530314213368 +ty:0.15225973175034893 ties:0.09692432936433464 pose:0.03312993645101037 took:0.026905680749121315 :0.6907803216851849 +a:0.37241953889862034 the:0.21167008785940614 an:0.1660488978193337 not:0.01748051938163272 :0.23238095604100692 +and:0.07416841511700735 of:0.024068193475236834 office:0.020466691247500335 room:0.019714149111065588 :0.8615825510491899 +times:0.46660713057078784 is:0.04154270470764164 except:0.028146024715434745 due:0.023431336707226823 :0.4402728032989088 +not:0.9408185956475583 never:0.05437174661538456 all:0.003272564835435581 uot:0.0011823443306767957 :0.00035474857094466253 +extent:0.08797388908216118 further:0.06808360284367913 at-:0.06078063988743596 ex-:0.05557640582634003 :0.7275854623603836 +the:0.20991906015989661 which:0.13109919667484268 it:0.09910143492449197 them,:0.01586000020299302 :0.5440203080377758 +One:0.2338325276532001 yards:0.18779978723041194 in:0.13970501785885964 one:0.094942115494264 :0.34372055176326427 +the:0.16253669102558604 district:0.1108649533944844 supreme:0.08548485028190218 in:0.07264609333256633 :0.568467411965461 +State.:0.006613181448635475 city.:0.0028087937150063666 country.:0.0009400289024150605 war:0.00029961915998369707 :0.9893383767739595 +the:0.15146279427789397 of:0.12030781828213291 large:0.059499131052100085 have:0.031103980465293304 :0.6376262759225799 +of:0.7625869597852354 in:0.06646606882914058 about:0.0318914170562189 through:0.024438086942430857 :0.11461746738697437 +the:0.45962434703103683 this:0.08828407815507802 his:0.0491784582693196 one:0.04496499600658226 :0.3579481205379833 +of:0.8019645362392985 ol:0.06031816656055966 af:0.0306386770449969 and:0.021828795932563993 :0.08524982422258097 +city:0.1707769041941849 town:0.08950217301323894 town,:0.05160533018586426 country,:0.024275056035639987 :0.663840536571072 +eat:0.4503235638622399 played:0.06977508824810329 was:0.05529506490692428 were:0.032852443248678066 :0.3917538397340544 +of:0.2245990126162237 and:0.06649339142359803 is:0.04632933352484369 was:0.04533414631170509 :0.6172441161236295 +and:0.19990388761835923 ment,:0.1397757412258311 The:0.10545105865158999 that:0.0795604877230567 :0.47530882478116304 +worked:0.16515087875422985 to:0.09259632472511868 used:0.0779460033480053 made:0.05850230351599516 :0.605804489656651 +and:0.20285396177562742 jury:0.17419362193045865 who:0.12198706134808131 they:0.05724293727423139 :0.4437224176716013 +think:0.14994771291669837 see:0.08434135012795659 ;:0.02236717104633099 |:0.007771253628106627 :0.7355725122809076 +and:0.17884879787705626 the:0.08874919206508669 of:0.05684741275204879 in:0.034053286991592054 :0.6415013103142162 +one:0.7148289946510445 out:0.024810245472608128 president:0.02374505335230786 chairman:0.016946907212479802 :0.21966879931155972 +the:0.9605520339810307 this:0.019075134031679614 a:0.009762388005668192 tho:0.008631069325173586 :0.0019793746564477897 +other:0.47594397577543535 particular:0.024119817645171647 one:0.015974086694207787 American:0.0055144549506271215 :0.47844766493455804 +not:0.5948398194737783 be:0.0480395557281472 have:0.013061032693244948 no:0.0097364065706135 :0.33432318553421614 +each:0.3432685126770839 the:0.18281952250667757 east:0.08581425557505142 this:0.07432596191263421 :0.31377174732855295 +of:0.263847438257241 and:0.15824904746445728 to:0.06139712972523279 aud:0.049033786740117234 :0.46747259781295164 +the:0.14250123593318173 a:0.13051518770811063 interest:0.06371134984909162 find:0.04716978783649426 :0.6161024386731218 +the:0.5804322664283542 tho:0.08066827743133191 a:0.07377356530380684 being:0.06196204181291981 :0.2031638490235873 +at:0.510468802280747 about:0.1684769904133804 At:0.16015305096845875 until:0.08996596219163364 :0.0709351941457803 +is:0.8698440328439931 was:0.05071579223936888 became:0.04593294141769791 becomes:0.023733691664379022 :0.009773541834561214 +matter:0.8088379854119647 husband:0.010824235676898978 men:0.009483867128171288 word:0.008851418251532309 :0.1620024935314327 +to:0.8427681785669803 and:0.003417361546611405 a:0.0018790653347436287 lo:0.0016878087806625175 :0.15024758577100203 +more:0.1486360228078611 and:0.009680961660587593 street:0.005845987977086236 without:0.004610149009203245 :0.8312268785452618 +of:0.9594556000112288 ot:0.014226177589124178 ol:0.011436387528377494 the:0.007487358873740154 :0.00739447599752945 +That:0.835231332526741 for:0.055569706310315915 that:0.03448199781349641 same:0.0253038328484664 :0.04941313050098024 +and:0.2667350591061971 the:0.22071994242919377 we:0.05941530918877428 of:0.05816151864988207 :0.39496817062595285 +manner:0.40465800008886804 way:0.21155416406762426 route:0.043422838148792976 policy:0.04102822303195273 :0.299336774662762 +to:0.8897428649448184 only:0.03665037807197676 will:0.029469665659802035 now:0.004920999398748639 :0.03921609192465434 +the:0.8445286924800832 a:0.11767652648389462 of:0.012939263188729575 and:0.007467860096089826 :0.017387657751202736 +on:0.6672533137339137 off:0.33077143383743074 in:0.0007730742411886849 ou:0.0007535950981481674 :0.00044858308931865513 +have:0.1666463954017872 are:0.14547472513107668 were:0.0699431646988796 had:0.06488140023065618 :0.5530543145376003 +ness:0.049270567540028516 company,:0.012093230751036783 and:0.010880093877841774 ing:0.008138192493732647 :0.9196179153373601 +forces:0.03573899205765706 votes:0.011383749952946439 States:0.00876389592886986 is:0.0038240120975515566 :0.940289349962975 +the:0.13921390003492415 of:0.13754973269657791 and:0.06315166956509259 to:0.049868040748070296 :0.610216656955335 +years:0.35045379693655304 months:0.3227293069221867 days:0.1278173897329806 weeks:0.05898433967350054 :0.1400151667347791 +matter:0.1482057198043025 difficulty:0.10297470633841885 box:0.09606847345410079 law:0.08891521462516877 :0.5638358857780089 +to:0.33001321800079114 with:0.2828006021020302 of:0.06264129747590629 out:0.04988678200233701 :0.27465810041893535 +did:0.43556104282639424 would:0.33121933024812544 can:0.07171030816188803 will:0.05684124166107133 :0.10466807710252098 +When:0.6722119836996876 The:0.15887666145500995 These:0.026987051634260045 Our:0.013754711125216638 :0.12816959208582576 +same:0.33532027085695754 water:0.21797016096354896 war:0.04745428284005747 light:0.015214703757582137 :0.384040581581854 +in:0.2521169632522656 of:0.2375608508923915 to:0.1597400506807196 by:0.14590978800757842 :0.20467234716704488 +of:0.8002574738375247 for:0.13675449468087378 to:0.020843332638474116 at:0.0033388124506307953 :0.03880588639249681 +six:0.287493431149853 12:0.1969839843518084 twelve:0.1802971714076499 ten:0.1740735051734831 :0.1611519079172056 +ment:0.03157535589469437 had:0.013129534719354973 cent:0.0033993222294109848 and:0.002008054147431693 :0.949887733009108 +as:0.336645835647876 stopped:0.16001445271279954 to:0.14988029510721018 tho:0.12137845573231083 :0.23208096079980348 +on:0.09463843160765222 cent,:0.06343454965312974 day:0.023011758222567565 year,:0.020171492547721433 :0.7987437679689291 +method:0.30111844279272254 sight:0.10709560643645286 report:0.08903928469561898 action:0.023553112932077604 :0.47919355314312806 +simply:0.08590534386058257 and:0.0434438802194814 men,:0.04101630742554373 heavy:0.03741944777125932 :0.7922150207231331 +large:0.43395893296886473 certain:0.1904158804559204 considerable:0.14330541440660724 greater:0.08022428125714025 :0.15209549091146723 +and:0.3337676684090627 but:0.11918924015374109 was:0.11063453912824857 is:0.07432743472485875 :0.362081117584089 +road:0.15840384709673264 river:0.07585687070320472 street:0.017001861983506387 back:0.015188022713348 :0.7335493975032084 +the:0.2556172505895028 a:0.05689815248615125 that:0.03557086554377164 his:0.027113016566610547 :0.6248007148139639 +a:0.7835809329316106 some:0.06657480424495982 great:0.06450430278659046 considerable:0.05650593271990399 :0.028834027316935268 +and:0.10828859503703912 the:0.07981256361094567 or:0.0762490309940132 of:0.07179704136694823 :0.6638527689910538 +known:0.7871952805547208 dressed:0.0071426907531582295 fixed:0.004915123106531496 established:0.0016966878940411763 :0.1990502176915482 +campaign:0.04315041011837862 member:0.027362160968545976 out:0.026415420953166045 portion:0.02356241616351868 :0.8795095917963909 +of:0.8303608760234491 con-:0.08973667566686902 to:0.008034110561193448 in:0.007341836086968151 :0.06452650166152028 +i:0.013308395055747916 ing:0.006872118529144844 come:0.002844489393145906 comes:0.0021348731570863737 :0.974840123864875 +be:0.35032039928690084 ::0.21464928193335706 and:0.08705520290977593 or:0.06220681802214717 :0.2857682978478191 +that:0.6599306568736057 with:0.07491133363318656 is:0.0540312981144413 and:0.04905500494084753 :0.16207170643791874 +and:0.18147784874012407 of:0.0694542818439106 to:0.05399370224042844 the:0.041823511142046764 :0.6532506560334901 +him.:0.3444117097618523 it:0.11506164685258978 the:0.10179161105909867 it.:0.05939863803801522 :0.37933639428844407 +the:0.7463872317549153 tbe:0.1623951041194814 tho:0.05348252187218286 The:0.029934434559058653 :0.007800707694361859 +and:0.09887834353010896 the:0.06581808943707276 of:0.06375881086603699 The:0.05712493522689596 :0.7144198209398854 +the:0.9374575475524082 that:0.013701914324632688 a:0.01283774662091264 his:0.004331712998833028 :0.031671078503213185 +do:0.06679000439552261 did:0.04734241430839357 shall:0.043059163851171575 will:0.04189419900484149 :0.8009142184400706 +in:0.9041805839393426 In:0.08857696814108451 iu:0.00535690838000135 shown:0.0006864196851949946 :0.0011991198543764266 +the:0.8531028950435526 th:0.042678357042483205 his:0.0399038591812774 their:0.0383506294895948 :0.02596425924309201 +and:0.1326365456530342 of:0.10539738234139427 the:0.07374760615677535 a:0.0542392405441678 :0.6339792253046285 +they:0.43467163092999933 he:0.19501383547622608 she:0.1332540457233406 that:0.12301392522825139 :0.11404656264218267 +not:0.20339755387787514 now:0.08064076946896927 being:0.07224109771368771 a:0.04692021268192782 :0.5968003662575402 +of:0.583807843055053 in:0.16029157597717264 for:0.1251722213756895 In:0.06688916212698018 :0.06383919746510469 +which:0.6246989536529312 It:0.08519079167984528 street:0.06048109968469211 the:0.057696126067826196 :0.1719330289147051 +to:0.7646347514258562 In:0.06683367162907071 not:0.04390934802222138 may:0.007914420908445177 :0.11670780801440658 +company:0.21307596740136417 life:0.09695554429380968 place:0.030003726440042216 power:0.020305393894777715 :0.6396593679700062 +and:0.09549580991566957 I:0.09207759629907457 we:0.07528156531574036 who:0.0704167847482798 :0.6667282437212356 +the:0.2590370097358906 to:0.16495531931791363 in:0.15109159165572592 by:0.13299952918202698 :0.29191655010844286 +Lee:0.09969155406725218 hands:0.023062282321423728 water:0.02259862172350773 did:0.01728153422119059 :0.8373660076666259 +of:0.01605850967736498 and:0.013358582103351526 in:0.006323205378459384 to:0.005984994680170475 :0.9582747081606536 +ing:0.03336384839385734 evening:0.022612414973414145 speak:0.011544004289509488 one:0.00838779874397197 :0.9240919335992469 +in:0.1807870444041668 and:0.1729060755774763 to:0.13073734944061927 of:0.10587515533084492 :0.4096943752468927 +of:0.3420953005705069 the:0.21194057792758822 Colonel:0.06337815719166205 in:0.044375069550461305 :0.3382108947597815 +the:0.3254467952715843 a:0.11459464951245232 him.:0.10162226390648145 him:0.08916050108362378 :0.3691757902258582 +voted:0.05827437398934647 signed:0.024353530465997048 sign:0.011598083359022874 scribed:0.008822072748840962 :0.8969519394367926 +the:0.6939886766065941 tho:0.23344697981896242 tiie:0.06965721711711872 tbo:0.0016198482005940307 :0.0012872782567306198 +given:0.38362014868430533 paid:0.2330865409034505 been:0.10124060946666406 even:0.09174806815727145 :0.1903046327883085 +is:0.26071705525241434 the:0.21047549590010672 was:0.17803016322466025 he:0.1610205520657511 :0.18975673355706763 +they:0.43760807066500784 we:0.30839958309509746 I:0.11936067752232087 soon:0.025823192848536337 :0.10880847586903751 +and:0.2661291514037273 of:0.1858821324438012 in:0.08813978855458328 are:0.057198585402044234 :0.40265034219584406 +speak:0.05941622071029843 are:0.05802465529883233 when:0.057643030069798956 may:0.05351733930761813 :0.7713987546134521 +all:0.5449414385882987 All:0.0774885444543905 two:0.044886074550233974 and:0.01741999161682524 :0.31526395079025155 +final:0.06983054075758185 very:0.0504063702814824 General:0.04858603675392634 next:0.04649522734062006 :0.7846818248663893 +in:0.2564581344179621 the:0.10907656111844015 of:0.03410280237705445 constitutional:0.030392356860219658 :0.5699701452263238 +of:0.34501513925850563 to:0.17586592488552835 on:0.12097009621282916 about:0.07593239002468596 :0.2822164496184508 +been:0.5104734709901416 a:0.1215838165746896 made:0.05063682464612978 felt:0.03638517427848877 :0.2809207135105502 +it:0.9057205306758807 aad:0.018267643028729165 I:0.011546705164612073 and:0.006967837886728803 :0.05749728324404917 +to:0.26882679077402066 we:0.14602841655133092 and:0.0671114799875686 the:0.04313855957999804 :0.47489475310708174 +of:0.17414790811874933 and:0.10815117755850732 has:0.06208974898822881 to:0.05652203485479748 :0.599089130479717 +a:0.9586523030106859 per:0.0356862967102703 ter:0.004361780473987406 the:0.000902274068410591 :0.00039734573664591263 +two:0.5594704598064824 twenty:0.23597716915071448 three:0.15456582379200315 five:0.03484102138053565 :0.015145525870264487 +far:0.38604817880694914 much:0.12133298687438475 soft:0.07872777616697234 hot:0.03315895066362763 :0.3807321074880661 +the:0.9103044530211214 of:0.05879343105402834 a:0.009098058314966392 was:0.007316898472226947 :0.014487159137656832 +view:0.772289632322963 desire:0.011464799080506198 supply:0.007798069111253728 right:0.004945152116872284 :0.2035023473684049 +quarter:0.5947997337643015 corner:0.07568174619734032 i:0.006944058159011863 I:0.006054101443179859 :0.3165203604361664 +of:0.44155733847156053 among:0.1499128389978722 to:0.14819163858703607 for:0.059311332331564534 :0.20102685161196676 +the:0.6773916885870136 many:0.16890047950683829 recent:0.08169522626883233 three:0.019423254144424876 :0.052589351492891026 +be:0.13427186675997885 he:0.07280746049742708 ho:0.060940489406918284 tbey:0.02178225306246057 :0.7101979302732152 +the:0.33931235702569423 a:0.22839762455353657 our:0.09787119731223738 in:0.03815359166318293 :0.2962652294453488 +daughter:0.54683727324034 middle:0.020021716222329504 sister:0.003966327892796643 girl:0.002716085926487774 :0.426458596718046 +favor:0.2663986638243879 view:0.1339601785561697 the:0.07000348918361125 times:0.058200903500817025 :0.47143676493501413 +of:0.007910466425085501 pound:0.0031119509326533374 pounds:0.002809160365975017 acres:0.0013877639797638258 :0.9847806582965223 +in:0.5656903597451594 the:0.1395423243720303 ihe:0.12324548039132875 having:0.05233140529584147 :0.11919043019564014 +that:0.09123895312637825 one:0.08197072782300864 chief:0.07665259415062052 a:0.06568776182463087 :0.6844499630753617 +of:0.3555480480535915 and:0.17465201741104724 in:0.15045820632198115 on:0.13685743251271412 :0.18248429570066604 +Washington:0.04940369652069517 Virginia,:0.01408047747129445 two:0.011717083347020136 his:0.009212644923251082 :0.9155860977377391 +great:0.02217758084866591 the:0.02016468305240578 old:0.015177571154067643 most:0.014629479245998032 :0.9278506856988625 +years,:0.056448581502180795 free:0.017368902019905333 miles:0.016761928005668572 and:0.016752431061033062 :0.8926681574112123 +to:0.2640934271899291 as:0.23247577217483634 and:0.10426318961822038 ought:0.09877516227277996 :0.3003924487442343 +carry:0.3367196665160295 sell:0.0032729979871538003 find:0.0027320472428017544 com-:0.002729393547653487 :0.6545458947063614 +in:0.4779655468222847 In:0.20226072343120421 to:0.12749092186394576 by:0.06333354074345418 :0.12894926713911117 +be:0.1607642355929134 for:0.13806604199442732 next:0.09790430644520678 and:0.049977444787697806 :0.5532879711797547 +use:0.14334730370920098 aid:0.13762204136908898 consent:0.08149273664382005 necessity:0.056713004503980646 :0.5808249137739094 +chance:0.10311234414034967 as:0.09070953754320245 money:0.08676577623698244 entitled:0.07221069040065566 :0.6472016516788097 +process:0.07470358657997181 name:0.0715197550851926 production:0.06246333924918339 District:0.060614429615416784 :0.7306988894702354 +was:0.036553338180537374 as:0.031193152824088587 he:0.007103302240832135 of:0.0034112230997109406 :0.9217389836548309 +in:0.20944940406059254 by:0.19190740968919842 with:0.15587755511832194 to:0.13067282655186646 :0.3120928045800206 +the:0.7121626893714504 a:0.124383255846214 tbe:0.11339783528843055 one:0.02757495229485343 :0.022481267199051688 +with:0.26396362481536 be:0.22711409682015402 the:0.18021312775873918 to:0.017079892938213728 :0.3116292576675331 +is:0.19016235718613347 do:0.1640563077216543 are:0.139400109481147 does:0.1089213055168779 :0.39745992009418746 +with:0.2750208241816117 weather:0.031049278140196198 already:0.03092350773256545 American:0.02764115315545984 :0.6353652367901667 +the:0.19052417526460982 and:0.11536012758343306 our:0.079318632157261 in:0.05977133570352632 :0.5550257292911698 +we:0.9999982412575497 I:5.748940511012746e-07 he:3.9275689270399987e-07 they:2.657545646716399e-07 :5.253369418154863e-07 +It:0.17265868093612532 I:0.10597686026113666 He:0.10012672078033091 and:0.09860781805719297 :0.522629919965214 +your:0.2956759868028314 the:0.2670641125407759 me:0.07578491406710595 Gen.:0.0668805947862736 :0.29459439180301317 +ance:0.10329124781586883 years.:0.03710444204651571 him.:0.028286523840986073 them.:0.022977061692208277 :0.808340724604421 +the:0.03948373863625224 Pennsylvania:0.037926214649852 this:0.009148252133257295 another:0.00768302925577974 :0.9057587653248587 +secretary:0.2673912117674494 car:0.010247813458583752 capital:0.008620050311438386 office:0.007581054841140128 :0.7061598696213884 +and:0.27321112289722865 than:0.15235901137086813 so:0.1503367162085146 strong:0.11162510471968563 :0.31246804480370305 +the:0.6590065144118905 each:0.10005180563359953 his:0.08224853012298852 a:0.04472938820751747 :0.11396376162400405 +he:0.3715828468754786 and,:0.20399268106127605 but:0.20390558894798075 and:0.09901828708943085 :0.12150059602583374 +the:0.6444707953745092 a:0.15610767277811988 its:0.07238578697609743 tho:0.06558301440126783 :0.061452730470005566 +In:0.985735099466421 of:0.009253471741600489 ot:0.0009601169173032481 in:0.000952044383585391 :0.0030992674910896956 +second:1.8351326092278825e-05 fourth:7.104945582211682e-06 line:2.889814117021391e-06 the:2.886988679553473e-06 :0.9999687669255288 +open:0.042915001909010216 move:0.042760805848757986 turn:0.042697896519684184 cover:0.037002917372418606 :0.8346233783501291 +In:0.3082603150207178 it:0.04239209384152418 it.:0.035068637475262655 fed:0.02964241741724895 :0.5846365362452463 +and:0.14312912904996125 of:0.0671464181873187 the:0.06708818703758566 from:0.0550660433220742 :0.6675702224030603 +the:0.9234537888821702 tho:0.0384097738535497 this:0.011228099299800502 a:0.0015052735032775667 :0.025403064461202298 +necessary:0.03441600239781991 new:0.022236481481380455 of:0.01643110985408532 great:0.014934047494778608 :0.9119823587719359 +all:0.40475877710598124 and:0.09230357174665721 that:0.07331751263480403 while:0.0638571593142364 :0.36576297919832107 +house:0.17911095392606788 company,:0.03738282931729615 jury:0.018881907244225806 leaves:0.01630831007250345 :0.7483159994399067 +the:0.4863135421703875 tho:0.44850866347066565 a:0.02467628867133589 their:0.02162617640477234 :0.018875329282838728 +a:0.2630951562535816 as:0.23112000781694497 the:0.10531435236952391 and:0.1014468522552347 :0.29902363130471493 +good.:0.028560370993614706 Is:0.016285976841733506 others.:0.005826067001410403 it.:0.003914149788706163 :0.9454134353745351 +day:0.6141693516715852 It:0.10115688851922258 who:0.04380079646728625 This:0.0337438193433263 :0.20712914399857985 +few:0.37383257929043306 many:0.30013649014698235 published:0.17762031855473914 the:0.002464771956122215 :0.14594584005172329 +good:0.6484490079928072 choice:0.02482846210361198 the:0.00398633758791442 his:0.002214961925836037 :0.3205212303898302 +of:0.4240242666150548 the:0.20494204540420208 and:0.1320312805614124 this:0.12382083637358292 :0.11518157104574785 +the:0.4666464153735372 peo-:0.110741498331701 day:0.08779972922911167 a:0.07638343584085962 :0.2584289212247906 +on:0.21166348455458747 upon:0.09230858121219308 seized:0.06629295717773463 ed:0.06194726638818168 :0.5677877106673032 +were:0.275963803762923 daily:0.14978780137019873 was:0.08295599018326136 while:0.0771700154983597 :0.4141223891852572 +the:0.5555503247595064 a:0.04637619016676619 their:0.04366305753386643 his:0.03549579558582668 :0.31891463195403436 +many:0.3132546664179846 few:0.2681239692063729 little:0.04239626077217265 much:0.027250502039181865 :0.34897460156428795 +proper:0.6547695649501376 a:0.10809679067878682 some:0.08634741355456553 the:0.07887136140572146 :0.07191486941078849 +declared:0.9997618571436351 at:0.00012566342381910522 of:5.506393214220162e-05 in:3.3887580773196566e-05 :2.3527919630402832e-05 +at:0.5518155512462182 the:0.20152627316694904 it:0.16938892442123385 a:0.013709799753141651 :0.06355945141245727 +citizen:0.04666652322584121 election:0.03520359073453853 rights:0.03458586310353206 man:0.023885604520451284 :0.8596584184156371 +seem:0.5961111607774089 stop:0.10076401196951519 want:0.05052952023428565 need:0.02535714728630636 :0.22723815973248387 +to:0.18120914268794977 and:0.12599794610993356 the:0.10049867446388983 her:0.06336552166799422 :0.5289287150702326 +every:0.11703690218142879 proper:0.09834390220746511 another:0.09085250942296541 noble:0.07466859169623592 :0.6190980944919047 +the:0.7480048506803602 that:0.11263488211258453 a:0.08714660553524513 tbe:0.03005958445046412 :0.022154077221346075 +on:0.29599532730623357 North:0.10758967459395617 South:0.09798421758259802 West:0.0957290692783319 :0.4027017112388803 +points:0.05527878345798035 and:0.04858668389689136 feet:0.043721494711270834 looking:0.02855733057039646 :0.8238557073634609 +in:0.3150486586531657 caused:0.21472967519318037 of:0.07213814213440617 over:0.07130856803454608 :0.32677495598470163 +and:0.14706557839807188 known:0.046446041739609804 j:0.04510333237279767 Is:0.02748744687423378 :0.7338976006152867 +he:0.5982047059675346 be:0.05488786152413251 she:0.03676255196487252 lie:0.030167396861956144 :0.27997748368150405 +to:0.050927745091135214 own:0.031303107001068156 a:0.022702829036356367 the:0.020443805314501646 :0.8746225135569385 +of:0.5484208237173515 tract:0.37767708159821606 to:0.01870354676624067 ot:0.00833938775113048 :0.04685916016706141 +meeting:0.07009564078914503 front:0.04709646664752406 plant:0.04199075825384863 people:0.029898358388677323 :0.8109187759208049 +that:0.5548712734866552 or:0.33515277461372084 recorded:0.002303542513845226 upon:0.0009616708373655923 :0.10671073854841324 +of:0.18009290547805315 and:0.1466141195358073 in:0.1372486238539671 on:0.106906733309409 :0.42913761782276355 +at:0.3096596616910599 By:0.21038018543849285 At:0.17889988263628365 of:0.10584135380865327 :0.19521891642551026 +to:0.20507092268901653 and:0.1974057516270438 in:0.16920789830953145 of:0.11805548000322365 :0.31025994737118473 +been:0.5879801687477949 about:0.11281246805803313 was:0.01604599039042837 already:0.004960101599349959 :0.2782012712043937 +in:0.3875077840366108 to:0.3299252167434914 by:0.09980228136189961 of:0.08156783960026384 :0.10119687825773414 +party.:0.1442700601123553 money.:0.10682630483711339 opinion:0.0378698535374043 hand.:0.03494961749906826 :0.6760841640140589 +the:0.39948021917787246 a:0.04062674615966153 his:0.02934890272151893 this:0.025941651236352347 :0.5046024807045949 +most:0.9943590186238381 the:0.0014155582019505166 his:0.0011457603367019743 much:0.0010595706466409406 :0.002020092190868329 +the:0.20900238033415075 at:0.1768011708704497 a:0.14667833632677407 another:0.06723045706253544 :0.40028765540609007 +or:0.502003690143915 by:0.0834005826610055 the:0.0465753225120825 for:0.02722191317750315 :0.3407984915054939 +of:0.14591913939493711 and:0.12558000313696957 the:0.08884653016498967 a:0.04422446905970468 :0.5954298582433989 +and:0.13144850243964784 to:0.08528685539433672 the:0.0761334170124503 of:0.04911879984984427 :0.6580124253037207 +really:0.09578680767436307 and:0.0775649901782234 can:0.07253983760910597 the:0.06012960694903332 :0.6939787575892742 +of:0.27843114075464587 No.:0.09661653975513185 and:0.06149191930925078 No:0.02429207280688368 :0.5391683273740878 +the:0.8317401488600986 his:0.09568384849479508 their:0.04605196933268779 her:0.014503482882252483 :0.012020550430165986 +city,:0.31283583852355973 place.:0.08927004703637914 city:0.08043485116335995 city.:0.07788982371948108 :0.43956943955722005 +on:0.23995536101910991 is:0.19770613657443437 of:0.17419533452069555 was:0.13239014606444352 :0.2557530218213167 +M:0.5201232051089104 going:0.0033050766522649258 and:0.0014279351765584128 as:0.0011853083016770708 :0.4739584747605892 +be:0.32368601489078064 have:0.044149157787396476 follow:0.03584040535388492 take:0.029997879207237434 :0.5663265427607005 +of:0.32914157738185035 to:0.21449816468328778 and:0.13916544968947597 is:0.09302459247200384 :0.22417021577338203 +the:0.22544830351045989 and:0.18715484516664094 The:0.09059686056316334 in:0.05019181560053211 :0.44660817515920376 +of:0.2660632501001191 upon:0.12372846950339751 on:0.1119475152117565 to:0.09011705294443634 :0.40814371224029056 +be:0.9891046685218735 bo:0.007181518352194569 he:0.0004723521816442252 the:0.00036419193386911787 :0.002877269010418488 +the:0.0245619655922427 present:0.02099523893868345 of:0.01956029740959784 state:0.01938427276107129 :0.9154982252984047 +gave:0.2239463819217604 with:0.1544824809128404 to:0.12196319737208895 ed:0.10193646651859294 :0.3976714732747173 +to:0.31630650943538235 of:0.07014473025602277 iu:0.062210712981168724 and:0.054772530956704056 :0.4965655163707221 +burned:0.15710319192992414 slight:0.12762111830766099 severe:0.12291766553489313 broken:0.11811979678911018 :0.47423822743841154 +and:0.08713966492779551 as:0.035147564043265925 or:0.0350242283223197 .:0.018724746380693182 :0.8239637963259256 +and:0.3830727181953814 of:0.20545746130447654 out:0.11505985613054033 had:0.05422963574774369 :0.24218032862185804 +purposes:0.29823578251546345 said:0.07459092355863262 was:0.06257615192250895 im-:0.05990895092174993 :0.5046881910816451 +to:0.9808280444923382 lo:0.002668636936497805 o:1.6273506180304684e-05 io:1.289408644636685e-05 :0.016474150978537407 +ture:0.3526966865121541 or:0.0778177337208925 and:0.07462152511906883 of:0.061697751881500514 :0.4331663027663841 +the:0.2251348799431662 v:0.14920817573043524 to:0.03787563614866285 and:0.03428104961419792 :0.5535002585635377 +finest:0.04095336806323122 most:0.03132474139804461 largest:0.0193588872834347 world,:0.01788216569619824 :0.8904808375590911 +not:0.3982600942666463 worth:0.2421751066170087 Is:0.1387224771312358 always:0.13650255833843616 :0.084339763646673 +who:0.05274874477216945 terrible:0.03626089792092969 States:0.03168242566590144 homes:0.03163289799152102 :0.8476750336494783 +narrow:0.07075862872459462 rapid:0.012137467496855625 severe:0.009177521174881647 dry:0.008613783882451993 :0.899312598721216 +condition:0.03421602975549157 position:0.023827544929276308 wages:0.010419691175591425 blood:0.004609512921680817 :0.9269272212179599 +was:0.2542928335678457 is:0.15600489214744873 had:0.12212004521018387 has:0.07835249960760314 :0.38922972946691853 +asked:0.05141431228044625 and:0.03360228150643924 only:0.030169828759664917 body.:0.020272483809210647 :0.8645410936442389 +the:0.02330129524610779 went:0.02186253393313967 began:0.017842253600210616 wife:0.017494220138988534 :0.9194996970815534 +;:0.08245599916665035 aforesaid,:0.04430357518044259 township:0.03900330043766275 in:0.038236129027412226 :0.7960009961878322 +up:0.006871851957540218 !:0.005123808049174004 to:0.004789431315086314 people.:0.0036769992001021217 :0.9795379094780975 +The:0.23591506794512493 the:0.2281987874095611 and:0.10065388453341521 of:0.05357300925032026 :0.38165925086157854 +saved:0.8669970554329794 cured:0.020449899727695012 another:0.014850952967505104 found:0.010665105328148353 :0.08703698654367187 +such:0.833031635034353 the:0.05332197014518134 this:0.012571403849886047 any:0.004613257059247986 :0.09646173391133153 +and:0.04623813139045546 the:0.01614462904656623 but:0.013600620535535408 white:0.01289071741095469 :0.9111259016164882 +hot:0.10789174496102034 living:0.038189476632461174 and:0.030564810845448726 come:0.021438183494926627 :0.8019157840661432 +March:0.2893045861844749 and:0.12316234484325524 D.:0.10216557129315393 George:0.059658338828718196 :0.42570915885039773 +sum:0.07823036473939625 business:0.034270905186114614 change:0.025477971816561258 amount:0.0214881855050115 :0.8405325727529163 +the:0.5775629677895173 Senator:0.26571267812079347 this:0.1244826601867212 a:0.012868039956177002 :0.019373653946790952 +and:0.05078855025294502 Book:0.01771811204477207 Committee:0.014276313869013261 was:0.013874465506426672 :0.9033425583268431 +the:0.38514271085610285 a:0.09785546719452336 tho:0.023553072607474863 an:0.011393038359354037 :0.4820557109825448 +had:0.7843133940775159 are:0.1278227624336367 ought:0.03656446680973227 have:0.014295193827625114 :0.03700418285149005 +of:0.011918275855292612 or:0.009919181074312526 and:0.009219997315977816 for:0.005434494619436522 :0.9635080511349806 +what:0.1353904835599601 the:0.09267723967212849 that:0.07875542629019905 to:0.024976705638392535 :0.6682001448393199 +ment.:0.06893829111287539 morning.:0.00898921292358693 and:0.002049986837492518 .:0.0018952907802841747 :0.918127218345761 +and:0.16740755173111702 of:0.14386954344351363 the:0.08130509959785655 to:0.05252183147321023 :0.5548959737543026 +I:0.5118704115831545 to:0.13327827968706463 Some:0.07342760796667122 would:0.06120804422691362 :0.220215656536196 +tion:0.056056266226103296 day:0.034000676567029105 ment:0.02521755217872181 of:0.022467013335500798 :0.862258491692645 +of:0.6714287839327058 the:0.13233751132228772 which:0.0768009851944416 and:0.051946729424752404 :0.06748599012581243 +press:0.022221020142204735 change:0.017637459716559264 port:0.011861101552076809 pressed:0.0040090666220077 :0.9442713519671515 +has:0.35255224831384313 is:0.30692812074314585 will:0.11812866631863704 and:0.07575647888193056 :0.14663448574244337 +to:0.7353590298919177 and:0.22962412908269797 on:0.008973910451797153 that:0.008560282260085381 :0.017482648313501725 +the:0.5008358407756627 other:0.06032465828594338 our:0.050868312843200966 tho:0.04286381595959441 :0.3451073721355986 +acts:0.040926136750398114 choice:0.027921677263060777 object:0.027909633623093667 lives:0.027084470501075292 :0.8761580818623722 +in:0.17025653068929228 by:0.09293519694370485 be:0.06979931643130194 at:0.04262837181981096 :0.62438058411589 +man:0.6246443198866685 woman:0.10776557977394728 witness:0.03257712525055948 husband:0.027945718078845775 :0.207067257009979 +general:0.06797048453576468 legislation:0.04636132449328209 city:0.041179452983454656 public:0.040470071521345775 :0.8040186664661529 +and:0.2643832459115313 of:0.08193325714808002 But:0.07495881849730626 And:0.06498528662419026 :0.5137393918188922 +and:0.061252649609743616 called:0.03723187929484121 came:0.033154123658874136 of:0.032483834007448475 :0.8358775134290924 +only:0.13062511702245702 and:0.12050780106774966 thereon:0.09640167081350635 men:0.06487013131691097 :0.587595279779376 +bridge:0.06096795357376548 district:0.04506770168862537 house:0.04272114478590111 fire:0.026045791179558814 :0.8251974087721493 +sent:0.21926529706904674 got:0.17867106879536018 went:0.11188995110552472 noticed:0.10030382199040501 :0.3898698610396633 +was:0.3197013371183472 who:0.23644745768799205 and:0.052969205057103785 had:0.04198314733407421 :0.34889885280248284 +in:0.2743923688049598 smaller:0.2271978165069205 higher:0.13812615423115504 best:0.13405084860801128 :0.22623281184895333 +up:0.8586120902687161 in:0.04405766787752696 In:0.03584958840366457 and:0.02976139406030586 :0.031719259389786765 +on:0.15901386650094268 ing:0.04978553250872787 and:0.04469752162990465 than:0.041955857276617374 :0.7045472220838073 +of:0.20037938786511839 in:0.15540226433894036 and:0.11637983668037061 from:0.1040452247224547 :0.42379328639311603 +issued:0.23540175200114843 argument:0.11965554778207736 space:0.029738542160723677 charges:0.02649694152920305 :0.5887072165268474 +this:0.39544265719327615 and:0.31029317538039664 und:0.15141999325438632 a:0.13759360932796116 :0.005250564843979653 +matters:0.3878323297746883 question:0.11482412202661964 and:0.04533065944225784 some:0.044930999637243965 :0.40708188911919013 +to:0.3135069825918541 and:0.14186601440488933 in:0.08001046711177427 all:0.06649268240111543 :0.39812385349036694 +a:0.8265186937001517 the:0.06941456031329749 at:0.046612825839522164 n:0.013369775622704428 :0.04408414452432415 +the:0.6179751800420367 a:0.07148420215997009 from:0.05334019937106075 out:0.040307218956269465 :0.21689319947066307 +war.:0.0028236803880825633 life.:0.0024027724588716872 them.:0.0014895252327960155 us.:0.0007958300188797775 :0.9924881919013702 +law:0.2234351247808443 treaty:0.0533893542951542 City:0.04474862583751728 Secretary:0.04068748837555136 :0.637739406710933 +bonds:0.003294932934612195 and:0.0030750468426584483 States,:0.002045306699708947 tion:0.001576646146223631 :0.9900080673767967 +the:0.31038496390610426 a:0.1720666644077519 it:0.09906004346544052 him:0.06901310734092905 :0.3494752208797743 +and:0.4625497373010921 money:0.026883803782005316 until:0.020250416541685166 ed:0.01750848519350015 :0.47280755718171746 +English:0.29480323852352475 bills:0.17954446573805272 places:0.03978347981727224 matters:0.023929688103376656 :0.46193912781777363 +turn:0.0681088135530308 port:0.03764560741338064 organization:0.01451573205306303 call:0.011257560631725188 :0.8684722863488004 +much:0.09260091848567327 far:0.05170465673895578 he:0.04835086547926439 it:0.04348814250480968 :0.7638554167912969 +and:0.5169659759099043 but:0.2328756289727262 as:0.09656763646763562 that:0.08061551029334504 :0.07297524835638877 +of:0.29911217498116544 for:0.20410130858576625 to:0.1697962471883529 and:0.14031684787312118 :0.18667342137159418 +to:0.7556490596682537 would:0.11359080665420913 will:0.10079386417479547 they:0.01224894846845983 :0.01771732103428196 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +the:0.4513712724226607 his:0.19443486630336787 a:0.05399079415752391 Mr.:0.027234131894148136 :0.2729689352222995 +increase:0.028852863400509122 drop:0.027228331604502408 break:0.026502536110245674 effect:0.02385091128974228 :0.8935653575950004 +and:0.7378006965127094 The:0.04389800408397677 an:0.021516502162521295 aud:0.01879191673329539 :0.17799288050749723 +the:0.7442937113660534 tho:0.13143545073400736 that:0.06455962089486697 their:0.022825399470911126 :0.036885817534161126 +is:0.49081431573268874 was:0.25504573593646285 are:0.10366075509968074 Is:0.06563883488026927 :0.08484035835089827 +ho:0.14707219584898618 am:0.14519400140818048 to:0.06888616246927447 the:0.03658075726881778 :0.6022668830047411 +hit:0.840445307313199 come:0.04605790541135234 notice:0.02686714613939105 decided:0.02215557462857807 :0.06447406650747954 +a:0.24313043807700174 the:0.19428615190853263 my:0.08556072798007427 your:0.060769586501621696 :0.4162530955327697 +the:0.5144421938208387 a:0.05656425968367005 his:0.0286115270423941 tho:0.02122415596338535 :0.37915786348971187 +on:0.8349878676347928 of:0.036622760032504996 to:0.03127071311410016 by:0.024051081612186605 :0.07306757760641544 +his:0.5245899590645492 my:0.23093710083381208 her:0.06805215222606675 active:0.03446096457187315 :0.14195982330369877 +before:0.46927485506599925 from:0.30606123829974613 was:0.05342836011501616 and:0.03948897486517967 :0.13174657165405876 +say:0.14107626069553472 see:0.053940309827189656 state:0.03956828906396689 show:0.03956286064603731 :0.7258522797672714 +1st:0.10762695462018058 Mrs.:0.09687487584237062 of:0.09554581874993416 John:0.08247346330241608 :0.6174788874850987 +own:0.0764920500292199 very:0.044205051914472514 and:0.010645240904824655 a:0.010074424433214912 :0.8585832327182679 +10:0.13617562624144683 40:0.06007005202674361 20:0.03900393333720673 of:0.036766957965436435 :0.7279834304291666 +a:0.37785041278541215 the:0.16685075256774173 an:0.05492945576948435 to:0.03574802117579892 :0.36462135770156273 +hot:0.5466959862963311 you:0.37368368402820173 not:0.07455243630905903 I:0.0029070419338744517 :0.002160851432533673 +in:0.9509172023042745 In:0.03109017831577544 of:0.010641759260830982 iu:0.0038399378339664565 :0.003510922285152625 +the:0.3678046269285351 The:0.3182550623522839 this:0.09497105135831417 in:0.05640315581711122 :0.16256610354375564 +the:0.4160262480684543 a:0.1423196914298291 any:0.0534348870380991 its:0.04054362945623335 :0.3476755440073842 +and:0.25357271732820946 but:0.053311873285067694 But:0.04737121252124656 Then:0.03860831266949064 :0.6071358841959857 +the:0.14116359540431658 an:0.04145742649831168 in:0.031000490180360267 bill:0.020427377043914324 :0.765951110873097 +to:0.9681126270408488 lo:0.015898280915703607 cannot:0.007440673742199532 and:0.0021136434838571042 :0.006434774817391006 +ments:0.33669692874027785 and:0.1125098864195033 ready:0.04852621722635582 who:0.02870542074698754 :0.47356154686687546 +man.:0.030032224876714315 not:0.018313635542512946 was:0.013966786114218059 .:0.003975811802168216 :0.9337115416643865 +and:0.4953247311511117 while:0.19275483481940295 till:0.0994380703378716 but:0.08858870334962816 :0.12389366034198557 +of:0.7182722977862918 is:0.06731780084349835 or:0.038168101754433574 and:0.03739567778042022 :0.13884612183535605 +the:0.472613711179495 this:0.06374751921347017 a:0.05580201185485275 tho:0.05553006510225102 :0.35230669264993103 +other:0.04288481419313471 Brown,:0.010701286616059437 Louis:0.008712394902001642 General:0.007997592801171339 :0.9297039114876328 +the:0.5065858985886357 a:0.21260137709663374 any:0.08180005853178612 some:0.0691031488150807 :0.12990951696786376 +son:0.5370462933617853 brother:0.13818599250018 member:0.10606296730021872 daughter:0.037466847677643675 :0.18123789916017222 +of:0.3774657687413531 and:0.14145044417283284 to:0.1100319281544323 in:0.1017607464303338 :0.26929111250104804 +of:0.9078527238898058 at:0.03158161755166742 will:0.011831981267724721 from:0.005127450899804309 :0.04360622639099773 +of:0.847242323151912 ot:0.09366143064299719 and:0.02487997585686107 I:0.01724950215044473 :0.01696676819778508 +the:0.29827278745254326 our:0.044001327510106596 make:0.036086582945508 their:0.03506932854315801 :0.5865699735486841 +the:0.0027930412578533828 In:0.0014630175593440158 2.:0.0009649855129870109 a:0.0008956329182226582 :0.993883322751593 +proceeds:0.9998468534530998 costs:1.9548374862540165e-05 court:1.052784387651599e-05 result:9.740888214641451e-06 :0.00011332943994655075 +under:0.5309609877240485 the:0.12930668512882504 Under:0.08734206150896663 The:0.07399807494469551 :0.1783921906934644 +the:0.4589812110320695 Mr.:0.11016918037399999 his:0.06293397708524627 a:0.046186388306260796 :0.3217292432024236 +between:0.21469000701091495 of:0.16248321273903918 or:0.06547430832786 I:0.06160320142552029 :0.49574927049666545 +a:0.14344896954161798 the:0.11510654660278528 been:0.05809165834490204 in:0.026653864403039337 :0.6566989611076555 +and:0.8811939412899813 but:0.022928684392347704 so:0.020582866395107608 as:0.02017192263692912 :0.05512258528563412 +com¬:0.269648122506084 par-:0.22947789377243943 com-:0.12107212460651422 ac-:0.0024291708701877535 :0.37737268824477466 +and:0.04759733436411019 crop:0.027526455617956525 or:0.014041813296368088 grown:0.00742198095480647 :0.9034124157667587 +a:0.7020540609179092 but:0.08731206102772848 the:0.05463238965185812 A:0.048501571128532615 :0.10749991727397142 +was:0.4711947090389281 is:0.10198133880676061 and:0.07715538046456658 as:0.05986285629962866 :0.28980571539011596 +be:0.9194215089182719 ta:0.030514029311620887 have:0.024307244576664607 see:0.010146564799722016 :0.015610652393720578 +and:0.15439574370392312 says:0.07718591947902276 so:0.05184253814343163 say:0.04037383343583765 :0.676201965237785 +of:0.09158154116182257 the:0.0832483002302013 and:0.06785752584724851 or:0.058565731258708474 :0.6987469015020192 +on:0.2996958532396152 from:0.2124372812763489 to:0.17203646308200057 by:0.15454599558431784 :0.16128440681771755 +why:0.26491783362123605 I:0.23779716626009895 they:0.20027182835317875 we:0.15264034909887728 :0.14437282266660909 +of:0.27809390531752365 and:0.1782783794215658 the:0.04843378261501128 The:0.046385186569121294 :0.4488087460767781 +the:0.4686191460277898 a:0.17553006788352313 tho:0.03128779772028842 bearing:0.0291117823787805 :0.2954512059896181 +the:0.13793441192719455 and:0.015858629497576132 private:0.014726639691981113 ing:0.011695479909149082 :0.8197848389740993 +wise:0.19493519091640954 published:0.009830798988860558 bought:0.009455078732071902 increased:0.009373592134233775 :0.776405339228424 +am:0.05292635156704854 fur:0.045850721109098394 protect:0.035049530866171484 prevent:0.022363487417311062 :0.8438099090403706 +been:0.08767102064147074 not:0.06565774351191454 given:0.02804788562125823 had:0.01719852008214749 :0.8014248301432092 +in:0.32860857674477434 In:0.1510318681860485 such:0.08249399042166092 holding:0.05918759586116339 :0.3786779687863526 +account:0.06333690419830991 answer:0.038407347970714004 order:0.022060676831296207 address:0.01600129558313581 :0.8601937754165441 +out:0.634167855233063 by:0.048889217431847855 because:0.030180889894532728 to:0.01883379688044746 :0.26792824056010917 +life.:0.0012085176749068779 life:0.0011367939505276992 bodies:9.664304351813894e-05 a:7.559273064389595e-05 :0.9974824526004034 +e:0.16215001388699243 and:0.12401853811488578 to:0.05098508245853864 was:0.045162712959284514 :0.6176836525802987 +the:0.09726421834728909 America:0.03289220751109772 that:0.003316919474439486 war.:0.002053666725472263 :0.8644729879417016 +poor:0.011836847893711531 age,:0.00815994033648877 visit:0.007505403733886955 right:0.004867032398290016 :0.9676307756376228 +who:0.8139926316021975 he:0.06362761951686043 have:0.028064686285050412 had:0.024089038745156426 :0.07022602385073538 +men,:0.3157543555338323 and:0.055088467149183445 that:0.01901815380453393 And:0.010708533837338212 :0.599430489675112 +small:0.508733652436221 power,:0.16590937943979583 way,:0.002472669333552843 hearts:0.0023608858603105316 :0.32052341293011966 +to:0.6792050660289138 from:0.1341267304067652 of:0.07742112149321138 for:0.05527440097678718 :0.05397268109432237 +of:0.3051836144698997 and:0.11683154842200072 the:0.06222633131603908 at:0.025730589810248287 :0.49002791598181206 +more:0.497001299008242 two:0.40496171751041915 so:0.0645211512088412 months:0.0010364260725198953 :0.03247940619997781 +way:0.3097780030105418 war:0.30179556620942727 view:0.06821000530117731 shape:0.04077173139217505 :0.2794446940866785 +have:0.38048646063856245 always:0.17871086767260563 never:0.13097633943528258 really:0.07941029757749687 :0.23041603467605243 +same:0.11689634679534834 the:0.04318105045006109 time:0.04022616092784362 purchase:0.021259989835456322 :0.7784364519912905 +ready:0.5910099778260569 good:0.060090559809289894 prepared:0.036923667028539865 best:0.036838107273591957 :0.27513768806252137 +purposes:0.16375972337692749 use:0.07884763501528846 and:0.06601632603864903 used:0.05452204625943539 :0.6368542693096996 +this:0.3834326193845044 that:0.3195114115899541 our:0.15201234963033416 its:0.01892357077055105 :0.1261200486246563 +mouth:0.0377534533313838 voice:0.027253187858383647 might:0.025718501681530535 eyes:0.019081359988485747 :0.8901934971402164 +down:0.2276477374123286 it:0.10755107324278854 known:0.06415017376245956 and:0.06313232772391356 :0.5375186878585098 +and:0.1277624826405846 to:0.10453165867709885 the:0.03747701841640927 of:0.031192904237354033 :0.6990359360285532 +it;:0.29559571517915084 the:0.20820778398789377 what:0.16045526911104013 it:0.13102297662801476 :0.20471825509390051 +and:0.42038329283573544 to:0.16665784191733055 or:0.09111274685746576 on:0.06779868897721505 :0.2540474294122534 +man:0.43144531143765713 woman:0.3577686241375155 person:0.013957079704371255 ship:0.010587165018632575 :0.18624181970182355 +carried:0.3517915356248806 acted:0.14031539680187993 applied:0.03376965917010355 thrown:0.02071304994574044 :0.4534103584573953 +and:0.13803544777243323 of:0.09274941590689971 the:0.06962256190016577 to:0.0462078036845634 :0.6533847707359381 +On:0.19057033122330624 r:0.11527596189358251 ir:0.11126453653337384 the:0.04855382112898447 :0.5343353492207529 +to:0.3969549239852592 of:0.23454342584665602 from:0.07327512648200432 and:0.04741110421926153 :0.2478154194668189 +No.:0.2709580761565735 County:0.11281379993306197 to:0.058056449624578295 Book:0.04497444671863107 :0.5131972275671551 +upon:0.9183228639968843 in:0.032752759449055056 to:0.02082684577853716 about:0.0148489583804978 :0.013248572395025493 +to:0.9423600774088644 upon:0.004078628080288294 arms:0.004034204317497422 to,:0.0031392230826158894 :0.046387867110733935 +this:0.3158982903630579 a:0.23533299000197266 last:0.18961331702143683 the:0.09418682079900434 :0.1649685818145284 +great:0.0678816843542403 success:0.039094687235643126 valuable:0.032787294513720866 serious:0.025084110440876065 :0.8351522234555198 +the:0.21392850350055906 getting:0.12855535744978577 they:0.07476280317293364 failed:0.04504300345268878 :0.5377103324240329 +to:0.2135157135168947 the:0.04027204939804165 and:0.031881652976155445 be:0.024985675033965152 :0.6893449090749432 +where:0.2630465548469267 Is:0.08400886761466826 against:0.06550944115771992 and:0.06033796015900117 :0.5270971762216841 +ed:0.37515342889649234 en:0.048044301775714796 and:0.04126440848306742 upon:0.035108995325932126 :0.5004288655187933 +estate:0.8683180898875852 property:0.04915352470847318 property,:0.02897809674413183 estate,:0.017130371844783523 :0.03641991681502635 +escape:0.025582965174324016 get:0.011653949009605466 pass:0.009110912623082404 obtain:0.008291101905129461 :0.9453610712878587 +the:0.22913238868227948 who:0.16811940015645377 A:0.040757944343844534 and:0.02363575864030522 :0.5383545081771172 +own:0.10497680673239627 of:0.016306342022880643 most:0.014775739758694385 great:0.008758587954255716 :0.855182523531773 +George:0.010323324778594893 King:0.00937306456389429 Brown:0.003195607908831063 Johnson:0.0030145154038742424 :0.9740934873448055 +in:0.8524112540240337 In:0.12605220447981963 after:0.005924497306974218 and:0.005485840655797359 :0.01012620353337499 +and:0.402718218232921 of:0.16383092342844285 he:0.13087436621547888 which:0.08949601381731642 :0.2130804783058408 +he:0.9996558968159666 they:0.00011316224953824476 she:8.938858089462432e-05 be:3.086412258613776e-05 :0.00011068823101452619 +interest:0.3246942014353068 service:0.2917577112457359 schools:0.10516919498511461 that:0.07090559908137466 :0.2074732932524682 +the:0.2096863425876684 and:0.13102328813141254 The:0.05871969090356409 a:0.05750178225830407 :0.543068896119051 +and:0.17641130912201805 that:0.15175954040484202 as:0.1385547794569356 that,:0.12333519586916267 :0.40993917514704165 +each:0.92557936253792 every:0.07432605106410722 a:4.313605372972159e-06 one:1.5047952820832752e-06 :8.876799731781075e-05 +himself:0.3851201306221192 themselves:0.3528991264468153 him:0.14441775747545202 it:0.0783940792523138 :0.039168906203299596 +out:0.25189937280573615 any:0.13143096283319924 some:0.06275802405711223 back:0.03951234033527822 :0.5143992999686741 +the:0.304355939868585 in:0.15118035249545436 at:0.14015267442485418 The:0.11873468523528237 :0.2855763479758241 +and:0.05349856919578318 office,:0.03129985484736651 office:0.02406859545817679 affairs:0.00979900489254359 :0.88133397560613 +State:0.10770596626237915 city:0.06281082394265407 great:0.034920179083451124 big:0.033603166287851524 :0.7609598644236641 +duty:0.04743332404076997 life:0.04202514950368522 position:0.040470986123142795 wife,:0.02487150903537686 :0.845199031297025 +I:0.12109307189632772 he:0.10965767647949858 and:0.10225459533233877 which:0.09633934111404494 :0.57065531517779 +it:0.2014487943858513 and:0.10330268321622274 which:0.032160935138931604 that:0.029660149155026804 :0.6334274381039675 +the:0.30928234654657377 any:0.23648796602290387 all:0.14002503934110225 this:0.09538615817055025 :0.21881848991887 +to:0.4733165373689867 shall:0.2926147682134376 will:0.10413128538225191 must:0.022872843334864737 :0.10706456570045879 +of:0.13868624481706393 the:0.1196598333360534 or:0.08570149935411725 to:0.08502126853346789 :0.5709311539592976 +eyes:0.3185432643886034 eye:0.15186574068381764 feet:0.040585200565721194 heart:0.022701037270257834 :0.4663047570915999 +services:0.07500584596905631 eyes:0.04107764192763523 friends:0.03717962927563765 notice:0.008358443280106301 :0.8383784395475645 +is:0.30831656448744 was:0.23614575384048103 had:0.1809987401620339 has:0.14783912812197947 :0.1266998133880656 +and:0.24264445183335787 is:0.19923636842809228 in:0.1419700637788688 upon:0.13726845417997172 :0.2788806617797093 +act:0.1318157482334889 class:0.005498778175590019 rate:0.0020172455516530444 power:0.0017595277445179066 :0.8589087002947501 +the:0.9999146465704022 tne:4.414325346823239e-05 a:7.737743372402604e-06 tho:7.392781892579814e-06 :2.607965086468171e-05 +the:0.37091535427938055 and:0.11221752189578658 of:0.07614751360306832 a:0.06620347127030876 :0.37451613895145586 +and:0.4645704893099684 State:0.040452996224739746 son,:0.016897638483425965 made:0.012269439258375424 :0.46580943672349034 +time:0.21290872699071745 and:0.1539244996760059 but:0.13674199607330798 that:0.10793178400251316 :0.38849299325745534 +of:0.1588710989183624 in:0.09719797171229067 to:0.06829377615002007 on:0.06763629283184 :0.6080008603874867 +room:0.09336407613133449 taken:0.06277039755680601 to:0.00720171687234308 prosperity:0.007113235743414763 :0.8295505736961015 +allowed:0.33087846485186584 permitted:0.13305496129513086 suffered:0.057812853752436826 applied:0.04199085510955071 :0.4362628649910159 +and:0.19380942582015936 with:0.1410078480093589 to:0.12828290506321285 the:0.12568064085539568 :0.41121918025187326 +is:0.8385347084890482 was:0.08144817537859315 Is:0.018691539213406938 he:0.0013839022902565306 :0.059941674628695193 +more:0.9217555255525042 right:0.005103732076735408 reason:0.004633945414696906 one:0.004496986466854728 :0.06400981048920855 +suffering:0.46843117910316673 ing:0.22834080587687686 her:0.040726769094881855 free:0.009426822661492683 :0.25307442326358187 +we:0.315223229810058 they:0.267317243518902 I:0.2123753626916521 1:0.04072689430303155 :0.16435726967635636 +the:0.06349211198241668 a:0.04340787149192895 .:0.041536786711799244 of:0.03638195377038602 :0.815181276043469 +and:0.2014046182029636 into:0.1785112400102823 in:0.16658275850204415 of:0.1330273870986036 :0.3204739961861064 +the:0.49183029190096794 a:0.08700331272978486 our:0.06401458501812941 this:0.035564376059430004 :0.3215874342916878 +making:0.18527059655062283 execution:0.1638775180950178 sale:0.08673999537272738 failure:0.08001678345345058 :0.4840951065281814 +payment:0.07622528357999839 issue:0.06707850757929013 attention:0.04484621173756288 opening:0.041923504183218 :0.7699264929199305 +of:0.5471057007564641 and:0.11802591653715162 in:0.057845134201588023 to:0.05163519566874711 :0.2253880528360492 +.:0.05388552361350797 street:0.02870516546193028 B:0.026481968105153783 nnd:0.02439662661064177 :0.8665307162087662 +his:0.30554199208111127 that:0.2574300008658071 tho:0.17419383095644556 an:0.1331721043062165 :0.12966207179041953 +and:0.5078454512081674 of:0.32696636058441264 the:0.01792205182850384 with:0.015316861988111252 :0.1319492743908049 +they:0.18192447805749373 There:0.13809311366196694 we:0.09135649636278427 They:0.07589448837850836 :0.5127314235392466 +city:0.13945102310720256 part:0.12062008518930689 section:0.07131904367061334 day:0.060889369365766215 :0.6077204786671112 +and:0.14094041059480347 the:0.09220429315922189 of:0.0754162806622174 to:0.07343378426262859 :0.6180052313211287 +over:0.1952440033280615 who:0.10941972791611285 the:0.032303505863374875 they:0.03128330886801438 :0.6317494540244364 +could:0.9988302414114871 would:0.00012497147592443165 didn't:8.403754364799427e-05 will:1.2322959805953518e-05 :0.000948426609134474 +days:0.477888036193152 no:0.14408877032664316 for:0.10078857533496942 by:0.057352419559193124 :0.21988219858604222 +impossible:0.6127378843779879 elected:0.0621232509643641 done:0.040326893476761556 possible:0.037770219421466654 :0.2470417517594198 +price:0.7272849192330493 was:0.023926889111962262 is:0.01730581929904512 for:0.011814197997718191 :0.21966817435822514 +by:0.459597208395884 a:0.1473803731614772 the:0.10081447571544747 n:0.06353179687257786 :0.2286761458546135 +than:0.047633660667278546 of:0.010727904130545434 terrible:0.009406837512522265 interesting:0.005799469422051247 :0.9264321282676027 +are:0.8612895289754059 were:0.12509486661253236 aro:0.002123977913412658 arc:0.00179411324235608 :0.009697513256293188 +that:0.10063700239699809 of:0.09298854667399326 not:0.08428575799167248 in:0.06308730784939039 :0.6590013850879457 +which:0.4955571976100567 time:0.10627036755420854 the:0.10229002636303024 him,:0.02312120756814699 :0.27276120090455774 +was:0.21987978739153108 is:0.19286442397789927 Is:0.07732281616033214 had:0.04311808927922236 :0.46681488319101533 +year:0.26239694192328866 week:0.25746983292374853 they:0.09959605563312808 hours:0.07211316174817776 :0.30842400777165707 +C.:0.17966542709080968 E.:0.10775465080092116 T.:0.07868976756151147 W:0.07550495647159874 :0.558385198075159 +were:0.17482856053806933 thus:0.08786929032802927 had:0.08563324773070018 has:0.06711958960394095 :0.5845493117992603 +as:0.23122244088015967 protection:0.06335508281180655 and:0.06006814217039717 to:0.03655465107234892 :0.6087996830652876 +than:0.10071031779288588 in-:0.05173467423145172 object:0.05031469906711331 and:0.028213379254326657 :0.7690269296542226 +State:0.1579108742988222 Government:0.12863279668671482 Spanish:0.12725643392726027 district:0.0364843506005471 :0.5497155444866555 +appearance:0.09713747102704591 number:0.0904656816659589 rights:0.03850883430820552 payment:0.03418783687146035 :0.7397001761273292 +same:0.03967040121573271 year:0.025628920650831364 county:0.02408399460953727 city:0.016205156610397918 :0.8944115269135007 +this:0.6810454174380658 a:0.16871893667715576 the:0.13209372418914095 that:0.012997249237945974 :0.005144672457691464 +to:0.9023405955620035 lo:0.018831590028609877 or:0.016316548850333467 and:0.010124281303382143 :0.052386984255670954 +is:0.33769122858755113 was:0.09478227595469682 goes:0.05237735479135081 as:0.04114239721122387 :0.4740067434551773 +is:0.5700650385746108 was:0.1748701250164199 has:0.07290565551446467 can:0.04859411595446082 :0.1335650649400438 +of:0.10936814659317956 that:0.013581858955788265 found:0.01321136467546417 in:0.010484607668803334 :0.8533540221067647 +be:0.7044052690774855 bo:0.13053505928839743 like:0.014899751409685356 have:0.005789386377242299 :0.14437053384718954 +the:0.3379556852389575 tho:0.09196079757778253 a:0.07782911073306431 his:0.034649054653191076 :0.4576053517970045 +and:0.1938115216977875 he:0.13740514641625962 has:0.11200712851500827 He:0.08803496410521836 :0.4687412392657263 +tire:0.4008588356119644 of:0.021316647510719468 -:0.006938703188731556 to:0.0056053940984418715 :0.5652804195901426 +the:0.41862719138393556 their:0.32187429717679084 aid:0.06660223109205987 two:0.04545985259188281 :0.1474364277553309 +and:0.13349977123211132 of:0.10543686248871592 the:0.04962686186309726 in:0.036560762439160586 :0.6748757419769148 +thorough:0.2013108731861556 permanent:0.11183208734044653 proper:0.1006785442947945 complete:0.09149356300173885 :0.4946849321768646 +to:0.7551506509916952 from:0.24156396638860864 The:0.00023927263975757852 bearing:0.00021089190727480704 :0.0028352180726635224 +Tho:0.05912805175209154 Mr.:0.05636647901897819 In:0.03546519505619308 The:0.030515603154376306 :0.8185246710183608 +and:0.1510850752465272 the:0.07589672115242836 of:0.07206584135428018 Mr.:0.05827292838826076 :0.6426794338585037 +and:0.0839857067437647 of:0.06810083625085492 the:0.05792155049866036 for:0.0376408945877074 :0.7523510119190127 +to:0.9294178367604845 over:0.04416276540956776 on:0.010771027207152952 into:0.006934024511888298 :0.008714346110906346 +lie:0.1649975384387969 from:0.14804972333359973 long:0.0507431269666759 wide:0.043952693796767923 :0.5922569174641596 +of:0.19189651643496505 and:0.14003482757360683 the:0.07382109721091967 is:0.04407889178147998 :0.5501686669990284 +and:0.29294553838165477 to:0.0716774062474145 But:0.01325509710476496 but:0.01106564107106107 :0.6110563171951046 +look:0.20944756126041209 me:0.10094265968930685 feel:0.0548607636463179 them:0.02571415333194854 :0.6090348620720146 +which:0.33552503479514717 and:0.21195765687204546 nor:0.01882780731368104 for:0.009733917494256622 :0.4239555835248698 +the:0.8293210719720852 his:0.11822955614492041 tho:0.008495141824196256 this:0.0033305188389212595 :0.04062371121987697 +and:0.23394874417107597 The:0.08498755875138195 the:0.0848565684316747 with:0.0765060861594871 :0.5197010424863804 +a:0.15407858820991185 the:0.10993047364374745 very:0.04521499353019999 in:0.043907447228488286 :0.6468684973876524 +and:0.07711920099069444 ing:0.022943312684995408 heavy:0.022841135433998353 address:0.020110663270551023 :0.8569856876197607 +of:0.8240362983171361 to:0.03147213523637782 o:0.022557957187725183 in:0.019589600569408464 :0.10234400868935246 +air:0.037045849939551435 it,:0.03281287617430194 this:0.022868591304552623 others,:0.013367608006942804 :0.8939050745746513 +which:0.1620932835928932 and:0.0369988629357635 and.:0.02361450183403334 it:0.016516083714030426 :0.7607772679232797 +not:0.7568052238894935 never:0.09150332980620478 out:0.04258766147306842 probably:0.03476714379885434 :0.07433664103237887 +I:0.12180755588178976 which:0.1035054764621722 we:0.09244519378553419 they:0.061196776957163856 :0.62104499691334 +part:0.17566372694272933 degree:0.087490998734203 petition:0.04875106984897122 hands:0.03913998434595844 :0.6489542201281379 +most:0.5473798024174906 soft:0.08082293006489898 first:0.028111638778647904 best:0.020791594974582772 :0.32289403376437964 +of:0.5472444206415956 and:0.1017538313840297 about:0.08695291722693657 hundred:0.06124701035908738 :0.2028018203883509 +far:0.8321379317413286 it:0.0077243347997098324 made:0.005640928018017628 It:0.005352433136879629 :0.14914437230406438 +time:0.5087248790687766 space:0.26273285465488067 while:0.016749688262070395 lime:0.0023229247222653266 :0.20946965329200698 +to:0.9978313943488744 lo:0.0015354940685676258 of:0.0003177681631252772 that:2.2128921652030755e-05 :0.0002932144977805849 +gain:0.19838868763864043 touch:0.08519299587608571 man:0.06739288975930735 matter:0.04342121048800878 :0.6056042162379578 +of:0.2753913902119006 and:0.15105226891249857 in:0.1427330364461744 to:0.058954588761621185 :0.37186871566780516 +The:0.4296204842444148 A:0.11873681164098157 the:0.1175934212534746 and:0.05954000745456417 :0.2745092754065648 +thousand:0.7022139239233283 hundred:0.2309983180712398 million:0.03167180816892725 millions:0.0018655249632909873 :0.033250424873213655 +such:0.10261915648120633 the:0.08817799130799213 service:0.019573766936871722 sale:0.012976080442220815 :0.776653004831709 +dollars:0.4272516081989892 people:0.21643775887771918 dollars,:0.06588996909549016 money:0.06054779952969994 :0.22987286429810147 +of:0.5653904834236315 for:0.09367829020321561 with:0.08329172067626515 or:0.06276809440997362 :0.19487141128691415 +White:0.0012949669391812857 and:0.0009400862844155341 Johnson:0.0005035553919764014 Smith:0.00017509249176794856 :0.9970862988926588 +foot:0.4088645114461745 mile:0.25767927469962426 year:0.047856758586744 block:0.03445105659557337 :0.2511483986718839 +and:0.15713797319004455 world,:0.06082583160507565 Department:0.05432529840372954 which:0.043378891081334386 :0.6843320057198157 +real:0.22798754855154757 principal:0.09455915245474245 direct:0.08924848686059768 chief:0.08190695889463889 :0.5062978532384734 +must:0.4713008323796586 should:0.38078983697742225 can:0.06780143607437451 might:0.05275403019902294 :0.027353864369521506 +of:0.16355379658524596 and:0.13575262605474273 the:0.04931282987820182 The:0.03246049114322257 :0.6189202563385868 +a:0.21234915240557606 the:0.16265036571809352 not:0.15052205529069604 an:0.04340077609794033 :0.4310776504876941 +back:0.08017910329160982 and:0.058840379598687306 arm:0.05809649265933248 about:0.037376253201014904 :0.7655077712493555 +the:0.9927791169757093 which:0.0009830537628274978 a:0.0003042245519015284 tbe:0.0002155300093131586 :0.005718074700248341 +debt:0.27325775008633874 call:0.13914295374110996 Government:0.10814227014251285 matter:0.08012500336099551 :0.39933202266904305 +the:0.9160448336036199 tbe:0.05705828922143506 your:0.010371192127945388 tho:0.0034707763641685227 :0.013054908682831165 +to:0.14212578503415674 of:0.1097046068700675 against:0.0383919251646154 from:0.030070950230114288 :0.6797067327010461 +old:0.19634937572822783 of:0.0237017129789994 his:0.021229056030870257 do:0.020478964063823945 :0.7382408911980785 +of:0.12847566287534326 was:0.0862163007493679 and:0.05296276699358383 to:0.030711798056831635 :0.7016334713248732 +other:0.3271824266753239 the:0.1864225094035228 who:0.13107827622365503 are:0.13042378651408043 :0.2248930011834177 +to:0.17145035347360546 they:0.11455736553553417 would:0.10280935849812654 not:0.09325840975078499 :0.517924512741949 +strength:0.14547576091776346 face:0.1438449497984189 edge:0.10892677891543469 other:0.07661875047672746 :0.5251337598916556 +seen:0.6520346623264105 been:0.05801349581051306 heard:0.025867605472734343 found:0.018599214652169477 :0.24548502173817266 +and:0.20278610762005983 was:0.16760451031720755 were:0.1433531850562937 I:0.0853520693967643 :0.40090412760967464 +let:0.0019195404473167847 give:0.0017225822332080354 stop:0.001145718974574459 keep:0.0005402245344704732 :0.9946719338104301 +and:0.2155807455947204 to:0.10691166908402353 are:0.08634337142934133 for:0.08599188926096496 :0.5051723246309497 +many:0.1238245076050544 no:0.09215199147312061 ail:0.06860944492893885 two:0.05001424066120817 :0.6653998153316777 +his:0.9509378463138003 a:0.019427860943546548 our:0.011425037449570862 the:0.009115318410378968 :0.009093936882703385 +from:0.3250303406456831 having:0.1865740121640425 being:0.08977102153911219 was:0.059829488094279966 :0.33879513755688223 +of:0.16790838960420734 to:0.15366474053617907 in:0.15338013232696204 with:0.10649896087180113 :0.4185477766608506 +a:0.20205732149818845 not:0.12470244774874836 the:0.12114991765876088 too:0.09646975308397865 :0.45562056001032364 +time:0.5481733090668669 day:0.2373167599725279 city:0.06062616157728558 committee:0.037420515007211635 :0.11646325437610804 +the:0.09067812406469784 tho:0.01521261115863248 Congress:0.010647362194947474 failure:0.010361579160113111 :0.873100323421609 +at:0.5118288709075111 and:0.11996143836940015 to:0.06444575027466191 in:0.03886715519998148 :0.26489678524844534 +do:0.05313820996835764 people:0.012976297122367395 ex-:0.004325898822473512 contract:0.004261586950086561 :0.9252980071367148 +of:0.08054962413230714 and:0.05998686180062178 Mrs.:0.05865707034978535 gold:0.052311774412243245 :0.7484946693050426 +freight:0.08141305236977577 miles:0.016657524948111003 the:0.013758260653520538 herself:0.006027578217301273 :0.8821435838112914 +started:0.2373929770077079 asked:0.09050137776462402 rest:0.0374306569150359 village:0.02030133852653635 :0.6143736497860958 +to:0.8085212338909119 in:0.11987541084906206 at:0.04022483600593239 and:0.012983117832022545 :0.018395401422071262 +July:0.9831087226477467 February:0.015707680214049117 May:0.0009481597031676139 September:0.0001374067328091782 :9.803070222723458e-05 +in:0.03770279293826311 and:0.03657802226535258 of:0.030089008396743413 to:0.02727875154468017 :0.8683514248549608 +the:0.5428829005632408 to:0.1060938514053579 between:0.0886252657582199 in:0.06098315851981645 :0.20141482375336495 +fact:0.8141179494919071 wonder:0.03914188182137672 truth:0.008218603434323948 probable:0.007176625594030484 :0.13134493965836166 +in:0.28220828860783037 by:0.24491539511048654 to:0.1642724437131007 and:0.10221026570459987 :0.2063936068639825 +with:0.9782288145506906 With:0.0015145226766888605 of:0.0012208864734992043 between:0.0011327819868929441 :0.017902994312228294 +and:0.7171988582540149 Well,:0.03388354747324305 not.:0.025899521730234312 here,:0.024483213298566123 :0.1985348592439418 +until:0.24874874347119738 that:0.18030238559094008 and:0.054360741211815986 but:0.024943704498818553 :0.49164442522722784 +the:0.421520516347031 full:0.07238984053223634 his:0.07176738144604453 a:0.06848441212960646 :0.3658378495450816 +thing:0.19581349712127616 man:0.1269220871029746 and:0.050660957276775415 man's:0.045286293120211825 :0.5813171653787619 +the:0.2848691721454465 tbe:0.06146319799252498 two:0.030050798713663014 his:0.012175641469828495 :0.6114411896785372 +ago,:0.887752802658115 ago:0.022979046895141336 ago.:0.013422193844951755 but:0.010136615197625246 :0.06570934140416669 +again:0.04231790064206918 j:0.038803903796276254 me:0.03252816174158784 meat:0.029731138295996867 :0.8566188955240697 +saw:0.1493668453184117 fire:0.08255598051180414 house:0.04687633820136656 residence:0.04048390519206019 :0.6807169307763575 +@:0.15195679295156114 New:0.1353409788571639 per:0.0599903442671477 do:0.038216609632439356 :0.6144952742916879 +of:0.15894451767833193 the:0.15840423805943224 and:0.12025400726133126 The:0.07125394997667074 :0.49114328702423404 +a:0.9990148030159277 bright:0.00029277469898303187 an:0.00024699908468588653 to:0.00013365552603322853 :0.000311767674370155 +as:0.07633557286479817 according:0.05864975603491791 and:0.05044128932397138 them:0.030151973796145193 :0.7844214079801672 +may:0.4662634411610532 will:0.20358134277160148 to:0.15534234293861307 should:0.09326845776839117 :0.08154441536034107 +or:0.34245703890626517 and:0.14549928633642176 them:0.10469307774468317 him:0.05936172926774114 :0.34798886774488885 +at:0.090030431176021 the:0.0370532225350521 ::0.029924491407504233 of:0.02966689816467257 :0.8133249567167499 +has:0.749046026330037 to:0.17543378303789928 and:0.018882918242009793 had:0.015708829939163553 :0.04092844245089035 +that:0.79755273989437 said:0.1952301810427696 which:0.002047555380585386 the:0.0016220263265351016 :0.003547497355739782 +small:0.06891889177006295 natural:0.054609035865269474 great:0.04959746960558096 beautiful:0.039694231125681774 :0.7871803716334049 +that:0.17534353144375406 when:0.030462875769491318 day:0.02560448736041038 State:0.0220105503298866 :0.7465785550964578 +THE:0.21678533886100707 A:0.04852828574719152 OF:0.03171379621704554 and:0.015220851377407961 :0.6877517277973478 +raised:0.23305576835700748 to:0.09278920040918104 or:0.07902585637724374 \\:0.06714308724677158 :0.527986087609796 +will:0.22019588225545583 is:0.16374424683613542 were:0.1618906685387967 have:0.13816851521590648 :0.3160006871537056 +doing:0.007180979376076346 it,:0.006396065411860183 securing:0.004403685547718382 building:0.0042530157958464805 :0.9777662538684986 +in:0.3409913191958029 of:0.31853835625874966 In:0.09571268999964926 found:0.03406862363809028 :0.21068901090770778 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +say:0.12599591863595974 year:0.10534590888667042 It:0.10362196510433132 that:0.06495527801703384 :0.6000809293560047 +must:0.03059628525145925 upon:0.02432180799317352 can:0.021401504524958603 is:0.013450039590917635 :0.910230362639491 +conditions:0.32154683632720127 here:0.2889085497751133 year:0.01526127959946189 years:0.01500815970851128 :0.35927517458971225 +It:0.7700309204458006 it:0.1511482367769913 this:0.0534964383181279 he:0.011817729094503338 :0.013506675364576759 +of:0.8633631739115661 to:0.01959691820853469 in:0.01875955802899664 at:0.014248474132663433 :0.08403187571823924 +how:0.5612221109373342 him:0.1235543666173739 what:0.1227479468008238 nothing:0.10723341697871579 :0.0852421586657524 +and:0.15500199605435147 the:0.05764307510267104 The:0.053833368386125346 of:0.0462380372749384 :0.6872835231819138 +of:0.1365784675912761 and:0.12184777661640052 the:0.07306476090152028 to:0.037504911462910365 :0.6310040834278928 +the:0.17382373489439082 and:0.09415118906845311 of:0.06335402526441317 The:0.046077343705141285 :0.6225937070676016 +and:0.17367051949136353 but:0.14045891843341524 man.:0.023445497676223837 yet:0.02083708921830294 :0.6415879751806944 +in:0.39921718451944865 of:0.25839583368632074 the:0.24852890122564425 to:0.0571752785089124 :0.036682802059673954 +of:0.653436562039766 01:0.10577276433997466 oi:0.09896441894384844 ot:0.09221472688312839 :0.049611527793282324 +Our:0.26364592811751947 our:0.16359590053026649 The:0.036941008250114836 the:0.030619241750552965 :0.5051979213515463 +and:0.22661530606230965 to:0.08490178117951187 the:0.07702109785567059 of:0.07529448712829345 :0.5361673277742145 +heart:0.07708733814560367 husband:0.05755299582230138 death:0.03299558390071583 father:0.030701545309661876 :0.8016625368217172 +proper:0.19021762050015292 greatest:0.041039922615803026 same:0.036201189396706406 special:0.01374647678730537 :0.7187947907000323 +the:0.45092250920601534 our:0.1647060553415955 their:0.12992812002879606 his:0.10941070947102081 :0.1450326059525722 +went:0.5087047878393667 got:0.25644739204810846 had:0.06323233390422986 made:0.0175954053233071 :0.15402008088498778 +the:0.4078946146385473 a:0.28838571568920707 his:0.12847595407319182 an:0.036075483323160205 :0.13916823227589342 +to:0.046696172784827544 here,:0.023814575311096618 required:0.01994461755950681 offered:0.005101249775403829 :0.9044433845691652 +a:0.8719387439306314 the:0.11108208487901179 tho:0.0050063161965814345 our:0.004224422101188686 :0.007748432892586808 +John:0.007048073161541476 W.:0.006227250067602943 George:0.006002347245489825 and:0.005911562713438858 :0.9748107668119269 +begin:0.9683363428123319 sell:0.0019511634398974456 call:0.0012752769598600884 earth:0.0008684386400631637 :0.02756877814784732 +of:0.24074134161108302 and:0.11596873154325693 the:0.0457058466551428 The:0.02664973306157673 :0.5709343471289406 +young:0.4164211112271424 dead:0.1280951565364312 old:0.1122743193086683 same:0.08904903020845605 :0.2541603827193021 +with:0.9782288145506906 With:0.0015145226766888605 of:0.0012208864734992043 between:0.0011327819868929441 :0.017902994312228294 +been:0.24249112467909822 things:0.05596091797970629 turned:0.03846089732247394 stood:0.0380719360745617 :0.6250151239441598 +same:0.011008986102991676 blood:0.006641187352635712 or:0.006210534506479311 most:0.0032603843830779364 :0.9728789076548154 +the:0.3119239729257219 all:0.17818818599872185 many:0.09449493113413529 a:0.07278847709137774 :0.34260443285004333 +and:0.11085664667303284 of:0.07452879836450746 to:0.06123769955582467 the:0.04960788106906518 :0.7037689743375698 +the:0.5002248894302507 a:0.07410778580539158 tho:0.025850608112748967 his:0.01845611056682151 :0.3813606060847872 +::0.37702894085307787 before:0.3032099516998156 be:0.10047411831113999 been:0.0734669912576018 :0.14581999787836472 +is:0.145841525429312 us:0.13907552318702524 represent:0.11279819409806022 by:0.10978404877929868 :0.49250070850630384 +country:0.14924619430532085 is:0.13229499742908507 season:0.062418154516971414 will:0.05177871381063308 :0.6042619399379896 +and:0.26308569577055246 to:0.20968911929532813 Block:0.06279570147015912 from:0.04456800550763876 :0.41986147795632167 +the:0.11928961308967201 January,:0.09395825952888301 June,:0.061125921366429414 April,:0.05955505290078036 :0.6660711531142351 +business:0.022524503936157427 letter:0.018156467576932626 weeks:0.011515241852431841 day:0.006944360422073523 :0.9408594262124046 +years:0.8916608124557048 or:0.020485673647867526 days:0.016851446395640512 months:0.012266872231220971 :0.05873519526956614 +of:0.2901178467811403 in:0.14778857657229297 for:0.1312136306203787 to:0.12229588621937267 :0.30858405980681536 +other:0.04863530603737322 same:0.024908764662901366 people:0.018131294403975293 the:0.016206589763707795 :0.8921180451320423 +works:0.044954910267721304 use:0.038632731743929984 work:0.03611051832958516 one:0.03255760906295686 :0.8477442305958068 +be:0.6794401377537964 be,:0.23914504542697293 be.:0.015903363060212998 are,:0.007915261015850727 :0.057596192743167005 +to:0.9173233561171497 for:0.01651361505903262 lo:0.010749382126204505 and:0.007185449419813592 :0.04822819727779969 +visit:0.5335224974478511 profit:0.049322356969225344 dollar:0.03652905924345726 debt:0.014190111278918503 :0.36643597506054765 +the:0.5850218392604881 a:0.06603861958818205 April:0.0642281914662871 March:0.03014714451839074 :0.2545642051666519 +done,:0.9099100608837606 done:0.021696130076657598 seen:0.004441401352140033 said:0.0034996973735873594 :0.060452710313854505 +the:0.5223245167085465 his:0.055517187793147446 human:0.04461081905753473 other:0.03227367836464082 :0.34527379807613034 +and:0.16689261623310797 that:0.028172139459115637 are:0.026404898401459192 was:0.02502249723172666 :0.7535078486745905 +most:0.026052870930942378 said:0.01746920398514186 the:0.015542354677364962 United:0.014001452201073027 :0.9269341182054778 +for:0.10308561781394013 that:0.09326004266210443 in:0.0804401614696366 of:0.07232308106646965 :0.6508910969878492 +New:0.9187972070245721 Now:0.03615439453995899 few:0.02434978683790619 as:0.001983919369336983 :0.018714692228225718 +of:0.37723255670541245 into:0.22591964220362215 for:0.14593219513432984 Into:0.03633920107497027 :0.2145764048816653 +cut:0.998065731592518 be:0.0005993017252648358 never:0.00042193458909195225 run:0.00021849400312699984 :0.0006945380899979954 +described:0.09627196061919448 an:0.09408299894843175 named:0.05993076296960957 all:0.03693078745946878 :0.7127834900032954 +people:0.9407748578700456 ladies:0.013456153033301891 citizens:0.004982920016366839 order:0.0038155029860120395 :0.0369705660942735 +a:0.18051035891141645 not:0.17448738058815125 almost:0.1252057759365678 quite:0.12305151706884458 :0.39674496749501986 +the:0.19196892928449588 of:0.14644548438231575 and:0.10699418584296663 in:0.025492304912917096 :0.5290990955773046 +people:0.7488691272053268 must:0.050817305431868014 that:0.042623793100190724 and:0.01990454445347532 :0.13778522980913918 +and:0.055993130904383605 together:0.025987095725000534 it:0.012843823828109066 covered:0.012451143872635814 :0.892724805669871 +notice:0.6193245601997532 corner:0.3313369256329332 copy:0.010412363413024829 part:0.000784409599343676 :0.03814174115494488 +and:0.06443140877672004 of:0.06293655561590036 to:0.04343581158072605 the:0.03516884715133718 :0.7940273768753163 +times,:0.06650710082408066 states:0.05463159435686853 places:0.02268820948955127 ways:0.005918199071733903 :0.8502548962577656 +her,:0.14677590485088268 before,:0.11269843652357989 it,:0.08997944371972992 himself,:0.07299140851315236 :0.5775548063926551 +him:0.17943103975898175 into:0.1775902987127138 it:0.14028774338165612 with:0.1399507051086941 :0.3627402130379541 +and:0.2122831920010457 of:0.15940624673770554 was:0.14387740453821302 in:0.09040754458612119 :0.3940256121369146 +Federal:0.15617457205860288 General:0.12478605907786555 British:0.10538608178567886 French:0.10021275014830029 :0.5134405369295526 +deemed:0.49120884014959254 in-:0.24852811813838782 ,:0.053688014303395974 not:0.018486395307937352 :0.18808863210068621 +100:0.0069032061186498775 200:0.0025359487411771766 30:0.001327174172896317 000:0.0007230837335118463 :0.9885105872337647 +of:0.4395452911672952 in:0.1601858875937527 for:0.1324978905506401 to:0.12921532300381566 :0.1385556076844964 +for:0.1266129448223976 of:0.10720102752325063 in:0.09034247627175289 and:0.082024862085391 :0.5938186892972079 +payment:0.09400252187340036 chairman:0.09189994730861051 clerk:0.05387565204143964 credit:0.04007492770660646 :0.7201469510699431 +act:0.16323230483061302 citizen:0.1430152414878384 it:0.09733110240277242 which:0.07471558258498397 :0.5217057686937921 +to:0.9650306532606594 of:0.00672916997145193 for:0.006355511320003228 that:0.0032100980874603365 :0.0186745673604252 +the:0.6810982313271792 and:0.055330536562342957 of:0.036286329256631486 The:0.0230965886944192 :0.20418831415942726 +the:0.4369622506053297 this:0.09234614428362937 his:0.07005668283214089 a:0.066437851785982 :0.33419707049291814 +on:0.280377239950635 in:0.23590739826970739 of:0.18090784966138704 from:0.07397080664560425 :0.2288367054726662 +to:0.9890895713830978 you:0.001991000656223344 it:0.001090422423784748 them:0.0005461206886273564 :0.007282884848266799 +made:0.06031661121777536 covered:0.007574614493844991 for:0.0012923241943496228 received:0.0009106782581927166 :0.9299057718358372 +the:0.3969238146199349 and:0.0749999938491146 a:0.04296892928153227 The:0.03962114877833637 :0.44548611347108164 +ready:0.1857969783987479 better:0.030320819986734443 more:0.014449361999396849 larger:0.012112500236588842 :0.7573203393785318 +and:0.16094732145680155 of:0.08020662488281183 to:0.0575748645089164 by:0.049910071210809495 :0.6513611179406605 +And:0.3836241262200714 and:0.3082336804429426 for:0.023489309818304865 since:0.01557718159116369 :0.26907570192751745 +necessary:0.0030296601033674027 .:0.0024487387558063713 required:0.0016995915267915033 and:0.0013483539907563514 :0.9914736556232784 +of:0.036834210970414956 and:0.029911098532614675 the:0.02827212857312975 to:0.0156327384328525 :0.8893498234909882 +woman:0.8006985231229224 which:0.038870310174573396 be:0.030182043845318886 us:0.013462232249690325 :0.11678689060749489 +as:0.30917267832316636 ac-:0.19019115714691548 in:0.16101911731003177 a:0.12067028387427718 :0.21894676334560909 +up:0.04366917896530816 Germany:0.04284633645211093 and:0.030329601570698608 er:0.02084766447478774 :0.8623072185370947 +to:0.3702041074484336 native:0.2273197834993381 the:0.14717831516096203 this:0.047652944882459365 :0.207644849008807 +on:0.9101835928902907 of:0.041609803146553874 in:0.01553088330736204 upon:0.0033180315505799873 :0.02935768910521334 +found:0.17811175417881422 posed:0.11905073916668059 the:0.006673399290480991 and:0.0033382563825969194 :0.6928258509814273 +room:0.3507702193395836 that:0.19071553633558178 out:0.0409380233391391 in:0.027534779734597097 :0.39004144125109846 +that:0.5239321651243768 as:0.08337222708939271 and:0.04032540527909318 later:0.017687160305827745 :0.3346830422013095 +said:0.19997594859424977 of:0.12975235725928447 which:0.12599223893697808 The:0.12559075870670097 :0.41868869650278656 +the:0.972514676855497 a:0.014740860266118082 tho:0.004659521392816847 tne:0.0022574204898203163 :0.00582752099574778 +the:0.22697937940699836 table:0.09051914151232919 window:0.061447015202587156 these:0.05714468696265348 :0.5639097769154318 +party:0.68694745404148 and:0.027577006105608894 ar-:0.011658143208979828 State:0.00795700374356142 :0.2658603929003699 +to:0.19072835809510325 of:0.1023029404525238 and:0.09134476878328153 the:0.07367602583490605 :0.5419479068341855 +tain:0.0013414305967939088 scene:0.0004976029106251723 -:0.000338809936993937 the:0.0003011909161204994 :0.9975209656394665 +the:0.5675136631373588 a:0.1369035557812377 Great:0.13137180189028289 that:0.0316557765804021 :0.1325552026107184 +of:0.3347366172227669 and:0.12471246316593325 to:0.12216832746065528 in:0.10764527560122265 :0.31073731654942194 +by:0.4778191004509147 and:0.43941576135113736 as:0.03118588946321325 that:0.027437521444929364 :0.02414172728980533 +part:0.2877815314035428 side:0.04087516052056156 night:0.039154229478792456 morning:0.018288223242342545 :0.6139008553547606 +the:0.6627224997039329 tho:0.04783293642644043 a:0.04709687617500465 his:0.03229191796260359 :0.2100557697320184 +they:0.3699699253221896 he:0.20655377665725572 she:0.19009761918946969 it:0.16768665931611743 :0.06569201951496755 +was:0.21807463740737373 is:0.11836875570176766 he:0.10005641764102248 the:0.07598502627789668 :0.4875151629719395 +and:0.49186535623509964 but:0.2721341644026064 that:0.10628798784627683 for:0.057071219130760756 :0.07264127238525636 +was:0.27389416911605835 had:0.12053176691428334 the:0.06993699072145 is:0.06791216583995154 :0.4677249074082568 +existence:0.1154586709524376 cause:0.09388658744298845 spirit:0.0759666142001139 love:0.06845923199808866 :0.6462288954063714 +friends:0.040142238672902626 State:0.03205915232000528 Board:0.02848687713951603 state:0.028355754350917976 :0.8709559775166582 +of:0.9061116057821664 or:0.06285400659450001 Of:0.005457729878193642 oi:0.005357890176309579 :0.020218767568830287 +from:0.19115130951453072 past:0.1655869999258139 last:0.11593850813166834 next:0.0920005252958942 :0.43532265713209284 +to:0.5620229446694076 at:0.19994918081817709 from:0.13972551126615865 in:0.07726255713815952 :0.021039806108097175 +our:0.433969746619563 the:0.4221837551968404 its:0.02320389396346457 her:0.016208671799432764 :0.10443393242069915 +A:0.2307166609409097 and:0.11413525842381166 Mining:0.08766229675723894 &:0.04710706125545936 :0.5203787226225801 +per:0.17012192178922061 years:0.10229244612894928 er:0.06360550982295635 as:0.052471723735925124 :0.6115083985229486 +the:0.7080173224421445 a:0.11701090214895121 tho:0.029695153301572984 an:0.01938509704951662 :0.12589152505781462 +further:0.7145941785488307 more:0.17013499854890227 particular:0.1118328438539315 attention:0.001012271592190179 :0.0024257074561453494 +German:0.26710783788950515 men:0.1901624619050293 is:0.030431059851480854 though:0.0244016641742299 :0.4878969761797548 +of:0.18488562080060206 and:0.14068604393129314 in:0.09140988523066226 to:0.08861546993719699 :0.49440298010024564 +and:0.5725582424328302 for:0.3073172638660883 since:0.023689786665304805 aud:0.014126035677540458 :0.08230867135823623 +J.:0.2423049044686786 win:0.10524435281442697 W.:0.08273948299324645 Walter:0.08191971863534628 :0.48779154108830175 +Louis:0.6045933788173278 Charles:0.027008637762553828 Paul:0.023209289542239057 James:0.008263552176058207 :0.33692514170182125 +that:0.48919636332936034 of:0.1428173320348677 to:0.11991867879250452 ls:0.08215606096871986 :0.16591156487454772 +the:0.16012982397868725 of:0.13924660540536704 and:0.11701475464291211 The:0.09315536092619241 :0.490453455046841 +determined:0.2653627938107676 that:0.08413761465374246 was:0.059704130049297345 which:0.05795967172047249 :0.5328357897657203 +citizens:0.05519115662373422 money:0.01496247022542329 note:0.014380466622635537 vessels:0.014152956256536424 :0.9013129502716706 +be:0.2125184509935865 here:0.1830511344772474 have:0.1796049790249778 not:0.09931692307544426 :0.3255085124287441 +purpose:0.0827980439195862 sum:0.02869770356094878 County:0.01779225195648223 relief:0.01639722008113297 :0.8543147804818497 +the:0.4260308923296418 a:0.07440573022072194 their:0.049625079986526835 water,:0.03673824232574186 :0.41320005513736763 +est:0.024578164924714804 of:0.015350076819494353 S:0.010904315609151751 i:0.010528560934364316 :0.9386388817122747 +as:0.2132486539765762 the:0.11809170522527718 from:0.10210181268883496 more:0.10069928035975141 :0.4658585477495602 +the:0.651236224022113 The:0.09385230250559606 and:0.04601528208425766 for:0.03212848483269287 :0.17676770655534033 +1:0.0006723329218959876 last:0.0004371111679598962 last,:0.0003963224876673751 and:0.00024198850326635126 :0.9982522449192103 +that:0.12761093967664022 and:0.12180784103223702 when:0.0915390535006432 which:0.08042670655696031 :0.5786154592335193 +late:0.04623737813970757 old:0.04462604241786624 Attorney:0.03130839031845762 most:0.030259953496956885 :0.8475682356270118 +those:0.18439392150813896 Those:0.09121387620547539 men:0.08149561039054547 and:0.07844835222132987 :0.5644482396745104 +and:0.1721207683961607 as:0.124693850886979 the:0.1003931802021839 in:0.09657704204691983 :0.5062151584677564 +and:0.12433008445838993 the:0.0652482955466667 of:0.06459011570792089 to:0.048230551229283096 :0.6976009530577394 +and:0.06009679270780739 Court:0.04453090922820903 of:0.03441165090941126 or:0.011920225093452627 :0.8490404220611197 +country:0.10525952696579405 history:0.06684664496232066 city:0.05888894063932065 State:0.05053316333295175 :0.718471724099613 +the:0.908640162334249 tho:0.03631909790233925 his:0.016338156869337917 my:0.016058817015544843 :0.02264376587852897 +shall:0.7245922137480023 should:0.15205278180997514 may:0.05272761669996273 will:0.03020651772497959 :0.04042087001708019 +letters:0.05232734904597382 as:0.03567677537556635 ore:0.03246650186769562 were:0.013156938026198921 :0.8663724356845651 +for:0.37041154392847037 of:0.3116238369671625 before:0.13158817959795632 in:0.0981762786354325 :0.08820016087097829 +It:0.8632132018948442 she:0.0545710204163027 it:0.022395361591913517 now:0.012022062617251724 :0.04779835347968796 +that:0.1808540494792495 the:0.0747454307616794 much:0.055182053074876794 ths:0.05069040040859591 :0.6385280662755983 +power:0.10980352001356401 con­:0.011018219589469448 influence:0.006782842854622184 and:0.006215471242010985 :0.8661799463003335 +United:0.8740861148596347 the:0.046883631673629425 to:0.0008953980571092027 a:0.0005823572506586401 :0.07755249815896796 +have:0.630428856344886 had:0.15516444651341257 never:0.08492707738989556 and:0.07350703563239261 :0.05597258411941338 +settled:0.09693523060177905 long:0.04278483852237431 made:0.0070631386623936756 rapidly:0.0054354959101075165 :0.8477812963033453 +the:0.5175130934540125 those:0.049872678285639335 these:0.045563559026529664 other:0.04081737833929987 :0.3462332908945188 +the:0.8780676588044266 said:0.07035193763324969 tbe:0.019564903848185277 tho:0.01595321317334912 :0.01606228654078931 +Of:0.4899884221076029 of:0.20572365793993724 the:0.008313510739586812 ol:0.005019893280053002 :0.29095451593282007 +there:0.00901156322039597 which:0.002124415145362618 and:0.0014498266335155748 they:0.0012937099099243274 :0.9861204850908015 +and:0.679487615767674 to:0.20892729616634262 the:0.03988402936569124 of:0.024222115867647644 :0.047478942832644415 +was:0.16106626509895072 am:0.16042064502378883 would:0.14324173633616413 have:0.09499150018631834 :0.4402798533547778 +the:0.3196131156151801 a:0.319384865256568 some:0.16776392288147798 all:0.016118924380613613 :0.17711917186616033 +of:0.9905737027223384 in:0.008397221287116821 In:0.0005657081218369965 ot:5.7323740762632054e-05 :0.00040604412794525134 +The:0.10279370516457687 I:0.0747856689340682 the:0.05893128817440134 One:0.05601326965120561 :0.707476068075748 +the:0.41186583147720673 its:0.15746531543612588 a:0.1534351624680444 that:0.10549777708534538 :0.17173591353327758 +Court:0.5322271858757812 county:0.06302611753603093 County:0.0515581300756646 death:0.01973401145720937 :0.33345455505531385 +tion:0.044196149910855166 part:0.026357894434855637 of:0.020553536128738985 object:0.019124042015588098 :0.8897683775099621 +at:0.5512548394176225 and:0.09982303264081037 from:0.09741855136468498 on:0.07551920429745741 :0.1759843722794247 +hundreds:0.01790939093934288 that:0.01333716093230496 those:0.012303803173012108 thousands:0.00716260201531175 :0.9492870429400284 +and:0.14891679778430822 of:0.14101533166324667 Frank:0.07212672024153609 in:0.059818799534616794 :0.5781223507762923 +therein:0.9986610975215243 and:0.00044639694674050056 by:0.00029051475689956523 be­:0.0002179173310061838 :0.00038407344382960357 +capital:0.10482272544753611 them:0.0915868492477425 got:0.0865098608999103 becomes:0.06756172086209124 :0.6495188435427198 +made.:0.12291050459359605 Is:0.03897589073225922 felt:0.006882271053169763 a:0.0040707222784320575 :0.827160611342543 +of:0.06647967243229537 and:0.058561564193523034 the:0.053999081076666545 to:0.021669759281657607 :0.7992899230158574 +the:0.9206170669339924 tho:0.039833065160918606 tbe:0.017145211893810648 that:0.005827292775457431 :0.01657736323582083 +upon:0.3062904009862635 on:0.20432332807015446 from:0.1792369275414174 around:0.1456245474674543 :0.16452479593471037 +to:0.9853878584130863 or:0.009046199674058729 tn:0.0016108496950127916 lo:0.0003366681550577547 :0.003618424062784654 +his:0.22188241971583797 in:0.1975067626235599 of:0.10773339096503752 on:0.088648861959105 :0.3842285647364596 +fat:0.20579679042424787 salt:0.1443755300786553 milk:0.04603748316672769 two:0.029882411191931267 :0.573907785138438 +found:0.13796810219450392 not:0.13308389209481633 still:0.09002287674872439 now:0.06893943599607613 :0.5699856929658791 +with:0.08900426912704477 it,:0.017157654270633746 the:0.016774786290725218 to:0.013583489889136624 :0.8634798004224596 +years:0.2081252286153951 not:0.09050045452326777 in:0.06431557063348288 the:0.05857599124370254 :0.5784827549841516 +of:0.5096905384746934 Of:0.02915119613236367 and:0.015690523034873463 section:0.006159328460605791 :0.4393084138974636 +try:0.04621848281648981 one:0.04242694001976147 avenue:0.03605108630223595 people:0.0338159576142711 :0.8414875332472417 +the:0.016508608944721222 more:0.012062551113024528 first:0.008427252817105994 next:0.007830062978061825 :0.9551715241470865 +and:0.14242832897354618 was:0.11469388033651515 of:0.0855456130175214 is:0.05359161259922719 :0.6037405650731901 +the:0.9245552180721144 his:0.047611413252690395 my:0.005476914250725893 its:0.005397197340350771 :0.016959257084118412 +¬:0.01821506215988328 of:0.01112104055142654 and:0.007659014706194999 what:0.007346466668363717 :0.9556584159141315 +of:0.1425563123441546 the:0.08709506093798529 and:0.07928843188070517 to:0.03412868986144619 :0.6569315049757087 +the:0.22666489342128382 a:0.09598351327718374 and:0.08968796856274555 called:0.060216738778821895 :0.5274468859599648 +of:0.12908529416340264 in:0.09115607231306518 and:0.06990466852978737 the:0.050877876803872124 :0.6589760881898726 +with:0.9137978856487055 tho:0.03094230573509523 a:0.023216069896466938 no:0.018913824986133147 :0.013129913733599227 +in:0.6044195552005452 have:0.08063764720256066 the:0.07816731803428045 The:0.027046311522921467 :0.20972916803969227 +the:0.6092488109618639 a:0.1737313458156813 each:0.04266518808506773 Mr.:0.028339152447351437 :0.14601550269003552 +of:0.33876379688664854 ;:0.042080860422248144 in:0.02777539300315671 means:0.02775219727433668 :0.5636277524136099 +was:0.25194700148658333 see:0.23010224163221304 saw:0.11688704713293029 had:0.1048240381620641 :0.29623967158620923 +that:0.239748791891288 then:0.15483941982569374 as:0.11766689947819768 if:0.07057363949123624 :0.4171712493135843 +after:0.30450390702841107 of:0.1041420699970232 to:0.08430102202916424 upon:0.0776624132254216 :0.4293905877199799 +increase:0.2851530119419969 extend:0.038826416098460326 exceed:0.019825160505326952 to:0.007523070019153812 :0.648672341435062 +food:0.08272046722129871 tobacco:0.037456481348812735 wheat:0.01673043216553959 cases:0.016134255112375654 :0.8469583641519735 +before:0.25880599662057524 sure:0.1302030662653032 told:0.10198431208816744 when:0.10001257838332389 :0.4089940466426303 +due:0.5162939009294 they:0.014920667982916892 the:0.007949994589408994 he:0.004821291004204466 :0.45601414549406993 +would:0.40329485715988533 will:0.23827879708477218 should:0.13394728852447166 may:0.12459466606965972 :0.09988439116121099 +feet:0.2592998357843181 W:0.2338208714288756 E:0.10657338967926817 F:0.05036401881578889 :0.34994188429174927 +of:0.9202592449354521 the:0.01563999683788342 ot:0.01523235833970962 or:0.01157891306655454 :0.03728948682040031 +and:0.7667830047307587 no:0.12020990337749106 of:0.06862682147505526 who,:0.020496266628385884 :0.023884003788308964 +new:0.06878312241048189 good:0.06603486142452943 few:0.06174813745824702 com-:0.06054223144013866 :0.7428916472666032 +to:0.4973754999908814 on:0.34587147640922283 from:0.08789617255456313 thereon:0.037037979730596186 :0.031818871314736354 +an:0.3669023192812915 and:0.18099154731769843 people:0.09021468020116 they:0.08494010977613681 :0.2769513434237133 +the:0.8068913329448472 tho:0.08825545366368887 their:0.033578708178817585 tne:0.024471947117056185 :0.04680255809559016 +republican:0.5603620984830063 democratic:0.10230516128804606 Republican:0.0816842514895394 Democratic:0.015500801708003494 :0.24014768703140474 +of:0.6924057989516095 owing:0.10038880122781475 to:0.06433426056847673 Let:0.022493781284182782 :0.12037735796791649 +the:0.5299975581696728 a:0.20889709055991978 public:0.06663668164595447 their:0.04569556976238833 :0.14877309986206472 +I:0.6590630698595517 He:0.2157943627132825 We:0.046479636758517365 he:0.03555158314358503 :0.04311134752506348 +nervous:0.0462004330869642 the:0.03445111011947831 a:0.02625721911491505 town,:0.026112992261012033 :0.8669782454176306 +court:0.7281997097548034 attorney:0.26542312961054315 judge:0.0014982702639992863 court,:1.7240772670097047e-05 :0.00486164959798395 +to:0.1657404338823005 ness:0.09831261529543894 or:0.0651582844453225 and:0.05948461807201818 :0.6113040483049198 +of:0.1263871801222686 A:0.0716524011621773 about:0.05531244616106672 Is:0.054735748541508304 :0.6919122240129791 +should:0.3656554878578641 to:0.22545370959808572 and:0.050122363703188136 will:0.00848253426904873 :0.3502859045718133 +added:0.4213769031590332 too:0.20791568945796368 and:0.0683849974200679 So:0.05023727706016209 :0.2520851329027732 +and:0.07738485129872301 do:0.013361302642050137 to:0.013051464509813782 of:0.011924247302897354 :0.8842781342465158 +him:0.10441967426643403 and:0.07268422813238362 enough:0.027465392458202068 as:0.0264449398260749 :0.7689857653169053 +course:0.1412748576878389 middle:0.10923701923172606 case:0.048083190590651886 history:0.044864662981790794 :0.6565402695079924 +white:0.053622923067232715 himself:0.03396387218582926 the:0.03390958477369449 husband:0.03227524283439917 :0.8462283771388446 +the:0.15812973536068387 or:0.1529582100170854 a:0.11772711578743324 and:0.11484045592463744 :0.45634448291016 +where:0.3372405603572757 But:0.1992616849689443 that:0.13776925542143473 and:0.11515824196166222 :0.21057025729068293 +on:0.9934188580028636 upon:0.003839610516202856 of:0.00132780048133414 to:0.0013205450803969944 :9.318591920250493e-05 +of:0.3138163271595959 to:0.24433002440721824 in:0.16327735751367503 and:0.07007097486959293 :0.2085053160499179 +as:0.053269962996006635 and:0.05187703615729734 effort:0.02835522703820999 efforts:0.027854442432248976 :0.8386433313762371 +of:0.2718764749118853 to:0.10908572415769145 in:0.10592142495906305 and:0.08366200154677468 :0.4294543744245854 +coming:0.20964998033965723 come:0.1451079530579914 pointed:0.04594862651066827 called:0.03850683144153224 :0.5607866086501508 +to:0.1848284906035615 or:0.13148711251654352 and:0.1272993259152494 which:0.10262034059081611 :0.4537647303738296 +of:0.1658899070158651 any:0.12435881502202757 For:0.1013551922028945 had:0.06432507189556018 :0.5440710138636526 +contract:0.1227277299821286 be:0.056396277798561094 She:0.03370011060315423 agree:0.0295512835384145 :0.7576245980777415 +good.:0.008267249831082388 matter:0.005226336469639786 longer:0.0032862353663534855 more.:0.0013813979051457582 :0.9818387804277785 +miles:0.1621579392743446 was:0.10457591150217393 is:0.09694514200331826 Is:0.09163719923519233 :0.5446838079849708 +to:0.6797395394384825 the:0.11491308485532621 from:0.1112168240641035 into:0.03372091029679341 :0.06040964134529446 +the:0.4035284948637882 mere:0.21701568068846316 a:0.18249887902447653 in:0.07306130164762217 :0.1238956437756498 +of:0.263310153090823 and:0.163659364564614 not:0.09277369417927572 is:0.0809539453899347 :0.39930284277535266 +These:0.3059311940823756 and:0.25224968297284067 of:0.09435087518661342 the:0.09171148791192743 :0.25575675984624285 +the:0.3911190516065924 a:0.04794815584681825 tho:0.026057258729007632 his:0.018834781299757814 :0.5160407525178241 +party:0.02838592698824183 rank:0.027726363657766758 man:0.0070816649470412715 hat:0.005150742004893852 :0.9316553024020563 +now:0.24962449006448742 a:0.1647488516434986 not:0.08592714956618065 the:0.06375312919644877 :0.4359463795293846 +finest:0.598037775041619 American:0.1692241057432955 largest:0.10080935194932021 great:0.06280180027751603 :0.06912696698824931 +Mary:0.019556369951119715 Brown,:0.0193890653871337 Smith,:0.012418997362446409 French:0.00501862534315539 :0.943616941956145 +by:0.3754251738431948 in:0.10053875733695734 the:0.02665403229113946 of:0.01825059263455696 :0.47913144389415147 +the:0.3449951793864019 his:0.23124623230355337 be:0.106120692637282 a:0.09712449515209294 :0.22051340052066976 +the:0.03937351424569608 of:0.023140883465277748 to:0.022344125245966774 .:0.021979584369418072 :0.8931618926736412 +of:0.2757036986113519 to:0.12862650326084576 in:0.08182392397912945 and:0.05501312411681064 :0.45883275003186214 +house,:0.3857449460989314 first:0.08621479584167108 lime:0.07172430838148408 house:0.0432812403973126 :0.4130347092806008 +of:0.548283402703719 in:0.0931497525216475 and:0.0733545485387377 ordered:0.06683504071340035 :0.2183772555224955 +and:0.1793099940578119 ing:0.15246198077265308 to:0.12058833727816085 of:0.1069239841918126 :0.4407157036995616 +the:0.2192831124937756 present:0.17427325623555653 once:0.09304157506240754 a:0.06572283870647691 :0.44767921750178347 +the:0.2724729092268195 North:0.1361148435613052 old:0.055268392149770244 same:0.02847088401687375 :0.5076729710452312 +@:0.12521634106197035 and:0.08245869104100383 the:0.05130592783125872 of:0.045421998481962864 :0.6955970415838044 +line:0.06422731962190635 street,:0.04473363442359981 ;:0.03382930201987236 feet;:0.030886601090730128 :0.8263231428438913 +w:0.09390698394695277 must:0.062699120216849 and:0.044524925988906436 a:0.032255159985662286 :0.7666138098616295 +Public:0.37114781343143305 and:0.09945228024072086 from:0.06329878712997669 which,:0.016906220439527102 :0.4491948987583423 +that:0.8858993372838816 was:0.05606226931679564 the:0.013159616518320802 are:0.00577295965863407 :0.03910581722236771 +the:0.43638945776809795 this:0.043391712555352506 a:0.035543988804408434 our:0.030270925967909357 :0.45440391490423165 +that,:0.4460251439928812 that:0.14252829583365947 and:0.02612243070595641 not:0.019174674638555038 :0.3661494548289479 +useful:0.12238594975153116 express:0.04100506453737231 good:0.03659739272381077 grand:0.025358521142666082 :0.7746530718446197 +Mr.:0.29432181503351285 S:0.20368870060875474 Mrs.:0.18664370780423498 Gen.:0.10139852621495947 :0.21394725033853793 +who:0.9110553873167728 that:0.0430952275796367 which:0.004451257289543194 one:0.002535061852814427 :0.03886306596123291 +the:0.5909113676184892 said:0.08518830665413653 any:0.07836473331608455 all:0.057474941202336864 :0.18806065120895302 +of:0.9645039703294424 or:0.02303014169887281 by:0.0030365789510276384 ol:0.002924432055740833 :0.006504876964916268 +started:0.005164170868705285 were:0.002363530132321314 are:0.002237211706586519 took:0.0012238720001001367 :0.9890112152922867 +and:0.1468063591658456 of:0.10593831750314014 as:0.09015912261520877 or:0.06920984491125944 :0.5878863558045461 +a:0.41675165608968845 the:0.2238962956024625 his:0.10583696762791996 and:0.07173448794595864 :0.18178059273397063 +and:0.17942786823827583 or:0.12385898242069508 but:0.06499227602195423 formed:0.04659915844238065 :0.5851217148766941 +deal:0.638595095619965 variety:0.0754654423263367 number:0.047190379504913 amount:0.03981586936363128 :0.19893321318515408 +from:0.3854569049483746 to:0.2991862827133233 in:0.2552271538158054 at:0.03717267265423397 :0.02295698586826278 +in:0.41615044413764063 and:0.14761472878527854 of:0.07592147249084849 between:0.04325470615776336 :0.3170586484284689 +the:0.7595328346992996 an:0.13216343493293853 tho:0.04257207423034489 tbe:0.03232270988826203 :0.03340894624915505 +at:0.24978582580581785 about:0.24727793524065628 from:0.20493317316702225 on:0.19514431937978463 :0.10285874640671899 +and:0.23462534758067113 that:0.1369596100135007 but:0.0936744170046221 as:0.05657194252146075 :0.47816868287974523 +power:0.005224064528396897 -:0.0018639289745592286 press:0.0005939933075138721 will:0.00028925885917293936 :0.9920287543303571 +are:0.9762672077568221 were:0.017571715916950312 ar:0.0026970673799543827 not:0.0010530783659971996 :0.002410930580276006 +and:0.17035104141977134 are:0.09523321564211364 1:0.08276032330774644 is:0.06033969686540115 :0.5913157227649675 +like:0.5366841371755746 as:0.12615839455001263 in:0.0774626093468906 into:0.07176773084890992 :0.18792712807861234 +of:0.9877360906749857 is:0.003783304328444701 ol:0.002557056398342049 ot:0.001009721572258154 :0.0049138270259694765 +the:0.5451979831601232 a:0.2966861790025647 its:0.08344638204357119 their:0.02838811172283714 :0.046281344070903556 +became:0.13774020074095134 of:0.0926161076866073 his:0.060296780369544514 the:0.05939362946290868 :0.6499532817399882 +as:0.7532456030047033 the:0.07056051426089176 in:0.0670905895646575 their:0.06024282800351562 :0.048860465166231895 +large:0.6740758397297261 more:0.010241280059039152 small:0.009307916528266678 the:0.008565113476644267 :0.2978098502063237 +his:0.17466688742170156 the:0.16235754763662938 to:0.10714854149878758 upon:0.09045266766803056 :0.4653743557748509 +so:0.7735540368305104 been:0.0806028567245384 a:0.06528882137763513 too:0.04030978095813905 :0.04024450410917692 +is:0.4110933171814632 was:0.21008617842313063 Is:0.13191810424486475 from:0.05107659057477562 :0.1958258095757657 +signed:0.05510961165684406 especially:0.03254447250415186 approved:0.026640639857567625 even:0.012521856170494398 :0.8731834198109422 +and:0.21553386706431732 I:0.17654106848504686 he:0.11587786059106912 He:0.06673090596593675 :0.42531629789362985 +of:0.18349840483172733 and:0.1238397782201215 The:0.10242754169575564 the:0.06052299831965703 :0.5297112769327386 +likely:0.14575715547941182 probable:0.14157321212676685 ever:0.055672846804557745 this,:0.032108451737506906 :0.6248883338517567 +?:0.3271078586579867 be-:0.024988879739465147 be¬:0.024003131231576463 -:0.022979753162793094 :0.6009203772081786 +hundred:0.13521565300435762 acres:0.13451962471822168 or:0.12976144290643934 years:0.12761501609357961 :0.47288826327740174 +feel:0.6474365871586683 consider:0.05345558446537814 held:0.037903700946150115 found:0.018387416415575678 :0.24281671101422775 +home.:0.01836392239634503 States.:0.004379711199040875 city.:0.0012922312373646533 be:0.0006056904314934179 :0.9753584447357561 +of:0.4454095583924062 in:0.13877137846147758 and:0.06988207160429434 or:0.05577958054585048 :0.29015741099597153 +of:0.4940981462426174 in:0.10070835421798671 to:0.08991655929926003 are:0.061813563227593786 :0.253463377012542 +the:0.9666413701524655 tho:0.013402955993443245 our:0.010110565464838158 tbe:0.007219022088947107 :0.002626086300305987 +what:0.5774298570927426 of:0.1274149026227586 order,:0.12435760225911822 to:0.03865367695702269 :0.13214396106835793 +character:0.5308090250701338 County,:0.018984931086929634 country,:0.008101152014619811 body,:0.00731696527472577 :0.43478792655359094 +7:0.12701494783248296 in:0.02227064781553943 again.:0.012105152890363267 year.:0.011391817351963662 :0.8272174341096508 +and:0.4335452476274491 of:0.23505956602344838 that:0.16055800471637663 the:0.08862157678975852 :0.08221560484296735 +long:0.03493405024192711 fine:0.03184982930457846 reading:0.030289270103454474 of:0.02035782510318816 :0.8825690252468518 +kept:0.04923815996325046 did:0.04324354823066464 followed:0.02839502016401739 purchased:0.026197961868971893 :0.8529253097730958 +the:0.6688581636765552 Ihe:0.2806107350738616 much:0.02252169413025452 tho:0.015168375116537545 :0.012841032002791054 +to:0.48686482387714075 and:0.2512701369427816 will:0.11014644658490402 We:0.09196425277627074 :0.05975433981890281 +to:0.9951174005376515 In:0.0011926899088279695 shall:0.0006429696488805914 will:0.0004854796151370655 :0.002561460289502843 +which:0.2747688617752491 the:0.13050173913754454 again,:0.07682621983804706 when:0.05599688498000548 :0.4619062942691538 +One:0.059166419927583654 and:0.04942362222649305 one:0.03587307241462995 out:0.029438054590326303 :0.826098830840967 +of:0.9314668565211076 ol:0.011516082472068034 to:0.009399315251189037 stated:0.008774791024718048 :0.038842954730917534 +two:0.7568270517868787 ten:0.01022542583019768 four:0.009780429417455124 few:0.00896084219349983 :0.21420625077196873 +m:0.6293056288014756 the:0.012566201904183522 of:0.008071865629626966 a:0.006528305794560621 :0.3435279978701534 +of:0.20354494753570923 and:0.09024699812232113 the:0.04378359746936441 is:0.03614704974814763 :0.6262774071244577 +being:0.21519556425168856 down:0.14244848132713506 not:0.11975602161485695 in:0.110315201904737 :0.4122847309015826 +have:0.7519863289105231 had:0.10754246842869576 were:0.07266770341467121 bad:0.05895686852939602 :0.008846630716713929 +be:0.2936127957160844 require:0.14603532164132405 take:0.05711680262841564 last:0.049132742836223625 :0.4541023371779524 +and:0.7079773721000816 to:0.2872290090369303 will:0.001021938302968178 the:0.0006895740230824119 :0.00308210653693726 +of:0.04563695256389652 and:0.03895380763636984 the:0.03883937028138525 at:0.030459347397308486 :0.8461105221210399 +shall:0.24941048164018764 are,:0.031778405932279666 have,:0.03153598314708221 would:0.006523566029597476 :0.680751563250853 +line:0.25786351813490105 train:0.20416486517446736 evening:0.013965894650129838 feature:0.009422879110564886 :0.5145828429299368 +the:0.2845551367279587 in:0.24854990725675002 do:0.20221646788682907 well:0.07429341821130757 :0.19038506991715456 +duty:0.3049007818566943 state:0.05550014360248506 body:0.04572397002902488 business:0.044013508956084295 :0.5498615955557117 +a:0.22792054212914997 in:0.1688767706791464 at:0.12690681708285265 two:0.07478192995305129 :0.4015139401557996 +the:0.9468429677848638 certain:0.03617428171595199 our:0.0037527290309599054 two:0.0007633325255332753 :0.012466688942691088 +from:0.7292780820574004 who:0.07019922387588419 at:0.04035924176490855 already:0.033529947804996615 :0.12663350449681005 +the:0.3919324291461594 a:0.10327113564089456 tho:0.025801226317924163 an:0.025576772558716005 :0.4534184363363059 +about:0.31569078605868317 For:0.2985420356323552 and:0.18696269930626766 in:0.045190240208412606 :0.15361423879428132 +to:0.7679586217277564 that:0.15814572878334499 the:0.0596051160219701 a:0.006562471770025561 :0.007728061696903031 +of:0.6444556695413535 and:0.06638756524216256 in:0.05866073251247922 to:0.049163363779460525 :0.1813326689245441 +on:0.35024078271428516 of:0.14280272368435132 at:0.07630354736164068 that:0.051420122163690844 :0.37923282407603204 +the:0.39209935635867715 a:0.23940557424697706 be:0.0499435306085412 his:0.042417295259096786 :0.2761342435267078 +meet:0.2801331583244143 be:0.18068794931901977 stay:0.06515862346922456 place:0.026795617079073505 :0.4472246518082679 +often:0.008327153410323107 r:0.006312013369448029 -:0.005475176366470359 United:0.0017079605289086624 :0.9781776963248497 +and:0.22055287238109328 of:0.1566786991512134 the:0.05435176225255742 was:0.04683286055917924 :0.5215838056559565 +the:0.5141567737755384 their:0.11574859521489213 a:0.05984739389694144 any:0.02863867382404219 :0.28160856328858597 +for:0.5003130055004189 to:0.07932369711327926 as:0.058268949337254475 a:0.01941377889907479 :0.3426805691499724 +land.:0.05717676916159536 them.:0.016380615570872725 the:0.01484402777303962 him.:0.003568618727830308 :0.9080299687666618 +common:0.6308344322419122 a:0.2627279802244647 the:0.05988412722480279 with:0.01413177148734563 :0.032421688821474726 +the:0.29100875464866616 one:0.07490381681159734 either:0.05447616466405158 a:0.04316775036077689 :0.5364435135149079 +recorded:0.06566604324790822 is:0.0412150574714881 are:0.03871819954361867 also:0.02351266426152901 :0.8308880354754561 +figures:0.09337905331446902 will:0.08668092841099459 July:0.046605795563296054 table:0.042804008783043114 :0.7305302139281972 +he:0.1259067091730937 country:0.06280056145382985 alone:0.060326120719521134 it:0.05830915215320499 :0.6926574565003504 +love:0.020476625928630043 three:0.009445985393992249 2:0.006726784016345367 3:0.0065359813297874835 :0.9568146233312448 +names:0.035475643231800254 opinion:0.03098270880608538 proceeds:0.030232189833435674 heads:0.025170958110706375 :0.8781385000179723 +and:0.05731508873039457 but:0.042950087314253635 direction:0.03084641725083524 looking:0.03084081495895058 :0.838047591745566 +that:0.30039098106415957 which:0.13212416697619989 As:0.03907373442954175 whether:0.0358056478807106 :0.49260546964938823 +and:0.1331698959293759 W.:0.08617308402380305 J.:0.05792910754013508 F.:0.05728560426900681 :0.6654423082376791 +the:0.4010956793798438 tho:0.16407310828594412 tbe:0.13792813093042214 this,:0.025352843881904535 :0.2715502375218853 +that:0.2751968373250075 as:0.09406210718022662 with:0.06681496593881542 in:0.06612619221374111 :0.4977998973422095 +in:0.374371549842096 of:0.24576877918222118 when:0.1060192358311031 before:0.043617878000138104 :0.23022255714444176 +obliged:0.4973672843825082 well:0.16118480823706352 ready:0.08602387768316545 safe:0.0419116542057756 :0.21351237549148733 +of:0.2907272285736226 in:0.18755747596482975 to:0.08233057151590469 In:0.06692792001115551 :0.37245680393448743 +were:0.1990781843399436 was:0.1965689532492142 wns:0.11401861129592668 and:0.05839851023243398 :0.4319357408824816 +is:0.16921029387613246 proposed:0.15423870728769098 has:0.14609084746154188 always:0.14450163905878824 :0.3859585123158463 +back,:0.08091879193162475 top:0.06470691024632567 at:0.02762322258967214 two:0.012551162295513844 :0.8141999129368634 +a:0.512096140614885 the:0.45341372296982624 vast:0.014785177949057399 tho:0.0046058189549977435 :0.015099139511233555 +of:0.2980683422680206 and:0.28601574692269083 or:0.17756513147332326 The:0.02062571558637987 :0.21772506374958547 +and:0.09280985097664311 of:0.059660840907527435 ::0.04364047207516679 the:0.031228525451436735 :0.7726603105892259 +to:0.30253500175395315 would:0.20846855384571716 should:0.09894833543389549 will:0.05771122739469357 :0.3323368815717406 +the:0.5543984451588599 those:0.27285987714727933 these:0.08045168083195665 that:0.03084779482962914 :0.061442202032275024 +will:0.14323628953349427 hereby:0.10797184417824554 are:0.09859620753814068 have:0.06119574408823038 :0.5889999146618891 +and:0.11484410577567851 to:0.09303717583755124 of:0.0746699314432933 the:0.07136400347764414 :0.6460847834658328 +and:0.23192717810404945 the:0.16631310528172608 in:0.11473117802210478 So:0.09699776404618239 :0.3900307745459373 +description:0.15329457692597026 part:0.05606408965568673 numbers:0.042225456555611905 day:0.03804595258656593 :0.7103699242761652 +of:0.17402594082071157 and:0.12915389280252076 The:0.10351986131068025 the:0.08088018221698776 :0.5124201228490997 +the:0.3664420019806254 and:0.11055466865650891 a:0.09804477683358129 to:0.0363888454656645 :0.38856970706362004 +back,:0.46560321251711195 people:0.0831486643173874 affairs:0.05703992054716693 land:0.008153619867703082 :0.3860545827506305 +but:0.6548225880608377 and:0.2480122610801872 although:0.01075243682404921 is:0.007303556947411759 :0.07910915708751422 +that:0.28438289532205185 and:0.1645174288453765 as:0.1077496986891563 but:0.0434317839099784 :0.399918193233437 +line:0.37945315203324276 side:0.3037648332048762 member:0.08046286022957115 part:0.022602878142618823 :0.21371627638969104 +the:0.9353013652552168 tho:0.013701387407351669 both:0.010753756451751214 tbe:0.01013542922698527 :0.030108061658695045 +that:0.9012083465011892 what:0.019684212552412286 thai:0.011073012045540823 and:0.008121393309650227 :0.05991303559120734 +for:0.7388347904301104 at:0.09235131405960588 and:0.03465320627472716 The:0.027819648149700754 :0.10634104108585586 +for:0.33818185262283684 on:0.2969294847026169 of:0.13877417678655724 as:0.08752559882302902 :0.13858888706496 +the:0.7971607667298496 a:0.1929766956032731 to:0.0011123661046679198 tho:0.0008945138459955632 :0.007855657716213892 +little:0.3864791262366156 own:0.035073898137904666 distant:0.01151627990818913 his:0.006635840392894488 :0.5602948553243958 +constant:0.13891518629506255 head,:0.08452013631902602 reason:0.059418502350622626 office:0.015793549120278028 :0.7013526259150107 +remove:0.1444844349156142 meet:0.12202069264928822 see:0.05997896899626687 make:0.05777269518958222 :0.6157432082492484 +page:0.08303156913698327 took:0.03968166561785039 taken:0.036561507504296306 read:0.03345492557068638 :0.8072703321701836 +it.:0.09351535913289753 them.:0.0033909547424942448 life.:0.002279937032563233 the:0.0018440150676470278 :0.898969734024398 +to:0.521512783612283 from:0.3453808889300943 at:0.1135256726812539 and:0.00828104655576383 :0.01129960822060495 +d:0.22707788756949937 the:0.10680491182167419 a:0.06148608454204508 to:0.018545284128669657 :0.5860858319381118 +this:9.938409711048146e-07 within:9.624284974483667e-07 in:9.117607519402097e-07 on:8.21174451598019e-07 :0.999996310795328 +to:0.7270781742488809 the:0.08944600261407713 in:0.07548603836947108 In:0.05241055540511431 :0.05557922936245652 +d:0.4569673024328952 twice:0.26508986694523257 ed:0.22985020782543894 in:0.006251217289354681 :0.0418414055070787 +the:0.41111308783893846 a:0.34870455473858497 an:0.12877406284165593 his:0.020873283695474438 :0.0905350108853461 +the:0.16217145255968451 .:0.048543005037606834 a:0.03280506078530343 i:0.02118432518105798 :0.7352961564363472 +re-:0.2302805450072281 the:0.17452086680908793 just:0.17234548537928748 a:0.1412781641394362 :0.28157493866496025 +through:0.4597479438741602 on:0.3985318279076452 in:0.0971181870934167 the:0.02157544813142416 :0.023026592993353724 +time:0.4378453435288283 death:0.07945002630450959 effect:0.03738417182398747 application:0.014757492131373643 :0.430562966211301 +an:0.45195238149817213 the:0.43408862608188786 one:0.08290820134783668 tho:0.01273632696892886 :0.018314464103174537 +house:0.18089599400174788 city:0.027334544687570878 door:0.02256562276652662 walls:0.022204451381197837 :0.7469993871629569 +that:0.743396473743734 however,:0.08533721237626549 ":0.05339857165629324 a:0.03872016815667174 :0.0791475740670356 +The:0.4046249926502776 Mr.:0.05297562209891242 A:0.04452487844357984 He:0.03517973071882889 :0.46269477608840104 +old:0.04790267619952068 social:0.03231319558989682 best:0.02540983554090072 importance:0.019476492280583492 :0.8748978003890984 +of:0.8676241697507628 the:0.025801692554324192 ot:0.018990694871456656 ol:0.0131438714181914 :0.07443957140526491 +said:0.5589207440968814 thought:0.3943312525429656 saw:0.008669440239827802 was:0.007805580378460243 :0.030272982741864976 +time:0.06920423952088076 and:0.04464308028362931 taken:0.03660676256189303 as:0.022243481403702373 :0.8273024362298945 +the:0.77970550686926 a:0.10788606539824536 their:0.0447676802092544 its:0.03214927360618145 :0.035491473917058584 +run:0.3465673509335432 came:0.29914692601598064 got:0.0560740658700127 carried:0.05341193903371653 :0.24479971814674692 +so:0.7689885274976921 lost:0.0105566565092155 been:0.007023574691006124 declared:0.006749486768833912 :0.20668175453325227 +York,:0.7051308001114602 England,:0.062074417229540574 York:0.025271771466788346 in:0.0038350128258871573 :0.2036879983663236 +the:0.733369844312244 tho:0.027584990553499587 this:0.02633172292126788 said:0.014723388161472334 :0.19799005405151615 +houses:0.028590606021700465 life,:0.015608125528312283 parties:0.005829358381469126 property:0.0029542057268212877 :0.9470177043416967 +sent:0.02187868968462728 distinguished:0.013877843939535827 ready:0.013533816628297632 made:0.007311083510493691 :0.9433985662370455 +not:0.09974749799080931 the:0.053628537640294245 a:0.04940860081320397 made:0.047686268308961714 :0.7495290952467306 +and:0.11354589400413549 of:0.07564894312293638 the:0.06695322000258255 to:0.03623220913459982 :0.7076197337357458 +;:0.009274688115571745 the:0.008767283339817022 Company:0.0050603354671961065 .:0.004039482618872585 :0.9728582104585428 +three:0.037412676203342 fine:0.03416069842059634 special:0.029998864192597934 laws:0.029433526639674117 :0.8689942345437897 +is:0.2701360196128883 are:0.15125243111878672 of:0.13230918094016642 was:0.08629537503581018 :0.36000699329234837 +court:0.1306402471481645 justice:0.0963123261321455 same:0.09118971053329367 governor:0.03927478155091217 :0.6425829346354842 +one:0.03757752345231659 out:0.024443780122439068 and:0.023776000023198265 tion:0.012047863093926515 :0.9021548333081195 +year,:0.02918853746584068 complete:0.02320362474697637 better:0.021174803937638983 filled:0.013409508623876385 :0.9130235252256675 +of:0.9497918793436618 from:0.003086186906399924 the:0.002903805095369424 ol:0.002730345273949542 :0.0414877833806192 +a:0.4204945309883558 their:0.2955704638115384 his:0.273578974816112 my:0.004301248093885862 :0.006054782290107819 +holds:0.24310329024150512 said:0.13234376437734727 says:0.06899404147569452 saw:0.058595014948463545 :0.49696388895698956 +It:0.15981851054213725 to:0.1550547335392483 that:0.1483756301660627 it:0.10878496982769605 :0.42796615592485593 +trust:0.21420162413264324 bow:0.04766031485815329 which:0.033379230213753074 whom:0.025200293446407944 :0.6795585373490426 +date:0.9835146124186541 late:0.000934633194149018 out:4.191871498936507e-06 depth:1.4567939477169631e-06 :0.015545105721750467 +on:0.6057087897450766 was:0.09862883863150784 all:0.08347043859198036 to:0.04209781679846215 :0.17009411623297307 +before:0.015050667642010074 train:0.01024331520336589 before.:0.006182342707417461 that:0.005713764641368088 :0.9628099098058385 +and:0.18278469173366788 to:0.10781126435195805 of:0.09560007731584032 at:0.048260552975577124 :0.5655434136229567 +of:0.20226336745069948 in:0.1844277468911318 by:0.17982606870920753 to:0.15285475114172556 :0.2806280658072357 +French:0.06579821344481576 must:0.04737927454463626 people:0.044983772745403744 it:0.036466790599859224 :0.805371948665285 +day:0.23608692759141175 the:0.11287063905207649 church:0.11219524036437056 manner:0.06077260666099455 :0.4780745863311465 +plans:0.01110587251718333 Register:0.01056077387118601 buildings:0.009929482898493347 costs:0.009515496384438162 :0.958888374328699 +into:0.11461199635390464 prices:0.06622554332196519 of:0.06008009719127608 in:0.04142255860180417 :0.7176598045310498 +in:0.9925975372313328 he:0.002431357651088915 be:0.0010684020288289709 by:0.0007861348589352132 :0.0031165682298142073 +it:0.5987089134852193 this:0.1339925244091467 he:0.08399748724227556 there:0.07857848539426528 :0.10472258946909306 +and:0.14757177283814987 ing:0.11522405772106875 that:0.06981887648346505 back:0.05305388911956678 :0.6143314038377496 +to:0.29427528970636113 to.:0.11195909113464297 ::0.007632125158796741 it.:0.0044576801864740214 :0.5816758138137251 +electric:0.20591290297035025 arc:0.018668576801249923 up:0.01754594773684995 interesting:0.010440829205808431 :0.7474317432857416 +his:0.49255603117849384 their:0.1235442605345561 the:0.05897062537832108 further:0.055635153692360426 :0.26929392921626866 +the:0.4231038398353341 a:0.10019244274385553 its:0.08770145811930355 his:0.058647543809756716 :0.33035471549175005 +years.:0.1422481847823943 yards:0.09282303646350527 and:0.03922837620219663 feet.:0.023213682888432497 :0.7024867196634714 +quite:0.18650999239364469 nearly:0.13722597968075903 be:0.12116870861679037 then:0.040507324069582046 :0.5145879952392238 +and:0.26605191935087663 is:0.10089261475578816 was:0.09852818022328459 were:0.0711195798801475 :0.46340770578990315 +the:0.24562625296036866 water:0.1579506383252055 other:0.0710692166152503 a:0.06648557803089382 :0.45886831406828166 +a:0.28927439160684515 to:0.14404233610228603 of:0.09690533657158203 the:0.08946445621933427 :0.3803134794999524 +the:0.16717514121945268 these:0.1653550294481687 a:0.11554742965194624 that:0.05004287416133471 :0.5018795255190976 +he:0.5816693925805515 I:0.30333578042137144 and:0.05119827060409569 but:0.037881311721592696 :0.025915244672388874 +interested:0.09552156515649883 increased:0.01824844511291161 pleased:0.017925258812023778 increase:0.0015109704229825656 :0.8667937604955833 +it:0.4294667785637188 nothing:0.35958674227039356 which:0.08196518354462395 he:0.06626024204365535 :0.06272105357760836 +the:0.5641320892517707 Mr.:0.09142174112119729 said:0.06387126800319039 a:0.062475224372521856 :0.21809967725131985 +to:0.39149994352126427 in:0.20262964491719548 from:0.1680695250796399 with:0.11520254885936561 :0.12259833762253466 +the:0.527507407916929 considerable:0.19607295655460039 some:0.10467773718090669 a:0.08827152584106615 :0.08347037250649776 +ber:0.14522406913236288 vote:0.10974811634069416 tion:0.0809387954930467 ity:0.07285711770291592 :0.5912319013309804 +interest,:0.015249748324710896 house:0.0014214138569863192 opinion:0.000597943523543436 good,:0.0005717146833707204 :0.9821591796113885 +tbo:0.423187630226295 the:0.39306715900921824 their:0.0242318131231939 of:0.023958198376091384 :0.1355551992652013 +A:0.3187410584545965 is:0.21178715425075292 three:0.17410489156885653 two:0.15754664721172454 :0.13782024851406952 +good:0.5216394491851292 future:0.1293193489107577 proper:0.08180146683476552 Mexican:0.07150582287660334 :0.1957339121927444 +human:0.03135175951097459 said:0.02202501140144975 most:0.018543339002794878 the:0.017500081946641564 :0.9105798081381391 +coast:0.2487308703548054 road,:0.018759367770175298 States:0.01462326269369772 road:0.006288066933180937 :0.7115984322481406 +and:0.3155151892049531 followed:0.06404297496267736 that:0.05772972268644328 largely:0.03733495008372992 :0.5253771630621965 +and:0.19480124108115393 the:0.08538142608238225 of:0.046878344502163466 or:0.041353562212424776 :0.6315854261218754 +a:0.5021910769788437 the:0.4120106117357057 our:0.030284249275674784 n:0.028828483633955612 :0.02668557837582013 +the:0.3331839837465856 their:0.20142967535812972 a:0.156119621618975 long:0.11874004440563478 :0.1905266748706749 +to:0.1462220459145528 with:0.0956986678789026 them:0.08608714050205196 on:0.07224627144587573 :0.5997458742586169 +and:0.32646797055249555 the:0.07421999981539587 to:0.05953862571248084 you:0.050901615073303846 :0.48887178884632393 +greatest:0.4922666521267173 old:0.045560798663864886 little:0.03399336070920211 wonderful:0.01233720634805779 :0.4158419821521579 +mortgage:0.11056431766334356 office:0.012015764283112714 in:0.0035446684504666067 mortgage,:0.003086554648761438 :0.8707886949543158 +ot:0.6168660115303105 of:0.3732291752063084 in:0.007210927543688255 as:0.0014205034973555472 :0.0012733822223372601 +and:0.07794111235747256 him:0.04393364511771902 them:0.037271047023502986 as:0.03019674705247704 :0.8106574484488285 +as:7.590623424478382e-05 got:8.204367569070909e-06 arranged:3.3576764832762064e-06 information:1.8861306988756688e-06 :0.9999106455910041 +and:0.19196912249194098 so:0.05987356848312637 stated:0.0480518675198487 says:0.04748916345428542 :0.6526162780507986 +hours:0.6797508257055999 part:0.20047126357913006 hour:0.0409294194275113 days:0.021092864211908608 :0.05775562707585015 +than:0.9012898437808637 thin:0.00932732780883501 thai:0.008979957056187612 then:0.004252952666433091 :0.07614991868768053 +of:0.8632629299464827 and:0.059180233397845575 in:0.03971967916192057 into:0.030388848574147635 :0.007448308919603458 +of:0.19260502829262183 and:0.16818682226702442 the:0.0443103614191618 to:0.031199693263582143 :0.5636980947576098 +would:0.48654175249181564 will:0.2233120009862903 must:0.16662512778001656 may:0.06440015722914057 :0.059120961512736867 +the:0.18445616988783092 and:0.07714778349565227 at:0.03525479134067679 few:0.030403899973096962 :0.672737355302743 +the:0.6108217406762552 things:0.3046357593059057 ways:0.01400785843564121 those:0.0027492754903768635 :0.06778536609182108 +the:0.40198252845349075 a:0.2015342169930803 an:0.1873987292852655 to:0.021890464782923214 :0.18719406048524018 +firm:0.13791748878430388 south:0.13665057250580098 farmers:0.1268716599714379 company:0.10266301465253404 :0.49589726408592333 +This:0.5511729725645679 In:0.1448478180316327 The:0.11890448216659122 One:0.023514631954709812 :0.16156009528249846 +and:0.16882498224360099 saying:0.08590457786692195 her:0.08190266831865714 him:0.08158654287637755 :0.5817812286944425 +will:0.2321063560135767 are:0.12251709985607208 have:0.08974483396371266 may:0.05930636980026285 :0.4963253403663756 +that:0.1091173998380198 put:0.09305133169119532 for:0.038446964744769226 at:0.02935909633067607 :0.7300252073953397 +advance:0.9362222710886391 black:0.0035775058510296746 him:0.0026987102773159254 cash:0.002470870054419496 :0.05503064272859591 +bill,:0.34467615667816187 Hill:0.08563116444133823 city,:0.05969061712397693 He:0.05481397740944786 :0.45518808434707503 +gives:0.31394412670353944 will:0.17780313857580987 is:0.11490886292657837 he:0.11051252579390294 :0.2828313460001694 +and:0.32646797055249555 the:0.07421999981539587 to:0.05953862571248084 you:0.050901615073303846 :0.48887178884632393 +the:0.009143555526037917 them.:0.003011085281932746 favor:0.0023250347071703823 pay:0.0020357505482854602 :0.9834845739365735 +and:0.17535798179394388 to:0.11847075456148558 by:0.099654267210306 the:0.09475041621764171 :0.5117665802166228 +which:0.35850240062871463 it:0.33412738519336277 I:0.04025113170493088 she:0.03627902830530942 :0.23084005416768225 +tbe:0.07807629766953458 place.:0.023604692611728494 the:0.0198983610520089 town.:0.01555628142637635 :0.8628643672403516 +though:0.040831881877850265 ways:0.025518711863823297 most:0.014491675261936527 ready:0.005085806968432884 :0.9140719240279571 +done:0.09692039186217671 killed:0.03012482268558752 made:0.029678270754189235 accompanied:0.02403307855345819 :0.8192434361445883 +on:0.41568485090856816 where:0.12330738948936762 in:0.06833668214009367 of:0.06418346709832537 :0.3284876103636451 +the:0.8296456771604066 them:0.05605056298317598 tho:0.02028109402715949 other:0.01898572235720081 :0.07503694347205704 +situation:0.07524005155010216 question:0.07206440149464985 conditions:0.058440119653211234 same:0.05302533766691449 :0.741230089635122 +commission:0.19267473715491656 use:0.04196751132491133 progress:0.03564970336445578 Washington:0.027842486622269614 :0.7018655615334467 +exercise:0.8718561511299205 soil:2.2197390652611287e-05 and:2.097419615391629e-05 Government:2.0448837734156294e-05 :0.1280802284455387 +I:0.4798859650002989 they:0.3091456887264587 he:0.10875201043672227 she:0.07454913378715397 :0.027667202049366256 +of:0.9359014350599195 in:0.017328168424038937 .:0.016210649812083245 it:0.008025081701575907 :0.02253466500238239 +what:0.7302902319813496 that:0.10558279111588834 if:0.10472322968744183 whether:0.03429743981626387 :0.025106307399056282 +the:0.6627299394382973 both:0.04516130169523736 many:0.022468431178333914 most:0.00925804940314114 :0.26038227828499033 +It:0.13439575565514825 Who:0.10049481092682064 We:0.07532063744885906 Is:0.05071632756601916 :0.639072468403153 +the:0.43277586602330587 a:0.08729885884167117 his:0.043643920584019204 our:0.03936416622512411 :0.39691718832587974 +whole:0.287289275593218 greatest:0.18819801833721392 great:0.14960600557817808 highest:0.10022357953324283 :0.2746831209581472 +during:0.48975031831814325 in:0.2903405470338487 when:0.07898720093466687 for:0.03839305317304773 :0.10252888054029352 +in:0.3886334607118222 on:0.17294394037404162 race:0.08493469011372749 at:0.06374476978129644 :0.28974313901911203 +the:0.7075898174873438 a:0.11180024781892929 some:0.10273459971119119 tbe:0.021692641968223434 :0.056182693014312265 +and:0.19459259027477854 they:0.1100991837072899 rooms:0.0666658561950134 it:0.04613899407138384 :0.5825033757515342 +a:0.15114951717263395 the:0.07623054352360849 Miss:0.03258976791242626 an:0.029011982136200605 :0.7110181892551307 +and:0.019778071730390402 day:0.014509897768814001 Bank:0.01004733977701943 one:0.009371350468602532 :0.9462933402551738 +which:0.17533724081654764 he:0.08487683939427654 paid:0.074344870669075 claimed:0.06166611499797569 :0.6037749341221252 +the:0.2524796157323329 live:0.22033702889242246 come:0.11169776253539646 be:0.09010760756282761 :0.32537798527702055 +the:0.11454877477478062 and:0.08490806632253776 of:0.07260205380480524 to:0.04523280529637246 :0.682708299801504 +attempt:0.03753899585654614 and:0.03054608507038072 thing:0.027437979793524064 tion:0.022206341427999897 :0.8822705978515493 +it:0.9391704890871957 he:0.009020398572497566 off:0.004607740809325321 by:0.0013144572181115054 :0.04588691431286991 +use:0.2806121450852929 value:0.14474856579426226 advantage:0.04070170678574958 account:0.04063534460324203 :0.4933022377314534 +the:0.9309772239240358 at:0.025700120454865062 At:0.0022944855913154785 and:0.0007765531498271651 :0.04025161687995641 +for:0.536452348109244 with:0.32140321968375263 and:0.042780105650476345 at:0.025988552452774084 :0.07337577410375307 +was:0.22431668738650506 to:0.21616479862168708 is:0.15696925679599624 for:0.1275530392289509 :0.27499621796686063 +a:0.00533811239029594 answer:0.0038774444551992653 this:0.0012899406527252936 tion.:0.0007388965693219321 :0.9887556059324575 +these:0.18116432492646636 Committee:0.14241208655167342 the:0.06925742768286339 their:0.0681201405817763 :0.5390460202572205 +upon:0.3195607402193001 get:0.13031174597810868 to:0.10550424328563625 gives:0.07382816642741206 :0.370795104089543 +policy:0.06871728454252611 one:0.04313465042592749 e:0.03476038113268182 m:0.024031387485447035 :0.8293562964134177 +in:0.33736823254322884 with:0.28028918386270674 for:0.1845296514770987 through:0.10416124371193376 :0.09365168840503195 +and:0.2250876051453947 were:0.08411847527687341 there:0.06686380700048974 used:0.06095608375844572 :0.5629740288187964 +without:0.6649862658933344 with:0.1517996812533669 making:0.1254121548034932 in:0.03591117638587957 :0.02189072166392579 +be:0.8297912740564041 have:0.03806396805114739 prove:0.03744638914639584 take:0.023525060860947997 :0.07117330788510465 +by:0.40108041089901453 at:0.25081595337830004 within:0.09966524662199032 on:0.09292677482399246 :0.15551161427670265 +just:0.26166729930207167 and:0.18601050782085132 for:0.15689094486445934 in:0.10879120338734977 :0.2866400446252677 +at:0.4344526443198473 to:0.13487841386663857 in:0.06984776594844547 quite:0.0599033062700263 :0.30091786959504246 +and:0.09434806492356426 but:0.023189639443979983 man:0.020311232642522967 one:0.019527265965926015 :0.8426237970240068 +approved:0.2671144864948208 to:0.13001251458020657 the:0.07868922406679424 shall:0.07035414102350715 :0.4538296338346713 +2:0.008556670443163418 1:0.0020076043511553566 15:0.0015873466745441587 I:0.000538330188666597 :0.9873100483424706 +most:0.009070763626738549 ways:0.002878755963870882 lies:0.0014622584089715451 though:0.0004524915553332479 :0.9861357304450858 +continued:0.07585536838783963 present:0.05065720954709067 good:0.0331138125307465 felt:0.031757128442207246 :0.8086164810921159 +the:0.40010620983001816 will:0.20640479127268377 so:0.13858228002190184 and:0.13112374180486133 :0.12378297707053482 +to:0.9468713529243418 we:0.038166572512957284 you:0.010154019389557633 matters:0.0015352605586922937 :0.0032727946144510346 +made:0.045959390922131596 or:0.02862242687862376 of:0.025798826833405272 and:0.023788885679734452 :0.8758304696861049 +to:0.9981406050261324 lo:0.0005936152750091114 more:0.0002929212720205747 and:8.82082788457838e-05 :0.000884650147992302 +the:0.24720689708051036 The:0.1677549445863509 of:0.034172511725967705 are:0.020953809576284566 :0.5299118370308863 +will:0.4629504896875683 may:0.2553095995771605 to:0.16101481950639634 would:0.068040595644825 :0.05268449558404987 +the:0.36566997803607476 other:0.08937205744522593 its:0.0319343135564437 his:0.031098329318705903 :0.48192532164354984 +of:0.08862545662590521 and:0.07849486353153898 the:0.07339911435889446 to:0.031975342941151834 :0.7275052225425097 +to:0.5721918648990786 in:0.12786994996849416 be:0.11688468892471512 by:0.09368455826602887 :0.08936893794168323 +and:0.23079820633060855 The:0.136028482716097 the:0.08655328096082404 of:0.037981104884206175 :0.5086389251082641 +on:0.19724881273571676 and:0.16387028727734665 in:0.15946016204481997 of:0.14164864921958734 :0.33777208872252934 +In:0.35555826379416994 in:0.32948224173945684 of:0.0798430666117295 to:0.0787209535722734 :0.15639547428237022 +on:0.7365924473957323 in:0.06471530871309615 to:0.056057089046302154 and:0.031205031269150744 :0.11143012357571871 +fact:0.15638953227952487 knowledge:0.06576397209746138 disease:0.043146363779681736 demand:0.03009952372189278 :0.7046006081214392 +man:0.026766228354333607 name:0.02620368556078457 appearance:0.0257039933091385 the:0.010658649351568527 :0.9106674434241748 +and:0.1949768036751318 to:0.0892579267474286 the:0.04318486981197615 of:0.03480856066981976 :0.6377718390956436 +and:0.18564476253642864 The:0.07044031829817596 the:0.06796195528824835 of:0.06479649201349497 :0.611156471863652 +a:0.995981347691454 next:0.0013085971793111966 s:0.0009044275958498358 some:0.0007065024091608341 :0.0010991251242241766 +city:0.1149077633652903 matter:0.055115534285095254 County:0.04789087090951524 way:0.04615430653853239 :0.7359315249015669 +members:0.07337448903072057 chairman:0.047039178404677084 report:0.042763651271015723 people:0.022078935148708855 :0.8147437461448777 +bring:0.6161828934987333 give:0.20471154450242787 proceed:0.02239955599975276 go:0.015572551926448698 :0.1411334540726373 +a:0.5184205550504953 the:0.16231513671266234 and:0.061411423188383524 this:0.04758030655977425 :0.21027257848868453 +back:0.464389864547983 to:0.18954884968021027 in:0.15248220600384346 by:0.09570163569251064 :0.09787744407545261 +most:0.03604762195999105 same:0.0239425484476294 the:0.016326210190631907 greatest:0.0107665124937017 :0.912917106908046 +period:0.06810646729782881 management:0.055394347536695455 story:0.04712082422039571 lines:0.04459900121881371 :0.7847793597262663 +equal:0.0683759307728471 superior:0.04734712437263655 entitled:0.030164825574537927 opposed:0.02018831935849869 :0.8339237999214797 +when:0.0025243123851324814 making:0.0009271977756190162 which:0.0005387921956254451 that:0.0003691502914004633 :0.9956405473522227 +like:0.5366841371755746 as:0.12615839455001263 in:0.0774626093468906 into:0.07176773084890992 :0.18792712807861234 +and:0.20838932684386727 was:0.08810215397180958 und:0.07634216270402462 Friday:0.06403183180077271 :0.563134524679526 +a:0.40031637294084793 himself:0.22900639391047847 the:0.03664645120290092 he:0.01917159169904894 :0.31485919024672365 +aid:0.3517499568473354 show:0.17738359356798397 the:0.11494780973953159 be:0.029945711699047157 :0.3259729281461021 +I:0.9804059472337995 that:0.005265691446216485 He:0.004812495564859909 to:0.0029553122600790563 :0.006560553495044986 +day:0.13915253201262062 tion:0.11306117394141013 ment:0.06535482527279596 Court:0.03574557742869461 :0.6466858913444786 +fear:0.14939259568083077 that:0.07336026237718844 death:0.025612189427954853 the:0.021610140733756264 :0.7300248117802695 +owner:0.04968546673595861 owners:0.04425377427319669 balance:0.032876184271126124 proceeds:0.029846034623272663 :0.843338540096446 +containing:0.2674709745585958 land:0.11038686526047478 and:0.031921472153948104 being:0.02369217129220817 :0.5665285167347731 +to:0.19009546054674475 and:0.1211336137585712 by:0.0840992612129665 the:0.06828540392623533 :0.5363862605554823 +power:0.016123839922201802 Washington,:0.0009619787910742486 Washington:0.0007085404327424294 Paris:0.0005920708322236239 :0.9816135700217578 +years:0.010692076772164407 months:0.010554931447688813 hours:0.010237264566592724 cities:0.006353386118026062 :0.9621623410955279 +be:0.8815676812947982 bo:0.04607748646499683 have:0.02731022825087841 lie:0.017928835154161687 :0.027115768835164714 +fifty:0.6118396663593567 4:0.0882452147794995 twenty:0.04088390127521634 3:0.03834140563295355 :0.22068981195297382 +the:0.3652876221597369 a:0.054586231820272835 which:0.04071084228989872 his:0.03799251090576292 :0.5014227928243288 +regard:0.07908638033187176 a:0.0629178321302098 one:0.04226883767253463 debt:0.03215494985972138 :0.7835720000056625 +and:0.20638803277266263 do:0.05487867446323839 of:0.05122431870950398 the:0.042998532381107984 :0.644510441673487 +and:0.11457185149332522 the:0.08894764647742823 of:0.08883539307152963 to:0.04916497064647995 :0.658480138311237 +body:0.34798161060859795 bill:0.2739539200268067 medicine:0.008967391690385735 man:0.005559488923523688 :0.363537588750686 +estate:0.8942283146080505 estate,:0.08178164924106852 property,:0.017041305155605438 property:0.0035748938943378416 :0.0033738371009376725 +the:0.38771461955733777 that:0.27453769728195976 a:0.11932316668805577 due:0.0075327769540581525 :0.2108917395185886 +an:0.31439182780068964 and:0.262867400218998 the:0.25578025187547787 it:0.11258941620215954 :0.054371103902674967 +first:0.03677731011810701 great:0.0274428006977824 general:0.018087022773991053 total:0.015498111076776597 :0.902194755333343 +in:0.306930210297675 of:0.15867469786615074 and:0.14182659975030132 above:0.09943274981720542 :0.29313574226866745 +o'clock:0.9945068414777639 o'clock,:0.003766026183874894 A.:1.5886043184079272e-06 and:9.996625719808576e-07 :0.001724544071470749 +the:0.4359045371045092 a:0.41870752224944424 your:0.1006603859839419 our:0.029662510271629836 :0.015065044390474885 +such:0.2985087581742959 him:0.25516154199490215 it:0.16321219492743477 me:0.10695281441134394 :0.17616469049202318 +Here:0.3401185253140703 likely:0.1713243746450395 hero:0.12890741441636325 ;:0.08966217200686263 :0.2699875136176642 +been:0.9000540721378458 I:0.007713767452505434 now:0.006538132413379788 not:0.006370483171751195 :0.07932354482451771 +and:0.19602725837448629 natural:0.17067273810932848 is:0.08839976151522867 are:0.08533265159022915 :0.45956759041072726 +tbe:0.24590249591634267 the:0.21686794645734636 The:0.14363540840759717 a:0.07037015885800839 :0.3232239903607052 +the:0.14932623420598562 so:0.06738290424301772 a:0.029920098532472832 its:0.02386083065858025 :0.7295099323599437 +best:0.25447081567859553 of:0.25148595884106006 only:0.07338241336026773 this:0.05086242600643381 :0.36979838611364274 +have:0.2612685339576408 now:0.15424469373419128 be:0.10021393191405752 all:0.09659234801722306 :0.38768049237688734 +A.:0.43859400970766527 J.:0.07934688456183663 R.:0.05316949475908489 E:0.040387561571516094 :0.38850204939989696 +the:0.5222944212100967 Mr.:0.10408563252049452 his:0.08116072609075088 tho:0.062313239227701996 :0.23014598095095598 +and:0.12280780076169216 of:0.1087500703958101 to:0.08595999764289196 the:0.043176955140744946 :0.6393051760588608 +yesterday:0.6431466733181972 in:0.19656857772435007 last:0.04830761763642978 spring:0.035391127025468 :0.0765860042955549 +House:0.13364625037869762 house:0.062492599323720664 part:0.020640039975550587 and:0.019889328102372858 :0.7633317822196584 +to:0.4450844832117887 of:0.443149703443241 and:0.008587155210577574 hand:0.005506203980008528 :0.0976724541543841 +White:0.09477117715881407 and:0.014619349850447555 und:0.00810627586823657 ami:0.0025518100782567442 :0.8799513870442451 +The:0.46753246662867315 the:0.08196438069052489 out:0.06921152970533313 a:0.05451413653900069 :0.32677748643646815 +look:0.15720398820943818 looked:0.10495894777151879 and:0.10391796322759825 looking:0.09390530869540081 :0.5400137920960438 +and:0.204011822410588 the:0.19796013664171727 county,:0.19573067444891293 a:0.10586674529803541 :0.2964306212007463 +dinner:0.22222520721695033 a:0.18717832670903456 the:0.15933735139448899 something:0.0424214870576426 :0.3888376276218835 +K.:0.14587344157213963 W.:0.14135220610922175 Robert:0.12795025733729806 Charles:0.12498969975910124 :0.45983439522223934 +other:0.9900779919701684 better:0.008363694343147243 small:8.181492100783945e-05 possible:1.0143002781368886e-05 :0.0014663557628951192 +suggested:0.3275037475004053 on:0.20187678111985322 of:0.18151654113388446 when:0.1078921246765921 :0.1812108055692648 +honor:0.05697954379482911 as:0.050109893388065395 range:0.019684480138162357 tried:0.017997310568566165 :0.8552287721103771 +at-:0.10339120480607208 greatly:0.08249978090274108 not:0.05361352267336906 suddenly:0.04919009156198382 :0.7113054000558339 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +legal:0.14605929788723612 most:0.1144094471105933 up:0.00900630915260067 more:0.008627143207566903 :0.721897802642003 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +3:0.004118872525143125 feet.:0.003308345331797267 the:0.0017290453852471259 3.:0.0004798129461891108 :0.9903639238116234 +them.:0.12566042750217524 house.:0.03753552170027685 home.:0.03255940570811708 ?:0.018120097653172056 :0.7861245474362587 +entire:0.15812427729221576 full:0.13260062807048578 principal:0.08971732991192356 whole:0.06663891071694794 :0.552918854008427 +body,:0.07958392961613213 private:0.06944543250217414 greatest:0.06149772009218262 several:0.04896213031680466 :0.7405107874727065 +at:0.900228036878921 At:0.08087245976151716 The:0.0065539548392675685 lie:0.004812733353664081 :0.007532815166630269 +shall:0.43023736122031214 may:0.34741427274802983 will:0.08572596324179108 should:0.07010356031091777 :0.06651884247894913 +the:0.027645666605726007 out:0.025847048932258202 and:0.024935609231100834 one:0.018656764685153485 :0.9029149105457616 +hundred:0.23466622651057054 and:0.0527597741406361 or:0.04460785134600863 miles:0.033083380666112536 :0.6348827673366723 +of:0.4306194905840701 for:0.23177654819041935 as:0.058130821923164745 in:0.04881617844957581 :0.23065696085277007 +keep:0.36589364192308027 let:0.1435822346237743 allow:0.11589510922540523 sell:0.06928988435593104 :0.3053391298718091 +of:0.3499364379993457 has:0.2803561905827074 had:0.06260814441360715 have:0.00317907208838041 :0.30392015491595925 +he:0.1353967636762172 they:0.07832917640956706 and:0.05697988374709914 she:0.04418530931485006 :0.6851088668522665 +them:0.5786518395893084 on:0.2829143221606743 and:0.03949747114731541 him:0.03891969167859892 :0.06001667542410289 +and:0.34994146845821894 who:0.1699235389897135 He:0.04659332444034925 he:0.01724068833328154 :0.41630097977843694 +the:0.7361955718336728 his:0.06577830060060968 a:0.022622610622064478 last:0.020077514389393265 :0.15532600255425988 +who:0.7423411252401542 it:0.0011443770837920911 whatever:0.0006737076923049155 there:0.0006327208235122997 :0.2552080691602366 +events:0.2001625310534395 boy.:0.12154191310700861 occurred:0.035423684740266775 times:0.03327029342972884 :0.6096015776695562 +and:0.10418777898577418 the:0.09176678004971142 of:0.08260010986328223 to:0.06607388093024333 :0.655371450170989 +to:0.2875678964843437 will:0.17356882691184028 may:0.13189520678574992 and:0.1189872038064525 :0.2879808660116136 +the:0.005354236387146422 dangerous:0.0017884494353277796 short:0.0017464088422145582 his:0.0012985401891809393 :0.9898123651461301 +in:0.2818618690972089 for:0.09786470437837137 with:0.07078737125072801 when:0.062235733589596186 :0.4872503216840956 +be:0.5004756676582938 have:0.045791407265882884 a:0.04069619111488804 bo:0.034608657894557505 :0.37842807606637774 +and:0.2105582289999195 of:0.13694558958294178 years:0.03554561959111155 feet:0.03331587009052377 :0.5836346917355034 +acts:0.3002649632061961 powers:0.15294642979456344 was:0.01332973814165824 the:0.010524113660303112 :0.522934755197279 +the:0.15790677417821566 a:0.11995202804374556 seven:0.08482835023384093 i:0.060439156931024265 :0.5768736906131735 +in:0.6990562579004671 are:0.11054499349466242 but:0.05058837972241254 In:0.036064956537608515 :0.10374541234484928 +and:0.058170487525912716 he:0.028168408026875674 He:0.024814344065101766 who:0.023245981160048 :0.8656007792220616 +tho:0.9984124020429423 the:0.001575038159704742 to:7.97047086061639e-06 top:1.9491550071764224e-06 :2.6401714851987867e-06 +same:0.03318800484525339 time:0.017797843333603954 west:0.014334917207528596 most:0.012138002496834511 :0.9225412321167795 +in:0.34416019650905305 that:0.05351401713594796 made:0.049036970450293996 not:0.04662962960423619 :0.5066591863004688 +to:0.587263037080475 not:0.1270343087388571 We:0.10456537910836708 they:0.016053193435919214 :0.16508408163638166 +of:0.9245400123458755 that:0.01508468372482428 to:0.013286848876080143 leaving:0.012817696355265836 :0.03427075869795424 +with:0.5483852404917157 before:0.13784413566678005 of:0.11662244695270144 Supreme:0.08721871464109138 :0.10992946224771136 +It:0.20927052026294177 it:0.1633770143223367 which:0.0682151610832685 and:0.06008838629864092 :0.4990489180328121 +but:0.3618186956928381 They:0.14665833426017466 I:0.13674847564546053 and:0.08439524793226866 :0.2703792464692582 +would:0.10132425992797958 brought:0.03351304933938965 deemed:0.03254325953668151 compelled:0.031537845392715785 :0.8010815858032336 +center:0.2092859707438579 German:0.11646732713493547 main:0.06310597939526001 first:0.06215986090929403 :0.5489808618166526 +shown:0.033771529261352615 bound:0.026762938491289346 suffered:0.01308288215959098 help:0.007963800093795315 :0.9184188499939717 +left:0.396942318970837 at:0.1156073311215679 for:0.054787473839602065 of:0.035544428814334346 :0.39711844725365875 +which:0.16016355860504936 that:0.1401337889238919 the:0.13620085206987298 course:0.03237730857835546 :0.5311244918228302 +were:0.39129062785328805 was:0.2677497218683587 are:0.08687035496447308 is:0.005910259435792102 :0.24817903587808823 +the:0.5517048251334914 tho:0.06215542488389826 a:0.059282328990174236 whom:0.033088640586098075 :0.293768780406338 +but:0.16197896202758422 and:0.13395644970146459 B:0.12310067191255301 As:0.11695261041672472 :0.4640113059416734 +the:0.5441480829267556 a:0.313582383346936 this:0.06023285058356385 his:0.017515835317903662 :0.06452084782484091 +and:0.12169246937645489 to:0.1110443755381206 the:0.06145177542304363 of:0.06096232684763608 :0.6448490528147447 +result:0.0861801918259114 woman:0.02337794591770443 other:0.02111953857733544 man:0.020861006076030985 :0.8484613176030177 +opposite:0.349073941664707 other:0.32280337117115354 port:0.06419612382253934 back:0.05575795608709018 :0.20816860725451 +took:0.15293265955444763 left:0.1195106595472845 find:0.11193991867586735 leave:0.11097482668907498 :0.5046419355333257 +say:0.39488927719625994 think:0.26312820657097447 see:0.23526919121349346 such:0.013328449934301831 :0.09338487508497038 +him:0.34015660736563186 me:0.14108582396544514 you:0.12152729205800962 them:0.05504153240738288 :0.34218874420353035 +same:0.07970321561288238 further:0.05122570106694581 favorable:0.035000908822132755 former:0.023004487263797464 :0.8110656872342416 +first:0.5955886065441217 second:0.09842330609129608 next:0.04442604359852104 latter:0.03430024151754463 :0.22726180224851636 +is:0.15223417164633718 and:0.14402307970198458 of:0.14359183289546434 in:0.13845787975011606 :0.42169303600609775 +by:0.3980431714940113 with:0.34930405334680237 to:0.06381001750278271 and:0.05821299185534599 :0.13062976580105765 +freight:0.10386086782726074 railroad:0.050427670564662165 center:0.03853889908285875 recent:0.0323732720281151 :0.7747992904971032 +first:0.15430544600272633 last:0.05327710955459515 only:0.04942044869480353 most:0.039874018797103346 :0.7031229769507717 +whole:0.830639121541573 the:0.1106170207458218 this:0.023343394386159098 The:0.012539253398098199 :0.0228612099283479 +the:0.051594121689848706 received:0.009526653507196005 considered:0.009367317558844488 offered:0.00846180840836609 :0.9210500988357446 +one:0.5470195904376456 money:0.19032100895089074 men:0.08192048309221218 friend:0.04726378656700319 :0.13347513095224842 +to:0.29599657111212585 the:0.2722170833267981 your:0.09356536989683273 within:0.026726322375270173 :0.31149465328897313 +others:0.04681296155403105 water:0.02748754501587939 the:0.023107614038034546 wealth:0.019201317337453058 :0.8833905620546021 +full:0.47491319262047643 clear:0.1286220717051779 post:0.09676130816361289 strong:0.028891782508763633 :0.2708116450019692 +the:0.5750672577751026 The:0.08002162644551862 of:0.06021052838366819 to:0.04220099591834384 :0.24249959147736685 +the:0.239979215636726 to:0.1295418006060316 and:0.0858386219035279 that:0.06534677058693733 :0.4792935912667772 +the:0.89515947220791 an:0.08754543159041207 his:0.007874207805200107 tho:0.00577482164431237 :0.003646066752165297 +by:0.2779365378313311 in:0.23996783309151737 to:0.18272933679876988 on:0.1811661784781268 :0.11820011380025482 +every:0.5566553315616746 ry:0.14986646045115637 city:0.016077814225714547 on:0.014418428678701353 :0.262981965082753 +looked:0.18907653360769192 rose:0.15518135373628433 took:0.08462790514666288 came:0.0799858654360751 :0.49112834207328576 +of:0.9935126524789771 which:0.0013708081207456405 the:0.0012939886152059747 ot:0.0010705738950494632 :0.002751976890021911 +brought:0.6593922770243981 went:0.17770509920322253 came:0.05197616664390606 promptly:0.027270898225946878 :0.08365555890252646 +So:0.5458448208442841 ate:0.06870484572235208 is:0.06098774178042277 and:0.007890274593946811 :0.3165723170589941 +left:0.5336352130428029 more:0.09441307914317185 else:0.06550259049588215 necessary:0.03900677289166827 :0.2674423444264748 +few:0.036665490931420706 large:0.024724274275554854 very:0.02334818874462963 new:0.021031873447061866 :0.894230172601333 +degrees:0.8009422423371494 feet:0.00034123161170626783 chains:0.00031973405424387313 minutes:0.0002916217813840202 :0.19810517021551644 +is:0.5756469933339573 has:0.06899636460288708 work:0.06669485904957345 was:0.06568364255881735 :0.22297814045476483 +be:0.2705524765846734 see:0.08348934149215537 State:0.05253337844250462 result:0.03366610181324727 :0.5597587016674193 +and:0.10835442990814263 the:0.08379373724074171 of:0.08200445305227053 to:0.0404647235748225 :0.6853826562240227 +commercial:0.5655423656913738 small:0.3488862323949453 right:0.004854722379756951 general:0.0036387268750322013 :0.07707795265889157 +it:0.18544063330759303 he:0.18184755293475016 they:0.17238531874498128 you:0.08215103191441048 :0.3781754630982651 +old:0.04004854059565663 1:0.0371107641151213 I:0.027060909836851953 the:0.022393381471603475 :0.8733864039807667 +line:0.12661746960243206 part:0.06445244594044955 north:0.05208311150769619 south:0.04561582470646049 :0.7112311482429619 +by:0.1329542367998651 T.:0.010385512132782817 C.:0.007476223608701745 &:0.007207140961925158 :0.8419768864967252 +the:0.09328946122003152 to:0.06221684436565655 and:0.05881124691491848 of:0.050047105929409745 :0.7356353415699837 +costs:0.030247234564142977 advice:0.014130479366751833 intention:0.01381058128705516 West:0.012823371477130014 :0.9289883333049199 +said:0.6345825331529339 the:0.1333297125252661 each:0.047112804083265944 Washington:0.0353212733302832 :0.1496536769082509 +in:0.4779552550795 from:0.400407021798629 though:0.06521267471399718 at:0.041519175030131056 :0.014905873377742731 +his:0.44998964122826346 in:0.24311649414309472 two:0.06264377793439375 lost:0.026364207112701793 :0.21788587958154615 +time:0.9515956223702549 lime:0.007806468781739789 period:0.007718997307641855 meeting:0.004085329551680802 :0.028793581988682867 +the:0.9290911923681922 tl:0.052482741325397965 our:0.011912897392631043 tho:0.004994356773491106 :0.0015188121402875743 +of:0.1625382656821741 is:0.1599141080476601 was:0.1328037419101023 the:0.056301245096251444 :0.488442639263812 +and:0.15487548914264326 is:0.048917702135790886 as:0.03318704053324844 enough:0.03183020942027157 :0.7311895587680458 +The:0.5096948998322006 the:0.09544894408770208 ot:0.07988161416868618 and:0.0662630028651123 :0.2487115390462989 +a:0.2780556315406152 its:0.11506609787347513 the:0.07117055506239298 deep:0.06893084889845819 :0.4667768666250584 +about:0.24069579703341437 eight:0.15748731905266902 four:0.14780644571998408 ten:0.1450021799276525 :0.30900825826628014 +of:0.20314001964765138 and:0.14353971965118092 the:0.064098370432369 to:0.04710199446774827 :0.5421198958010505 +a:0.16035856716627092 the:0.13127676677765687 not:0.07225644944803182 in:0.03913004591499321 :0.5969781706930471 +is:0.6395475243760977 in:0.08478582942553325 had:0.07809475915359619 has:0.07689727410971142 :0.12067461293506139 +is:0.15174761348845042 and:0.11236606838782744 was:0.09911019885122084 are:0.0824648811128749 :0.5543112381596265 +this:0.37491539873426694 and:0.24289880781447468 its:0.1353322278400149 a:0.08025055968428875 :0.1666030059269548 +In:0.5728055677598994 in:0.22796529872696283 A:0.07017672096890296 the:0.014279656713604535 :0.11477275583063014 +to:0.6076473713588313 a:0.14580459777971969 the:0.105002747271583 an:0.029389687097297147 :0.11215559649256882 +people:0.7506832329248665 amount:0.008698314226587405 system:0.0031845656633688675 power:0.0014698027895521726 :0.23596408439562494 +W:0.7562740273822233 A:0.10371786381922139 J:0.03775942607927686 F:0.01390093290145589 :0.08834774981782269 +to:0.9993322657652077 not:0.00018935754660512487 first:0.00012953878723540973 simply:7.070037769917647e-05 :0.0002781375232525676 +the:0.38457837886265606 of:0.08360189828905104 his:0.03747202606976706 in:0.036666976254339824 :0.457680720524186 +gave:0.09493097435682563 carrying:0.08976848698551004 drew:0.06771284670978024 gives:0.06349943355316608 :0.6840882583947181 +members:0.42412542348435334 legislation:0.057101065664408236 power:0.039381943430388144 ers:0.025372769837484155 :0.45401879758336594 +of:0.32691721356916376 to:0.042840937661628255 from:0.014831859662406185 one:0.011283419500544964 :0.6041265696062568 +which:0.5086213278549567 and:0.2192344052320529 it:0.1434913479340455 he:0.06925142556788028 :0.05940149341106446 +re-:0.6732243863150502 re:0.09232614257663242 to:0.033484031611663335 a:0.03296176073666432 :0.16800367875998964 +of:0.18975486154232116 and:0.07989933012063262 by:0.07957417353343112 to:0.0776198212512294 :0.5731518135523859 +order:0.011382344554193636 addition:0.0033265013189550776 or:0.0028801122533644503 which:0.002197351112650914 :0.9802136907608359 +was:0.3942475546723813 were:0.32195813787340666 are:0.08496978883215531 is:0.08113660567684074 :0.11768791294521583 +a:0.7407011263004359 the:0.18595353123656846 ono:0.025903667125477876 his:0.024992888416128786 :0.02244878692138886 +c:0.15395821775634042 tie:0.14156863538593942 s:0.022139759776798905 l:0.01721351466621775 :0.6651198724147035 +and:0.7017104436929572 when:0.14091588827829832 but:0.07259549884791539 with:0.04931556528173175 :0.03546260389909738 +the:0.23508065506845244 its:0.0962651792438015 that:0.06911548456548117 his:0.023540623500497224 :0.5759980576217678 +of:0.1174355013928419 before:0.11020663941723989 aid:0.09087328416268006 having:0.07768175104157747 :0.6038028239856605 +the:0.3193633754083565 said:0.22508879986974722 any:0.22077838983061832 his:0.0736073321842239 :0.16116210270705408 +and:0.1269724361128422 are:0.10283035404113092 clearly:0.0377469479082143 against:0.02554292857115083 :0.7069073333666617 +have:0.6803207732521579 had:0.18864038674775935 only:0.04904820127724407 then:0.04670511514078319 :0.03528552358205552 +the:0.20800335614771626 City:0.136476551582292 favor:0.0807746857574747 behalf:0.027508926197465543 :0.5472364803150515 +with:0.26165471416409714 as:0.2052002610354438 and:0.13331862926351362 of:0.11166395877326159 :0.28816243676368386 +in:0.9479272490181665 of:0.027404955951217783 was:0.003115249405874627 to:0.000413223925716723 :0.021139321699024317 +would:0.7208538638844024 could:0.12125973014071108 did:0.08800755470376063 do:0.05850585322398898 :0.011372998047136837 +ment:0.07395236607607024 satisfaction:0.04945795834376564 as:0.04013764698030602 time:0.0384681067075425 :0.7979839218923156 +bonds:0.3982123483064966 money:0.16950415569158736 debt:0.13325304528372175 cost:0.026214541997354675 :0.27281590872083966 +at:0.9984722577015587 of:0.0006004439981979737 about:8.881989360739247e-05 the:5.789100880521884e-05 :0.0007805873978307692 +and:0.14157946694653434 of:0.0606655734241959 the:0.04921148071068786 to:0.040671633327577034 :0.7078718455910048 +of:0.2726562659161041 and:0.15354341677968214 the:0.07648809436314084 tional:0.05422987685966773 :0.44308234608140523 +tion:0.02787619774695612 day:0.02329495357322691 act:0.01960946490867211 virtue:0.018425061962815167 :0.9107943218083298 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +men:0.03402317729138419 friends:0.0218441055564676 officers:0.013773732018697813 county:0.010508068605784035 :0.9198509165276664 +The:0.3867580215644881 the:0.27770522458105873 I:0.05248786301173794 a:0.04074646829456743 :0.24230242254814802 +said:0.622817673782648 such:0.16292849799847814 the:0.08517763081898573 and:0.05001989945760962 :0.07905629794227845 +the:0.5150116590238537 a:0.09487712617372332 his:0.08967249760075774 my:0.0329558642095029 :0.26748285299216235 +satisfaction:0.9127763935321908 better:0.005745090514879442 interested:0.003791761673098953 that:0.003284354453233039 :0.07440239982659783 +found:0.20707196519811977 made:0.05938278174300202 held:0.054929071088357796 used:0.04522457915742622 :0.633391602813094 +deceased,:0.06523705833596243 J.:0.03755053569884454 L.:0.03280776161135275 Mr.:0.025833346418488612 :0.8385712979353517 +but:0.34732938251614026 in:0.12245026677319261 of:0.05027797574008875 States,:0.018011093628945124 :0.46193128134163314 +and:0.17346320980453103 U:0.15345293796739007 but:0.13299617063148417 is:0.08499671413873647 :0.4550909674578582 +club:0.00024332021085127787 law:0.00024100651804673083 rights:0.00016262091365076443 organization:9.239675971859131e-05 :0.9992606555977325 +in:0.18654873669872415 after:0.17710099198509027 of:0.12705822513665072 all:0.10085574813237962 :0.40843629804715537 +and:0.07060801922887741 ed:0.06858328146988193 together:0.042095711849865006 up:0.04185037937735265 :0.776862608074023 +the:0.1786650402193106 six:0.09821446537833671 one:0.08109998617768595 a:0.0609051835312263 :0.5811153246934405 +first:0.060078257088059084 wheat:0.04537510785651989 judge:0.03868016152506889 bank:0.03370301554095505 :0.8221634579893972 +a:0.09838190082614165 the:0.09666781501642357 to:0.07913067400506354 so:0.07072788811179562 :0.6550917220405755 +and:0.019473166591169388 this:0.015135391840516701 for:0.012900263165856306 .:0.008642176243272787 :0.9438490021591847 +work.:0.01994563654952914 hand.:0.0031002296485073914 home.:0.0026500082963735513 life.:0.002444416125715671 :0.9718597093798742 +Atlantic:0.2705989804405289 north:0.19764661893973867 distance:0.07944987095201692 average:0.060815291530434024 :0.3914892381372816 +lack:0.3167376858812947 knowledge:0.09501457068436414 majority:0.06983706817378915 depth:0.05988351920143579 :0.4585271560591163 +the:0.1830607791943791 and:0.10828983319573461 my:0.07684403213714588 a:0.06651983373559382 :0.5652855217371465 +to:0.8596457780922853 that:0.12794873819559605 would:0.001851451276867105 is:0.0015784425421686804 :0.008975589893082746 +and:0.13926782793453626 of:0.10955973672755624 the:0.05878438730803852 to:0.056941611597720355 :0.6354464364321486 +young:0.1522372450441714 best:0.15157981896135417 whole:0.09342158806214144 life:0.07242897858199158 :0.5303323693503416 +of:0.2187488664298555 and:0.11663039994783049 the:0.08376199616807466 The:0.04848443558904734 :0.532374301865192 +the:0.9531496921755727 tho:0.03360028071098536 this:0.013219873455836015 tbe:1.629230075933973e-05 :1.3861356846585894e-05 +and:0.18521499329854813 that:0.04852457841809415 and,:0.03599863912877578 him,:0.02947994706157615 :0.7007818420930058 +boy.:0.9915915620021811 judgment:7.801678513343782e-05 country.:4.6008485396662355e-05 ground.:3.4495041756495215e-05 :0.008249917685532569 +the:0.39734654699445066 th:0.2783186732615751 that:0.06220609739800094 a:0.05569092043592974 :0.20643776191004362 +heart:0.029457963588000204 friends:0.023559329401219537 !:0.006610992866379963 mind:0.004384569811398275 :0.9359871443330021 +will:0.31831528308363494 would:0.19139631919775627 all:0.08043694778321368 to:0.029395759676821436 :0.38045569025857373 +operations:0.0014053254743140388 cold:0.0009461562243153034 train:0.0003877304405864358 dinner:0.000331336330671739 :0.9969294515301125 +and:0.015447984451860112 then:0.012151924592519386 Here:0.008112962595183336 here:0.007833847055508299 :0.9564532813049288 +and:0.17905755004863444 of:0.1652104479575008 the:0.06414097511424979 to:0.03636899803342235 :0.5552220288461925 +of:0.5808606837572654 ot:0.09715833099277062 and:0.0539818532907252 on:0.04818632094046467 :0.21981281101877412 +law:0.11247695567203342 danger:0.10406835507542575 same:0.1022362956984328 floor:0.061628632207537656 :0.6195897613465705 +a:0.9706768047735065 the:0.025546350746878648 his:0.0030060516256996406 this:0.00036820903166399725 :0.00040258382225133004 +to:0.7228671909871082 and:0.0940928865601568 shall:0.01978144962888604 should:0.011051540469435845 :0.15220693235441327 +of:0.3025236276593703 from:0.18471564123194598 by:0.13926456275139645 with:0.13517652251863482 :0.2383196458386524 +follow:0.09554502469054581 use:0.04517675223261994 have:0.04444600938907607 tile:0.03943285448718068 :0.7753993592005776 +gone:0.3135904146015779 returned:0.13836203868306857 led:0.10458702711570772 moved:0.08909395943741202 :0.3543665601622339 +Hut:0.30875097704252985 and:0.14727526359643908 for:0.09596285532223889 at:0.054042225539944644 :0.3939686784988475 +one:0.2898532128221173 One:0.08727699901046479 some:0.08695999513199293 are:0.029619456606698968 :0.506290336428726 +the:0.44420786254920236 his:0.1920203046784993 an:0.07339866490123717 a:0.0682866293139772 :0.2220865385570841 +of:0.360123882897174 in:0.1819501898940469 at:0.1178607304093691 and:0.08583855994491528 :0.25422663685449476 +of:0.1163586389179856 and:0.05533994762651513 J:0.02309375971778311 W:0.02127394999280762 :0.7839337037449086 +a:0.29526965652949816 but:0.2162728019984191 so:0.2105433391200933 very:0.17079522361306038 :0.10711897873892898 +the:0.19047970239498993 a:0.09010670007676276 and:0.0605973958516795 to:0.05322247654609619 :0.6055937251304716 +see:0.5957034248810407 be:0.18225200787672413 get:0.09719305559180115 have:0.09395561892360205 :0.03089589272683203 +was:0.5781302522709658 Is:0.29930648824814093 is:0.0918767685895308 were:0.011828662536493563 :0.018857828354868978 +the:0.4870048002764523 a:0.12713974081909404 any:0.0537034322615694 an:0.03495841965788444 :0.2971936069849997 +proceed:0.747274967900645 sell:0.21693371261652278 go:0.009212706690441498 grant:0.0033896840116279543 :0.02318892878076271 +many:0.948130198154662 of:0.02801932094334986 in:0.013227629503502737 and:0.0038782434644499732 :0.0067446079340356 +.:0.9565985615742117 .,:0.004047841937150219 the:0.0014455059072777494 of:0.0010217569281751235 :0.036886333653185305 +best:0.01298202925028673 good:0.007670458949966229 now:0.005980714924274879 doing:0.005620169691323235 :0.9677466271841489 +beginning:0.04742569317166714 time:0.026686742610843278 top:0.024867699258052395 first:0.021191618955997794 :0.8798282460034395 +the:0.2911083885222425 tho:0.08790291468029969 this:0.06224000582653138 a:0.042255460213701836 :0.5164932307572245 +that:0.7548573799577536 was,:0.14909294770992804 thai:0.05706893195907737 is,:0.021718063275850887 :0.017262677097390083 +service:0.12695710399484872 company:0.06739612427179602 first:0.05092013827252333 amount:0.04279628877064925 :0.7119303446901828 +receipts:0.01916026700427865 canal:0.007076364845822022 the:0.006836844798426386 figures:0.006812746180948363 :0.9601137771705245 +the:0.3799873826959949 and:0.11620033153846017 The:0.10973229040479805 a:0.07905727630284301 :0.3150227190579039 +the:0.28020327322085276 a:0.043078737652035334 his:0.023158603116674847 and:0.01607854571888624 :0.6374808402915507 +County:0.2661455788465569 county,:0.0898410969345922 County,:0.08398804492034488 county:0.07289845807035734 :0.48712682122814865 +will:0.41671026462709543 may:0.35157179427363033 to:0.14232660439426 might:0.07707594134312218 :0.012315395361892079 +who:0.23272404984241477 which:0.17573418434998436 that:0.1515534079099382 as:0.14396122090469984 :0.29602713699296285 +the:0.3349126558178886 a:0.11765001804407887 tho:0.04841982885599017 his:0.03386868946894172 :0.46514880781310064 +be:0.31889191156094865 have:0.23558865496695844 the:0.09627026169377424 bo:0.02621255297953349 :0.32303661879878515 +a:0.1054709145239797 the:0.07168096986953582 every:0.03764277585607214 one:0.0157434818832602 :0.7694618578671523 +one:0.0377354575307606 why:0.033714740351677035 mind:0.029545153034438935 it,:0.02402739630402239 :0.8749772527791011 +and:0.9035619733931876 by:0.007928007185954752 until:0.006877298393015339 as:0.006279853024673383 :0.07535286800316908 +Frank:0.08863832262286908 of:0.07317757153294356 Rev.:0.05759556133501945 .:0.040718135967733354 :0.7398704085414345 +any:0.28321971015514075 the:0.20538464946747642 cure:0.16953549473079538 be:0.03798106856634879 :0.30387907708023865 +about:0.4089316111769334 over:0.353013749043256 only:0.039041733127506015 but:0.03130607901850286 :0.16770682763380174 +of:0.2793650102059163 and:0.15399983002046547 He:0.08862276626674756 which:0.060584631417996596 :0.4174277620888741 +going:0.09246126014862009 the:0.08703271063838386 him:0.07401554227565371 them:0.06226367369727515 :0.6842268132400672 +and:0.11993654322770526 or:0.10436905978480053 the:0.10433641763201881 of:0.07050520290881215 :0.6008527764466634 +of:0.964218987784913 to:0.024143430138575124 on:0.0036434318225622027 at:0.0033368176025532917 :0.004657332651396585 +unless:0.9922618242796394 and:0.007297343789751474 though:0.0002359259991263949 if:0.0001345139139839737 :7.039201749883621e-05 +and:0.16744447894121917 of:0.12047593510291861 the:0.11589112739733452 in:0.06181541277151308 :0.5343730457870146 +port:0.0022347162823589707 per:0.0004315323494070589 pressed:0.00023839643523267104 pose:0.00023615759203962134 :0.9968591973409618 +by:0.23887053086792243 the:0.2023244610906391 to:0.14979928207627632 a:0.14338533940086123 :0.265620386564301 +and:0.10727887992040175 friends:0.050049437151001006 one.:0.03368236272209216 enough:0.0255275384108812 :0.7834617817956241 +remedy:0.0013879133022450573 the:0.0012169970715627024 give:0.0010003261186649686 be:0.0008121653917566323 :0.9955825981157708 +the:0.7041194349780936 tho:0.03693874086922304 this:0.021243829066352155 his:0.02107019440330639 :0.2166278006830248 +and:0.2352511555669858 also:0.003966523893030029 for:0.0030435993162961396 in:0.0018740096445243222 :0.7558647115791638 +that:0.19003456670525845 signed:0.1484360619213438 all:0.13976220443669632 in:0.11216618178770711 :0.4096009851489943 +has:0.29639427281596237 and:0.2910089733504757 city,:0.14667872207969176 which:0.1345279032234401 :0.13139012853043003 +a:0.9615860129505762 suitable:0.016569696195138935 the:0.008995045359280082 many:0.005680627272054431 :0.007168618222950162 +of:0.1216725680462259 and:0.11058216449455575 the:0.10534204839647841 a:0.0710522213530223 :0.5913509977097176 +took:0.7634501177858016 last:0.00391565955341064 visited:0.0030575706054991963 before:0.0025299254644238884 :0.2270467265908644 +and:0.16170923647455346 of:0.15083218587610156 The:0.13149215677274612 the:0.07573968105675839 :0.4802267398198406 +the:0.14443298420958292 a:0.05804586373489402 to:0.04923798560476862 their:0.042524342336384365 :0.7057588241143701 +to:0.6445455351533372 not:0.1801488957194664 .:0.030430855539432727 a:0.021893469595079085 :0.12298124399268472 +principal:0.4805679096308588 operation:0.12373889782474923 payment:0.059092481318173136 location:0.04927593558869984 :0.28732477563751885 +were:0.1211824512174112 *:0.09395828562420949 ing:0.08042440523041801 themselves:0.07809872596964303 :0.6263361319583182 +ed:0.024933026527063498 and:0.01768411486084173 ;:0.016854724381007605 out:0.015336697119357853 :0.9251914371117292 +to:0.48109642387479573 of:0.1269860043836267 and:0.11027313707185855 in:0.04969939376805256 :0.2319450409016666 +of:0.7774076362104306 to:0.06358168282800442 through:0.04281764313516712 on:0.035521538464414665 :0.08067149936198323 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +Mexico:0.9886587465587511 Fort:0.0004040311348118494 Baltimore:0.00023469082213008668 old:3.2105441872341124e-05 :0.010670426042434589 +at:0.5368390549804317 of:0.11493854519505667 between:0.07494040945941523 and:0.06307140399876834 :0.2102105863663282 +to:0.44678425120869997 in:0.19794769561041897 on:0.12344065940710011 of:0.11496445264659563 :0.11686294112718532 +for:0.6868343783701474 to:0.17812716791918629 off:0.04249764590131523 at:0.03763646965244884 :0.05490433815690237 +the:0.388314057012504 and:0.08791217591929702 The:0.06647002322392837 a:0.06333746236978939 :0.3939662814744814 +their:0.8020731317748305 a:0.11127480070878716 her:0.04560132687287779 the:0.034677128644138626 :0.006373611999365719 +would:0.38693149710792296 may:0.27066207706985207 not:0.12298120508633967 to:0.10991826485324936 :0.1095069558826361 +were:0.2331600445383917 and:0.038202334355852394 of:0.03144141934578278 for:0.02275946664804036 :0.6744367351119328 +well:0.18591673957179872 point:0.04426361255905048 company:0.03114057307811463 building:0.024854006105230978 :0.7138250686858052 +located:0.16961185569546733 a:0.1616086660115993 constantly:0.11537284141796313 the:0.0964357358748678 :0.45697090100010257 +who:0.20239789785434714 I:0.15130729309788638 which:0.12859653481972338 you:0.10176962505028878 :0.4159286491777541 +of:0.2868767824723042 and:0.18615008515199505 in:0.12599965961931456 that:0.10948144275728003 :0.2914920299991062 +the:0.2672453756340508 congress:0.058218255666425474 Congress:0.04981590292952117 officers:0.0414901599482319 :0.5832303058217707 +matter:0.3378242188080516 wealth:0.10098761986702329 in:0.07971605880353197 with:0.07783237549193375 :0.40363972702945944 +found:0.02298252114948174 will:0.01860473452635544 threw:0.01707797084741496 knew:0.008442561142676363 :0.9328922123340716 +which:0.4562177806006045 the:0.17498476923940032 and:0.03455102106606752 appear:0.027212566599779314 :0.3070338624941484 +to:0.7766653958244154 with:0.07836284591235743 by:0.07644047369770242 over:0.03492765936565158 :0.03360362519987307 +quarter:0.5712040826881383 first:0.03812784585598713 completed:0.01995195230549186 original:0.013577543383721226 :0.35713857576666147 +manner:0.41317722292731734 case:0.10489163617699189 most:0.06982668611880306 way,:0.025054199411493415 :0.3870502553653944 +live:0.2661660390492632 the:0.15954668189683988 be:0.08434233086054706 England:0.031157986199639793 :0.45878696199371005 +city.:0.22104808574065193 country.:0.04001567924567099 way.:0.03902499784872644 world.:0.02604325762498789 :0.6738679795399627 +that:0.3263502545958993 and:0.16598255251998292 with:0.10188277701116648 it:0.08970385753970062 :0.3160805583332507 +They:0.2955400972889813 who:0.28427447506631626 I:0.20939317173393898 We:0.12077801055518253 :0.09001424535558089 +the:0.9662540271161908 tho:0.01773074766368404 tbe:0.008662622790962811 th:0.004569820083637564 :0.002782782345524665 +of:0.023748956270254303 whole:0.019026103263729912 sun:0.01765484199143973 Joseph:0.01504615910965546 :0.9245239393649207 +of:0.23132166186174521 in:0.003582090499803536 a:0.0035183872655332035 In:0.0033988802434872056 :0.7581789801294309 +not:0.32838315817528424 otherwise:0.18762572007400552 always:0.08233269256314046 certainly:0.055368882237666145 :0.34628954694990344 +roads:0.3187767534537795 states:0.04561979009753639 members:0.027981453470929476 wheat:0.01916165897236207 :0.5884603440053926 +the:0.7235022751479533 our:0.11669007433676969 his:0.07928713173456926 their:0.03578913788362981 :0.044731380897078045 +to:0.7740990069007657 as:0.1088697877217471 by:0.06700194820837344 in:0.02664962378115401 :0.023379633387959682 +and:0.10966871764363485 the:0.08270551403882952 of:0.05819298775992898 to:0.05535764642155263 :0.694075134136054 +to:0.6137202597023289 To:0.08937522642736384 I:0.08638014230655161 and:0.05397458604066024 :0.1565497855230954 +Board:0.05498242817248638 use:0.05433887132600478 name:0.029959875642709785 board:0.025663102132731902 :0.8350557227260671 +as:0.2907635058952249 in¬:0.07202850126680244 the:0.03823916753897412 like:0.031248161796689218 :0.5677206635023091 +the:0.7814793179626041 her:0.15802730739144744 his:0.014050435809466313 a:0.01152906500408027 :0.0349138738324019 +failure:0.047173817845255296 power:0.034288173216311855 right:0.02879595673874429 said:0.02512981058770718 :0.8646122416119814 +and:0.11528844672975432 which:0.05955221922825555 it:0.051930167652992514 however,:0.03900965053722065 :0.7342195158517769 +the:0.6633680173194446 another:0.2467371691256602 with:0.024808011681801304 a:0.003856416131564142 :0.061230385741529864 +the:0.36265965024902763 its:0.27838084860266665 an:0.08059567391266392 road:0.04565725504525608 :0.2327065721903858 +result:0.05236763842896003 case:0.023346357741331585 other:0.02253257582515677 body:0.01887870833694006 :0.8828747196676118 +not:0.25097316809324294 a:0.14318992456337704 the:0.13736783442430608 completely:0.0872170044565664 :0.3812520684625077 +the:0.43420664624032357 a:0.06247997116818856 his:0.0530936021007437 their:0.04443159231722665 :0.40578818817351736 +and:0.46052451450073584 while:0.29141480253518615 that:0.1257030873463942 but:0.03878510923090779 :0.08357248638677596 +money:0.2729891861342966 upon:0.19271063379854617 stock:0.07626861338421012 general:0.04689926002759583 :0.41113230665535133 +the:0.22106742064531323 daily:0.17646730249647768 a:0.14202167590600578 an:0.08599292914396685 :0.37445067180823643 +aid:0.14894711005305217 visit:0.09827293034180613 went:0.08798338561075857 came:0.06843360019172764 :0.5963629738026553 +of:0.9669283983825816 on:0.0062624512976001325 to:0.004337147723417905 or:0.002770897578600023 :0.01970110501780051 +which:0.18891953452566784 that:0.12560811755758938 the:0.0761607391471453 all:0.05621175917530554 :0.5530998495942918 +m.:0.2640456751337404 M.:0.0002595041993458247 I:0.00014138831919833223 was:9.922962563013215e-05 :0.7354542027220853 +three:0.42287621330070546 the:0.26001812132522445 that:0.03594784285789504 of:0.024832542096988618 :0.25632528041918634 +under:0.5913801014488531 on:0.13092373082042486 until:0.12155986054622614 and:0.0866857488836934 :0.06945055830080248 +the:0.34242582700802743 their:0.12389662178666304 this:0.08623115652705617 a:0.07771861614781217 :0.3697277785304411 +the:0.4554261191125454 a:0.05469544413661045 tho:0.0273960878056248 his:0.02523174800845992 :0.4372506009367594 +and:0.06814004739295489 of:0.061246104929710825 N.:0.04389227877390147 the:0.04135907119310275 :0.7853624977103301 +the:0.2619525736019287 has:0.23059494884363457 of:0.2181369520284488 was:0.021835870442751253 :0.2674796550832365 +ii:0.5799312693634466 f:0.25113525507345485 I:0.02969237051280019 the:0.02486870518521069 :0.11437239986508765 +tween:0.997274591702173 fore:0.00027594387556376977 ing:7.812357646310061e-05 cause:7.043023886544114e-05 :0.002300910606934835 +of:0.20067487877975126 and:0.1920216855259283 before:0.1514622583708614 in:0.05741177589918367 :0.39842940142427546 +of:0.029260748088889312 I:0.024272221297844804 and:0.02107939246730435 she:0.007215153521644172 :0.9181724846243173 +ought:0.11159434021494963 is:0.10881759496551256 would:0.06376311538846477 -:0.05088498287882369 :0.6649399665522494 +Court:0.9784054062518747 White:0.0053558537520482005 court:0.004843746508817 next:0.00016896322895536294 :0.01122603025830466 +one:0.008167737066910203 longer:0.008164468771952543 mother:0.005878170455485003 more:0.0033713552161220447 :0.9744182684895304 +fact,:0.35723951982433244 money,:0.02161467912677857 America,:0.012671343455574 the:0.010212506321709568 :0.5982619512716054 +y:0.03616802651202511 the:0.013377802533760133 and:0.008735481102922256 re:0.0073407769321326 :0.93437791291916 +persons:0.3209574844875885 an:0.22816209857927353 the:0.16028475955548613 those:0.10162006100986692 :0.18897559636778505 +to:0.9631356250691282 that:0.03154161603786894 by:0.003340120696223653 before:0.00024184128676741433 :0.0017407969100116584 +party:0.463870249649287 party,:0.004587683665228962 Senate:0.003709836500771022 administration:0.002192017590861231 :0.5256402125938516 +South:0.18946430494967412 E.:0.08300250358679191 for:0.07123917315956207 S.:0.05368100428011169 :0.6026130140238604 +min.:0.9152625390355751 minutes:0.0401817671820513 U:0.0007488276408915055 by:0.00020810056444963755 :0.04359876557703241 +there:0.7795499051676148 buildings:0.07772423076576329 There:0.018006177609595223 State,:0.016349706034109526 :0.10836998042291711 +action:0.353678016084014 proof:0.11550282101469618 decision:0.04617148482802413 vote:0.041222818768425415 :0.4434248593048403 +known:0.05221120531804022 generally:0.04610627050651832 and:0.04271727222080121 it:0.03640915727681431 :0.822556094677826 +of:0.21125148487355375 to:0.19877860874232936 in:0.11410295151414464 that:0.0953717558064544 :0.38049519906351775 +and:0.3049187086703268 has:0.14861206052597453 have:0.09664683040380093 he:0.08878548527648535 :0.3610369151234125 +known:0.7006572829798552 as:0.05427791490608979 and:0.004388691181526988 bow:0.002328899288147909 :0.23834721164438036 +meeting:0.9902163781663254 to:0.0015867936179635336 of:0.0014863816731430913 are:0.0009880803577615644 :0.0057223661848066175 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +The:0.004664056480838312 North:0.0011475732337682331 It:0.00041893456518792 the:0.00039502576209553313 :0.9933744099581102 +they:0.8776560097492903 we:0.01976389491997225 there:0.019398908111181327 all:0.004896489112673577 :0.07828469810688259 +of:0.3403545869922278 to:0.13360604767963757 in:0.12356834164342285 and:0.08002176663751907 :0.3224492570471927 +close:0.22493282127302971 as:0.17213466946814251 continued:0.14266036913857696 on:0.09541066068985601 :0.36486147943039476 +the:0.5724009039701207 which:0.1130381074481249 such:0.07601578495725775 his:0.04821432382948086 :0.1903308797950159 +the:0.8161551668996689 tho:0.17296647252515082 these:0.009456159436423053 tbe:0.0003428562659596553 :0.0010793448727975587 +been:0.4379289741836386 made:0.11516437259314655 grown:0.09345266794627291 lt:0.07682662921397701 :0.2766273560629652 +south:0.13226792313719682 company:0.12026376072997465 department:0.05044917042587322 to:0.0070430190863684464 :0.6899761266205868 +a:0.32144656913066516 the:0.2968398315683251 an:0.047345468952392555 to:0.033246427532872956 :0.3011217028157442 +were:0.36898412392352004 be:0.35994741651835965 is:0.17140398209535454 was:0.04893886509763762 :0.05072561236512824 +we:0.5580361372332054 I:0.1735593537956834 and:0.075440877854465 special:0.05434454178869722 :0.138619089327949 +the:0.5087747490140568 at:0.08355258270359057 a:0.07631818273195091 his:0.03615421115686434 :0.29520027439353735 +the:0.16978290530035314 a:0.1374756096962442 but:0.12504522001018728 not:0.11759635405974903 :0.4500999109334664 +authorized:0.26142635005734616 and:0.06539487339274681 or:0.06529096617339407 As:0.03481833402099445 :0.5730694763555184 +him.:0.23658175914935814 it.:0.12492522820893112 them.:0.07068466885823718 tain:0.06156415982824736 :0.5062441839552262 +A.:0.30399298346010356 J.:0.06160936030954495 John:0.04723956742915339 and:0.035630116104204114 :0.551527972696994 +President:0.03890588246275973 table:0.037678276921796754 laws:0.03312083560386488 court:0.030396126393050855 :0.8598988786185278 +single:0.08029646020503596 large:0.06514158500551412 largo:0.05234618404159512 heavy:0.04607709577916958 :0.7561386749686853 +and:0.14141479955364922 ly:0.038103433662657046 of:0.03203996083111271 to:0.0241969760565559 :0.7642448298960252 +the:0.5808665840824828 a:0.08382362733737661 his:0.06012309049806385 its:0.044968079242294366 :0.2302186188397824 +the:0.19650065320743776 In:0.07412494062820103 Missouri:0.05642035087519091 in:0.05010954389747068 :0.6228445113916996 +and:0.1223584989685363 as:0.033198801811349356 diseases:0.02768990576997287 tions:0.02700809710521862 :0.789744696344923 +of:0.18845827571758428 and:0.14710452908199656 the:0.08997439804550098 The:0.08322507752442604 :0.4912377196304922 +@:0.01877459883497539 and:0.015393995155923795 No.:0.010647157031798419 at:0.005398643805953242 :0.9497856051713492 +views:0.0937195598156711 feeling:0.049332872151684165 suffering:0.046519968348755554 union:0.03862912048772712 :0.7717984791961621 +had:0.7706217417898981 has:0.14278948662141736 until:0.03565663916247424 as:0.01362243511764937 :0.03730969730856093 +as:0.8209599723784695 m:0.04298727571386547 us:0.024135395512870524 ns:0.023260060996970578 :0.0886572953978239 +the:0.003497701895048329 which:0.002172727500447736 it.:0.0018814162752303764 us.:0.0017581526823296553 :0.990690001646944 +But:0.7060284604052283 These:0.2037382465032742 The:0.01396294053375506 His:0.012398541689830421 :0.06387181086791208 +and:0.16645199118674106 in:0.15861953466402906 to:0.12721085727452913 of:0.11485801496644982 :0.4328596019082509 +such:0.3090265337951733 the:0.18266112977396295 this:0.14100322439427546 a:0.12454981610487839 :0.24275929593170978 +and:0.14268611310586438 of:0.03138743378271038 from:0.019185748080972162 but:0.018701227701178023 :0.788039477329275 +of:0.9997623122030886 which:5.8224300508173565e-05 ot:3.870794787368516e-05 or:2.8093389449531713e-05 :0.000112662159079972 +of:0.27928973784937494 was:0.18763258403111188 and:0.07592026773482674 the:0.05997158214735688 :0.39718582823732973 +in:0.5151220112738413 and:0.24130022479864832 for:0.10412512302487179 to:0.07902407244140186 :0.06042856846123692 +of:0.2856743769993615 in:0.24212686282531976 to:0.14713507449193394 and:0.12424035470949978 :0.20082333097388494 +and:0.10182432512305092 away:0.06317109811225584 was:0.025124971729105855 those:0.01390711546533174 :0.7959724895702556 +no:0.4934345845888003 an:0.3475845081786467 neither:0.04934541300645151 any:0.04449024418141665 :0.06514525004468466 +and:0.03748142687324441 manner:0.015077735542239276 way:0.010456675505601065 county,:0.008444943065232025 :0.9285392190136833 +the:0.7839656025352569 th:0.21571764694691767 In:0.00025813822677808984 immediate:3.9242643768546854e-05 :1.936964727888467e-05 +they:0.39880519462360636 ever:0.1445135054002138 he:0.11685632711274856 time:0.10992137177931852 :0.22990360108411276 +he:0.3206517669493403 she:0.2578569106941649 I:0.2547432397058053 had:0.12035072570979806 :0.04639735694089141 +be:0.5486731938943752 go:0.055533525050582504 bo:0.03962801728824892 vote:0.0220408125785823 :0.3341244511882111 +to:0.8186092779766477 in:0.05134019508266548 and:0.04682666202671026 w:0.03782687879199533 :0.04539698612198135 +down.:0.11021512069857274 said,:0.06943129070397529 ":0.024379482514153096 y:0.01653799740162995 :0.7794361086816689 +lots:0.9776004332004796 and:0.0004210192435893282 lot:0.0002537449248728509 of:0.00011231474791260749 :0.02161248788314553 +while:0.5325171884156061 the:0.1859652047502138 but:0.11284870920950017 and:0.10714723723226949 :0.06152166039241032 +engaged:0.2183744561337937 done:0.028135812998290315 recorded:0.02652596585775463 green:0.026070395009636083 :0.7008933700005253 +and:0.14517321356530877 of:0.06829471753940386 the:0.06643141519191162 to:0.03650963216626543 :0.6835910215371103 +of:0.7515684831832872 and:0.03939044875072016 in:0.034961663876373714 to:0.026858583153951163 :0.1472208210356679 +away:0.6549929623602394 home:0.11110914855210989 to:0.10977039602731627 no:0.03850037319634567 :0.08562711986398873 +the:0.08053695579693404 and:0.07882461421518856 of:0.07698790309747619 to:0.03308911272338291 :0.7305614141670181 +pass:0.5572373178416418 sat:0.056143290553465536 walk:0.019480605485638836 came:0.013120497084105209 :0.35401828903514854 +a:0.07270452785350502 the:0.04684002919591415 ihe:0.010994025659179504 their:0.01011975185039926 :0.859341665441002 +made:0.09298919306254266 necessary:0.07494388860743113 able:0.07257193190183192 carried:0.06329625237745591 :0.6961987340507383 +of:0.25841323225810786 and:0.07452643738761026 in:0.04830059952284521 bidder:0.03108993205250604 :0.5876697987789307 +decided:0.458991319549769 the:0.16082246296482636 come:0.02712032936205319 as:0.014874967650011263 :0.33819092047334015 +of:0.27044253602108476 to:0.211913521675171 in:0.1423968918311001 by:0.09093596354616054 :0.2843110869264836 +He:0.5395909440961344 his:0.13827748433886192 or:0.1255351733334581 and:0.03842768188734735 :0.15816871634419816 +be:0.7101080659078199 bo:0.25973678600320854 he:0.01352040344797018 lie:0.005638620569792121 :0.010996124071209354 +was:0.24228993168250765 of:0.23143878948220498 on:0.16265621825451243 with:0.0937929298038073 :0.2698221307769676 +the:0.95873585817528 a:0.020369667116479195 tbe:0.008915731949788041 tho:0.005952849857472177 :0.006025892900980574 +past:0.42120655811027563 he:0.15779812386255376 it:0.11779701176964498 and:0.06632781781829629 :0.23687048843922934 +have:0.4543538818606037 has:0.25559616689351544 had:0.2260749003630495 lias:0.013804296737964872 :0.050170754144866464 +of:0.9508319514264233 of,:0.02676335356196037 to:0.009638755515489154 the:0.008642759642050331 :0.0041231798540769206 +of:0.2548187731866859 and:0.10538414980800297 discovered:0.08035041062164004 the:0.06127067525355208 :0.49817599113011907 +The:0.570865450421234 the:0.06503615347388408 .:0.013835223570399933 tho:0.009611558001556128 :0.34065161453292586 +was:0.9929445779322397 duly:0.00014511131665616072 has:1.6864709224899657e-05 and:7.154231989644207e-06 :0.006886291809889454 +money:0.31200918780249187 the:0.05794390635314821 sale:0.036508988113089925 political:0.03216690576941749 :0.5613710119618525 +the:0.5512586040727583 any:0.1850476554088169 this:0.09333074744501464 a:0.06999271948615526 :0.10037027358725484 +first:0.486719437744611 day:0.039820546730409155 end:0.017932602843046545 people:0.017366301573502548 :0.43816111110843065 +large:0.030051592878092063 few:0.02877415200303829 little:0.024138651875547375 the:0.021717416197748664 :0.8953181870455735 +shown:0.050937704316153305 knows:0.04113066624663059 determined:0.036007392886817036 desire:0.03469852856765577 :0.8372257079827433 +very:0.4193404759696532 an:0.17367903023222622 the:0.1008189230539702 years:0.09593678252320299 :0.2102247882209475 +York,:0.16808695885743602 York.:0.15696060583277008 York:0.01651027447751514 England,:0.0013441274837039327 :0.6570980333485746 +was:0.15772820106097574 were:0.09882985135823183 and:0.09685071865689997 is:0.08565617409235746 :0.5609350548315349 +but:0.40686894846467436 and:0.22042228024322882 thence:0.1160356152864614 beginning:0.038703028222081624 :0.2179701277835537 +found:0.08515784351310583 about:0.08489620885013643 to:0.08292270104319716 and:0.050240707778992026 :0.6967825388145685 +contest:0.7371976398771082 said,:0.04249768195432012 fairly:0.024139909540273532 said:0.010600907320513482 :0.18556386130778477 +of:0.1263933166954934 and:0.11591571328214094 the:0.08677135713719174 to:0.04134095388871788 :0.629578658996456 +names:0.07038945853158121 name:0.04192039411247518 cost:0.0353186815855034 owner:0.03200441822336104 :0.8203670475470791 +and:0.308865942396793 that:0.08229144891413849 up:0.08038918574342548 President:0.07914270251920202 :0.44931072042644093 +and:0.17291922645799723 the:0.07610467079014395 of:0.06158392700435142 in:0.042298901358476075 :0.6470932743890314 +be:0.30056945241514677 have:0.10402773562473196 not:0.09538618846977251 remain:0.02672919296049274 :0.47328743052985595 +was:0.8020145544516261 is:0.17961596056034634 Is:0.01094707132445395 ia:0.0011983341023879257 :0.006224079561185792 +a:0.10226260999725471 the:0.0793146577946122 in:0.03719792371242 so:0.02374657935947011 :0.757478229136243 +other.:0.22857711320762092 world.:0.09507460335996554 law.:0.03836329908438033 government.:0.01529735506155795 :0.6226876292864754 +and:0.0922735777331965 the:0.07115109332102423 of:0.06760099350246353 to:0.034702278238519645 :0.734272057204796 +situation:0.09644970697049975 out.:0.03094530461878487 it.:0.014860075639397723 years.:0.014741150664618036 :0.8430037621066994 +point:0.04869130345123595 tion:0.03822808009274361 condition:0.033974135677914186 view:0.02610872843035679 :0.8529977523477497 +of:0.35207905334515 to:0.14170950600298296 in:0.13010815809312887 and:0.07020649069738027 :0.30589679186135776 +has:0.263855705043052 is:0.17360450253906967 was:0.16901329586589517 money:0.024072649037878893 :0.36945384751410426 +O:0.6396884448509499 B:0.1969905580557233 J:0.03652433028303481 a:0.028480289948798396 :0.09831637686149372 +one:0.09205628900866349 out:0.05309375213346008 report:0.00838128979235213 W.:0.008003073598277503 :0.8384655954672469 +a:0.9665768242396806 yellow:0.02265330851724469 the:0.005777615508019885 with:0.001244297341637483 :0.0037479543934173473 +is:0.4491933939505408 not:0.2090507826132425 .:0.11320152226976071 largely:0.08013860349155087 :0.148415697674905 +made:0.4050880536310121 make:0.10159041398729611 the:0.09161257067167057 in:0.07477537557225636 :0.326933586137765 +of:0.27259090557485 to:0.17066684975252205 in:0.13771077247775002 and:0.09995555757766958 :0.3190759146172084 +at:0.74143116719854 for:0.2577252962626741 of:0.0004829490719299085 and:0.00017989299838825634 :0.00018069446846779758 +of:0.19428679038735477 and:0.15629678269659128 the:0.0640403659529078 to:0.028613957498330626 :0.5567621034648155 +they:0.20891651986658402 immediately:0.09826712505151045 had:0.03970060989825744 I:0.033119982779895515 :0.6199957624037526 +the:0.5215391476626223 a:0.03246610576519435 said:0.03242401607384871 his:0.028147311142634787 :0.3854234193556998 +change:0.30248452863696834 lead:0.03865853223587827 be:0.030039204201330477 lie:0.02732828304888809 :0.6014894518769349 +it:0.452550751133425 possibly:0.2344401394188673 they:0.1327745670738945 he:0.12135559451378895 :0.0588789478600242 +the:0.7129048582826183 my:0.23630571608705905 learned:0.00553812122377024 their:0.005394572508241239 :0.03985673189831107 +and:0.10142200966225733 the:0.07270554372564335 of:0.06427075114553948 to:0.03240122620511521 :0.7292004692614446 +»:0.7607996548599555 the:0.019809835523543033 length:0.0021355086576077425 .:0.0010178187731989025 :0.21623718218569493 +become:0.5493653425554493 lead:0.07037475112661064 be:0.06416449748580355 go:0.06127088768616517 :0.2548245211459713 +the:0.7586121356350007 a:0.03809043527265483 in:0.0379495353511565 religious:0.03163959013153432 :0.1337083036096536 +have:0.709462923976877 would:0.20305610444532743 might:0.04973872586383357 had:0.02937874202723509 :0.008363503686726982 +have:0.29062511805356667 direct:0.20050535985302176 give:0.10635804391358208 get:0.10151190062085103 :0.3009995775589786 +the:0.24139045117686256 be:0.20733770996717585 the.:0.06181238581064127 a:0.05382579209475025 :0.4356336609505699 +of:0.465980606152812 in:0.18481257711609178 to:0.06619275738118648 on:0.05532968174194386 :0.22768437760796587 +the:0.07952478509327124 to:0.008650809113583376 these:0.007459089468632498 his:0.007030108917299495 :0.8973352074072133 +p:0.9193128960584174 p.:0.06799141619362278 a.:0.003354648273163677 40:0.0021409554603618853 :0.00720008401443435 +of:0.9986535599749627 grown:0.0007702976333698238 and:0.00010258851683459642 the:5.188409976326579e-05 :0.00042166977506951167 +of:0.011460375580966707 and:0.01025071756625219 Mr.:0.005983742681637489 the:0.005154258867947242 :0.9671509053031965 +The:0.4637050802378391 These:0.21287770624033425 Their:0.06720803872069503 He:0.05447802313642559 :0.20173115166470598 +of:0.5850166284396714 have:0.3921081461926459 that:0.007289271800795083 in:0.005317621836169932 :0.010268331730717605 +to:0.962631017398287 and:0.018901447577130807 would:0.0024862832500192025 who:0.002236411667157041 :0.013744840107405919 +direction:0.07212159600742099 and:0.031721752251032666 thence:0.028225824507892336 acres:0.025027236329740236 :0.8429035909039138 +night:0.22464350011996162 last:0.19236246308240776 times:0.1811210459947443 which:0.10659254751383022 :0.295280443289056 +the:0.07504946529887158 th*:0.04543149897292674 this,:0.029585026105930202 war,:0.029264314035570678 :0.8206696955867008 +the:0.48801099550686994 a:0.14493949544448453 these:0.09902792916084587 their:0.0871605711655528 :0.180861008722247 +upon:0.5003309552472649 are:0.26703715773244746 the:0.0866481113837568 one:0.0484554316318557 :0.09752834400467504 +nearly:0.8246962526745033 governor:0.10007802056763379 to:0.02270948591102243 for:0.013592032928458004 :0.03892420791838268 +a:0.6726993172644673 on:0.25736323804114286 A:0.006494709113251826 until:0.004954985625329935 :0.05848774995580817 +top:0.06329808193111987 sides:0.03557009241972852 water:0.034791746816006115 sand:0.03159967116884657 :0.8347404076642989 +and:0.0709489748496611 in:0.0666293510734123 for:0.04470038213313115 tion:0.029322567439037144 :0.7883987245047583 +and:0.10867212047401954 The:0.05934705004456988 but:0.053249568403764345 the:0.04144640593238002 :0.7372848551452664 +making:0.19649757504565538 now:0.11965311462192318 in:0.07896290818077431 of:0.036124195587616224 :0.568762206564031 +election:0.2073250941344991 contract:0.08144167666427639 vote:0.038677106282685274 provisions:0.029733585233101545 :0.6428225376854377 +and:0.8298660337942293 until:0.07512576655648298 of:0.05586392632217404 noon:0.013161586759894204 :0.025982686567219634 +to:0.004303346277725718 fancy:0.004042806383407297 deed:0.002990404329494967 formed:0.0016420468677069606 :0.9870213961416652 +last:0.23595048748902894 following:0.06246599856766941 same:0.059118479357752315 new:0.022733835813512227 :0.6197311987720372 +feet:0.7154214359599071 ft:0.07230737075668865 foot:0.056537564546747514 chains:0.011020381388775887 :0.14471324734788057 +those:0.571193485605071 seven:0.2374623063165858 these:0.08809977453259529 eight:0.05399273539413394 :0.049251698151613885 +front:0.4197485492115431 head:0.1175437374538862 is:0.020111769718260106 receiving:0.013072126945127693 :0.42952381667118317 +had:0.31440192992054633 have:0.2276945052584366 is:0.05886257966359594 makes:0.048482393977464816 :0.3505585911799564 +the:0.9633500928136987 each:0.023320484890810372 any:0.004492583840927435 tho:0.002750037575918005 :0.006086800878645542 +in:0.2744765118816719 to:0.09270603685375113 at:0.09261558028348081 when:0.08909962123787876 :0.45110224974321755 +!:0.019249235610438307 him.:0.0026226562161947983 pointed:0.0019342804401922182 proved:0.0015379399203305018 :0.9746558878128443 +to:0.4715458979816189 by:0.30799552645503875 for:0.09000642834116962 in:0.029750785261581293 :0.10070136196059151 +the:0.3490079653575411 a:0.2386163925596287 Mr.:0.08592035912192587 two:0.03301456850409146 :0.29344071445681286 +his:0.25338014313379387 along:0.15045323571801061 the:0.05050035776645269 one:0.008056370531740728 :0.5376098928500023 +tween:0.31856456102203906 fore:0.24987784178082714 cause:0.09866795290197636 ing:0.054912345222564364 :0.277977299072593 +Washington:0.18536085886233156 face:0.1517669183291065 him,:0.0936841491492838 him:0.00610972003647146 :0.5630783536228068 +have:0.44493437937428504 make:0.23474302279598488 had:0.16512194611535017 saw:0.0911940103690126 :0.06400664134536714 +of:0.26169680744675683 and:0.19060206189792844 but:0.12154024712162094 But:0.09222421695360494 :0.333936666580089 +enter:0.4197264817342465 he:0.2017395593341991 the:0.029475594426394885 found:0.028611877650409134 :0.32044648685475036 +years.:0.2790028131335029 and:0.1331719531573997 hundred:0.049725475869358264 or:0.0383136437794212 :0.4997861140603179 +of:0.9200845585383653 on:0.018213422188947063 in:0.014671838714442163 the:0.011448204134215151 :0.03558197642403031 +to:0.9302666204474229 will:0.040329281559167665 which:0.00594125891058519 they:0.005924074614807924 :0.017538764468016273 +of:0.2026769845926823 and:0.0887767030630647 was:0.054123597246656205 the:0.044816056092512616 :0.6096066590050842 +on:0.9301657145074517 in:0.05533046745544749 On:0.005817520998285806 n:0.005577405050052484 :0.003108891988762635 +get:0.3795736977883587 secure:0.30656579819359603 draw:0.11298402610599971 obtain:0.1032816492284796 :0.09759482868356584 +and:0.33448405093190786 to:0.19403564311661564 should:0.1151068078978944 will:0.06979693271644553 :0.2865765653371366 +was:0.7797959767786502 ever:0.1659811949376999 is:0.05111427093365638 knew:0.0017797208244512731 :0.0013288365255422776 +are:0.9018127481172858 is:0.05615924442666895 was:0.012147016979883962 aro:0.0055479223135470575 :0.024333068162614328 +and:0.259093293433994 is:0.13163218272881258 which:0.07629855901662815 too:0.05451368077941269 :0.47846228404115254 +been:0.4685158503083455 all:0.003167838428182607 have:0.0031166384807479472 a:0.003024370629654715 :0.5221753021530692 +health:0.04635748219330399 France:0.03666547523353911 methods:0.029817609740298612 body:0.02642357302324843 :0.86073585980961 +tion:0.037417072429511956 ing:0.027762148864549134 features:0.027336247172440507 nature:0.026576480707194 :0.8809080508263044 +to:0.371779083898765 I:0.15898341868292448 and:0.11996269341310876 we:0.09699990030226273 :0.2522749037029391 +most:0.5992589000772545 guilty:0.10188585843730807 one:0.09596063916214422 members:0.023561353423914053 :0.17933324889937927 +thrown:0.2924439458222376 found:0.23337410801322586 laid:0.06623242884814455 grown:0.046641357149377526 :0.36130816016701445 +Robert:0.0643187798705626 John:0.05698323466126647 and:0.05224860976364105 J.:0.04615755523684571 :0.7802918204676842 +the:0.5201290385987697 he:0.10403420863132161 this:0.036334145556396524 it:0.018884824046393765 :0.32061778316711836 +such:0.4730178791387651 state:0.13598598868419964 when:0.034814596206524794 time:0.034113821412092155 :0.32206771455841837 +by:0.8581422648450688 to:0.07953317412704608 the:0.029697830789016638 along:0.018000312574834393 :0.014626417664034204 +to:0.27197355475011553 by:0.09079739470474449 and:0.0883089826037412 at:0.05310600948271333 :0.4958140584586854 +machine:0.15745929422280833 new:0.11898049486913181 land:0.07203548358745589 window:0.05189243841341142 :0.5996322889071926 +of:0.14756977546281297 and:0.11624278304491045 the:0.09395086207429847 The:0.04810136573843072 :0.5941352136795474 +and:0.181186318796054 by:0.05308449197860909 Mr.:0.04602834616671823 of:0.03600367890412485 :0.6836971641544938 +myself:0.047398848180911474 Washington:0.04466911022367855 especially:0.03186766206989073 another:0.01925907279089205 :0.8568053067346272 +case:0.24865284203695914 from:0.03948100022679055 in:0.01224722442080976 and:0.010688027053425184 :0.6889309062620154 +right:0.377836994013104 power:0.19922415194447748 opportunity:0.08784954977278218 honor:0.08325466765382604 :0.25183463661581024 +from:0.2771397082249967 future:0.10635343010880909 the:0.09545694709470522 their:0.054950281672879304 :0.46609963289860973 +representative:0.08465148761518698 lot:0.05941468787249718 to:0.048110753102683416 and:0.046552137695256166 :0.7612709337143764 +out:0.027754795828173466 and:0.02656768574710521 that:0.0159757141788621 virtue:0.015779674198680437 :0.9139221300471787 +hope:0.10028058448748638 believe:0.08775602056732124 know:0.0572742777135164 understand:0.057055095093546664 :0.6976340221381293 +other:0.026437606777554364 said:0.020170064656690846 the:0.01790652021961783 most:0.016141877787798724 :0.9193439305583383 +this:0.5894716834042832 any:0.26017904258132796 that:0.04032925320469461 the:0.039322233860691745 :0.07069778694900242 +having:0.36703258757208346 the:0.06468058584341911 and:0.0491659372799696 a:0.04444979527414056 :0.47467109403038715 +the:0.5494335023628738 a:0.054917765973290115 this:0.0397904740902812 an:0.03381691586390369 :0.3220413417096511 +to:0.30629999518497936 in:0.1970097449011692 of:0.1425213815825972 and:0.0746415785088096 :0.2795272998224448 +article:0.23482107023625703 gentleman:0.16142902654867253 man:0.06313518069628622 duty:0.05886735830200494 :0.48174736421677933 +the:0.5723185302194524 a:0.06496679197065908 tbe:0.048827329293452695 tho:0.0440105751027707 :0.2698767734136652 +ot:0.13414375460262606 make:0.11355490627223612 all:0.0663647905643445 buy:0.06159659847018013 :0.624339950090613 +thence:0.07528029965818823 weight:0.06731699478607896 and:0.0638412409493095 to:0.06336301115086414 :0.7301984534555591 +which:0.3855284971537539 They:0.031266041506490566 ry:0.028857280797883054 and:0.0250627840281105 :0.529285396513762 +the:0.3602034800807177 and:0.07509822698537329 a:0.058933627156165444 The:0.035784553261649116 :0.46998011251609445 +late:0.7301619182397507 most:0.006642997103448794 the:0.005209496381153404 said:0.003268005818371021 :0.254717582457276 +small:0.3568029835012138 the:0.163464313536212 square:0.0865890943835285 such:0.0686876212241127 :0.32445598735493303 +and:0.13509035378313128 the:0.1140962651260086 of:0.11317652279187157 is:0.08167080578634395 :0.5559660525126445 +has:0.3045849970216952 have:0.17191950730441655 have,:0.06750840611357387 had:0.034138777707364926 :0.4218483118529493 +1:0.5180036787768569 the:0.01770139441875172 u:0.015294884445097561 ?:0.015092777198643326 :0.4339072651606505 +work.:0.14813783686585477 and:0.0912974407974238 commission:0.011767749071234615 in:0.0074060971459349815 :0.741390876119552 +to:0.863587092982614 of:0.06276203820989054 the:0.010530680552567189 and:0.005358703142741938 :0.05776148511218634 +minutes:0.4271223126439328 days:0.3767220191700894 months:0.14932309319807738 hours:0.018349486115626847 :0.028483088872273417 +them,:0.0780500152475934 said:0.016393519189607617 of:0.013284441581352339 dollars:0.004140947671374923 :0.8881310763100718 +of:0.5038953115875938 in:0.47794667237230715 ol:0.0053918408244220855 ot:0.0011392012208716474 :0.011626973994805266 +away:0.13780839054085167 forth:0.10543187860548354 another:0.07470907726807823 out:0.06975959744267274 :0.6122910561429139 +of:0.7802542955782703 in:0.05418640992529378 who:0.01592305166885873 at:0.008908175928838654 :0.14072806689873865 +church:0.01259672375646197 way:0.01229511370699662 manner:0.012244378609212035 years:0.00922983770875367 :0.9536339462185756 +by:0.2861588192289517 to:0.22363786512421238 in:0.16772826891012926 of:0.1266903342059241 :0.19578471253078247 +Prof.:0.6464385755415901 the:0.11958064986701161 a:0.08419628959851276 Mr.:0.035269839997022025 :0.11451464499586352 +course,:0.485441251298647 the:0.062472556013542006 course:0.04743169824965946 all:0.030149420794953353 :0.37450507364319796 +right:0.49921405536295094 turning:0.04929901027413906 looking:0.04168741040196046 to:0.03214989868808008 :0.3776496252728695 +it:0.35790293159373393 the:0.0885081085311241 demands:0.054049489616378225 and:0.04816222618564176 :0.45137724407312196 +places:0.7984510088940121 years,:0.006333755750609622 sudden:0.0034567289964865223 good:0.002877128037870881 :0.18888137832102095 +It:0.045643495365245236 mission:0.0372470981455638 This:0.018755135275835746 ner:0.005950681912520983 :0.8924035893008343 +of:0.23935587324746346 and:0.13168522586061152 the:0.044057759366587707 The:0.035577206540938225 :0.549323934984399 +to:0.21970200253251007 by:0.08209533170895648 and:0.04771193303691136 for:0.031222928997785133 :0.6192678037238369 +view:0.29645032239303964 reason:0.14343517385771973 any:0.0546165829171828 speak:0.025218109468425284 :0.4802798113636326 +Mrs.:0.9679260193735608 Mr.:0.00207545918351185 Mrs:9.332339319336943e-05 L.:8.03502906661647e-05 :0.029824847759067834 +in:0.2382694598832127 of:0.22398451661819663 with:0.12497077042734638 to:0.06592667236016936 :0.34684858071107494 +be:0.4365343189254176 have:0.09190636444336887 not:0.06020652079828414 he:0.031384562702195834 :0.37996823313073347 +same:0.05230017058213069 next:0.034414578837639265 most:0.02934318332335114 year:0.028830746349403902 :0.8551113209074749 +of:0.6506033788411336 and:0.06510766883416956 in:0.05731063516292594 to:0.053850945194952524 :0.17312737196681838 +here:0.3659903382643863 is:0.20982243244699567 be:0.20470314588495878 and:0.16577296560282967 :0.05371111780082963 +entitled:0.1409126490985547 ed:0.12381775889608983 and:0.04766336513876181 out:0.026893399094523884 :0.6607128277720696 +by:0.5965364320502158 the:0.32988195412231835 and:0.022162898453899012 greater:0.0214392700320032 :0.029979445341563726 +first:0.08318762440322916 naval:0.03776778054591668 tariff:0.03035108079936489 the:0.011568585943080033 :0.8371249283084091 +the:0.5528316628698661 a:0.045534473337473555 streets:0.040317924123982565 tho:0.022951050807995012 :0.3383648888606829 +most:0.018671225642509767 the:0.012918968714986883 United:0.011256776811503312 said:0.011113286647646029 :0.9460397421833542 +increasing:0.07905287612542984 arrived:0.058437446835043864 looked:0.03594830901975253 not:0.025307460602140983 :0.8012539074176328 +going:0.20262180582313585 unable:0.09603889357418974 about:0.08385599330520273 able:0.07781141793563046 :0.5396718893618412 +them:0.08510202213469897 rate:0.06353432876528768 ship:0.056924165357952604 wages:0.039119596893418526 :0.7553198868486422 +completed:0.12211863984685183 here:0.02758307572657571 adopted:0.026160250344473526 done:0.02225158841659979 :0.8018864456654993 +to:0.2903635442959195 only:0.1623395814793698 be:0.04582023290022046 the:0.03941675401415561 :0.4620598873103347 +itself:0.005497466170860039 this:0.0025864754807445054 themselves:0.0025857399701674087 each:0.0013332672143978954 :0.9879970511638301 +action:0.7786127021202447 for,:0.08256878393431741 it:0.02452184895978814 had:0.00601474058848624 :0.10828192439716332 +80:0.038644810425650614 First:0.03741246479518558 the:0.03111038676468255 Second:0.03042289557700384 :0.8624094424374774 +people,:0.02435676687802792 country,:0.022008309765397267 world,:0.015992204458028982 war,:0.015303944882660897 :0.9223387740158849 +the:0.5722832129042571 a:0.14641718939384 of:0.0667314221852915 The:0.06337314998562217 :0.1511950255309893 +his:0.5606962266929866 its:0.20794495238089356 your:0.17431567391592478 their:0.02452452317141942 :0.032518623838775636 +J.:0.31804348582647585 J:0.24405773245975937 A.:0.03625585729344641 E.:0.03197233115255336 :0.3696705932677652 +best:0.13808108612043277 recent:0.05070234266594898 said:0.04849066411523657 mortgage:0.03228292578385799 :0.7304429813145237 +is:0.2024056829793056 was:0.07771141974411687 to:0.0690189977732383 time:0.05385181347562337 :0.5970120860277158 +and:0.8259644184687751 ,:0.08394752507923997 were:0.008280623945032184 that:0.004435179941581782 :0.07737225256537082 +of:0.09807228853959857 for:0.07041684587883694 having:0.03597065305933614 to:0.035381512564967334 :0.7601586999572608 +and:0.3546904228958968 did:0.1936692643954437 is:0.11644169714454987 was:0.11402650757946486 :0.22117210798464465 +due:0.9933247827005363 suffering:0.0004473636171173513 owing:0.00010180946796384277 taken:8.403533113441603e-05 :0.0060420088832481905 +et:0.06840794734661394 and:0.037041520693300835 be:0.026944627491070378 of:0.020268064739319715 :0.8473378397296951 +shall:0.5949677220023816 to:0.20602372005398384 I:0.08235292422355553 and:0.005942631207299763 :0.11071300251277931 +The:0.25153044506938865 Mr.:0.20622567963008573 It:0.10132621434734206 This:0.028732678153302837 :0.41218498279988075 +and:0.08794114690567695 the:0.04387365776770781 of:0.038071392823465076 his:0.034474472455279924 :0.7956393300478702 +night.:0.2442134004823019 it.:0.011713733967506204 It.:0.008803865884167266 this:0.005403261184398536 :0.7298657384816263 +12:0.32442493386842863 two:0.20438923521475683 16:0.17748054194783597 4:0.10272876761924242 :0.1909765213497362 +to:0.9894950713565426 would:0.003810594721049462 and:0.002438853951393261 could:0.0008313276830445755 :0.003424152287970175 +be:0.38910329235421365 of:0.17244526451179348 a:0.1446078084937682 the:0.1258518680363238 :0.16799176660390094 +is:0.3926861420262273 are:0.2308110399454801 was:0.12816036723007007 were:0.10216814590625728 :0.1461743048919653 +to:0.47308545918083894 from:0.2867273270545254 of:0.07997467855052755 the:0.03675362756986043 :0.12345890764424754 +signed:0.044316561792015347 and:0.0017635999129903188 scribed:0.000842296610991758 is:0.0005388038667123189 :0.9525387378172901 +the:0.1851655121528749 his:0.13026919105390883 and:0.12549904691224134 their:0.0715718898927962 :0.48749435998817875 +good,:0.0010930668488471499 more:0.0004899790426344596 finally:0.00013210816748407183 so:2.3962942792474795e-05 :0.9982608829982419 +the:0.27812582934647867 be:0.12500152263167838 any:0.12254893659173706 a:0.053348310877317735 :0.420975400552788 +executed:0.057666129705497046 and:0.041158936467124464 bonds:0.03987649534064831 given:0.02994573617799179 :0.8313527023087384 +by:0.048027068621566096 about:0.018965340736725976 for:0.018751238284676675 feet,:0.01697429464164525 :0.8972820577153857 +are:0.2684034005448224 were:0.1249194095958763 have:0.09846905239453467 may:0.08757602758634747 :0.42063210987841904 +We:0.863753841880594 we:0.03129036436742024 You:0.008776879803726488 who:0.0074523132425646 :0.08872660070569455 +provide:0.8199316131514235 pay:0.002056802891813418 vote:0.0015033246888471825 care:0.0014808972701290286 :0.17502736199778707 +the:0.4674694335841435 a:0.06941904079595501 his:0.034249197234641954 this:0.029847531432296508 :0.39901479695296294 +a:0.3731439578624156 the:0.17437827465532724 an:0.04892759291820188 his:0.025073735052215426 :0.3784764395118398 +to:0.6344022402436327 should:0.1434554532611279 will:0.09842772048905418 can:0.014679968074324975 :0.10903461793186023 +is:0.2989840910369316 engine:0.1626879634683769 cars:0.0875630750220035 being:0.01381851849970531 :0.43694635197298276 +of:0.6208199883706531 into:0.10339775268178591 by:0.09149237518371492 in:0.08602383351314423 :0.0982660502507018 +down:0.024642909871961657 up:0.012219798728693642 was:0.010023996836596454 did:0.007702745766310324 :0.945410548796438 +to:0.29868250086960896 they:0.1635079911994193 and:0.10815123042170952 of:0.05497394463751309 :0.37468433287174907 +had:0.3404281586831788 the:0.0957331669085031 au:0.04572448342918775 a:0.035731783939899224 :0.4823824070392312 +the:0.5254433888842575 tbe:0.08875937926941525 him:0.08562289328204449 other:0.08017915856895007 :0.21999517999533275 +of:0.6041752525075839 to:0.10425877543142506 and:0.08583892799668615 in:0.0763307306339791 :0.12939631343032584 +the:0.36299986776260174 a:0.06439618975440117 their:0.03977895841907007 his:0.022344429045429662 :0.5104805550184974 +appearance:0.1425267273652362 authority:0.03752470197178705 value:0.033121093213044385 length:0.025845226483415584 :0.7609822509665168 +Smith:0.0034576071427257814 M.:0.002175282884876422 Wilson:0.0005912057194956896 father:0.0003889525936358009 :0.9933869516592664 +that:0.5330945219884782 of:0.4048712491864005 in:0.028317456221810294 the:0.00902724034041756 :0.024689532262893468 +in:0.8842644396894899 to:0.0564270990922318 for:0.011541164803267322 the:0.011484632913046027 :0.03628266350196521 +up:0.2455263420517711 far:0.07679214459436913 secret:0.07586779367524969 under:0.037540569037335686 :0.5642731506412741 +equally:0.7034117341362999 of:0.07405840937019452 distinguished:0.03603530189095646 the:0.020902815724622582 :0.16559173887792641 +piece:0.041159809560754386 and:0.028911891250039706 are:0.024151532524846843 is:0.022225781256093292 :0.8835509854082657 +and:0.22282436980073703 at:0.10203333576939212 so:0.09940844621030637 play:0.06743270023019944 :0.5083011479893651 +were:0.40862702375407256 who:0.3045511541691043 are:0.1423583103934332 follow:0.043489293478474314 :0.10097421820491567 +and:0.01185301798995837 to:0.008629546900600466 of:0.007663210454159237 up:0.006504194316964381 :0.9653500303383175 +not:0.44470165200218265 the:0.061205587097353964 inter-:0.0229617742563529 ad-:0.018320626473712104 :0.45281036017039833 +hundred:0.180724506391804 gentlemen:0.0679639759074654 children:0.02468886686489403 rich:0.016600916050872435 :0.7100217347849642 +ton:0.18570318462086274 to:0.084682454902591 and:0.061081490499627446 of:0.017273232484059032 :0.6512596374928598 +support:0.6880012592674302 the:0.13042529528295782 their:0.1279275796518447 get:0.026756735903371614 :0.0268891298943956 +interest:0.24936477853632585 benefit:0.10774607512930304 line:0.05946630838301882 control:0.0404990746547867 :0.5429237632965657 +first:0.24281194023033667 second:0.17920592527226753 United:0.02122043385872892 State:0.014661965561990922 :0.542099735076676 +not:0.07935549219790707 to:0.06187204129946472 in:0.03240635317733494 the:0.031034714355980632 :0.7953313989693125 +of:0.6218937832091729 and:0.10248566796925873 where:0.047632246562913254 on:0.04464668191038928 :0.18334162034826584 +privilege:0.5172562034404702 ones:0.026472327749955952 s:0.013656719782988188 number:0.00874855552793884 :0.43386619349864686 +keeping:0.2504348685146311 and:0.04621902499802195 body,:0.02234930461902437 or:0.019724698062120415 :0.6612721038062023 +the:0.7632772361102728 you:0.09211590848889283 going:0.045127167923466646 him:0.042551337351501815 :0.05692835012586603 +against:0.9375126608291808 on:0.018609617259103373 with:0.016319797700962098 of:0.015495587904705148 :0.012062336306048548 +is:0.13193290960148185 are:0.0802679405298888 seemed:0.06325014202758172 and:0.05992161315548969 :0.6646273946855579 +of:0.04164102993103624 spite:0.012786196552923722 scribed:0.00830738436116921 fight:0.007465524963225737 :0.9297998641916453 +officials:0.3472057845065978 for:0.1646150074637189 day:0.09418544493001123 hand:0.08572257731932681 :0.3082711857803453 +and:0.03152704531325763 want:0.022028557575314175 according:0.021237327256088488 as:0.01705985488449069 :0.908147214970849 +business:0.12369502763687648 entirely:0.0761275046978261 only:0.04297351664077901 as:0.015317504057728368 :0.7418864469667903 +law:0.024290386890177103 party:0.015322066028643116 laws:0.010898731575119926 spirit:0.010274425626025532 :0.9392143898800343 +and:0.25222918351985146 so:0.18736986428402053 was:0.0825252716172971 say:0.06910406967485368 :0.40877161090397734 +are:0.5478807972342437 is:0.2570513687954356 were:0.02122521571349877 has:0.006481781516370365 :0.16736083674045157 +Some:0.3840843960374885 The:0.13428231741605395 I:0.08953045258130035 It:0.05292784171333917 :0.3391749922518182 +or:0.4956380892210942 to:0.09683840332785112 like:0.09375618404996393 is:0.08553750683296055 :0.22822981656813013 +by:0.609603525098276 upon:0.13309846006461767 for:0.10208346880388502 of:0.0752425111959256 :0.07997203483729562 +long:0.46210505377470645 short:0.0991625381194918 new:0.07455543709102519 ,:0.06391781266853046 :0.300259158346246 +would:0.44109419227674546 did:0.3472578639979657 must:0.07191560977816495 could:0.06988270769934879 :0.06984962624777522 +and:0.21681433302648592 in:0.14311125804408845 for:0.10303923560814976 aud:0.07365513552234819 :0.46338003779892767 +and:0.2845176594716301 but:0.0640022486121765 said:0.03620616738800148 so:0.03131412366268131 :0.5839598008655108 +of:0.27694071414022314 Among:0.07913861775302977 In:0.05849401386583393 to:0.012164832677010542 :0.5732618215639027 +of:0.348310324862095 the:0.10823280267526789 ernment:0.0934238347650787 and:0.0721833579263466 :0.3778496797712118 +distance:0.056503554507838366 by:0.052216586429425886 year,:0.007118259089891343 day,:0.005417376525054727 :0.8787442234477899 +the:0.6805180601673781 day,:0.035889002100830854 tho:0.024127747524200674 this:0.02382204267922483 :0.23564314752836568 +said:0.11095098640280121 the:0.044893938135522005 of:0.04330978512647897 and:0.03498686839781392 :0.7658584219373838 +to:0.4819449289317542 on:0.2076889785150799 for:0.1340239824608427 in:0.1114793297668148 :0.06486278032550834 +far:0.6797287810459551 long:0.14477204875102898 soon:0.05693779502931175 much:0.009565864882175014 :0.10899551029152908 +wish:0.08095791327569238 belief:0.04342028942447634 desire:0.032305468595720976 opinion:0.02122899496485598 :0.8220873337392542 +Court,:0.11576759165215147 is:0.09757885454674896 period:0.07028987592477899 office:0.06718957495443935 :0.6491741029218812 +most:0.39221905622488046 best:0.09847643780883701 largest:0.0945783887638357 greater:0.04198155054948416 :0.37274456665296274 +and:0.24461576587662529 so:0.07807644987526506 is:0.0434665568350716 but:0.03426895552337194 :0.5995722718896661 +to:0.4863211968955359 of:0.2230956209011966 like:0.04926931756991595 in:0.04685736947558703 :0.19445649515776453 +interest:0.39200743618041634 and:0.09134112413307648 made:0.06968430516351484 aud:0.06702099940216279 :0.3799461351208298 +and:0.12788896412718154 of:0.077873576853315 from:0.07071053673160552 the:0.05826742539041281 :0.6652594968974853 +the:0.01973931905531692 motion:0.006653559975793772 no:0.006403202443821405 de­:0.006008496255037125 :0.9611954222700307 +It:0.2984442200018267 it:0.26472397253660984 he:0.16938985093592687 hand,:0.026229688138302544 :0.2412122683873341 +home.:0.020438445666294602 life.:0.020159831175777066 people.:0.0045935863125200335 homes:0.003755298256670061 :0.9510528385887382 +or:0.9897149875533616 much:0.0015163375487950873 nor:0.0009822091432828712 and:0.0009252167622690292 :0.006861248992291213 +day,:0.06547318873857332 crowd:0.05024236797071684 tree:0.019866737438709706 half:0.006071873387482688 :0.8583458324645173 +like:0.6014123918827597 of:0.22197554893526164 thought:0.07217259833417715 believe:0.04998811413279084 :0.05445134671501081 +world:0.14397742516808357 business:0.1346027827224257 time:0.06711409258896245 money:0.06672677359986351 :0.5875789259206649 +as:0.9690178977368683 and:0.00556299409278212 at:0.0045704316531692745 us:0.0035160276317336356 :0.01733264888544683 +do:0.830383171968442 a:0.10273042322795674 the:0.030964223893224306 with:0.01577570134411946 :0.02014647956625749 +the:0.2894017214158448 is:0.10000214095421395 was:0.09072525997441709 are:0.07137398845213395 :0.44849688920339004 +of:0.24555094422538357 and:0.13950689155849802 in:0.12269446734458692 to:0.11534372948486415 :0.37690396738666737 +the:0.6319385493141862 a:0.12394726037828767 tho:0.030546748213011798 any:0.021204102025417487 :0.19236334006909678 +we:0.16365950784154176 but:0.07734786842085296 and:0.055563345680913326 I:0.04451971495098988 :0.6589095631057021 +am:0.155023191261596 this:0.12325368842795398 the:0.06913650378019812 that:0.03500955091084488 :0.6175770656194072 +purpose:0.06950804013410151 sum:0.05341275288771402 County:0.04785198458113347 city:0.02040883806398858 :0.8088183843330623 +those:0.32367008810029574 all:0.07017002746546262 men:0.04811753259423444 the:0.01830616303146398 :0.5397361888085432 +few:0.1268682593690398 great:0.09564069198780084 worse:0.09209029064915372 little:0.029332762117027438 :0.6560679958769782 +be:0.28734533774530446 what:0.2420619391963746 he:0.0806208485986585 follow:0.06831892269935683 :0.32165295176030556 +they:0.2528013471704294 it:0.2102180568917236 she:0.13961149238681148 there:0.13739562576457875 :0.2599734777864567 +into:0.2760207442452752 with:0.19031140441373978 through:0.18958751128641937 off:0.18905595343558018 :0.15502438661898552 +Register:0.09778722341116304 passage:0.09231610433799228 coming:0.0847433592561246 claims:0.04680958356980926 :0.6783437294249106 +of:0.04495340703105178 from:0.02711759983918306 10:0.02354869270809942 100:0.02016162927355164 :0.884218671148114 +department:0.07329055777210187 the:0.019941031789401032 old:0.017888385230701343 commission:0.015869945129548937 :0.8730100800782469 +sort:0.12708735456353576 change:0.10542328407466435 series:0.07354202263024286 feeling:0.060600055137115486 :0.6333472835944416 +division:0.03503082200911092 estate:0.008230827151060195 most:0.0055740766305015935 that:0.0047734749144091385 :0.946390799294918 +reason:0.8478888300387241 reasons:0.03349513318940181 cause:0.001473190635142269 time,:0.0007585937552693844 :0.11638425238146238 +the:0.8119526885871661 tho:0.039667839045863185 we:0.018404135223462972 his:0.013922777031609272 :0.11605256011189866 +years:0.5648709395797489 months:0.4343752635818594 days:0.0003913489003894806 weeks:6.31714509128305e-05 :0.00029927648708941303 +other:0.16487962040855003 only:0.06357898578419537 eyes:0.012329568832109195 and:0.010274653713721259 :0.748937171261424 +have:0.8789835270826268 had:0.06356044307838268 thought:0.011845909652367143 havo:0.007233051802782269 :0.03837706838384099 +own:0.2330706798219724 national:0.055206298398064034 public:0.054339385946535444 present:0.046835733082094023 :0.6105479027513339 +the:0.6369237757745256 a:0.06658955477217021 tho:0.04632036158963576 physical:0.03759073359969752 :0.21257557426397083 +upon:0.3795465079778249 on,:0.16149662038516185 that:0.07487249603078075 to:0.0596169194657688 :0.3244674561404638 +the:0.8517549792288774 tho:0.14008271937638236 them:0.0043284897544234235 these:0.00195890192144952 :0.0018749097188672686 +and:0.12614276619294765 it:0.07990625223016372 which:0.05975147818591635 It:0.0489797750273122 :0.68521972836366 +the:0.9478109193505314 tho:0.008652339550188617 tha:0.005188807286407051 new:0.0033009465916891047 :0.035046987221184024 +that:0.49640075735014094 of:0.13341083636184567 can:0.10646747068958008 and:0.05880551529517868 :0.20491542030325455 +indeed:0.13836620372969838 What:0.08204143936572322 or:0.06657161757349592 Why:0.05172100944375802 :0.6612997298873244 +principles:0.9254437264167102 by:0.0311138309042338 as:0.012932704472558332 the:0.01248429025688024 :0.018025447949617423 +is:0.5377397627785623 was:0.29817480248238926 be:0.04961825289059515 Is:0.034908194590752485 :0.07955898725770079 +our:0.2792345736723466 Its:0.27095412715488215 their:0.20566670205389834 the:0.14976244491282956 :0.09438215220604335 +In:0.5855537301026841 in:0.40260407808508325 on:0.011647193157096624 iu:5.217370461622236e-05 :0.00014282495051990495 +bonds:0.27390611898434536 are:0.10426251486221355 were:0.03792995149283668 orders:0.019764947557016525 :0.5641364671035878 +city,:0.4691295005175627 for:0.18271062952504072 land:0.13553126907886898 time:0.026542187629726162 :0.1860864132488014 +He:0.3174236516998651 She:0.18879444119951844 I:0.18218051865900997 and:0.11738359293345645 :0.19421779550814983 +other:0.1810354844682429 re:0.0797143260513835 next:0.054440230800957806 second:0.052777265291033014 :0.6320326933883827 +the:0.5731004019769398 this:0.2239329291995757 a:0.0883279415640976 his:0.08688768454902399 :0.02775104271036294 +come:0.12824488687291244 gone:0.0976378604915721 failed:0.08644616644517043 extended:0.08280558575295498 :0.6048655004373902 +calling:0.13931820528423514 close:0.11454430085578349 up:0.08046761499220056 down:0.06181235899936775 :0.6038575198684131 +of:0.1838456908145014 T:0.16271978434006304 f:0.09649582244954027 that:0.07329655076313202 :0.48364215163276314 +and:0.8975778794009143 which:0.02595109183724025 who:0.025330474556175382 that:0.013299406663844557 :0.037841147541825486 +eastern:0.2439306977801072 the:0.1432916434766414 a:0.08532058791864157 de-:0.05398829023031528 :0.47346878059429437 +and:0.2263040430773928 They:0.1072016211297301 who:0.09688723503115053 which:0.08751472689654005 :0.4820923738651866 +step:0.6415140941766885 go:0.18220967606668054 turn:0.03570114936385104 take:0.021530356968937812 :0.11904472342384212 +of:0.2349732846960132 and:0.14922888399912826 but:0.0836959397897142 was:0.06039224655487957 :0.47170964496026485 +of:0.8004918516054755 in:0.03779773708828973 for:0.035289441409444997 to:0.0230552265533096 :0.10336574334348007 +seen:0.14176722957487717 met:0.10650715596657612 married:0.05244125815501335 lived:0.04003933155586067 :0.6592450247476727 +was:0.4977662203361733 it:0.35524718195343774 them:0.07802237762020667 It:0.039861503945873664 :0.0291027161443086 +beginning:0.4201577646036097 entitled:0.302017003955083 run:0.017839605418669094 said:0.00955781566498948 :0.2504278103576486 +an:0.26262128696198916 by:0.2528832593164461 a:0.23973386779240427 to:0.14540300960029545 :0.0993585763288649 +of:0.6741184957194883 and:0.038084268459417765 in:0.03733538181258436 as:0.035644588104723963 :0.21481726590378544 +more:0.0724988553338668 of:0.02853968601734046 and:0.026795200204192557 pounds:0.019753283838396318 :0.8524129746062038 +its:0.6983984638312782 the:0.14670477061209597 th:0.029997599409232932 his:0.022383592216997723 :0.1025155739303952 +100:0.0876666646858267 many:0.08135715055599084 six:0.07861512459189234 four:0.07510644444095657 :0.6772546157253335 +evening:0.13264375210111126 meet:0.07132022450913801 arrived:0.06867997848828745 hands:0.045889325784587 :0.6814667191168762 +the:0.8788143043969275 tho:0.011930328935052584 its:0.008826837196869485 tbe:0.007282669125511109 :0.09314586034563922 +Pennsylvania:0.05764443203230693 the:0.04791351210682271 this:0.027608049671105025 many:0.025095917560503663 :0.8417380886292617 +;:0.2501358568723401 this:0.08326527101316994 I:0.06180725200348012 and:0.0295884909324642 :0.5752031291785457 +coming:0.026303389041284517 ing:0.025400145168174404 from:0.013109694252463664 in:0.013053578261691868 :0.9221331932763857 +grown:0.04873895340918366 and:0.03137482427309352 T:0.03111530322446302 women:0.020244714672951417 :0.8685262044203085 +In:0.17845780167690692 as:0.17782211070451515 to:0.17304887920575726 with:0.13815579930023095 :0.3325154091125898 +to:0.48823075833946333 and:0.21528335311959687 boy:0.01834114021747053 10:0.001740078363229961 :0.2764046699602393 +long:0.22756034074173678 money:0.19613363604879888 have:0.07588120377007557 is:0.057257933404794806 :0.443166886034594 +and:0.051480917070618915 as:0.01904133420900084 feet:0.016023939024151793 1:0.014474385414242959 :0.8989794242819855 +of:0.1681072024799265 and:0.09668827325805258 the:0.08800437161451777 a:0.056657948540788844 :0.5905422041067141 +dressed:0.20680850941611004 but:0.0034167209314285556 with:0.0009193901139672938 for:0.0005617571760411471 :0.7882936223624532 +will:0.22697599812113403 would:0.1282940653606762 shall:0.1143439757859938 has:0.08595150248137334 :0.4444344582508227 +over:0.3485490867578515 ed:0.10839106526021615 with:0.08599905795517246 in:0.07091484095796005 :0.38614594906879995 +thought:0.5513932895207808 think:0.16091353608232647 know:0.036961008935877365 when:0.010283233404296328 :0.240448932056719 +the:0.25881197266111566 a:0.14187322413203532 and:0.08232995694865013 an:0.051425772712580774 :0.465559073545618 +and:0.14048195548315673 has:0.12279557060435205 of:0.1189109651912765 the:0.11227525303764428 :0.5055362556835705 +to:0.9934787566211655 and:0.0010972120291555315 or:0.0010585941032784445 have:0.0009244482709553181 :0.0034409889754451113 +the:0.5327807282302471 double:0.04953278731496552 tho:0.03262150177355822 (:0.027683297519708504 :0.35738168516152075 +in:0.48869710427456836 iu:0.17282169529215274 at:0.1671549543795984 on:0.12750758590644495 :0.043818660147235615 +that:0.3927361804322063 the:0.1051889984520835 much:0.043469923186503015 many:0.04334499091885286 :0.4152599070103542 +state:0.43728452708324517 condition:0.030600083260780654 sort:0.027710471805019198 number:0.02479669786333837 :0.47960821998761655 +of:0.6486547161687574 to:0.11891749376586423 in:0.05121413524810641 on:0.0383434852054661 :0.14287016961180588 +V:0.042765846025350336 r:0.014825399936909135 ::0.002384669820635629 ":0.0019215579278913653 :0.9381025262892135 +or:0.4223033525681021 of:0.12934226011645394 and:0.053093090397881945 to:0.04464629126261312 :0.35061500565494896 +is:0.9770056633749145 was:0.008885795652314152 the:0.00597941683530845 may:0.005653896255864596 :0.002475227881598362 +the:0.3751378094047175 any:0.17708763255823542 his:0.14299898169391656 a:0.12272007603073437 :0.1820555003123961 +is:0.3279361070441418 was:0.23926169657732446 can:0.16123208167861108 ap-:0.09366673386713566 :0.17790338083278687 +the:0.4161876154382345 another:0.31897598915912684 tho:0.1432650095226949 a:0.07477077020295037 :0.0468006156769933 +in:0.5199947205872095 In:0.3998402708499402 iu:0.015695643816600453 la:0.007496536392377356 :0.05697282835387222 +everything:0.08310690113510287 had:0.03070052897945563 to:0.02101544059878676 ;:0.019523605995850672 :0.8456535232908042 +the:0.12575964011470256 it.:0.05187553119447472 government.:0.0040467146503637245 it:0.002227469891380696 :0.8160906441490783 +it:0.34834547445025765 not:0.2875698237031771 Lot:0.10467388104795804 simply:0.056086445156530385 :0.20332437564207692 +of:0.3313730077221618 and:0.15456766380410217 to:0.10965079396361062 in:0.08583542387162377 :0.3185731106385015 +be:0.6707546857948039 not:0.07395757776754182 bo:0.06208381032151102 prove:0.048178013402259606 :0.14502591271388363 +the:0.43414043778839145 a:0.05770333042442204 in:0.037537446846024135 his:0.036122586700805676 :0.43449619824035673 +to:0.5285442467779984 in:0.20353249197418183 degree:0.014683180735387342 base:0.005238917552297051 :0.2480011629601355 +and:0.029195117574343107 or:0.020822899798445725 caused:0.007728446294160577 power:0.007603586636219117 :0.9346499496968315 +other:0.3612190751605386 the:0.23679857903698365 a:0.03168074733766189 all:0.02441298035338664 :0.3458886181114292 +of:0.4566084989740673 with:0.1534343972693593 and:0.0860755066552775 in:0.04914340162785669 :0.25473819547343934 +home.:0.009795757945506953 body.:0.007674141951590005 house.:0.0074870573838627585 wife:0.003771509173985606 :0.9712715335450546 +One:0.48346425314772984 That:0.15463003768755157 Last:0.12169162917528063 last:0.10601112136411744 :0.13420295862532047 +men:0.22275990426979764 hair:0.07407154929274817 men,:0.06608962158157924 people:0.04913708142516152 :0.5879418434307133 +them:0.4308934953469662 me,:0.19768927014253598 her:0.11539915231245668 us:0.07677534741751338 :0.1792427347805278 +w:0.33703483983717225 city:0.12137342415850687 to:0.010767180433654221 whole:0.009702213724785956 :0.5211223418458807 +to:0.9989491480122435 of:0.0008209211237691224 tn:0.00010100125548416887 or:8.478303856325528e-05 :4.4146569939946075e-05 +to:0.1465073104798139 the:0.048962588572327846 of:0.0430359308481218 with:0.02843581844563538 :0.733058351654101 +the:0.18818262945546602 of:0.13309759496104814 a:0.07330272859363862 in:0.06914557498440696 :0.5362714720054402 +and:0.4566237612146478 to:0.11440965019087578 I:0.04315316625191497 of:0.03576486165753829 :0.35004856068502305 +the:0.511930181927181 our:0.126355181192545 Fort:0.05714633671125149 be:0.049637559568608505 :0.25493074060041404 +be:0.8667245342310512 bo:0.046729769262386776 he:0.024857111855397844 lie:0.012835914923168547 :0.04885266972799572 +of:0.34804294713697564 and:0.13996105309642917 the:0.05516743798540995 to:0.030699070617585825 :0.42612949116359955 +and:0.31900501951318166 of:0.19522332251472746 is:0.0729468839438216 In:0.06269150116239815 :0.35013327286587115 +the:0.2634612097916503 Congress,:0.1553420205107979 Congress:0.10748506534274198 February:0.08225011708612588 :0.39146158726868385 +to:0.9929610711726479 by:0.006584997698762863 present:0.0002129191611476078 on:8.330164481039324e-05 :0.00015771032263131474 +men.:0.008915381440150732 .:0.005929231909762421 point:0.004869133937372724 and:0.003894834471260997 :0.976391418241453 +have:0.3421905876633391 offer:0.2642976004640037 do:0.12114245259848289 be:0.07507987536589635 :0.19728948390827813 +and:0.09094026972100641 but:0.05417150064298498 occurred:0.04188027529841405 that:0.025799368802969416 :0.7872085855346252 +by:0.6214213761373167 that:0.1917489869230318 in:0.10333596813796696 at:0.04640529957999222 :0.03708836922169242 +A:0.004400075420686958 the:0.0020828462926444254 one.:0.001353922422182876 made.:0.00110122388100601 :0.9910619319834796 +complete:0.13161660559756655 per-:0.07233023175988787 the:0.05170649953642285 faithful:0.046385437424657956 :0.6979612256814649 +done:0.09341317214976246 seen:0.07020783270154535 been:0.062265610570478996 said:0.037469447990081776 :0.7366439365881314 +1:0.09228419525748359 of:0.06478098064821587 and:0.04733322363612356 the:0.03363638856863844 :0.7619652118895386 +set:0.32298695501409447 placed:0.1471208997895263 thence:0.05579699889488183 and:0.026862010152906953 :0.4472331361485904 +T:0.09355068929985615 the:0.0020499272768037574 V.:0.0014844708691152864 John:0.0014139396022935676 :0.9015009729519311 +their:0.10185800657604303 the:0.08363258786120366 an:0.08186592492568373 a:0.0771778193056204 :0.6554656613314491 +the:0.19474687578365193 tho:0.04117918944802561 health:0.03910672597377243 pleasure:0.0136701898608534 :0.7112970189336967 +of:0.5121171993697111 in:0.14818913996262428 if:0.12441455673376206 England,:0.04134749159409291 :0.17393161233980958 +South:0.38547343158366676 North:0.3820137711640778 the:0.2158607864933702 tho:0.004431680568160284 :0.012220330190724986 +part:0.029644910041971416 other:0.019611406539080823 first:0.017014685923728394 to:0.016320186604412493 :0.917408810890807 +at:0.40262295985739166 from:0.25245126715418353 of:0.06835549641995528 By:0.06800706876285609 :0.2085632078056134 +and:0.16218864555317497 so:0.06230729745174424 of:0.028669764077183336 is:0.026867481396787806 :0.7199668115211099 +of:0.9517166277293314 four:0.009756131855379874 forty:0.004196481456399516 for:0.0025387430504042454 :0.03179201590848525 +with:0.26692342934700825 and:0.22903746900187508 but:0.15846650716975605 for:0.07850908146209389 :0.26706351301926673 +a:0.38326375944881674 his:0.37882855428776757 your:0.1408779172074696 the:0.05198176078204309 :0.04504800827390301 +to:0.5515631894820803 the:0.08921537228988852 of:0.03451705389330326 The:0.0292114194984851 :0.29549296483624277 +annual:0.4253428695160865 free:0.1202867326340436 immediate:0.08895009549406466 such:0.055315262233018005 :0.31010504012278733 +to:0.30188175364930486 by:0.1973606647421341 of:0.13767232766331156 for:0.11958178023643623 :0.24350347370881334 +market:0.218757291408554 basis:0.073981790608657 place:0.03458592465660326 passage:0.032574457057912176 :0.6401005362682738 +meeting:0.920144549396261 one,:0.011907181444185866 family:0.008468596561637573 home:0.005217664562750472 :0.054262008035164934 +the:0.709692050018148 this:0.13941521121734185 our:0.07394840978617753 tbe:0.024814112388380133 :0.05213021658995262 +the:0.630871425380885 every:0.0729714233469216 his:0.07131330897431637 their:0.06960786220721268 :0.15523598009066425 +member:0.7268003535634509 and:0.09770179659570852 or:0.030263128371213074 act:0.017198707339398468 :0.12803601413022908 +not:0.9756600252840797 hut:0.0026934406527643474 reach:0.002432565425291533 never:0.0021684569538341684 :0.017045511684030363 +to:0.4640728337524291 of:0.15443650244757895 into:0.07984655420502462 the:0.052224517547942044 :0.24941959204702535 +it.:0.014652103892613863 the:0.008509675798985194 him.:0.006270714191571301 us.:0.0045923407536222795 :0.9659751653632074 +to:0.23237480564968752 of:0.2117879635913683 and:0.21141619153074664 with:0.17051882733957854 :0.1739022118886189 +strong:0.0896944708187587 rich:0.023144803370495286 same:0.016755390713945068 lower:0.007793767437653216 :0.8626115676591477 +of:0.7380307464373139 In:0.144281247360314 but:0.03922294975591447 in:0.020686130168077625 :0.057778926278379814 +ou:0.3015657294475356 r:0.2911300459884168 was:0.05789858381770959 of:0.014037675620964541 :0.33536796512537337 +and:0.16844330240193528 by:0.14346967043874131 all:0.11379635823986455 is:0.059296288230416355 :0.5149943806890425 +facts:0.5070483501780673 manner:0.17934589244803992 price:0.08970090684263 reasons:0.08773901035308398 :0.1361658401781789 +of:0.5469360766279482 and:0.0847624485061857 with:0.05767520722301147 from:0.03752290624980717 :0.2731033613930475 +have:0.39429754037703496 make:0.28992519711720427 be:0.10613395275886252 spend:0.08050053347382213 :0.12914277627307608 +the:0.9803086548592254 our:0.01352956946874699 her:0.0027248209199263545 my:0.0011010458973708072 :0.002335908854730506 +the:0.5964567798927974 that:0.10710002565166622 this:0.028804274962110906 tho:0.0027297732570917095 :0.26490914623633394 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +when:0.7006127250455408 which:0.1878936957480749 are:0.044387904859311114 until:0.03603675673674009 :0.031068917610333036 +said,:0.042269686590779745 is:0.03388861787363641 It:0.019354609437775585 He:0.01593765656730332 :0.888549429530505 +they:0.40215488217608436 who:0.332269438022423 and:0.10065125753064003 .:0.0688824690095545 :0.09604195326129818 +from:0.8791581234973539 some:0.023211233561392704 about:0.017478067368498218 but:0.011201902182267662 :0.06895067339048755 +been:0.7898491628427381 made:0.015378028129360087 a:0.01213764181150691 the:0.008674898850754635 :0.17396026836564013 +the:0.8610113847407944 our:0.05781296133486801 this:0.03428260062145243 about:0.022187977582599074 :0.0247050757202861 +and:0.12876746456602914 of:0.11025910945065506 the:0.08864343166138544 to:0.04448234812721705 :0.6278476461947132 +the:0.6225601099037888 tho:0.16739884714633332 my:0.0868622604455017 simple:0.061780304815631404 :0.06139847768874471 +it:0.3940989245420257 he:0.2547419347715365 this:0.09079334485949365 reference:0.06328553500664288 :0.19708026082030122 +him,:0.0214513140632519 them,:0.02126666138034697 us,:0.018840790701990174 it,:0.004875785587363108 :0.933565448267048 +had:0.07508723977769462 city:0.02685769553069902 rear:0.020570331886661873 world:0.019113151891486692 :0.8583715809134578 +days.:0.00507003082211364 States.:0.0015697313418253298 years.:0.0010859103808680756 matters:0.0010053381413326977 :0.9912689893138602 +the:0.7554145160083613 tlie:0.14370797578511535 this:0.053917060216297476 a:0.02483204336385171 :0.022128404626374297 +and:0.039889408056904795 made:0.029685951899588895 labor:0.020168671317394186 soil:0.013528028229903568 :0.8967279404962086 +the:0.48529645814954 a:0.09020735508562801 Mrs.:0.03300467456967455 following:0.023739236568240812 :0.36775227562691676 +he:0.43137024048510464 it:0.41298186060917297 they:0.04637665346806637 I:0.04400225240986483 :0.0652689930277913 +able:0.08940892275273693 permitted:0.05023451410135202 made:0.01859112269609507 obliged:0.007349210901488528 :0.8344162295483274 +be:0.26283653528527756 keep:0.21436920234084667 avoid:0.07232005986044458 get:0.060939732535016264 :0.38953446997841507 +it:0.35816473945077637 in:0.23665970349664445 the:0.16338740323739892 that,:0.12921264072676836 :0.11257551308841181 +the:0.31134249761845917 a:0.27214595197196123 their:0.08917682769032204 it:0.08628150909082045 :0.24105321362843724 +given:0.27907921827456056 burned:0.030265372198823515 shot:0.029831401750794528 carried:0.01873046335403265 :0.6420935444217887 +Hill:0.10838222733912962 and:0.09787304605985492 A.:0.08249423799278092 of:0.07517296228513462 :0.6360775263231 +right:0.3366244402341917 other:0.14323436479611634 east:0.10566796924886382 west:0.0862253033133801 :0.3282479224074481 +re-:0.3565668249877667 being:0.22792871372811824 getting:0.06919327497422485 increasing:0.017384871703800642 :0.3289263146060897 +and:0.2077965666129677 began:0.14999115595071064 is:0.06219692974667409 than:0.05864480572039049 :0.521370541969257 +works:0.021327283367671934 interests:0.006030297128674508 business:0.0048680980150111455 schools:0.004648132906793385 :0.9631261885818491 +way:0.2430983427994172 book:0.02323380094914303 votes:0.01139578336671904 money:0.011294591752417033 :0.7109774811323037 +river:0.060562707528634824 tain:0.05242808425187542 and:0.046173334337675113 of:0.028114463329388426 :0.8127214105524261 +that:0.0248592784867748 course:0.018755735035776114 advantages:0.018425893347091882 is:0.017484184229769946 :0.9204749089005874 +the:0.1857143741057244 night:0.1710993806677716 seem:0.16012662117905932 their:0.0792385016947336 :0.4038211223527112 +given:0.4570310836441644 treated:0.3127725144057495 left:0.061869017217674335 written:0.04484039494020307 :0.12348698979220869 +the:0.4292454223719776 and:0.10886322770208291 his:0.10146005518249353 of:0.0834356771991298 :0.2769956175443162 +the:0.06860561769302034 one:0.048768105309017894 spirit:0.03338478658914891 judge:0.01832704865035151 :0.8309144417584612 +to:0.41457125008282625 or:0.2952372387579636 any:0.16056491702498715 a:0.07194027201067638 :0.0576863221235465 +and:0.2251149656791245 of:0.18998978833995223 with:0.13701280267359392 for:0.1189928906089623 :0.32888955269836695 +for:0.2786667953751626 handsome:0.2542026031668695 more:0.2074213718576607 to:0.17439080120828845 :0.08531842839201874 +in:0.13026785917793904 and:0.1064371071180001 made:0.09739391951446198 on:0.051261065231393385 :0.6146400489582055 +a:0.7987539352788988 the:0.18459827578675564 n:0.007947500978412774 public:0.0036994546747846934 :0.0050008332811481175 +it:0.30931726637211737 I:0.11736508611655068 the:0.10899136749138762 to:0.07616048860375584 :0.3881657914161886 +which:0.20824138853643367 all:0.12908937477851698 of:0.03293467383159541 it:0.025746581665761013 :0.603987981187693 +passage:0.04801154580481345 people:0.026977169512489723 right:0.026054180386749438 work:0.023810588980461594 :0.8751465153154859 +I:0.16963001713631234 he:0.13710723271984981 He:0.1281722764616131 and:0.08911971608475155 :0.47597075759747337 +United:0.019032061170095243 public:0.01446901555511407 the:0.013457506198779551 State:0.01032053394797212 :0.942720883128039 +came:0.25818450642135504 it:0.21518669673906415 is:0.18873407926687708 and:0.039558012545264976 :0.2983367050274387 +to:0.14741264915175178 the:0.11987699061063116 twelve:0.10611900155151761 but:0.08337832421121256 :0.5432130344748869 +that:0.4236735068577197 had:0.2199687431988693 when:0.08202921014836942 so:0.05403446381027579 :0.2202940759847659 +sympathy:0.25422262217197666 date:0.17186246514929 value:0.06126799838649128 cost:0.0556341182236357 :0.4570127960686064 +petition:0.6704253675644345 bridge:0.04525845108658685 suit:0.029676696569092744 company:0.028050971188569182 :0.22658851359131674 +this:0.6344602595797203 which:0.10378740368850971 it:0.05348014689692169 who:0.022744561649371567 :0.18552762818547683 +is:0.5669561833106624 are:0.33847007087940334 and:0.028161285257506115 of:0.023364756405098514 :0.04304770414732956 +and:0.11188000237413352 the:0.06293675801955251 of:0.051810830038557125 with:0.026072838502745804 :0.7472995710650112 +belief:0.04980967535833993 the:0.019106373840385635 demands:0.017857386016012493 hope:0.016306101809941846 :0.89692046297532 +the:0.5737618280611659 a:0.037047647700641916 tho:0.028388035557478337 tbe:0.010644027847252173 :0.35015846083346186 +horse:0.06610589387859425 the:0.029371037730693435 en-:0.02015157996526236 and:0.018130186815112734 :0.8662413016103372 +of:0.21105100819604558 and:0.1110287926536864 the:0.04233104428775952 The:0.029530246182234255 :0.6060589086802742 +he:0.4387314195766373 the:0.23990185394079042 The:0.07163022326350398 his:0.07011524825727292 :0.17962125496179554 +for:0.2268323008058845 unless:0.22422828037638898 and:0.13834398602305656 Then:0.13692155356590008 :0.27367387922876985 +around:0.6331936700444829 from:0.17205738147353014 into:0.08909753949121446 to:0.06097318544892822 :0.044678223541844336 +southeast:0.3866488562461575 southwest:0.04220580830547001 that:0.022102294260576846 greater:0.012308694948883899 :0.5367343462389117 +their:0.8498988089152893 who:0.03275303630558336 of:0.016504238262213693 our:0.014927660568015073 :0.08591625594889853 +of:0.11461221088845315 and:0.09215654794393552 the:0.05076133360469245 to:0.029181281799301562 :0.7132886257636173 +Baltimore:0.11906846398011828 more:0.09094946544926051 street:0.018105582185061204 tho:0.005621860209127866 :0.7662546281764322 +':0.320586304651662 ::0.06803738880315255 it.:0.015033352624538041 could:0.011993059133990484 :0.5843498947866569 +a:0.1360515994670205 but:0.04669563673757333 of:0.04254815172454192 the:0.041825071773677364 :0.7328795402971869 +William:0.29965243681547615 W.:0.022111687482975487 the:0.014382035970367572 and:0.011630151234467779 :0.6522236884967131 +city,:0.009284462437734613 country,:0.0063791711498886496 same,:0.0054517523300512925 land.:0.005379890396132912 :0.9735047236861925 +of:0.6423180430301871 and:0.08552819675778812 in:0.03958839684127321 to:0.03735934442301867 :0.1952060189477329 +a:0.45297701348984215 the:0.329830345451148 this:0.09890777899369022 our:0.08221093171423247 :0.03607393035108721 +afternoon:0.11971246315069681 or:0.08126678246455225 of:0.04802548542736704 the:0.021846716552958785 :0.7291485524044252 +the:0.035886903864489235 great:0.014301857751468321 It:0.013084630811028602 said:0.010978177197297177 :0.9257484303757167 +the:0.219653379087621 is:0.13918564509884768 a:0.11755964468625935 in:0.07426515256653102 :0.44933617856074093 +in:0.5113541352451197 to:0.11126457673260969 of:0.08377346356737088 In:0.0648062014532161 :0.22880162300168363 +the:0.8078634285579369 tho:0.03985086024452815 be:0.016585858673218514 tbe:0.013724859223897653 :0.12197499330041879 +were:0.091310734270361 able:0.0839056762978946 and:0.06263700653561738 he:0.05939540312623263 :0.7027511797698943 +make:0.06923735584163732 of:0.053172135594621715 be:0.04619206139707433 do:0.042054186631287634 :0.789344260535379 +building:0.036602423086730444 country:0.02491789175866734 county,:0.02205342023210729 country,:0.0161406475206323 :0.9002856174018627 +of:0.1569647562157065 and:0.05381974467835714 the:0.03410592400288499 A:0.033289840732733646 :0.7218197343703178 +of:0.24885135795774835 and:0.06213841111405836 the:0.04500102093666936 to:0.02173473717179571 :0.6222744728197284 +a:0.4367355206202882 the:0.30031973048313715 highly:0.07036372626207572 their:0.0594004548780563 :0.13318056775644263 +the:0.8716970890798058 tho:0.08054237420361916 tbe:0.004999125488788383 similar:0.0025477982444926457 :0.04021361298329393 +the:0.3800102061765353 a:0.22719425369713037 tho:0.13550487099581784 an:0.05169810900247012 :0.20559256012804616 +der:0.16452046364806652 and:0.05156494465220043 confidence:0.04929179424940961 ing:0.029119925337850065 :0.7055028721124734 +tho:0.75101231760138 the:0.1070613595753719 his:0.09786143152927097 your:0.024221517118105877 :0.019843374175871144 +and:0.09388821369656744 showing:0.026706575761126495 however,:0.009788395664168649 said:0.009322335406933849 :0.8602944794712033 +state:0.052108243840066376 on:0.04186267025412246 State:0.030740424320490706 Ohio:0.00979756802306739 :0.8654910935622532 +to:0.651506555647145 shall:0.28608737922447486 will:0.03556457371419691 may:0.005923677528071319 :0.020917813886111917 +were:0.3421599793240884 members:0.0524236155334214 guests:0.05181644056203456 people:0.04670717858112376 :0.5068927859993321 +at:0.47122639373305636 reached:0.35243160282729963 left:0.03254124074601026 yet:0.02993892067779905 :0.11386184201583464 +on:0.5574498884668584 from:0.1400649747198853 at:0.11789846391470599 all:0.0996083272709131 :0.08497834562763729 +no:0.015990028926081517 consider:0.009493111129990897 l:0.008481091657223962 ta:0.00029376949329979314 :0.9657419987934038 +one:0.33453605350613974 ordered:0.024738873027956146 some:0.017872959971449897 the:0.0176654424641293 :0.605186671030325 +the:0.4293083559294117 that:0.047356320990705345 one:0.04695487951696125 in:0.04295077797034677 :0.4334296655925749 +rest:0.055226245817775126 doors:0.038388555753214794 friends:0.03532997765777196 Secretary:0.029388170383113282 :0.8416670503881247 +of:0.21559079948002682 man,:0.20786943896678592 on:0.08639215211484069 and:0.06188486387730203 :0.4282627455610446 +to:0.7764564872898931 will:0.11531779653937173 ly:0.02783517247326975 would:0.0204683966023939 :0.05992214709507147 +answer:0.1975947859987116 cover:0.0836678068745402 be:0.07868883901182828 at:0.03089370558406781 :0.6091548625308523 +should:0.30606981738122313 will:0.2271596528058187 could:0.2074301628134242 would:0.040220131727114874 :0.2191202352724191 +has:0.5255638352702762 have:0.2211521237424387 had:0.13603069148242136 having:0.023909318464926492 :0.09334403103993737 +fast:0.8018589150983998 high:0.071398912287831 far:0.059437043337448404 well:0.03331887461508521 :0.033986254661235664 +this:0.14882926053395448 that:0.115735548878992 silver:0.11457612420883925 water:0.034362789701959426 :0.5864962766762547 +bridge:0.018038540599648538 steady:0.00840028149623622 decision:0.007995347945037123 Ohio:0.004890672946252346 :0.9606751570128259 +t:0.10810179295384235 i:0.09823724514073995 there:0.09185905612377526 the:0.0566696186970986 :0.6451322870845437 +not:0.23355793387850335 be:0.04430847289464773 never:0.031181834420008294 was:0.030433860401255227 :0.6605178984055855 +the:0.26376545122502126 a:0.04967012128432978 to:0.031227316478892472 in:0.02485603397488389 :0.6304810770368725 +about:0.6019069804643518 around:0.2286583386151846 for:0.13885938181286941 of:0.023853017885869753 :0.006722281221724529 +if:0.4297377984207002 and:0.3842429225431287 by:0.08385780193743395 now:0.014339829765023833 :0.08782164733371337 +and:0.29817037191762974 to:0.09477518407705617 most:0.07850953098538975 the:0.07538105683879136 :0.4531638561811329 +of:0.10093683741181811 the:0.06634583421396302 and:0.050131881814892476 or:0.04895108097527711 :0.7336343655840494 +of:0.11130396908495048 in:0.1053436091284227 gone:0.10071163408449677 been:0.05914033630283354 :0.6235004513992964 +today:0.5799766000498388 difference:0.37624559623093556 to:0.0030289155282863882 suffering:0.002424058742122335 :0.038324829448817 +whole:0.26346232551429954 extreme:0.18623326989434028 the:0.022263408606074495 Indian:0.02209391224070276 :0.505947083744583 +It:0.5231393093707025 There:0.3048799722498156 it:0.04118627041190968 eral:0.02128923273668289 :0.10950521523088932 +brought:0.15047053824988998 not:0.10341216552891977 been:0.08472301656664877 made:0.07069908655364684 :0.5906951931008945 +hand:0.06633100380008314 and:0.055936728707496934 that:0.028995565702247043 of:0.01058498522075363 :0.838151716569419 +hours:0.13613399379370236 to:0.06617706481356928 five:0.028886201019945854 I:0.022158277061714048 :0.7466444633110685 +office:0.4374453575766701 line:0.10026784090849462 way:0.05235052583759253 the:0.027994228219449163 :0.38194204745779353 +of:0.7578662926384979 to:0.07281443812204427 entitled:0.06525832806463007 ot:0.03660513660450771 :0.06745580457032009 +plaintiff:0.2642312715912353 purpose:0.044124645516269455 said:0.024514820005136734 majority:0.020309907326581868 :0.6468193555607767 +was:0.16561877731216418 spoke:0.03577831208623956 lived:0.0331769857771915 is:0.031293600567768184 :0.7341323242566367 +very:0.14701922215276278 ac-:0.04681266796941908 re-:0.038611543067412914 dis-:0.02553316770316324 :0.7420233991072421 +the:0.4847748737675612 all:0.31138946966767644 any:0.08717617974669954 in:0.07144619203783903 :0.045213284780224 +do:0.23376170780495112 the:0.17264220626564303 every:0.1704734743076461 is:0.1631954407763019 :0.2599271708454578 +Great:0.3557319984213035 A:0.13076226587776268 I:0.0434127012789438 1:0.028987273088450255 :0.44110576133354 +no:0.41706133116604766 much:0.0894457343724572 nothing:0.08760865130752173 what:0.06182736400936522 :0.3440569191446082 +ample:0.9927608761904131 good:0.004152383577793548 the:0.0010380232198879311 his:0.00036694121119324824 :0.0016817758007122365 +of:0.19229398099719847 week:0.15808968355216346 place,:0.11779980184759392 place:0.07580721677012141 :0.4560093168329227 +office:0.07458558780248262 hands:0.06348851561517524 reach:0.02759845486204801 way:0.027551209546737933 :0.8067762321735561 +to:0.008993357010514885 and:0.0074424313959776875 the:0.007153497838370887 Mr.:0.004720546358387939 :0.9716901673967486 +which:0.9989605099667358 the:0.00022112048661340284 whom:0.00016102649731991275 .:4.5585528562086926e-05 :0.0006117575207686718 +day.:0.30211216245358286 t:0.18371528630071673 which:0.06275592017031485 I:0.059757056813820875 :0.39165957426156467 +same:0.04493745827485432 second:0.028875688125831928 latter:0.0018730531122245285 first:0.0018244062964688354 :0.9224893941906203 +is:0.5056564772220221 was:0.14640009018963845 Is:0.0588117527302705 and:0.023333153135242483 :0.26579852672282656 +of:0.3001422153118648 and:0.11324857088254457 the:0.05298779624481796 in:0.02628678666017364 :0.507334630900599 +ed:0.07046222092470111 to:0.06563479526624962 about:0.06154453957355559 with:0.057300821187317046 :0.7450576230481767 +admitted:0.17821537274719657 and:0.09507015455074816 is:0.06547394332421495 ing:0.045829251059534795 :0.6154112783183056 +individual:0.014947297781967909 and:0.011085154961531314 the:0.010660283553686888 personal:0.008812149581623865 :0.95449511412119 +college:0.00020419998310113852 men:0.0001320196076106996 papers:0.00012124911631580714 and:9.745276797965566e-05 :0.9994450785249928 +country:0.08920998937762291 people:0.04121381660619131 time:0.015883740807064166 one:0.010201473934869096 :0.8434909792742525 +to:0.2261602420474538 in:0.173116893137354 of:0.12806509686924464 from:0.09664001668152758 :0.37601775126442 +i:0.04849381077665794 work:0.02957933684285029 life:0.023875309319781567 ball:0.021252138338302362 :0.8767994047224078 +of:0.3622377543382407 in:0.12494073277386555 and:0.11536866285703828 to:0.1095571405665934 :0.287895709464262 +pay:0.2462930219388047 exceed:0.13426290871205304 secure:0.12289490867936388 produce:0.07306112346324582 :0.4234880372065324 +.:0.500011385437729 that:0.06166643297618903 and:0.028288314733959045 which:0.02805131070698202 :0.38198255614514076 +and:0.06971348365918573 was:0.016566071432886253 that:0.01558886839377236 is:0.010933119833141346 :0.8871984566810143 +very:0.45761601251539485 of:0.16429841286308167 as:0.12142976265308235 so:0.12049813634612622 :0.1361576756223149 +prove:0.09041104904717602 test:0.03547279145840447 find:0.027682875050979452 say,:0.024828437598872915 :0.8216048468445672 +a:0.9909866718003818 the:0.006199259218866052 his:0.002693348761113606 their:5.299780088046637e-05 :6.772241875804361e-05 +duty:0.3547330913337746 murder:0.23518988321035916 crime:0.05339979788694805 cost:0.032746378948453926 :0.3239308486204642 +of:0.6964604710514416 it:0.05694868036309996 in:0.053148579330841175 over:0.027615283135945648 :0.16582698611867158 +treaty:0.12230192185558134 tions:0.09198737879442714 good:0.0642502953890826 which:0.044277777955812135 :0.6771826260050966 +material:0.05031640661206214 interest:0.029412403086415576 Christ:0.020968397111581664 time,:0.017462780032712167 :0.8818400131572284 +not:0.557206986789101 as:0.39481968096347503 never:0.02424114031572836 ever:0.007855015755321403 :0.015877176176374276 +office:0.04534444568974668 hands:0.03474500527563862 history:0.030673759518792382 middle:0.020630912809456937 :0.8686058767063655 +two:0.5562026083394499 eight:0.3289325767796069 four:0.05799851412265949 a:0.04313071990584235 :0.013735580852441373 +the:0.4783290727813695 a:0.13882043448295975 this:0.03515460074632548 ii:0.021817905955546387 :0.32587798603379875 +church:0.511671855677848 other:0.06492406261898519 club:0.01816166724563381 people,:0.015314666428635998 :0.3899277480288968 +you:0.29407626525979425 they:0.23643599158085501 he:0.23361332492246548 it:0.048558602904468375 :0.18731581533241695 +report:0.05962824074821125 are:0.03380824912354347 not:0.029086351105823118 return:0.005069867743317989 :0.872407291279104 +do:0.0669729863382667 make:0.060227907270336514 render:0.04973561354348537 have:0.04118971038619994 :0.7818737824617112 +largest:0.04390923867306587 greatest:0.02950174480869958 world,:0.021919209121603854 sale,:0.019002728085951152 :0.8856670793106797 +of:0.9917562407986326 for:0.0014465451124611214 and:0.001136869548948076 between:0.0010621435158836142 :0.00459820102407462 +not:0.3097810850377784 it:0.05862793880776206 do:0.04768545379033142 I:0.0462474485560154 :0.5376580738081129 +to:0.8490887311210357 and:0.004022099700735065 In:0.002865664535980502 very:0.0024118484754408974 :0.14161165616680796 +not:0.997759509263228 never:0.0015008786788779861 1:0.00023385904306740842 always:0.00022533176121994756 :0.00028042125360649327 +It:0.27124867682855325 it:0.1605255829470478 and:0.07803878928717342 which:0.06416727406900338 :0.42601967686822234 +home.:0.9999793168706498 day.:1.3848286853883056e-06 at:2.5067162422475275e-07 time.:2.0373095759146568e-07 :1.8843898083053216e-05 +Mexican:0.023566086915974605 age:0.011868835932677626 station:0.009523625410741315 eastern:0.006758390495783143 :0.9482830612448235 +come:0.011030774903103164 ought:0.00732593480608006 seem:0.0061400944454894 began:0.0031923920413562904 :0.9723108038039711 +we:0.38149274489007606 I:0.2516205334038315 he:0.09760911591903879 that:0.08905815934243187 :0.18021944644462187 +t:0.4519815805471291 a:0.29695144877104446 and:0.02711057182818144 Congress:0.023233756472425707 :0.2007226423812192 +that:0.6042505536335324 what:0.21728195246863485 whether:0.13410527057034247 when:0.027461640970749667 :0.016900582356740707 +other:0.4865071566269744 all:0.11511232270121025 most:0.04218014195257621 50:0.026444609714909348 :0.32975576900432974 +sometimes:0.23565926620022573 are:0.13666434464730692 were:0.10851023892473738 have:0.07026239445055418 :0.44890375577717573 +1:0.8272943396527528 day.:0.001577153830893525 time.:0.0014287825800765007 to:0.001239693027017867 :0.1684600309092593 +in:0.3107568469423586 to:0.2107795693846216 of:0.20026856953274783 on:0.07323970093595404 :0.20495531320431787 +act:0.584706097351265 order:0.24144397643273088 amendment:0.0064618487687803615 Act:0.0014271781737450532 :0.16596089927347854 +the:0.9702104816070729 a:0.024309084321759152 on:0.0023313370038465747 this:0.0015374941295458523 :0.0016116029377755425 +in:0.24317057905896267 was:0.22887201134431173 of:0.19506800168079558 What:0.10273380114391173 :0.23015560677201838 +regard:0.9534186393327728 use:0.021274997861841262 used:0.01793564792708654 fed:0.002268909407997729 :0.005101805470301842 +present,:0.0790136887401613 cut:0.03448746175654402 that:0.019189905845289682 out:0.018262927543910044 :0.8490460161140949 +said:0.03837323864550024 L.:0.02446441359268277 Sheriff:0.011286186786165314 on:0.006689104206336329 :0.9191870567693153 +woman:0.04272743637406192 one:0.042412618804889314 run:0.0330131054632053 and:0.02721948108106947 :0.8546273582767743 +here:0.0871139934930266 his:0.061122323180336904 hat:0.04866495006936485 therefore:0.03251694565916068 :0.7705817875981109 +the:0.5619184100461931 his:0.0527559500012884 those:0.04944666528150933 said:0.03376496325581435 :0.30211401141519484 +all:0.9998122044965636 the:4.72710276639067e-05 of:1.06981223852652e-05 to:5.621287653634656e-06 :0.0001242050657336402 +the:0.8275343876633963 a:0.12588829969564636 their:0.006659730272861299 our:0.0024824350355260355 :0.03743514733257005 +the:0.9682954983073743 tbe:0.012143972623777765 tho:0.010481461016262747 he:0.00356901406177747 :0.005510053990807753 +and:0.1722386287413851 of:0.07612814277558864 so:0.07317247850042627 the:0.07292297372880258 :0.6055377762537975 +chance:0.27702677868284714 not:0.22423643957787953 begin:0.21395631249580185 be:0.1697569086373186 :0.11502356060615294 +the:0.9960726992492903 in:0.0012088305881163208 tho:0.0007349388823286682 myself:0.0006004838780216991 :0.0013830474022430326 +the:0.6719240839254211 In:0.06708853550600709 to:0.0379123847920539 again:0.024857049487476374 :0.19821794628904152 +opportunity:0.14497041052951137 seemed:0.04722548094015222 seek:0.043952597218693074 opposition:0.03852866025511142 :0.7253228510565318 +Minnesota,:0.599249353284166 Virginia,:0.007748561578021531 Ohio,:0.0027835506116971422 Washington,:0.0003860298404851682 :0.38983250468563035 +and:0.1673996994343316 the:0.13644384892257883 of:0.07744239672689594 to:0.05245916875873253 :0.566254886157461 +course,:0.3217625125751553 which:0.14908938342769562 course:0.1246402062894983 of:0.07381088570523064 :0.3306970120024199 +E:0.7636614906381199 J:0.0637853098017554 .:0.04070438702017008 D:0.005803432800356731 :0.12604537973959784 +then:0.38083945169825517 therefore:0.2256419929493461 soon:0.04856949383997119 had:0.044301400377890834 :0.3006476611345367 +the:0.5534638304301441 a:0.10641314814602959 said:0.04473486909254349 certain:0.04139945895098014 :0.2539886933803028 +discharge:0.1694687856233102 little:0.029530345685382105 and:0.016800365441834685 execution:0.016554866155649127 :0.7676456370938237 +It:0.24995677675775793 and:0.1819964607415109 He:0.14516200611293892 it:0.14285808283259052 :0.28002667355520167 +the:0.6306545551254051 their:0.08176664482433368 a:0.06284365871966438 this:0.03930754535801159 :0.185427595972585 +have:0.35711350167078787 will:0.1954062266082734 are:0.07312724653468915 must:0.029755703220860737 :0.3445973219653889 +Mrs.:0.1258831379814905 and:0.055681502431016563 of:0.04573841797238539 J.:0.04075381182714712 :0.7319431297879603 +est:0.17658721629606894 highest:0.12738013140593116 largest:0.006564121061770484 the:0.00617815709708189 :0.6832903741391475 +church:0.0823914855527637 health:0.020539765374834994 body:0.011633670251160425 party:0.009104450502184116 :0.8763306283190567 +to:0.14204632433042072 by:0.11534515585140641 and:0.09941715722391871 the:0.073804824614884 :0.5693865379793702 +fact,:0.18358264368508248 reading:0.09453610857147209 evidence:0.028129788456716067 which:0.01986188808348157 :0.6738895712032477 +will:0.16889932873139615 had:0.037023184475920005 were:0.03614876669922483 haa:0.034533421313203985 :0.723395298780255 +to:0.9360828268495127 and:0.05424987515990348 will:0.004824071504991334 may:0.0020937409222569485 :0.0027494855633355413 +the:0.9876861319737985 .:0.005219079447252551 tho:0.002129393743298219 said:0.0005441131810910223 :0.004421281654559673 +who:0.017278845596606127 she:0.007568385747257812 of:0.0053134438742927104 I:0.004507425463387505 :0.9653318993184558 +hold:0.15185691117773562 of:0.1102612166182301 in:0.08430925720829517 that:0.07420601485034994 :0.5793666001453893 +of:0.806495197392943 to:0.08644476580303148 and:0.029211988335301347 at:0.0043343124771182805 :0.07351373599160597 +he:0.30795733200634823 He:0.22296444288582953 who:0.18005839963838016 and:0.13975714689538485 :0.14926267857405723 +such:0.11455384206840274 and:0.08419605383949112 just:0.08194428826927319 tion:0.034803585161306445 :0.6845022306615264 +the:0.0926195350870233 legislation:0.01933665766163676 of:0.010188207575485119 way:0.0036225979671532064 :0.8742330017087017 +Co.:0.3279514252804949 the:0.019576093751695427 Co.,:0.00605378841189996 Ohio:0.004112206633555281 :0.6423064859223545 +Will:0.10904985259359644 King:0.003815405655037031 Davis:0.003760139392762424 Jones:0.0019001271456834954 :0.8814744752129204 +been:0.5068501462567576 become:0.17217133174687146 proved:0.1276467615865295 not:0.026728251676488624 :0.1666035087333529 +with:0.37862027767389883 to:0.32409762607368137 of:0.25630272997310827 in:0.013344803065667517 :0.02763456321364397 +the:0.259027593920379 so:0.18953625142620467 his:0.08046785277988594 or:0.06941031362398754 :0.4015579882495429 +and:0.023561052631675728 so:0.01711269554444917 you:0.011115405591573289 .:0.009086388545003866 :0.9391244576872979 +of:0.6245053488497463 in:0.05850369211256151 and:0.056687948405504104 to:0.03320802596819011 :0.22709498466399802 +of:0.36237038279528333 when:0.1535351823573999 since:0.12576124552636522 If:0.11690593046503019 :0.2414272588559213 +war:0.007380571690413408 that:0.007037561864655104 him:0.006420048150207074 it:0.006374221948643586 :0.972787596346081 +the:0.992153226983303 his:0.0028781500759155498 tho:0.0018331359077254502 its:0.0007930475238756122 :0.002342439509180564 +a:0.20407452038647295 the:0.17885287791131257 from:0.12515556001692724 through:0.10759054606335691 :0.3843264956219304 +it:0.31650888682100276 he:0.16299995244328375 peace:0.11038813165764483 return:0.04232022156919887 :0.3677828075088698 +office,:0.023160242908070842 and:0.02196812264791744 side:0.01329416540024961 ing,:0.011284911698372558 :0.9302925573453894 +and:0.3515927713029962 enough:0.01902916306862958 nd:0.017008580125343172 in:0.01075751701747626 :0.6016119684855549 +of:0.27726655316425924 ;:0.14617589102320372 York,:0.05968949210397966 o:0.043010867255234404 :0.47385719645332297 +work,:0.09169906275928348 himself,:0.04614681344481681 own:0.006943134416685682 him,:0.005988731615610539 :0.8492222577636036 +Smith:0.0010589524264695632 to:0.00047277663578883293 and:0.0002343939263223278 .:0.00011120153074956585 :0.9981226754806698 +tion:0.05037400099143476 power:0.0344518173454387 men:0.030881563372669434 life:0.029683894911179395 :0.8546087233792776 +afford:0.37335817083535894 fail:0.17078026081993247 hope:0.09507446944378889 refuse:0.04978297204304631 :0.3110041268578735 +famous:0.29768646755160166 to:0.1456591705042571 the:0.020085669372161222 that:0.0157533003679069 :0.5208153922040729 +the:0.29044651549065864 a:0.2060025410552963 been:0.18995678438504707 no:0.041377259230849416 :0.2722168998381485 +tion,:0.04424281647869491 ,:0.018288659142563612 yet:0.017732363480621856 ;:0.016965230178766336 :0.9027709307193534 +had:0.9889880496597903 has:0.004814735158295166 bad:0.002155755922459299 was:0.0009919593313215598 :0.0030494999281337103 +cent:0.7781929118789702 cent,:0.1464843050340741 cent.:0.003984552785278821 ton:0.00011241510879697519 :0.07122581519287989 +be:0.18371698124091954 reach:0.05706731042808595 escape:0.054352520628902695 stand:0.036232417523041134 :0.6686307701790507 +your:0.45927831382711776 But:0.054248848962688286 a:0.04031644400233423 then:0.03740040827627352 :0.4087559849315862 +note:0.33918473432871443 matter:0.2886789392556184 subject:0.15683557388541872 action:0.07375368136180481 :0.1415470711684436 +carried:0.26260341555034644 merely:0.10027132422908916 just:0.0871338684313385 built:0.07016879815562668 :0.4798225936335992 +me:0.3835958343720551 him:0.26604637767096717 her:0.156845600123636 us:0.03255155524173855 :0.16096063259160318 +hearts:0.8078949531775407 eyes:0.15634279171970156 county,:0.0035018378240232006 spring:0.0011282271843178976 :0.031132190094416624 +that:0.7734082903455194 Saturday:0.13129284269460814 the:0.054470988548383274 last:0.0280951883231659 :0.012732690088323324 +was:0.3800270607859872 in:0.2983282721837825 is:0.19287920621772497 being:0.10281885444378087 :0.025946606368724413 +i:0.0857336783615557 per:0.02613751570366122 p:0.016258366356427943 dent:0.013635188319444951 :0.8582352512589101 +ever:0.1868227947867042 done:0.031741193378411615 not:0.030954230549723648 long:0.02323153721216736 :0.7272502440729931 +a:0.39358244316287455 the:0.28837768867257774 by:0.046259653659024555 his:0.03087575636813384 :0.24090445813738934 +It:0.3458850443352762 he:0.11038442624606548 we:0.03301336242495879 it:0.023095001722013897 :0.4876221652716857 +and:0.0899572784908153 be:0.08834022335121862 was:0.06975780968607305 is:0.04781847715335179 :0.7041262113185413 +before:0.30735481698399353 on:0.185051705548968 took:0.13243975583881495 of:0.11637219684264859 :0.258781524785575 +chance:0.1704971693970166 man:0.04807541777092502 right:0.030377933027943785 bill:0.029528745496776452 :0.7215207343073381 +the:0.6512646113402896 tho:0.34518902140440727 great:0.001881492817377869 tbe:0.0010529922226628352 :0.0006118822152624351 +black:0.7771585058530804 sharp:0.07633042959568874 choice:0.03622162356654037 the:0.03520828621549592 :0.07508115476919439 +get:0.1976442964998247 the:0.14741401033799947 our:0.04230775349683778 every:0.04143437294977985 :0.5711995667155582 +who:0.6319489907852814 things:0.04714932985704907 not:0.0334117226242381 per-:0.011371941180263185 :0.27611801555316823 +the:0.3273042362268428 he:0.28416563061383193 pro-:0.05359982250914828 she:0.045186824074119704 :0.28974348657605714 +and:0.23301912680306608 of:0.1800372879282414 in:0.15577896048443696 at:0.07179976540649435 :0.35936485937776114 +color:0.07272164474483483 energy:0.04988274074860796 return:0.046277993037078836 protection:0.04585388783286941 :0.7852637336366088 +a:0.9822162613228701 some:0.012573205482359122 the:0.001930381825654685 n:0.0017965051984500525 :0.00148364617066601 +be:0.700695820087139 bo:0.04352280667185612 the:0.035392322049989024 V:0.029359769678271315 :0.19102928151274462 +on:0.3923502550911866 in:0.3513090907326919 under:0.09777530991214653 of:0.08500607622792934 :0.07355926803604575 +other:0.06205736359666233 the:0.02565952555041303 great:0.02095966532930996 real:0.020279125457511073 :0.8710443200661036 +on:0.701116149478053 within:0.1295945627829278 at:0.10472363837273345 in:0.022898049151889685 :0.04166760021439603 +plant:0.024925126844024748 feel:0.01061319017471424 turn:0.009293505779041622 a:0.009068143062023382 :0.946100034140196 +it:0.04230163140243087 also:0.016626104350396808 approved:0.014985454355107208 action:0.014662515487419245 :0.9114242944046458 +them:0.6197538569831816 him:0.07502909714676259 be:0.04660207430244189 me:0.02091604188745501 :0.2376989296801588 +He:0.3465242494441687 and:0.26358527139596855 he:0.10447271367619168 had:0.006704553740383206 :0.27871321174328795 +wounded:0.3118751814148628 poor:0.024155051787578364 the:0.02138453065484347 wild:0.010173534276765225 :0.6324117018659503 +but:0.4903135955324574 and:0.2068587577922868 on:0.09144288742155149 New:0.03467821735520267 :0.17670654189850146 +to:0.17306074911796196 and:0.17165336360948688 the:0.1692047998339425 in:0.13391638438616532 :0.35216470305244346 +rate:0.8893511945373966 growth:0.012270958715878353 advance:0.0014648318453155892 night,:0.0009586092954421383 :0.0959544056059672 +the:0.42860745823887353 a:0.1950622812043432 an:0.061492199692188144 his:0.050348229472099604 :0.2644898313924955 +of:0.5813475693217802 to:0.1316027488944508 he:0.10185604128299026 it:0.057440084840197636 :0.12775355566058103 +and:0.08895049542741452 them:0.023334578752415916 it:0.020267895469362373 that:0.01981562466094274 :0.8476314056898645 +in:0.7704089611992962 to:0.06495103373871956 with:0.04803057411016292 to.:0.03765768275145005 :0.07895174820037125 +difficult:0.24935271614042234 liable:0.11438391033161938 voting:0.08665575940326146 matter:0.08310884529155577 :0.4664987688331412 +and:0.22435178224751884 of:0.1427033308161182 the:0.0721594450294005 The:0.06476700318156772 :0.49601843872539486 +the:0.6350996451481058 a:0.09485690936407319 his:0.07208990139392195 their:0.03889460362984422 :0.15905894046405478 +and:0.19861984430258758 man:0.17020905877678968 her:0.1240520710262544 He:0.12196695933706192 :0.3851520665573064 +four:0.3960506697056933 the:0.29693687199036567 their:0.06588466163782894 both:0.030261946644621555 :0.21086585002149047 +have:0.22277937328276953 are:0.18308175730585804 the:0.07896510960050307 were:0.06488631698918383 :0.45028744282168554 +at:0.37687665706095747 in:0.3276446653929016 to:0.13945165583556954 with:0.03644686093354983 :0.11958016077702137 +own:0.15288497592221748 national:0.04741876309757813 hearts:0.02805095166382686 great:0.020941251005392035 :0.7507040583109856 +air:0.14684208846782043 It:0.1002758795250391 which:0.09575172152241923 it:0.0948509812096645 :0.5622793292750567 +boat:0.19968176388491596 than:0.07191254878652009 if:0.057507922251562774 where:0.0566827743547927 :0.6142149907222084 +out:0.49269743131433136 it:0.010841811950595285 It:0.006745492720787301 up:0.006612705182703514 :0.48310255883158276 +with:0.03228095338224458 of:0.0300187068867658 that:0.022836427471503943 and:0.015843636950603986 :0.8990202753088817 +they:0.12950400429565792 work:0.08120345447764225 county:0.07931560324203703 that:0.07077997001274218 :0.6391969679719206 +make:0.6897445663891781 find:0.12543347615669137 think:0.05712562312109943 road:0.037330335777291904 :0.09036599855573908 +the:0.3674921387430835 be:0.08769327635840897 pay:0.042405187675401884 take:0.022667416512904697 :0.4797419807102009 +a:0.2636704525140214 doing:0.2605429907694857 got:0.04435711110254813 as:0.017881269663510214 :0.41354817595043464 +good:0.44129836738486267 the:0.28737356560442484 he:0.029643956076251917 united:0.01889569142045342 :0.22278841951400702 +in:0.2961526459766111 of:0.15693778225122693 before:0.12042160164889264 to:0.1123894002973394 :0.3140985698259298 +of:0.13481748653618747 and:0.13195337472483676 to:0.10635014139201766 or:0.031541621520862456 :0.5953373758260956 +the:0.030860807487997157 against:0.009592652178021636 when:0.0088430347196822 so:0.007637415131577713 :0.9430660904827214 +in:0.025097740096222128 and:0.022318871218844672 the:0.007157840369603821 to:0.007058755254650556 :0.9383667930606788 +have:0.6913831949735187 de-:0.11184437499407643 will:0.03731896729450226 hereby:0.027812937796692458 :0.13164052494121004 +was:0.8959675765795307 had:0.029894686372519373 should:0.026865097773965018 being:0.02635474880619388 :0.020917890467790905 +of:0.18205785678866215 Washington:0.011047083609526094 the:0.010686644859880223 here:0.009423684520113013 :0.7867847302218184 +a:0.42745398836708676 A:0.13780378123079068 with:0.09706068942743054 the:0.06874156147139943 :0.2689399795032926 +no:0.3463258985465255 to:0.047670285518477164 the:0.021356040355918544 In:0.01591097318841499 :0.5687368023906637 +and:0.38392962345719805 which:0.28753329535519717 ho:0.13320171407950826 |:0.08425882267524547 :0.11107654443285116 +the:0.5539155317111074 tho:0.3695561794491047 a:0.023115610794822064 tbe:0.007417147558813802 :0.04599553048615197 +see:0.7427129075009701 have:0.11931736173659438 are:0.02309526411494942 saw:0.008004085780731487 :0.10687038086675485 +the:0.9264002513083754 tho:0.02169993030618918 tha:0.019423571369025894 a:0.019115322549740823 :0.01336092446666863 +the:0.8129117047030842 no:0.06041625121757431 an-:0.0450000753785972 any:0.04204979779756651 :0.03962217090317786 +j:0.25113033837440896 in:0.1109330140411855 he:0.10628599647310626 though:0.10375556508693015 :0.4278950860243692 +as:0.9690178977368683 and:0.00556299409278212 at:0.0045704316531692745 us:0.0035160276317336356 :0.01733264888544683 +next:0.17027761647888257 has:0.1448966235652746 would:0.11705303718041259 shall:0.09253566617211907 :0.4752370566033113 +per:0.6659791665765535 ad:0.11243856562078618 of:0.06129752991510933 and:0.05011629767378036 :0.11016844021377081 +a:0.3814390427052519 building:0.09322518428344785 plant:0.03315263233018703 contained:0.02773754027331719 :0.46444560040779587 +the:0.34142490479654425 a:0.08754096270427761 Mr.:0.03755676267299019 his:0.03365588809277487 :0.4998214817334129 +been:0.12022355814236585 failed:0.10145611960540239 come:0.09047894737657713 gone:0.07375568100557615 :0.6140856938700784 +and:0.01430852630927184 of:0.013553072278477307 way.:0.010127930786038354 .:0.00517252115880282 :0.9568379494674097 +The:0.7661938023007006 bis:0.17965102367636268 the:0.022276630525848568 then:0.009007129756873516 :0.02287141374021468 +The:0.9185504819357898 as:0.024273028040625328 the:0.01125442514226092 whose:0.0035307586605680444 :0.04239130622075587 +east:0.6346219858544457 below:0.0837695156675874 18:0.04439757834002816 of:0.02579044261353579 :0.21142047752440288 +of:0.4398679837092445 and:0.13415619254238667 with:0.09276873971892217 that:0.09129841955600963 :0.24190866447343706 +the:0.9113545232148152 tbe:0.031654907761516186 tho:0.02225463498648141 tlie:0.02137679222161841 :0.013359141815568696 +for:0.553073155660991 of:0.13409689657557103 a:0.11814385056133528 all:0.1111974557087151 :0.08348864149338767 +in:0.9507136984630072 In:0.023282397300933122 iu:0.013269450813639469 and:0.002945529539051184 :0.009788923883368975 +in:0.2839505366324945 to:0.13334962626919314 the:0.09864398400964326 of:0.0833562257001205 :0.40069962738854886 +the:0.20292117833234513 a:0.098334827540272 .:0.05147165805543371 j:0.029393527512419564 :0.6178788085595295 +simply:0.21846396183947045 so:0.09646925926615484 his:0.09131411292693446 the:0.08431443432934758 :0.5094382316380928 +out:0.1627627606349657 it:0.11550064730755381 up:0.10216707736240499 low:0.07773721218213579 :0.5418323025129398 +con:0.16709569542361083 only:0.13721464378939977 republican:0.04556147780571287 fact:0.03648049430074053 :0.613647688680536 +and:0.10364376745874603 engaged:0.030769517239078073 ed:0.02698269653712267 up:0.026138983988428333 :0.8124650347766249 +a:0.4511722608194945 that:0.1874634097155588 any:0.12942217712491552 this:0.09793218048405941 :0.1340099718559718 +I:0.4361913018994436 and:0.20854136322289446 we:0.10858398784134358 They:0.03224829553571758 :0.2144350515006008 +of:0.11424378159597416 and:0.06698876944718628 New:0.05595732916204955 M:0.03928626225051376 :0.7235238575442763 +all:0.23372597161720748 certain:0.13271760863246346 street:0.12255310807511854 the:0.10228499237095671 :0.40871831930425373 +loss:0.1004316298316626 quality:0.06865731921666364 especially:0.03216550713462552 those:0.01988313852765257 :0.7788624052893959 +next:0.10016657634584117 week:0.04773017283984977 first:0.04731367010906717 year:0.04393555471913257 :0.7608540259861093 +to:0.9678412137904877 lu:0.0008134891479010339 will:0.00031847742798519753 not:0.0002471558532287292 :0.03077966378039732 +Grant:0.0004479208741159415 Washington:0.00010326750593847646 and:9.599448600108e-05 Washington,:7.577822786591759e-05 :0.9992770389060786 +the:0.33231494193260525 a:0.18544187706357276 and:0.04591099726247694 Capt.:0.03182526341968906 :0.4045069203216559 +ai:0.05100456460332999 should:0.03598101122990331 i:0.028792504869453887 to:0.02407025834608784 :0.860151660951225 +by:0.6703321878786564 as:0.2538322784165672 in:0.023124732470937732 that:0.01755268432590538 :0.03515811690793332 +running:0.9353085819156554 entered:0.006285338300801298 being:0.0055593948502789215 kept:0.004479817647840134 :0.048366867285424345 +the:0.7415758549000491 a:0.10707072028531128 his:0.054100855163087075 that:0.03916093338904021 :0.058091636262512326 +acting:0.038051359188497585 and:0.034150676980247534 dollars:0.012562918852945606 the:0.011619709495242127 :0.9036153354830672 +about:0.23322100009516047 willing:0.14057800795724568 obliged:0.12069865767497387 ready:0.08796764814871713 :0.41753468612390293 +the:0.24454843800572718 to:0.1548290150732242 from:0.0880653178069966 and:0.07988195523746427 :0.4326752738765876 +and:0.27369454100832846 was:0.2002361974984876 of:0.19992906141676206 after:0.14740175412227136 :0.17873844595415045 +broke:0.5029872930546411 the:0.1549028215247948 any:0.013485588957824583 no:0.011976119967541722 :0.3166481764951979 +and:0.26545276452137284 that:0.12052447325760904 but:0.0798477993749808 as:0.0384865402145289 :0.49568842263150836 +in:0.7890120243736701 In:0.13723247351010187 of:0.03702634837996947 is:0.01961060701613388 :0.01711854672012473 +A:0.2164678316514529 and:0.14102876542406242 a:0.12422884755548073 the:0.12311733414965592 :0.3951572212193481 +OF:0.07416444166594466 and:0.05254631215391768 of:0.047531950295097575 the:0.04579540402257583 :0.7799618918624643 +the:0.6107144375936036 a:0.059150968378456945 no:0.058984333764320385 his:0.048366948909524934 :0.22278331135409424 +at:0.24174554967212378 the:0.1252663573782946 to:0.10687957664616814 from:0.06733177789426945 :0.45877673840914407 +which:0.30539197199034296 the:0.06518093811390638 making:0.05284789308158196 one:0.02616322882657589 :0.550415967987593 +was:0.5835445337117753 had:0.25040724637779843 has:0.10597621389006805 have:0.01356428948850589 :0.04650771653185253 +of:0.012829949495135749 and:0.008301565661206193 in:0.004432849756293478 quiet:0.004419526768498822 :0.9700161083188659 +a:0.3547982616524418 the:0.31311219579668664 some:0.17482184614934804 tbe:0.05547590514391008 :0.1017917912576136 +the:0.06085326098176886 The:0.026323646020276276 public:0.020730408573430083 of:0.01846096762009523 :0.8736317168044295 +of:0.30318115639951454 and:0.09593863888152988 to:0.07821046116075497 for:0.06696099853365818 :0.45570874502454245 +At:0.3954194043045517 by:0.3291508255305523 at:0.10598076987117999 aid:0.04714790370179605 :0.12230109659192008 +progress:0.31779963824046864 age:0.1105500424153165 memory:0.09969819385909158 end:0.047755686848266726 :0.4241964386368565 +to:0.9736887947780902 the:0.00452458552782395 nearly:0.0019829568749663313 on:0.001320491602067612 :0.01848317121705193 +promise:0.1220921807119545 ture:0.08740928704123352 ence:0.05880567132434933 because:0.0436811280115103 :0.6880117329109524 +almost:0.7423560284761306 for:0.14224581482994708 yet:0.03992258039745094 who:0.03146794241524371 :0.04400763388122768 +by:0.2983722773021609 and:0.18684290754145277 the:0.05283152629321727 tha:0.0344571885052166 :0.42749610035795244 +the:0.7997197064753067 these:0.03401245089998411 tho:0.03254180898699106 his:0.025976223471238218 :0.1077498101664801 +of:0.5466621508570952 and:0.08821001696709023 in:0.07596179425870482 to:0.061335596130009204 :0.2278304417871002 +dis-:0.35058293279977143 time:0.2635740711891689 distance:0.22260857000317383 time,:0.011811832687970588 :0.15142259331991528 +keep:0.9956166903268528 you,:0.0004863874301191211 give:0.00030199864542699575 this:0.0002738452480114891 :0.003321078349589582 +more:0.025079138670572793 other,:0.01574149374852244 two:0.015249393514372432 the:0.013256957627239416 :0.9306730164392929 +of:0.20200407644138033 and:0.1761826156973463 will:0.15850054398593524 by:0.1182816137669015 :0.34503115010843644 +father:0.08133841959064814 danger:0.05223747435346455 duties:0.018797013905730423 If:0.018493414707608794 :0.8291336774425481 +City,:0.3365597067674327 District:0.07169006706115079 town:0.034587961722159284 corporation:0.033825683518494166 :0.523336580930763 +money.:0.02750407857624826 made.:0.0005921665052112986 and:0.0002615634400867517 in:0.00023788945530848354 :0.9714043020231452 +the:0.4431980337307312 about:0.09549881441178479 a:0.07107047024862496 to:0.06754489930240232 :0.3226877823064568 +no:0.6577832912475725 a:0.2014396485903253 the:0.10684908975722676 not:0.02597957268973765 :0.007948397715137763 +I:0.3125507677405761 and:0.0658205398704191 In-:0.04383318282195996 ad-:0.012906091930909051 :0.5648894176361359 +the:0.4470542176243454 their:0.22860413864317883 our:0.14832003503654084 his:0.07364801346784512 :0.10237359522808967 +is:0.5878318249808371 are:0.17167913509689792 was:0.11322353602848169 Is:0.08546860831107223 :0.041796895582711005 +but:0.13333537148929192 h:0.11632208951235799 of:0.08428656758620366 w:0.06962267686848718 :0.5964332945436591 +small:0.15400689825908706 sudden:0.1456758090242652 t:0.09226290868130617 new:0.04300348615192294 :0.5650508978834187 +I:0.20414012843889423 not:0.14909727601535064 the:0.09478919147359771 to:0.06177184909756865 :0.4902015549745888 +the:0.46831305777576493 a:0.047396815463547556 his:0.02319414920987697 said:0.021454334625216002 :0.4396416429255945 +and:0.29482754854606125 that:0.2005124830664017 but:0.10653488359782816 as:0.10462349509334025 :0.2935015896963689 +school:0.12776340855031695 public:0.057333936906336314 of:0.04492589807132064 individual:0.044904312421434195 :0.725072444050592 +and:0.22365569229078996 the:0.0579903702736101 of:0.05265816499075627 to:0.0497816195217808 :0.6159141529230627 +to:0.132100934327919 and:0.09976202740763299 of:0.060377860057988134 the:0.05155925318936575 :0.6561999250170941 +is:0.7267366344227592 of:0.1796347706279169 and:0.04979567389454954 seems:0.010809954737456986 :0.03302296631731749 +six:0.452524199178187 7:0.19863436204727822 ten:0.15726868617165615 eight:0.1066525705643194 :0.0849201820385593 +to:0.2317910648401389 with:0.22659352532353427 and:0.1434168765754042 in:0.11355026670687063 :0.28464826655405195 +part:0.07441569167979095 faith:0.061498786292042355 for:0.04701009370826116 up:0.036478402569328536 :0.7805970257505771 +are:0.6360173436768558 were:0.13787744357609213 seem:0.1296332500727898 reason:0.05054352197734545 :0.045928440696916754 +and:0.1630520275370737 to:0.15313435496052386 of:0.15301999982323736 the:0.10512994639620939 :0.4256636712829558 +old:0.06824887293130256 ordinary:0.04259582709590898 American:0.016985735062915612 inch:0.016795212143787455 :0.8553743527660854 +whose:0.7105720954824408 his:0.2711103913714039 of:0.00692791370156113 or:0.0052279973345639415 :0.006161602110030157 +a:0.6970206658438927 fifty:0.06928066920747224 one:0.025612306501193574 forty:0.010607177212249361 :0.19747918123519217 +found:0.09561003249631474 opened:0.04795464974811737 a:0.03588139219209004 le:0.03428512124693587 :0.7862688043165419 +I:0.1381068589907811 to:0.10958086806132492 who:0.09190661073912587 would:0.07309281874687001 :0.5873128434618982 +and:0.7659999621171308 but:0.050314863599689716 In:0.027088138109250464 is:0.02687936624438704 :0.1297176699295419 +of:0.24440439274305625 the:0.15116480697827075 to:0.10751845579726431 us:0.07610541453208693 :0.42080692994932184 +of:0.3426847823125457 or:0.09734293505531573 and:0.08492098618303313 in:0.04102396233091913 :0.43402733411818634 +last:0.03428279733037548 took:0.0194238520648308 first:0.011256763162557781 the:0.004851237866616359 :0.9301853495756195 +of:0.36450256359697725 to:0.08578768558083227 in:0.08505092015760322 and:0.06444759082814525 :0.40021123983644197 +of:0.1544708357577266 and:0.12836849049184182 The:0.10181525515357621 the:0.07058098311391502 :0.5447644354829403 +12:0.9022298753552072 20:0.0003542088390923825 one:0.0003182145027323984 10:0.00027896891685112225 :0.09681873238611698 +have:0.7257965879864909 had:0.1053969200744065 are:0.06919490496416154 were:0.05922270319413346 :0.040388883780807586 +the:0.010630457753764935 Congress:0.007032133742188674 Congress,:0.00530361985360203 said:0.004924328918817106 :0.9721094597316273 +and:0.17582484967687964 He:0.16724690066373876 he:0.10325810120409414 who:0.08241092113807168 :0.47125922731721576 +principle:0.11267632778867256 power,:0.018832021945661602 is:0.0069955619172019905 fact:0.005066923770700702 :0.8564291645777632 +a:0.18040568160056114 the:0.1556349981255328 not:0.061069868245697524 in:0.041023200817083584 :0.561866251211125 +and:0.42634024350095195 I:0.0919781616389733 and,:0.03457161054695861 but:0.032611376454667454 :0.4144986078584487 +very:0.9437094208523882 so:0.005374436540669065 as:0.004511982051302589 bo:0.0009745730647777246 :0.045429587490862365 +a:0.9192210970306706 n:0.0731719454451102 getting:0.004219124311847204 some:0.0007988869317489878 :0.0025889462806231727 +of:0.4194244099597757 in:0.16022673926243303 and:0.09358876449421435 by:0.0600156357450677 :0.26674445053850915 +anything:0.33473206986318543 the:0.28766479317203253 a:0.04475544415275537 not:0.042238364363941364 :0.29060932844808524 +go:0.16595659306907876 on:0.12519506373135356 In:0.12326816007087896 him:0.06438148147169388 :0.521198701656995 +the:0.8614354576061637 tho:0.03464095802473251 his:0.017687433477457316 these:0.016885290671521568 :0.06935086022012502 +facts:0.07609772827528194 act:0.07195911855144609 same:0.07151459344066906 fact,:0.029276262335290133 :0.7511522973973127 +has:0.25862372597454136 had:0.23711837722036025 a:0.11410690580384947 said:0.08575939117920227 :0.30439159982204667 +being:0.3991657603818185 not:0.3830575613756461 now:0.020387633038410253 all:0.00932108902391593 :0.18806795618020936 +in:0.17083325293488222 as:0.1394935152165756 to:0.13897939692365355 of:0.1271632742201669 :0.42353056070472167 +cost:0.5619362077573702 price:0.09412668965609641 court:0.04608333243738513 rate:0.03656973446818035 :0.2612840356809678 +to:0.3504739186600539 charge:0.14859019394327366 of:0.042777942448954207 even:0.023949868006170827 :0.4342080769415474 +knows:0.17151520194135267 boy:0.08534211399196574 it:0.07722840283594495 he:0.047206445538641624 :0.6187078356920951 +be:0.843811603539367 bo:0.04162233851467059 he:0.022656397633308567 not:0.014765080463460083 :0.07714457984919362 +by:0.3598396046193432 in:0.1850763557926707 to:0.18158289690015605 of:0.10246286887418944 :0.17103827381364045 +most:0.11214425345200259 following:0.03074065629257724 recent:0.011048392166102174 ad-:0.011021131204201456 :0.8350455668851164 +state:0.0007280157430652508 law.:0.0004408697711918911 act:0.00019961210054314615 State.:0.00015194016145470197 :0.998479562223745 +of:0.746132484458018 about:0.11790348465488527 on:0.05446339533261318 in:0.030803980999154688 :0.05069665455532872 +move:0.17695924548763792 come:0.1581609183092885 run:0.1001787789206023 have:0.07579315141930375 :0.48890790586316746 +but:0.3006427427808928 that:0.16352090637021388 and:0.14840612148921498 as:0.12227445566650105 :0.26515577369317733 +most:0.01948049490339575 other:0.018786221704629395 the:0.017418955964516997 and:0.017104674642209293 :0.9272096527852485 +if:0.1943081540806416 for:0.15830916250548938 I:0.14370474762448018 that:0.1429891527649354 :0.36068878302445356 +of:0.08961091512313323 and:0.08090052353684546 the:0.07791105109793199 to:0.03931323792381887 :0.7122642723182705 +the:0.06378126731571314 of.:0.05891862129869781 this:0.01378792155394183 tne:0.00829187193042789 :0.8552203179012193 +of:0.5008666816688431 with:0.1774195161513578 in:0.09984468028472679 on:0.09683418502105642 :0.12503493687401604 +act:0.4911912391330027 decree:0.1756396658556042 amendment:0.09779842523357231 section:0.08145175753579958 :0.1539189122420211 +On:0.2421295187467044 If:0.22430324484552885 Pennsylvania:0.02288937239976949 But:0.0198964150545852 :0.4907814489534121 +gone:0.31172605953232435 entered:0.17687654977088196 fallen:0.10496724122507484 got:0.09656876088057108 :0.30986138859114765 +of:0.30115201644525963 in:0.15430421663427768 to:0.1425173246349051 and:0.10169095516945222 :0.3003354871161053 +.:0.03597604965458488 n:0.011627152890160667 ac-:0.008469074332162548 -:0.007384556018315889 :0.9365431671047759 +of:0.2143647830262123 to:0.12742210114407143 in:0.12718517675146498 and:0.11988887000579905 :0.4111390690724521 +in:0.002712728728295783 and:0.0021118795021173894 to:0.0012582283621880058 at:0.0012299806627362783 :0.9926871827446625 +most:0.17297211325944628 high:0.0312747906783548 bis:0.014717491051048002 average:0.01456118997049244 :0.7664744150406585 +and:0.11334411373765121 double:0.09557991136188906 part:0.05819073694813316 house,:0.042643574184052464 :0.6902416637682741 +and:0.10572424920079196 to:0.08721069518859767 of:0.05585549211745068 the:0.03930092610442897 :0.7119086373887308 +make:0.03950074462668925 take:0.01648081540247715 have:0.014381106297755002 prevent:0.01292725197084375 :0.916710081702235 +the:0.5253865203734694 The:0.28474247334610897 their:0.03144171649731147 a:0.02985288979950447 :0.1285763999836057 +of:0.5593199229048182 and:0.14838064734309708 with:0.09326828886712299 against:0.08383485078163379 :0.11519629010332802 +tell:0.16803671537896805 give:0.1352014552874671 say:0.1269033024110663 how:0.11769997841616286 :0.45215854850633563 +to:0.35496181370307517 that:0.31448538835638157 unless:0.051312694047098595 and:0.04528109749478654 :0.2339590063986581 +that:0.42762502612039965 In:0.20180851043775141 to:0.12864673063354237 thai:0.12282899449227422 :0.11909073831603244 +made:0.09635460539081782 caused:0.05098347270431168 given:0.03233354939040839 followed:0.01978176292653377 :0.8005466095879283 +not:0.8160145490290834 never:0.10179489243213226 as:0.05392512968153823 ever:0.0033707632462542996 :0.02489466561099176 +white:0.2411288472119297 are:0.22819172481007133 miles:0.10599224475418145 thousand:0.045941575264090935 :0.37874560795972667 +the:0.8670825761733985 tho:0.009729829774770094 tbe:0.007411267496438611 New:0.00022871326796963557 :0.11554761328742305 +the:0.4677147611983319 other:0.11683821483702027 all:0.027007081642320612 executive:0.018893557906295603 :0.3695463844160316 +a:0.5349841855991456 the:0.3399139232141475 no:0.06206579331076684 about:0.023174397343086975 :0.039861700532853116 +named:0.544030945595569 in:0.2797563407672309 of:0.041688659084449006 over:0.02739178596167001 :0.1071322685910811 +and:0.15406807663539232 which:0.1213546146783062 It:0.10679763852684815 that:0.06077999322269082 :0.5569996769367627 +and:0.23880532348920533 that:0.22041947085963534 but:0.16170541269970123 for:0.15688599007273654 :0.22218380287872166 +city:0.3249751901119557 cases:0.11370103471110225 four:0.08080622351671798 lady:0.06328862406682843 :0.4172289275933955 +great:0.07644341648557958 long:0.06379026014360867 certain:0.044138437447517116 bill:0.02787447526393623 :0.7877534106593583 +that:0.5816428762147215 which:0.04648059541778628 when:0.04000556876849696 if:0.028638946933715426 :0.3032320126652797 +and:0.08339647531504346 of:0.07174554305147705 the:0.06755007958831111 to:0.029609085861747562 :0.7476988161834208 +the:0.1269205630096726 a:0.03470016401829994 to:0.018131938391446646 other:0.01523519715730531 :0.8050121374232754 +where:0.3028978278188923 and:0.2111104344991838 that:0.17657899105332775 when:0.1189987388446534 :0.19041400778394268 +went:0.19245007641204545 ran:0.15227678450805684 walked:0.07428134465751994 fell:0.02801911599631564 :0.552972678426062 +from:0.36109745555786227 soldiers:0.05574792193727641 water:0.054468160971208934 last:0.0327113158981156 :0.4959751456355367 +therefore,:0.11468080057154695 it:0.09280117301609729 what:0.06273650892121439 as:0.04345384355883722 :0.6863276739323042 +three:0.16731347742038302 to:0.006776390261158882 of:0.005803111285770781 sixteen:0.005668141736744187 :0.8144388792959432 +for:0.8200624970259736 in:0.013286921211468052 to:0.010873734128988448 at:0.010040427587073918 :0.14573642004649592 +and:0.22871675423595755 that:0.07066387521259115 but:0.06441635120563209 But:0.022229431836731456 :0.6139735875090878 +to:0.9974351943558409 a:0.0006998293625646757 in:0.000585695050960386 them:0.0005274146657705936 :0.0007518665648633914 +the:0.37646618045328906 and:0.07914354597353612 a:0.06514609929660078 their:0.04109557187960346 :0.43814860239697057 +the:0.38523799350868737 be:0.18542257840871673 a:0.11639821245182175 require:0.08099626883000736 :0.23194494680076652 +representatives:0.049410940623065974 own:0.02225885385860652 families:0.016866365823408978 counsel:0.013310147972142371 :0.8981536917227763 +a:0.0731041896867905 claims:0.023433697765965242 was:0.021325454448954492 had:0.016688352899002577 :0.8654483051992873 +find:0.7933514667784086 show:0.018029123138113556 state:0.012511094982807534 see:0.011629031768049415 :0.164479283332621 +and:0.09407667851974491 the:0.06501859795056134 of:0.06354474051538347 a:0.04922255621372491 :0.7281374268005854 +the:0.5288040052885199 has:0.13716700321986472 be:0.13481584449318385 they:0.09228924955257595 :0.10692389744585558 +The:0.25994290882624393 the:0.07985187023518181 He:0.05297529126511729 Mr.:0.04436861199363969 :0.5628613176798172 +,:0.10151957207395688 ment.:0.0537518570818059 States.:0.00593838307886473 him.:0.005869586764714958 :0.8329206010006575 +those:0.4910830756809296 five:0.1141535171946428 it:0.0357099804316572 the:0.032656455067123426 :0.3263969716256469 +der:0.0332704514871005 in:0.009687705303910787 of:0.009430062582911349 less:0.009299952817835628 :0.9383118278082416 +of:0.30188945881687923 at:0.22189375659789612 to:0.13937386894453693 and:0.11040728643639142 :0.22643562920429625 +and:0.4781706477512006 was:0.0909406246540731 you:0.0837979913163232 a:0.07736030150624307 :0.26973043477216024 +said:0.16902889970811902 county:0.07040606145002433 district:0.06626356870510618 County:0.052861460987850876 :0.6414400091488996 +covered:0.04508657451082243 filled:0.022878717176211753 parallel:0.01146302670949628 then:0.010765845896489585 :0.9098058357069799 +and:0.26666505987664324 the:0.2289544945364356 but:0.18015491312895954 which:0.12511701876816367 :0.199108513689798 +the:0.33260105003738133 a:0.20321742007096263 any:0.14009536244146273 tho:0.0658389975383176 :0.2582471699118757 +of:0.7831105862173537 by:0.11752894265820533 ot:0.06491762980139663 to:0.018388904880682032 :0.016053936442362304 +and:0.15448016214563284 who:0.13982137640343686 which:0.1354644256822589 There:0.10166481928097622 :0.4685692164876952 +the:0.589622086106397 said:0.3715419478077995 tho:0.012783947380681416 she:0.011348843256158137 :0.014703175448963945 +he:0.19762718101556692 than:0.13578696911635302 it:0.11838185444090335 It:0.09805228586206795 :0.45015170956510875 +plaintiff:0.07104023366568891 sum:0.0376494218373095 road:0.03545274933218549 property:0.025251688434661038 :0.830605906730155 +and:0.2818346004295433 to:0.14293093267852866 I:0.13870771888762354 is:0.11356704584391072 :0.3229597021603937 +for:0.6864669168576575 in:0.09059694921662126 without:0.054075369442038335 In:0.03903069190117149 :0.12983007258251147 +one:0.6001474624309985 person:0.055893337770499756 and:0.004220648242387194 1:0.0005731543910513419 :0.3391653971650631 +good.:0.024978103848883406 to:0.008040363219831089 so.:0.0034768907736930977 death.:0.0030255644095433815 :0.9604790777480491 +not:0.9368015873761405 not.:0.030694396273056167 know,:0.006686071829010553 the:0.0031748805326817296 :0.022643063989110868 +the:0.483768433677251 our:0.12986380465014086 their:0.06896407475616 be:0.06315153392724064 :0.25425215298920745 +closing:0.3950185924753552 opened:0.3243573399393393 closed:0.16350784439543717 took:0.027979732503967052 :0.08913649068590124 +in:0.7183426494569818 In:0.24633397529432063 on:0.022739638471182964 iu:0.00647493683074442 :0.006108799946770335 +friends:0.3448434205015563 die:0.08862378087210088 tive:0.061077171600192236 ed:0.03704165193491085 :0.4684139750912397 +and:0.2902337287176644 but:0.029898317606618676 hands:0.02400171481835538 not:0.018205561988612413 :0.6376606768687492 +of:0.6848736969205707 the:0.1266011452201261 in:0.03241634328456559 a:0.02986674682019076 :0.12624206775454688 +all:0.363528171061221 for:0.23073228445693622 the:0.12531575040977844 a:0.014755899919950308 :0.26566789415211406 +are:0.16757009478173523 is:0.12814707171731066 were:0.12543501955723563 was:0.09946085938941164 :0.47938695455430674 +men:0.11440505612256087 more:0.09235546869549459 duties:0.07999644286296516 are:0.049783790558679195 :0.6634592417603002 +the:0.33644175032503276 a:0.27417005431816976 him.:0.09460345406828896 an:0.0812794902342568 :0.21350525105425158 +it:0.39095606352117623 there:0.07680425868886563 he:0.05517266729394023 that:0.05466335924524348 :0.4224036512507744 +men:0.026205708898463853 farmers:0.018976836219189167 persons:0.009905344559013027 or:0.001849395885207072 :0.9430627144381268 +themselves:0.2887353673208501 deeds:0.2145690561909356 it.:0.1734716890263433 they:0.08278669953458498 :0.24043718792728613 +and:0.11477025768629802 the:0.0927161993754111 is:0.0925685131306313 to:0.06704836704040114 :0.6328966627672584 +Is:0.22060899078458104 come:0.11242974474235125 was:0.10801972263327403 is:0.10201888849319982 :0.4569226533465939 +of:0.21084821079218333 with:0.17163928687708596 by:0.10325358772630111 and:0.08621140323615283 :0.42804751136827696 +of:0.18504340280548653 and:0.15643097554182722 or:0.09760867282276697 to:0.08231363607766716 :0.47860331275225226 +the:0.26526817523754237 a:0.25605779985729366 that:0.0826895482811753 out:0.07030313657280063 :0.32568134005118804 +far:0.3673095987308829 himself:0.17237746385810968 come:0.08771457859983935 going:0.08405989968446449 :0.28853845912670373 +family,:0.2498538448578624 office,:0.003555532104845531 case,:0.0030016665944916222 country,:0.0006310248997457267 :0.7429579315430547 +country:0.06736917938330637 nations:0.03415287352876849 world:0.030330050000647667 territory:0.029877446087126804 :0.8382704510001507 +the:0.6334696999037747 that:0.2545499768997355 they:0.04204889590977876 tbe:0.038137988491557355 :0.03179343879515368 +of:0.21893870495928658 met:0.059412829726122086 and:0.054379124808912126 in:0.04369607083768569 :0.6235732696679934 +to:0.24182110899478615 by:0.2081050575343799 and:0.17800233312648114 that:0.14135267205869947 :0.23071882828565332 +of:0.27571696615127467 in:0.15804241117228157 and:0.1543808897509126 to:0.10923294609334905 :0.30262678683218225 +in:0.32027691230767646 by:0.20871934281247675 from:0.1820574887628025 of:0.17233807709389204 :0.11660817902315221 +to:0.467062900944884 of:0.45380152211961994 the:0.011176933935430327 and:0.010926177141710203 :0.05703246585835561 +own:0.09568953741326339 sister:0.02916257619057619 heart:0.028617243894995894 his:0.014532521105590782 :0.8319981213955737 +that:0.4377064586688038 very:0.30097960639974775 an:0.18340871138714582 it:0.0528389244702047 :0.02506629907409787 +disposition:0.9977508339133743 use:0.002188122397633553 publication:2.524544825322324e-06 return:2.51951006495959e-06 :5.5999634101946695e-05 +and:0.17879886105901469 in:0.03963550716798581 the:0.0317637317301571 of:0.029066671899558718 :0.7207352281432836 +the:0.42056167530745814 and:0.04480875846486498 a:0.040967564573816014 n:0.03360611971823362 :0.46005588193562724 +the:0.5448831086245798 tho:0.28050372391227774 which:0.06747379731576116 th*:0.007976495407763741 :0.09916287473961763 +was:0.3217993828990907 is:0.3118788799348207 be:0.11590312230471311 Is:0.030825062996219704 :0.2195935518651558 +tion:0.06112108336010186 ment:0.03130685234186071 corner:0.029057265326715678 side:0.024315981422918943 :0.8541988175484029 +the:0.6079215843993998 our:0.12150067188837034 tho:0.03834639680444265 American:0.03463322894513677 :0.19759811796265048 +been:0.6377489616922012 a:0.05237453077527398 the:0.042391901702427674 no:0.024090536935145936 :0.24339406889495097 +composed:0.33933379878842845 satisfied:0.06554834503970865 that:0.05474043101653729 one:0.03635742316050444 :0.5040200019948211 +the:0.1447160274349723 and:0.10212283268599794 to:0.09315710318578431 a:0.06146041147581247 :0.598543625217433 +of:0.555985888840087 and:0.22994287875133346 or:0.06252700028576087 at:0.039406262552184115 :0.1121379695706346 +of:0.18362480053364597 and:0.1688060707241429 that:0.15188716494502902 to:0.1178700241465052 :0.37781193965067683 +general:0.4682470758268913 the:0.3386912924074238 The:0.0738797976518557 year.:0.030724390899585566 :0.08845744321424373 +raised:0.012809322673635555 found:0.012049302801354616 taken:0.011837499317017618 the:0.002127131654067011 :0.9611767435539251 +the:0.5933490312279243 this:0.19224780137361328 a:0.0384972759561331 tbe:0.009375424679332015 :0.16653046676299738 +much:0.034080115179067505 think:0.017276926950439014 to:0.0035891965870725926 and:0.0024999454140175762 :0.9425538158694033 +to:0.3946432744499427 their:0.16052376625065265 a:0.08066695565872355 an:0.06493794544695347 :0.2992280581937278 +the:0.23087839888323602 and:0.17318545049289244 The:0.16113551641582677 or:0.12132867967078224 :0.31347195453726256 +a:0.6552548279261382 the:0.132306188354798 first:0.01875125085782605 The:0.012502718257074398 :0.18118501460416336 +those:0.04249160973868514 placed:0.041898060682372534 the:0.04014748028672758 is:0.033043342582904076 :0.8424195067093107 +north,:0.03510591791174462 and:0.02719853737248912 of:0.025106530178074953 N.:0.02062706785066407 :0.8919619466870271 +excellent:0.008699153939617949 advanced:0.0049152829152523175 American:0.003007447969746149 active:0.0015182266093488924 :0.9818598885660347 +the:0.09254969667165543 and:0.06092611844857536 of:0.04056059202235234 to:0.027648075300548948 :0.7783155175568679 +the:0.12663777704639165 to:0.1233997733310531 and:0.0819415061326028 I:0.053233385199300355 :0.614787558290652 +the:0.2432701771135112 a:0.12350308442601346 and:0.10455319825782503 of:0.04223581988773792 :0.48643772031491234 +law:0.0075492342422802195 words,:0.0022067886427138876 article:0.001389489826425716 man,:0.0012857869267731935 :0.9875687003618071 +in:0.7383299960545006 10:0.12101149309183269 to:0.055819832620546045 they:0.04178678192979911 :0.04305189630332159 +nnd:0.009860712004140536 of:0.0016462200714681815 an:0.0009813857758504754 was:0.0008746594207468229 :0.9866370227277941 +of:0.29699921715861216 that:0.11929642533665859 in:0.11563460543459662 by:0.07772828163134024 :0.3903414704387924 +and:0.0908859705972624 has:0.08812369064540182 had:0.07091391052870857 was:0.04693947008621402 :0.7031369581424133 +it:0.22499065456535933 just:0.19407438414735156 now:0.19240853805129715 not:0.1501188627205434 :0.23840756051544854 +and:0.10384168875634422 the:0.06584583254912718 or:0.059594310898083466 at:0.05056613357200984 :0.7201520342244353 +sure:0.38010073136650113 in:0.0913201605157991 likely:0.08562819494165384 one:0.03147543210189813 :0.4114754810741479 +and:0.6655824666356239 house,:0.047912958636174695 tree:0.01515367356600763 mills:0.014874373295877881 :0.25647652786631586 +the:0.3210310541876489 of:0.1626034696194572 and:0.09604917254002339 at:0.08701004472791518 :0.33330625892495525 +and:0.05179113145118684 end:0.02602221597557134 ':0.023192888694330123 made.:0.018680196789541286 :0.8803135670893705 +and:0.42435055949673217 of:0.1957276824375774 or:0.038018894540810144 is:0.031205757674190773 :0.3106971058506895 +firm:0.6002216439207071 house:0.07032165194290209 mill:0.06801400377794739 style:0.05591476952005548 :0.20552793083838788 +far:0.5282936117669483 long:0.4111407140115051 much:0.010378797989830572 soon:0.010205153108454153 :0.03998172312326172 +and:0.25624801751877613 to:0.09848654473790217 the:0.08487696641454283 The:0.04369443250519608 :0.516694038823583 +and:0.10241126123393877 of:0.05641765151884091 the:0.039159625285473496 to:0.03182943263811715 :0.7701820293236296 +charged:0.013320262252714972 received:0.009719452278082128 covered:0.00601537064018566 made.:0.0054354273327860995 :0.9655094874962311 +and:0.11061131708405281 of:0.0675373104823763 the:0.0578478604710573 to:0.0360519928510427 :0.7279515191114708 +the:0.18689764730825312 to:0.11997133448630122 a:0.09661560569460118 or:0.09348400046607189 :0.5030314120447728 +voice:0.0061906871945710444 form:0.0007486303825823039 ning:0.0002935418384489833 once:0.0002768556941508982 :0.9924902848902467 +an:0.6724635322811987 .:0.01956235325400975 the:0.004544680658812256 of:0.0027205945817626778 :0.3007088392242167 +has:0.5055710083914141 can:0.4031856460483287 had:0.037437283169525784 could:0.025547145592863016 :0.028258916797868638 +by:0.4768862125387028 of:0.35220375611969423 to:0.05740264165287866 shall:0.03800054755819163 :0.0755068421305327 +work:0.12680638666214025 practice:0.08915254273359438 thought:0.051891581788918395 time:0.04174821071336211 :0.6904012781019849 +be:0.9122986819173067 bo:0.05416825476795852 he:0.02252530247293113 lie:0.007840593093161813 :0.003167167748642036 +as:0.8422779593359154 a:0.07186312334854997 so:0.021625804404317606 the:0.010386915078681384 :0.05384619783253559 +broken:0.06923772915028752 man:0.051978861689541384 and:0.02110940125441242 mere:0.015188520330166176 :0.8424854875755925 +they:0.545742005991199 y:0.2153105038535035 which:0.02095352885551565 and:0.01932636584913407 :0.19866759545064758 +permitted:0.33414821840543985 going:0.29467506867593585 confined:0.030260809098859757 in:0.022937808879810246 :0.3179780949399543 +re-:0.616036607882026 on:0.12794907801012292 was:0.10495796486315691 of:0.087870679029724 :0.06318567021497018 +besides:0.23706433538284435 said:0.22667533786665633 that:0.19758345131810726 when:0.18683136586418259 :0.15184550956820944 +the:0.5758332607695419 his:0.17743990016422165 a:0.07267850290547885 such:0.03130329346277136 :0.14274504269798632 +the:0.6213253127288781 a:0.04878559908869544 tho:0.03246727958825193 his:0.02962991376449915 :0.26779189482967547 +time:0.0445205795191519 to:0.028915380886943013 as:0.027311041374682803 in:0.025691532523704975 :0.8735614656955174 +the:0.630813702372979 a:0.11232631757960516 tho:0.02869740034307617 block:0.02786665374326804 :0.20029592596107162 +to:0.07657177174964003 of:0.05941518876074649 After:0.05394062643402508 on:0.0455891388676776 :0.7644832741879108 +young:0.22342085404809886 great:0.0460788638786025 wero:0.04558651621894922 my:0.03984066183488035 :0.6450731040194692 +in:0.9664025065248155 near:0.010757359759420057 In:0.008978930658853147 on:0.008879161628991146 :0.004982041427919973 +second:0.3132506363580212 first:0.10463921802967259 hay:0.023807508087950135 whole:0.01373433970110261 :0.5445682978232534 +if:0.5798184224622297 an:0.10233375718572017 that:0.048210114891887375 when:0.032402449696986836 :0.23723525576317595 +con-:0.28079989927404453 a:0.07493461711601584 the:0.06858465994964537 his:0.02350081859039876 :0.5521800050698956 +the:0.24680671032878934 which:0.0617903012086435 as:0.016268294698521906 eight:0.005440530026399981 :0.6696941637376453 +simple:0.11125718569174312 common:0.08210752145203132 good:0.053916327127257704 pretty:0.05079188295832045 :0.7019270827706473 +S:0.46865550583676774 12:0.2831042432607491 10:0.16784335293790012 3:0.059718285785707086 :0.02067861217887602 +out:0.9335186935639816 name:0.010248337243378558 goes:0.003030891347593858 you:0.0026357064224771807 :0.050566371422568764 +The:0.1318030792188682 the:0.11539480956881638 and:0.10941030583271937 when:0.08353402897150315 :0.5598577764080929 +as:0.8107273522295343 of:0.1350831022655491 for:0.007774265762806331 accepted:0.005036116842955902 :0.04137916289915432 +to:0.921746425452261 will:0.026572136082124113 and:0.013448631581270486 who:0.008499500916115737 :0.02973330596822872 +I:0.2064831140870688 and:0.14478887275116029 to:0.14059344739434412 He:0.07081170149374037 :0.43732286427368644 +all.:0.006545153305970141 show:0.004610413493852997 come:0.0025579654418307098 it.:0.001317233401714073 :0.9849692343566323 +with:0.9547291108175963 in:0.04391863960277912 of:0.00016502701823583517 In:0.00011059112757748535 :0.001076631433811264 +the:0.028138952613261988 them:0.009625083991678057 head:0.005425418572801154 it:0.003649605362176081 :0.9531609394600826 +city:0.4912674473108038 town:0.11669680652585708 City:0.0590932882312039 county:0.05739791816213091 :0.27554453977000426 +the:0.8699654440934755 those:0.052153894979036525 these:0.04094863308209848 said:0.01563448180845995 :0.02129754603692963 +be:0.9982698128754395 the:0.0008902130877171688 not:0.0002455001988419064 at:0.00021060362739088912 :0.00038387021061066364 +blood:0.07030139900967368 group:0.06981254768709494 butter:0.06834155873561643 crowd:0.06321575461177509 :0.7283287399558399 +not:0.9887861621344974 it:0.0018603515268283187 he:0.0014452446095566097 hereby:0.0010490069522731975 :0.006859234776844459 +in:0.307731731137948 the:0.1650713483700992 The:0.1356289922327362 of:0.11686295387081778 :0.2747049743883988 +If:0.0368314309271837 and:0.03552735177927278 whether:0.029645559389991683 service:0.026054560836906923 :0.8719410970666449 +not:0.6274616805222378 be:0.20931692430480742 have:0.03636046507327239 eat:0.020373999493232712 :0.10648693060644991 +for:0.7150040018864491 lor:0.05352583359665136 the:0.035211554264725886 tor:0.03136602943099495 :0.16489258082117875 +the:0.44949947673374135 a:0.06999780939219205 be:0.0625909302279192 his:0.05864832445142932 :0.35926345919471797 +and:0.12110080496435578 we:0.0843192705965317 who:0.08054075031184871 I:0.07841351481244795 :0.6356256593148157 +regarded:0.11645008573509091 not:0.06804256799283526 just:0.06338996413152695 used:0.04886402552989877 :0.7032533566106481 +thirty:0.294046177753972 sixty:0.2794060018980547 eight:0.19396513413857586 fifty:0.08377590998408554 :0.14880677622531183 +of:0.14568949672730705 place:0.09540520289393867 only:0.08854199038120292 government:0.05280974749878915 :0.6175535624987623 +they:0.5847140202157698 you:0.21167944476247189 I:0.08236737032479864 people:0.07587658915272029 :0.045362575544239336 +force:0.004326980840216297 closed:0.0017397219937073868 tire:0.0010968063218345907 ter:0.0007518574887026947 :0.9920846333555391 +owners:0.08424223743326319 county:0.019900423385095557 people:0.009579664514685463 body:0.0033474050113383243 :0.8829302696556174 +will:0.6185037510529101 should:0.21780792012895284 would:0.11601121067050703 may:0.04102142434812314 :0.006655693799506877 +and:0.18001006579266587 to:0.17381022562403484 of:0.15810952305074344 by:0.11827725843551959 :0.36979292709703626 +is:0.8230169286519317 to:0.05395191839269991 was:0.04493651507471658 are:0.012896898923750713 :0.06519773895690109 +&:0.150778794653236 has:0.14111018448992682 and:0.05999466246360472 of:0.04209383363932377 :0.6060225247539086 +The:0.3662515412934319 the:0.11849386612599659 and:0.08236468522315549 of:0.07704288736566652 :0.35584701999174945 +and:0.26721266582079084 to:0.18277942820539256 of:0.0886676731753584 or:0.028540209862479925 :0.43280002293597825 +property:0.08589837074941982 bonds:0.043241922117844354 lots:0.028791754544347976 lot:0.0057743043735585635 :0.8362936482148292 +to:0.5005319305149248 that:0.23280782330136351 by:0.16888273868923773 in:0.07518813300730379 :0.02258937448717004 +the:0.9903257355011565 one:0.0021002815632107062 each:0.0011749723275293472 that:0.00042204800261531243 :0.005976962605488078 +hand:0.08241187122802449 duty:0.03940455301156855 business:0.027094978892806265 own:0.02133352556825926 :0.8297550712993413 +or:0.17144939152882765 and:0.13107994491924996 which:0.1256538719896015 in:0.10719121518226116 :0.46462557638005975 +city.:0.1115803598526814 country.:0.002223602145641906 day.:0.0010469461558675205 time.:0.0010360419000328747 :0.8841130499457763 +is:0.23676305718868512 a:0.2162128058302862 has:0.18244098779381174 so:0.06707244641104802 :0.29751070277616887 +than:0.00018786364745431252 M:0.00011735533796774532 G.:9.740122244582959e-05 and:6.771636243956687e-05 :0.9995296634296924 +I:0.2944651715848275 it:0.26225921631628224 and:0.13325254920824237 you:0.06724865412677232 :0.24277440876387552 +which:0.1699867559314333 the:0.07410439109457409 Congress:0.03773100620809906 it:0.013999885574319457 :0.704177961191574 +the:0.9522441545328221 an:0.027674717213151335 tho:0.006091393747363974 of:0.003935198169257424 :0.010054536337405193 +people:0.42867679577790946 bonds:0.054023444379008405 opening:0.02987153939954048 best:0.02683086621337277 :0.46059735423016884 +its:0.3450392276102183 the:0.308828422903645 this:0.15160218562724703 his:0.0994275295357286 :0.09510263432316096 +other:0.20492596794811846 this:0.20114957448685583 prior:0.11137467018182731 one:0.04275107862132865 :0.4397987087618697 +and:0.2595881421762405 that:0.12826972126107378 but:0.09827254180843535 where:0.05919475757873696 :0.4546748371755133 +J.:0.09110857559554325 W.:0.09006446753211378 John:0.06627614718249954 A.:0.0494826400987093 :0.703068169591134 +and:0.11214608880061817 or:0.10446515520602255 of:0.08299951184719755 is:0.08210979423107234 :0.6182794499150895 +blood:0.015176147818758248 same,:0.013782078760460904 stomach:0.008003347328396887 people:0.006979734029791632 :0.9560586920625922 +the:0.39202517059747777 a:0.08390723881024958 he:0.052031600098659765 of:0.04555536466586179 :0.42648062582775115 +same:0.032458689507746066 ad-:0.020198393005085247 con-:0.017457296978588638 great:0.013516044740220078 :0.9163695757683599 +of:0.5305225764970348 oi:0.46665672855628604 is:0.0009825377884274363 in:0.0009409384294062887 :0.0008972187288454411 +him:0.49698433028962613 it:0.11682028413803201 me:0.04962072890521789 up:0.048083413777076506 :0.28849124289004735 +defeat:0.11441438997968786 by:0.04413324617987858 of:0.031997381643395835 in:0.02902792172934866 :0.7804270604676893 +and:0.088211837342076 streets,:0.07759271596655291 that:0.032271578822279004 sleep:0.03089774177298355 :0.7710261260961083 +view:0.1492713558448605 bit:0.07565456600190595 crop:0.058872568756187675 lot:0.04604504988879924 :0.6701564595082466 +the:0.9714867549315312 tbe:0.007419371716033663 tl:0.004800895924967117 tiie:0.002575053246725668 :0.013717924180742316 +of:0.02652974846375759 on:0.02048614601092435 and:0.018533856839172018 in:0.010526481682393797 :0.9239237670037523 +to:0.9023100858996476 would:0.05241443096662589 not:0.01694616619813434 will:0.016932655947706765 :0.011396660987885584 +of:0.6859455986027749 and:0.17826391483432952 she:0.02897448353987905 from:0.025886588694324867 :0.08092941432869165 +and:0.10367060684033239 of:0.05557270189037986 the:0.05220358976181857 to:0.03367934295389294 :0.7548737585535763 +to:0.19462461984460988 and:0.14707679730145506 the:0.05089309783664307 our:0.04662123264368291 :0.5607842523736092 +with:0.39866536467637365 to:0.23805930309651008 at:0.09343194329593425 sent:0.07884895497230994 :0.19099443395887195 +proceedings:0.49349923133124285 called:0.0730524272044852 themselves:0.06583843047528351 yesterday:0.03590466765195022 :0.3317052433370383 +body:0.15593355627767438 office:0.09260002506637384 question:0.025019441533003103 come:0.018213440701069866 :0.7082335364218786 +but:0.29918639078113113 even:0.15340680024385356 is,:0.07167285236219065 and:0.06086338720972354 :0.414870569403101 +to:0.7631597546236253 of:0.10546008660355909 hand:0.028979032029390662 time,:0.01411935165762375 :0.08828177508580119 +rich:0.011326192829708677 growth:0.009214083312466929 laws:0.008719917269518021 duties:0.008383195516714544 :0.9623566110715919 +two:0.02719974505136383 one:0.02039634668192894 four:0.01728419041970557 three:0.012170453835588586 :0.922949264011413 +They:0.06492267169685359 which:0.05763047065464616 There:0.055239654215013784 good:0.053054812010695354 :0.7691523914227911 +the:0.3533517522010555 a:0.30955978133055356 very:0.1668044883278831 of:0.04668537200683182 :0.12359860613367595 +without:0.9996010899589689 with:0.00019730942072957472 by:4.798832317591072e-05 college:3.491513157621103e-05 :0.00011869716554940728 +of:0.012447485402253025 and:0.009128702328855286 dollars:0.005939857417096696 to:0.005337016696314734 :0.9671469381554801 +be:0.5961445872195408 subject:0.056308844461395544 have:0.05584976937218996 he:0.039027985961856484 :0.2526688129850171 +they:0.36531524832143225 it:0.13435110474499187 tbey:0.06938609416546541 we:0.053770727600988666 :0.37717682516712175 +the:0.1428265176243808 of:0.12963726351231777 and:0.07256425175106654 by:0.05693175364180711 :0.5980402134704277 +doubt:0.031731021932812915 of:0.027888187247722785 agent:0.01156401663180753 tion:0.01153503394508334 :0.9172817402425734 +the:0.22559107487155558 to:0.1419179488386442 splendid:0.10520783040263544 larger:0.040508496434281345 :0.4867746494528834 +army:0.09370700303030569 act:0.050709586682203225 officer:0.04754093308020676 order:0.039651624906649086 :0.768390852300635 +pay:0.7840768792311246 run:0.06977796798669599 make:0.05097657684461102 meet:0.026879791589988992 :0.06828878434757972 +in:0.07946093145421151 are:0.07845483862800343 the:0.04266274026711659 American:0.038189492406536706 :0.7612319972441318 +of:0.21463178666627522 how:0.1315732179292349 paid:0.04585564298881774 passed:0.029273944012087588 :0.5786654084035845 +the:0.6064400462095297 ami:0.11598550709723185 them:0.06670229644977384 whom:0.0454300612127547 :0.16544208903070984 +of:0.5564630082863641 the:0.2933358043072871 or:0.09081696904150811 are:0.030948501828043706 :0.028435716536796947 +are:0.13228603659995672 is:0.10864753803493199 and:0.0469567963197318 ought:0.04254657490839271 :0.6695630541369868 +the:0.6232703207847967 a:0.08568988962211892 all:0.07947722596920248 personal:0.05520385472888465 :0.15635870889499726 +of:0.23108501150559432 and:0.1841406621509552 in:0.14624034877015307 which:0.12438136932966223 :0.3141526082436351 +vast:0.1661041783290206 large:0.16422810043756497 far:0.08483041614992322 paid:0.08159991879346663 :0.5032373862900245 +the:0.4602184761400417 being:0.0329601291403006 Mr.:0.024626147563347387 an:0.020869712549246085 :0.461325534607064 +were:0.4184089889451778 are:0.2930889024521838 and:0.10643254349550839 was:0.072434800533839 :0.10963476457329122 +and:0.2213154051259534 but:0.06616130237705814 that:0.03995697131278153 But:0.03094632442325445 :0.6416199967609526 +I:0.27118459334230444 we:0.25313079525630616 and:0.11915249376568335 They:0.0967983500304917 :0.2597337676052145 +the:0.8992165067340564 tho:0.03083987738897997 this:0.030298649026914773 his:0.02180982658599599 :0.017835140264052782 +as:0.12916864935645958 interested:0.057337071953047394 because:0.05438049254368718 those:0.03803366312170311 :0.7210801230251026 +thereon:0.06378143476285787 the:0.028953401774223574 movement:0.02386709428259057 was:0.021557485149582726 :0.8618405840307453 +is:0.5097541707091884 was:0.1854910808849671 are:0.123126775488484 were:0.10886569625332188 :0.07276227666403873 +and:0.32149218174490535 the:0.19763612764693544 a:0.0527122713124825 He:0.05085303502499392 :0.3773063842706827 +the:0.9001596947369949 tho:0.03250040887221898 tbe:0.010903443182846475 ihe:0.002168971624707548 :0.05426748158323223 +it:0.2209602750218506 It:0.14886282148225288 there:0.1249723702926662 and:0.0951771018727027 :0.41002743133052755 +never:0.23409958639231027 then:0.11366536277058147 has:0.0913336361207573 once:0.08029077883615034 :0.48061063588020064 +and:0.43592743608716417 the:0.11033903076038139 It:0.0702309903235951 for:0.06593892872573805 :0.31756361410312123 +delivered:0.2619597103564099 ed:0.16344669412183999 owing:0.08116705515663435 prior:0.05525543480609722 :0.4381711055590186 +the:0.422417070772062 it.:0.0972605392770715 himself.:0.02534200643851602 them.:0.02413027189867401 :0.4308501116136765 +sixty:0.42667553118690266 fifty:0.17400727633375065 twenty:0.09512164796285666 forty:0.09256603905293881 :0.2116295054635512 +city:0.0064756397061986725 State:0.005280810264425131 country:0.004906053652954695 country,:0.004712990895013522 :0.9786245054814078 +said:0.01538599297601384 highest:0.01420408453538482 most:0.012567185502496374 of:0.008636077087886405 :0.9492066598982185 +platform:0.26408453551782096 and:0.21020048863421115 It:0.015462681933735564 it:0.014846840895984344 :0.49540545301824795 +the:0.16355912048334006 and:0.0767032801920046 a:0.051988382021348534 tho:0.030050299927297835 :0.677698917376009 +the:0.9437993322905778 tbe:0.013836015316367254 tho:0.01316857152809779 the.:0.006362268722812095 :0.022833812142145048 +and:0.008835930686059784 it:0.008130951970646253 hair:0.007172381201290777 to:0.0067763411034727225 :0.9690843950385304 +the:0.4935132624987 a:0.0688886931570183 his:0.026820475927490126 this:0.024878110178222296 :0.38589945823856947 +of:0.4786965007988231 in:0.10046235367570154 is,:0.0920241714459511 and:0.06517553036802831 :0.263641443711496 +to:0.7627218254872106 of:0.14364766088436837 the:0.020239167303945302 is:0.01134796875028899 :0.06204337757418673 +the:0.4088175046432532 a:0.11954902229052128 and:0.06503855699521377 The:0.043301048079505695 :0.363293867991506 +of:0.17135429414102424 was:0.1441485603355928 is:0.11043503590563274 are:0.08663261354321562 :0.48742949607453456 +is:0.4428595456292776 are:0.40480470980552696 day:0.02254091134965398 and:0.02196926506277172 :0.10782556815276988 +be:0.3135276983481528 de-:0.18858942055689634 not:0.14056031424603632 he:0.04838463964979186 :0.30893792719912283 +of:0.08862545662590521 and:0.07849486353153898 the:0.07339911435889446 to:0.031975342941151834 :0.7275052225425097 +and:0.09273390579770696 fell:0.0514288105091385 influence:0.035742305307134285 effect:0.02651237881318605 :0.7935825995728341 +this:0.35191299683491106 things:0.2642268265077989 the:0.1633455059583621 a:0.11276807905608914 :0.1077465916428389 +of:0.13781409061391775 and:0.11953494631580573 the:0.09838906958893473 a:0.0680225115694242 :0.5762393819119176 +that:0.255021008301032 to:0.1555835674932988 of:0.11037348254710659 in:0.09443605240372244 :0.38458588925484005 +and:0.23101369811974018 is:0.1548438396198206 of:0.15445981311434734 the:0.07691888283917517 :0.3827637663069166 +best:0.19866705142397953 greatest:0.18706789299811893 least:0.06880710323763543 highest:0.050646213108326024 :0.4948117392319401 +years:0.10675398700991925 words:0.09850021493995535 days:0.06539297038362288 months:0.0627887258845885 :0.6665641017819142 +and:0.033933766745163185 the:0.03035228908332948 paper,:0.028799079102744894 ticket:0.024767145982338454 :0.8821477190864241 +when:0.24390164691473096 believe:0.2235944471143655 that:0.2034588785169733 .:0.1384989733226443 :0.19054605413128595 +I:0.3430997764269377 he:0.3204669738623992 they:0.24573871081185264 we:0.036827756875677374 :0.0538667820231331 +up.:0.003752113459548324 on.:0.00023989816650152906 —:0.0001622899412480936 a:8.59857301523663e-05 :0.9957597127025497 +two:0.05433293414924441 are:0.03347671838922148 the:0.02222837987220477 and:0.013378273489761583 :0.8765836940995677 +and:0.2962776671493621 of:0.1718605066006616 is:0.07437189260834581 to:0.07033330161840946 :0.3871566320232211 +Three:0.26931130573901524 said:0.21732945136228374 the:0.06420047922780167 Two:0.04441298958504572 :0.40474577408585377 +At:0.2192780064033939 and:0.02292020991056727 of:0.02177901340943889 the:0.010064679596226303 :0.7259580906803734 +to:0.08575047186361133 in:0.06900711891989458 up:0.060372365697960145 ted:0.053715330582569006 :0.7311547129359648 +ment:0.09372068111048894 evidence:0.05644189885135521 day:0.04327353657173686 that:0.024917567647309458 :0.7816463158191095 +man:0.11150573432474975 above:0.08809861269694916 was:0.05431378800994773 is:0.05293891640065436 :0.6931429485676989 +the:0.619945232733866 a:0.06303023862967475 his:0.04657233471860821 this:0.045894490143790566 :0.2245577037740604 +will:0.6473737439833557 would:0.08575388980687228 you:0.07587697087024178 they:0.05219006304798539 :0.13880533229154493 +and:0.2927811609925202 In:0.27539711781355614 in:0.2557339128218627 to:0.09454629271920065 :0.08154151565286039 +made:0.3611695239327 free:0.1255448441873187 out:0.027668144254469798 placed:0.023461937031276404 :0.4621555505942351 +been:0.35538336498780176 a:0.14684610167997977 no:0.09298678413023265 the:0.07572681617074059 :0.3290569330312451 +own:0.12416474805951061 first:0.05033078839236738 last:0.05003891865615092 greatest:0.03691701969753165 :0.7385485251944395 +the:0.6575718691021407 a:0.05250219214074123 tho:0.039986849843289034 and:0.03429642583969146 :0.2156426630741376 +the:0.7869666708763429 his:0.041246098307242546 that:0.03823151845897578 this:0.03686340543859372 :0.09669230691884523 +that:0.32882702898484384 a:0.3139623195092513 the:0.1985415291287684 their:0.0489907544543281 :0.10967836792280833 +if:0.44858542259311374 yet:0.17378746328144531 and:0.04866834359916434 If:0.04745566516633831 :0.28150310535993833 +ting:0.1895311611954329 ing:0.13239227791086555 carry:0.038918125723361105 that:0.03532560747717526 :0.6038328276931653 +this,:0.13968965932627544 any:0.12895681832113082 well:0.1267509462254536 possible:0.11542958406336004 :0.4891729920637801 +acted:0.09562765966630392 death:0.07442412034423647 important:0.03715699831554187 body.:0.029125927334996977 :0.7636652943389208 +figures:0.8279931832547823 facts:0.021819621717063982 people:0.005919378946097828 men:0.005000284631922509 :0.13926753145013346 +request:0.15182379709446245 hands:0.09015801303283226 hour:0.07392343566265132 expense:0.05469807912641313 :0.6293966750836409 +the:0.09366570649202709 and:0.09207202786670887 of:0.09200953633357739 that:0.053785193891178855 :0.6684675354165078 +of:0.19681130739571365 and:0.13461294229614637 the:0.1265034113073233 a:0.0976173491197194 :0.44445498988109733 +the:0.79452126940507 6:0.051928188482631955 a:0.041128595463112365 he:0.030559472342562337 :0.08186247430662338 +and:0.647402048492848 are:0.11337038348931314 were:0.0922926900485226 was:0.08665671053989273 :0.0602781674294236 +free:0.30765927061519033 and:0.21932673564627506 up:0.142609669414016 -:0.07430834943330121 :0.25609597489121744 +value:0.021380446355544508 payment:0.021350301581732747 expenses:0.017838232184970236 action:0.017061865803493392 :0.9223691540742592 +in:0.13548532939997235 years:0.06017030588253191 pain:0.057784474733767036 was:0.05418182046407875 :0.6923780695196499 +the:0.0062406537062037895 here.:0.002783829853492517 it.:0.0017074870047674138 a:0.0015434017540664308 :0.98772462768147 +may:0.9491422476760126 might:0.02376672165539993 to:0.013338916688696936 have:0.007692542358721599 :0.0060595716211688695 +the:0.8450091933453513 a:0.02179688785889995 their:0.018468126208244146 this:0.009116764092818136 :0.10560902849468652 +the:0.7543704334818473 several:0.09677087408635486 certain:0.06769348890183441 these:0.04233825013699888 :0.03882695339296462 +they:0.18410004525310722 the:0.1222423274717771 and:0.09178824624866116 of:0.05006904592709135 :0.5518003350993633 +that:0.4807338287784171 which:0.2779152761498718 but:0.04537230468232772 we:0.01846683556506238 :0.17751175482432105 +a:0.9993088072924615 not:0.00016796356661145313 the:0.00015557059790279507 one:0.0001272279775996426 :0.00024043056542464677 +in:0.02408531769064932 and:0.009184255759973205 ing:0.007651550377078749 to:0.006104256514028109 :0.9529746196582706 +the:0.9904284624889613 this:0.004185712167002267 tho:0.0017311756936990354 tbe:0.001718081133230746 :0.0019365685171066384 +the:0.6534338270385368 a:0.1613551958219871 an:0.030019308473076767 his:0.0267288471191102 :0.12846282154728908 +days.:0.10667619452311682 cents:0.05918534205663256 days:0.0016017385772060743 years.:0.0011938613110948212 :0.8313428635319497 +the:0.4364837146664589 a:0.06456048508330654 his:0.02519156044896665 tho:0.021731156419461804 :0.4520330833818061 +without:0.7934695045471991 where:0.15177899085348057 and:0.011765314761404671 than:0.010981063462964888 :0.03200512637495088 +The:0.3159183645214879 the:0.11588886544572986 and:0.054913175306674784 First:0.01812557971610628 :0.4951540150100012 +and:0.13223775943059335 of:0.06019725474413861 evidence:0.05241464695161504 him:0.04761509768480608 :0.7075352411888468 +has:0.43829832509314626 had:0.28980804232866797 always:0.21327597259203354 was:0.017824442663188545 :0.04079321732296368 +of:0.9038404493617646 to:0.014925333176184528 that:0.0057969817922857245 ot:0.0027336010733706255 :0.07270363459639448 +form:0.05749950688975625 and:0.040608578637064054 City,:0.0336006697883843 river,:0.024337077726914312 :0.8439541669578811 +of:0.35337761709552384 were:0.16936101556081404 aro:0.09633051805112819 are:0.0753279891286892 :0.3056028601638447 +and:0.05839970444809064 one:0.05489059965183593 out:0.042594941460169324 One:0.04113335654418918 :0.802981397895715 +and:0.00844233795030416 which:0.006925881018781586 ing:0.006187595091346291 houses:0.005830488388430605 :0.9726136975511375 +eleven:0.20946785393062828 people:0.10729837727293683 plan:0.09637284164719824 thing:0.0356256388528322 :0.5512352882964043 +stone:0.42263851020599646 time:0.18950138587036577 date:0.07074692028969182 point:0.022867117696836792 :0.2942460659371091 +by:0.8426264349770842 the:0.061315959105590435 that:0.04127534978335438 is:0.026891791155562953 :0.027890464978408098 +country:0.048631371170768455 action:0.04343238429294465 city:0.040578455103535895 contract:0.03719759484635867 :0.8301601945863923 +to:0.2700572570230757 by:0.17351485830999394 the:0.1269095779388348 though:0.10533412961354881 :0.3241841771145468 +history:0.14955119946405804 operation:0.1320943238163656 nature:0.09275233598993214 way:0.07996383011721556 :0.5456383106124287 +was:0.12953229325434723 die:0.06518166299596813 because:0.06098162961307815 do:0.04532531098933326 :0.6989791031472732 +did:0.2901065573741633 could:0.25798744281980623 would:0.19250956766526758 does:0.16601840573615353 :0.0933780264046092 +W.:0.02975026687960568 A.:0.017178422080130127 Smith,:0.016041617787989182 T.:0.015159024449482528 :0.9218706688027923 +of:0.8134307528670075 and:0.03405179123366873 the:0.015363738748319396 .:0.012181154547206795 :0.12497256260379756 +those:0.19712913782895003 them:0.1386507689150391 on:0.13324343817081027 as:0.12429861386486293 :0.40667804122033746 +to:0.4641894509684021 may:0.2329213978484569 and:0.14186216467462967 will:0.039060234206005254 :0.12196675230250609 +and:0.38050900942191146 or:0.2589057955907884 office:0.021974527201560706 serve:0.021924573963244914 :0.3166860938224947 +annual:0.27454974456246095 recent:0.127283448484942 next:0.09162149983758996 regular:0.07068010414365727 :0.43586520297134984 +the:0.18105806993459322 suddenly:0.12476598660324556 being:0.11950750306248847 a:0.06686827603624793 :0.5078001643634248 +than:0.792562022034034 or:0.017768621624812374 and:0.006588340469751419 the:0.006344996732207449 :0.17673601913919462 +of:0.369566824113084 in:0.13232226782296064 to:0.11331805338622285 and:0.10318784607385367 :0.2816050086038788 +u:0.8179939976372389 and:0.09763008231008997 with:0.022214908401610677 of:0.0057413089298046175 :0.05641970272125572 +north,:0.018089590286970134 move:0.01328321441826039 on,:0.013114413487530917 down:0.0077517551852371615 :0.9477610266220015 +two:0.10637479088179709 time:0.06640557051395153 cattle:0.013188777034122825 parts:0.01092136585726468 :0.8031094957128639 +of:0.6081844748360962 to:0.21681525962818052 in:0.05498910190208844 is:0.04707936944014583 :0.07293179419348908 +from:0.21483188318635243 up:0.06289893955345585 in:0.016164762008635605 down:0.015961572431028474 :0.6901428428205275 +and:0.28336131591734426 if:0.2781932259786424 although:0.1849203322329316 because:0.15515830643451087 :0.09836681943657097 +an:0.7301829195602079 the:0.1050842149130794 no:0.018719167202624343 au:0.017177582218329643 :0.12883611610575876 +the:0.4374580330829407 a:0.0809207705130282 you:0.061626605020348016 he:0.05627769030947046 :0.3637169010742128 +news:0.16047037142417273 more:0.013707368449512342 and:0.00728964465301504 of:0.006464559538995977 :0.812068055934304 +our:0.6588859522970456 the:0.17726659803532047 a:0.1317251566110714 of:0.017689307641562037 :0.014432985415000588 +the:0.11713543512808051 and:0.09528603607217769 of:0.07626077119233003 to:0.06660218388526845 :0.6447155737221433 +to:0.4654327709868642 into:0.19616931722880127 on:0.19272393999527723 Into:0.05583403328330808 :0.08983993850574934 +and:0.12918041325312313 the:0.10289722128955256 of:0.06904856886001882 The:0.042612118653058556 :0.6562616779442471 +first:0.05265621045139599 1st:0.04323735732608308 and:0.0065128308554740395 second:0.006250443179688918 :0.8913431581873579 +port:0.06997734737787634 appear:0.01052510368861338 action:0.009218494648213 doubt:0.006704190705871737 :0.9035748635794254 +to:0.6853437083064219 not:0.08973634925937207 I:0.03896540710379686 who:0.02697576588848714 :0.15897876944192213 +the:0.4127140825710126 a:0.05555029496347058 his:0.05367881430584488 their:0.03503427581632541 :0.4430225323433466 +make:0.43046861614448606 start:0.18938635987969288 be:0.11330718624208304 have:0.05197053417513147 :0.21486730355860656 +in:0.18297806952918158 suppose:0.06973232863570825 be:0.05033870919514715 now:0.043905092887204386 :0.6530457997527586 +in:0.05337711299989207 In:0.022091141659102146 the:0.019120440783269577 sale,:0.010240217207262233 :0.8951710873504739 +of:0.06595695883607776 portion:0.01565480677581634 energy:0.013614872806685044 member:0.012417151626218894 :0.8923562099552019 +to:0.8418264978874541 not:0.05535343573808046 t:0.04134771909058891 a:0.013850843384984168 :0.047621503898892255 +of:0.3260170302487408 and:0.13547973200190008 to:0.11315821058193691 with:0.10207843564984549 :0.3232665915175768 +the:0.3854589700860751 bonds:0.1401727802635634 this:0.10379657477038971 a:0.026804650481585514 :0.34376702439838636 +and:0.11836226046146327 the:0.06887705689975672 to:0.0666460308866705 of:0.046902788721926526 :0.699211863030183 +section:0.9666343328161191 Section:0.008843542312347031 tion:0.0061937423656295105 is:0.005388254074155609 :0.012940128431748603 +for:0.4215013769492709 near:0.1447549892459568 through:0.07680555167407736 in:0.06865884231674983 :0.2882792398139451 +you:0.14216965349289687 and:0.1366346293221871 in:0.12636424478125377 such:0.12011881271113897 :0.47471265969252335 +the:0.23442913101540044 lots:0.08451524676234597 a:0.03551846780031721 were:0.022176370105909157 :0.6233607843160271 +together:0.13129029106186405 ed:0.11002138968908014 connected:0.07848777074580382 and:0.06584789654077748 :0.6143526519624746 +nor:0.2891689723993377 How:0.21021864183439634 but:0.03127220533540864 Why:0.018071082500422123 :0.4512690979304352 +was:0.19774618816144762 are:0.1782555635207258 with:0.1371139485487709 by:0.11303912650264876 :0.3738451732664068 +and:0.04228697084985129 him:0.03543257905543504 ed:0.026254219507817218 filled:0.0249953868587168 :0.8710308437281796 +thousand:0.9567078618066457 to:0.0011481512410752522 and:0.0009215927941419176 the:0.00020432139478650366 :0.04101807276335072 +as:0.3276916618601421 and:0.15530162575998013 because:0.08106177656296845 but:0.07632410696317028 :0.3596208288537389 +committee:0.8598029783859854 yield:0.020199251655044992 fund:0.015522081515317539 force:0.0144504214412384 :0.09002526700241355 +distance:0.002423698429799753 influence:0.0018404915226867848 expense:0.0010281455673042026 work:0.0008165049573844593 :0.9938911595228247 +for:0.5816839865015284 where:0.34057585198959134 during:0.04405155905126074 on:0.014756431022719658 :0.01893217143489991 +people:0.1915407991515817 a:0.04680149814486698 ent:0.021430528712892437 most:0.020953141913053624 :0.7192740320776053 +for:0.893692053499351 of:0.027100541873706453 years:0.01878283491614339 have:0.004556023340082514 :0.05586854637071662 +to:0.17334961992483144 of:0.1557350711963475 the:0.112053439740253 and:0.06792544055380967 :0.4909364285847585 +the:0.6351442131206659 its:0.1710257588176806 three:0.11876393532952657 it:0.010381352768737978 :0.06468473996338879 +the:0.24567618653844264 a:0.1707581818057211 other:0.0807506152736002 another:0.0615335365458344 :0.44128147983640154 +of:0.20988464899513054 The:0.16588122207561376 Mr.:0.06576696574983226 and:0.060474798739056534 :0.4979923644403669 +days:0.3216033108830642 years:0.18141939403486534 yards:0.11432774992573755 miles:0.045950395270457293 :0.33669914988587546 +and:0.08789534675456831 that:0.03752311271026192 distinguished:0.02525388227243865 but:0.022491894821006303 :0.8268357634417248 +the:0.34364045123412756 whose:0.20691720729861596 The:0.16228517026695752 and:0.07949616271290715 :0.20766100848739172 +Smith,:0.022701956830708508 wife:0.015499055990674453 I:0.01469588979683833 All:0.013746318772104039 :0.9333567786096745 +the:0.7266539429593584 a:0.035465699814619535 tho:0.028391966731306208 tbe:0.02349356457716447 :0.18599482591755143 +in:0.2904037570010168 with:0.21741627204581943 for:0.10379730898016315 In:0.09726344200842449 :0.2911192199645761 +thought:0.7524309954028766 of:0.12773236317638534 should:0.04163896685178619 to:0.02135959915156764 :0.05683807541738417 +the:0.10533722867217434 three:0.052657857955903546 five:0.027834756181380996 county:0.027245094265503103 :0.786925062925038 +the:0.0828714005014644 and:0.04655434732641823 of:0.035007632030237205 by:0.013080691415027476 :0.8224859287268529 +hundred:0.9612910057797633 thousand:0.02588616925422698 million:0.008527364609007614 dred:0.0008136218219448738 :0.0034818385350572963 +the:0.6199312196358425 a:0.06981192776176143 tho:0.03035254311074345 an:0.01800606127590711 :0.2618982482157455 +and:0.05281568362211688 the:0.04164576499502691 changes:0.01620228720887908 in:0.014822080609109488 :0.8745141835648677 +on:0.7225727175471103 all:0.20020988417552765 voted:0.021126217644844517 oa:0.013262442587060221 :0.042828738045457414 +and:0.08933892062157833 the:0.08404934464123227 of:0.07695439400605704 Book:0.055775984450069385 :0.6938813562810628 +February:0.0677195507155817 all:0.030447781592189836 which:0.008796069950226037 it:0.006080164443198875 :0.8869564332988035 +Mrs.:0.3608424402502449 Judge:0.08275061486075538 Mr.:0.05383526364490538 A.:0.050905092018701824 :0.4516665892253925 +satisfied:0.11937453044593543 told:0.0680332025799331 informed:0.05713264858216109 sure:0.0539179144272331 :0.7015417039647373 +d:0.5080150731862845 as:0.15945586278404308 and:0.014961700850740995 represented:0.011153597990765474 :0.30641376518816604 +the:0.09429912997127343 sides:0.004503466404504679 a:0.0017778217960077122 of:0.0015942463148857446 :0.8978253355133285 +value:0.03148434843136723 best:0.018024503587571027 state:0.0108669380465636 same:0.00928843615934668 :0.9303357737751515 +a.:0.0553168051858814 appeared:0.03537856829444861 and:0.02043484602608318 call:0.01804208728145341 :0.8708276932121334 +Virginia,:0.20283665779173016 Virginia:0.11647940649917626 \\:0.020116505527707784 Union,:0.015808077077947 :0.6447593531034386 +that:0.27984376346840006 the:0.26369472757475293 this:0.15552251091340136 next:0.06687723318341043 :0.23406176486003513 +shall:0.2703111938963202 escape:0.15834082415185058 did:0.10714821689880283 went:0.10440853250628178 :0.3597912325467445 +also:0.3445282255038072 not:0.28631454193926276 only:0.06046618363256522 again:0.05277073317773463 :0.2559203157466302 +the:0.30908070544314015 our:0.07769913316018105 one:0.057687406445360384 his:0.057229453481085144 :0.4983033014702333 +corporation:0.06325280223417928 deed:0.021458987648104454 side:0.019529498847882173 formed:0.004947025418374408 :0.8908116858514595 +for:0.11428463267853027 and:0.09518691234416361 heard:0.06599867812458048 or:0.06043324029821581 :0.6640965365545098 +the:0.029655006781744885 also:0.020365134108315835 one:0.02024543457767223 ready:0.019014916380048503 :0.9107195081522186 +a:0.8921132843997402 each:0.04822540274419369 the:0.03275871346888795 these:0.01732231069744851 :0.009580288689729674 +the:0.41976724023098255 he:0.12565642508292393 a:0.09560472319699508 they:0.07107541247579383 :0.28789619901330454 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +Church:0.03385962125906493 world,:0.03333578198725493 people,:0.02796622495727056 State,:0.026330119378749208 :0.8785082524176604 +it,:0.09860537960030558 acting:0.08246818291602215 being:0.051939864346984714 and:0.024271541099498934 :0.7427150320371886 +second:0.14969133696198392 man's:0.05723462383431755 water:0.05714693019234431 executive:0.055235726490497995 :0.6806913825208563 +a:0.6251043954092265 the:0.21643742219472595 this:0.01752788260206298 said:0.01585150560084851 :0.1250787941931362 +the:0.5131644667187474 a:0.16152392469152255 an:0.04430333584762676 n:0.03369691905998134 :0.247311353682122 +premises:0.13589853051323736 and:0.05186748573882228 which:0.030965952056901107 I:0.027186122767819995 :0.7540819089232192 +tho:0.5929288684354698 the:0.3460884388015109 The:0.01324224129893668 this:0.006621454472951266 :0.04111899699113121 +the:0.07866664699171033 and:0.07568020287543946 of:0.07482289745705537 to:0.03444362742850287 :0.7363866252472919 +when:0.2134306854503835 When:0.14687481577853329 This:0.07901171075249504 which:0.07746735701646337 :0.48321543100212483 +t:0.5154541808378442 held:0.04306313538844815 are,:0.040738764108066094 immediately:0.03331865340042049 :0.367425266265221 +and:0.078984097877451 boy.:0.04368186061595324 girl.:0.03663254073450293 Mrs.:0.02450912421351367 :0.8161923765585791 +the:0.5031305529316007 which:0.18262618285918605 his:0.06853106809701756 a:0.06144199841222758 :0.18427019769996814 +the:0.2922556708520993 his:0.04209523672021976 Book:0.04155346661455404 be:0.03884809553260788 :0.585247530280519 +of:0.6867469119133702 to:0.09375681818503566 by:0.0707383903041688 along:0.0318602788287652 :0.11689760076866008 +the:0.3608394834178442 a:0.12949845817215272 tho:0.08565022324466204 in:0.04582442784904753 :0.3781874073162933 +and:0.10676267805651096 of:0.08445798374890881 the:0.08346045213053252 to:0.04265836724318309 :0.6826605188208645 +with:0.4033503760302947 to:0.2089904081237002 for:0.1692954407358395 on:0.11451949918632283 :0.10384427592384268 +merely:0.2588560510664419 in:0.20625421473615624 by:0.15566575379568906 from:0.09085851121780965 :0.28836546918390316 +two:0.8537759937494255 Two:0.04324732637946548 of:0.007078554733104453 I:0.0034696986591280145 :0.09242842647887668 +mortgage:0.7633868968468945 mortgage,:0.22662075631535344 city,:0.0003659979324365433 county,:0.0003150087016928585 :0.009311340203622622 +the:0.7483722046598874 a:0.04305616197194371 tho:0.027715708378830573 said:0.024583847718289698 :0.1562720772710487 +on:0.4670452306102715 in:0.4017947346540988 at:0.08193604487149345 by:0.020514548281857455 :0.028709441582278755 +me:0.970169379753388 him:0.009453914473513434 them:0.002829859963049161 it:0.001828495303338341 :0.015718350506711137 +part:0.3060150329824408 top:0.03757339739791363 side:0.03577512004099103 night:0.024372464012149028 :0.5962639855665054 +of:0.9002545787770596 to:0.09267749094295047 ot:0.002882790797700472 when:0.0023856751592655663 :0.0017994643230237798 +the:0.7554140118095154 his:0.08087873227362913 The:0.06186547202877123 a:0.05732011599018824 :0.044521667897895904 +and:0.18718177664483457 The:0.17359421330379035 were:0.10643725339544403 he:0.10445727277468299 :0.428329483881248 +and:0.046181779284862674 is:0.032926630928413005 or:0.01990457595732298 was:0.019401097382285327 :0.881585916447116 +the:0.14604815448707587 bo:0.1028815415007656 be:0.06944881128897257 two:0.045770755879238734 :0.6358507368439472 +tween:0.6598083381057653 fore:0.17470155302890886 ing:0.023165389676999635 the:0.01897076466279475 :0.12335395452553131 +the:0.22905327995661218 in:0.1781727682107987 th*:0.09504973033854364 are:0.0799676791436574 :0.4177565423503882 +with:0.3277179342669803 such:0.07961264900755612 had:0.05828982624252039 that:0.029593633630852458 :0.5047859568520905 +was:0.07760531705175913 came:0.07063411036789694 and:0.01352108194926837 largely:0.00760201955439237 :0.8306374710766834 +in:0.4760956723912449 and:0.05372749382698542 to:0.030829805445616813 tax:0.030661721515334594 :0.4086853068208184 +the:0.9844753167339376 an:0.013112153610059744 some:0.001518423664258376 tho:0.0004516955780117387 :0.0004424104137325718 +ho:0.10163565757873297 the:0.030902223695544306 of:0.01976941016299572 moving:0.016366876848223914 :0.831325831714503 +business:0.1057723894065962 man:0.05408687598809644 morning:0.03904739457615489 air:0.0201323003819648 :0.7809610396471877 +the:0.6020994106902765 a:0.16495919073010729 that:0.08313058447091841 every:0.01791980480488704 :0.13189100930381076 +is:0.32062146033224587 and:0.17612233061299068 of:0.008197871038382067 a:0.005558242024598227 :0.4895000959917832 +of:0.9937277925171498 said:0.003912866168584496 ot:0.0013697331903618605 ol:0.0006918285982854869 :0.00029777952561828877 +let:0.41828643402203436 for:0.19437758698208463 save:0.09304594674062733 to:0.08582100719914051 :0.20846902505611323 +filed:0.48595340093735706 and:0.120163416774022 in:0.10354065264301335 to:0.06781208788275143 :0.22253044176285625 +think:0.4266107646360014 said:0.3680254475554187 hope:0.046761916726859504 found:0.04551358083875362 :0.11308829024296675 +be:0.8766401627232218 have:0.025984214220793483 he:0.009583496041793106 cause:0.005559372416049879 :0.0822327545981417 +April:0.9263324546424987 December:0.036265893001904526 March:0.021150632878213938 and:0.00328706423880139 :0.012963955238581387 +be:0.8777462853064864 have:0.022413426982985655 the:0.015765419924675096 bo:0.012616631193044998 :0.071458236592808 +not:0.41802532087115185 But:0.22144256685122776 that:0.13297373494178874 and:0.10722312024499385 :0.120335257090838 +with:0.2597123531366347 and:0.05870985328521406 against:0.015773843149966858 the:0.0143969890873269 :0.6514069613408575 +Congress,:0.6167096771305547 of:0.01897401147091244 the:0.0068510130639370444 building:0.005888978500722804 :0.351576319833873 +William:0.1954983759286173 James:0.04962899660694489 John:0.044876932191354885 Wm.:0.03046942074915946 :0.6795262745239236 +that:0.5901802194424616 That:0.21391362452160292 men:0.01146379484705312 James:0.008729183266013222 :0.17571317792286933 +and:0.08270098295384487 year:0.03548764242393511 the:0.024706384847447894 to:0.02438471718235817 :0.8327202725924141 +it:0.19670315250038017 in:0.11808847205384751 ed:0.07120557283474366 only:0.07052229100922171 :0.5434805116018069 +are:0.25324586549851047 death:0.14037225195595734 men:0.05762802017462185 and:0.052840192901003995 :0.4959136694699064 +American:0.12959797296017322 people:0.05674028979289415 people.:0.054631244708771495 people,:0.029012821800006534 :0.7300176707381545 +soft:0.23782317151559523 strong:0.03442270394724911 high:0.005745563997114249 rapid:0.0021924031461052467 :0.7198161573939361 +Congress:0.01568393377265061 whom:0.007459868467394714 the:0.006774797084499981 congress:0.003914935551135546 :0.9661664651243194 +a:0.1757910092709027 official:0.04307662559709666 on:0.03874211227139057 attempt:0.025708636292798747 :0.7166816165678113 +in:0.3905524997796359 none:0.30828388823413844 the:0.10468203321255141 a:0.05871573216161995 :0.13776584661205438 +of:0.7062423060414333 by:0.09752908561318419 to:0.06215260013128078 on:0.0584792295488288 :0.07559677866527297 +the:0.5003467275464941 a:0.03223171489346315 tbe:0.02345578272730957 tho:0.0224747030927366 :0.4214910717399966 +it:0.6214910252567162 he:0.05519815236309684 any:0.04330718139181927 there:0.038139564175275024 :0.24186407681309263 +United:0.9114419073760723 Southern:0.01075021358562831 Northern:0.004280448627426282 several:0.00405116813746356 :0.06947626227340963 +the:0.24843904831582508 tbe:0.08789672218316069 Central:0.060190345989530505 North:0.05814287092234961 :0.5453310125891342 +of:0.32032284646218484 by:0.1421282644137034 aud:0.07750041329506689 the:0.07049408601750039 :0.38955438981154455 +Union:0.23169631890193015 old:0.046371912153582884 re-:0.006749885703718953 lie:0.006573707604459169 :0.7086081756363088 +and:0.22461892611181025 at:0.02414058554118014 up:0.01550216671264764 in:0.01077802629553981 :0.7249602953388222 +California:0.6356039255373873 Mexico:0.009786115281228906 Baltimore:0.007117368926751335 two:0.007049076845424559 :0.34044351340920787 +as:0.8111198504564062 the:0.02737910956699789 from:0.02450301530774214 superior:0.01868747219984635 :0.11831055246900749 +It:0.39367367364146166 it:0.2061486327274997 This:0.049833743888076466 which:0.04289081630781622 :0.3074531334351459 +ed:0.20317746482416868 that:0.1224237100993679 he:0.12203984440780123 this:0.11359830880934556 :0.4387606718593166 +Mrs.:0.23425775584908626 from:0.014673443863721908 Capt.:0.014546557057679595 W.:0.014044052392705796 :0.7224781908368064 +and:0.9792644927148024 dry:0.009680442692542443 the:0.0032988140913382162 white:0.0022283208850459014 :0.005527929616270968 +fair:0.1499096971724596 tender:0.07473639629369665 cheap:0.0707904298555601 large:0.0646757665265861 :0.6398877101516974 +at:0.8998311611292366 for:0.02619840289518818 in:0.022389214966957997 to:0.010673978095318323 :0.04090724291329899 +pre-:0.36692686321764134 not:0.14750672208356297 the:0.1295803142972296 for:0.0841468434958843 :0.27183925690568184 +which:0.4204162095052079 of:0.07960255030611302 nature:0.06623674852646864 to:0.027521667250551926 :0.4062228244116584 +the:0.8320936414208492 a:0.0632559130017094 tho:0.03052633675432382 tbe:0.029277297331199617 :0.04484681149191788 +and:0.23387246831763325 without:0.1653131839099111 Mr.:0.10784597435108187 to:0.08223212022000331 :0.4107362532013704 +the:0.3612472830875255 12:0.16160518964890475 a:0.015023022350726091 all:0.01403411814736648 :0.4480903867654772 +and:0.08293410524686215 12:0.04637763044175728 14:0.0345756903327999 being:0.022897901222660916 :0.8132146727559199 +time:0.43938277625709204 service:0.1272608323183617 address:0.09901110222293336 distance:0.04385827151535891 :0.2904870176862541 +cor-:0.22559680455183814 claim:0.10065563289918814 and:0.059893037532766175 district:0.025961954820523676 :0.5878925701956839 +and:0.0369290002759603 State:0.031202512861055704 ing:0.02234401170665862 train:0.010571638276139243 :0.8989528368801861 +wo:0.9036086233099695 they:0.05788852910946563 we:0.004393835761025805 the:0.002106211121625602 :0.03200280069791347 +besides:0.33135997487532737 and:0.1729951398975774 of:0.14986923465977217 yet:0.12823208269592082 :0.21754356787140228 +right:0.3376123662495271 desire:0.13159209102189315 reason:0.10602535601915432 power:0.08267173276766021 :0.3420984539417652 +enough:0.09722246116432882 necessary:0.057167504768685797 e:0.04571593213185619 as:0.044522835066535316 :0.755371266868594 +building:0.0541510551685162 Is:0.04598758719499753 home,:0.04088068692717502 line,:0.0297563464190202 :0.8292243242902909 +family:0.05080471908437547 Prince:0.033357711184682615 people:0.025800160248585523 there:0.02256432080873231 :0.867473088673624 +pany:0.010934050336573528 mission:0.010329816265233636 ing:0.01028772953979333 petition:0.004158930696548947 :0.9642894731618507 +house:0.8856045882211052 that:0.04877860365717025 3:0.01618249234908885 which:0.015581973394362379 :0.033852342378273496 +and:0.0363240041776429 which:0.031851602887184804 that:0.028697994842863367 It:0.022446910636658924 :0.88067948745565 +probable:0.0446906424544336 proper:0.03247475863303427 the:0.032263986406068985 best:0.03151465980206529 :0.8590559527043977 +one:0.012518105510136365 mail:0.007818744481964943 got:0.007104311239678816 received:0.006492231819720245 :0.9660666069484996 +his:0.6260843990491698 a:0.10341836496770947 the:0.07857294485932312 their:0.07243772548423476 :0.11948656563956281 +refused:0.15005336749272094 seemed:0.13209372943539513 him:0.12587225302026073 not:0.08056307490866119 :0.5114175751429619 +of:0.5663515779573607 in:0.11142972941491504 to:0.06355852215044329 with:0.03847314243489077 :0.22018702804239035 +with:0.6798435393863523 in:0.21398003260533197 about:0.02912726094110112 of:0.028138996772431497 :0.04891017029478322 +to:0.8180630357160501 up:0.06542968864600637 that:0.04915810187956302 and:0.0406245384660199 :0.026724635292360587 +committee:0.1254946364405766 horses:0.055758631859877714 moment:0.0466267290726402 forces:0.025848294339042153 :0.7462717082878633 +back:0.3938886694646282 down:0.1608781724868849 long:0.11159533314536775 out:0.07110229113869133 :0.262535533764428 +Mr.:0.9358206314869281 The:0.010051929204837795 Judge:0.009288630753085543 If:0.00635287673830381 :0.038485931816844544 +In:0.48899264271608034 that:0.26015517000899924 to:0.046843014851283275 in:0.04682087486959051 :0.1571882975540466 +in:0.13078498842459985 of:0.07053197403086019 or:0.060725786686810744 ter:0.060591652135405676 :0.6773655987223237 +of:0.28329998026727926 and:0.1007685643047893 the:0.057555629184082455 The:0.029593965752486188 :0.5287818604913628 +right:0.061844297512232 consent:0.035206926821210016 use:0.027983486364476656 information:0.01098231171143161 :0.8639829775906498 +will:0.9206328144492927 may:0.030446206109808405 would:0.029485452664885572 shall:0.014950459930409082 :0.004485066845604264 +own:0.15255231207591394 constant:0.07186834610369859 distinguished:0.07004073002457332 mind:0.02653355716398374 :0.6790050546318305 +of:0.8479320461917045 on:0.04208891800875341 ot:0.0356755884652633 and:0.02689293887814747 :0.04741050845613121 +make:0.2205584369487829 be:0.15430647200621225 get:0.07410956892704351 have:0.03625539511386972 :0.5147701270040916 +It:0.2839704749295528 it:0.1909268939493915 This:0.11754850070807503 which:0.07573733304112723 :0.3318167973718534 +is:0.16665720377983648 Although:0.14423797673039424 are:0.12977402751167116 and:0.09867575673903543 :0.4606550352390627 +do:0.4267145819704777 get:0.11303416194499448 be:0.07033108313868573 know:0.0544573143757283 :0.3354628585701139 +as:0.09044120359344114 a:0.06613656619698043 things:0.03973098596035135 work.:0.03374066670767821 :0.7699505775415489 +of:0.9717016795611837 and:0.009288500174565114 or:0.004418177636301659 ol:0.0009256627598242302 :0.013665979868125247 +is:0.393887171419602 when:0.2892181877286102 with:0.10142884668247254 of:0.09755788327661288 :0.11790791089270244 +The:0.06680539040012037 .:0.03435379334444573 I:0.03286555557857697 Mr.:0.0324967517761847 :0.8334785089006722 +of:0.5076666024269081 around:0.34584686373602885 in:0.0003014990562679035 between:0.00017582335162222396 :0.14600921142917303 +British:0.07492994607394514 most:0.06440431608964245 present:0.05735451636151627 said:0.04621798172865178 :0.7570932397462443 +the:0.19474793763736373 and:0.0957652270761556 a:0.055298531338398065 The:0.04151144113006673 :0.6126768628180157 +be:0.5304924760897414 further:0.07140316854587285 remain:0.06116882283088423 the:0.049445472975782334 :0.28749005955771906 +the:0.5926007496351324 The:0.08513866897750784 with:0.05314102790616163 of:0.033308242909983604 :0.2358113105712143 +difference:0.40716805041563336 condition:0.36211830392421634 trouble:0.018644913860626132 provision:0.017556352558009778 :0.19451237924151443 +the:0.18313427774098076 from:0.12416191187056598 give:0.10651571780512865 leave:0.10505011172455395 :0.4811379808587707 +say:0.18977009240720913 extend:0.1744279536673214 help:0.1303861550239576 reply:0.053354080920444996 :0.45206171798106687 +Mr.:0.5426057186503997 George:0.1552417044206242 the:0.12381178067957548 a:0.06647265604261335 :0.11186814020678744 +or:0.8787684394975844 them:0.007181908024675829 and:0.00696820975620661 courts:0.006180787203137069 :0.1009006555183959 +per:0.23624377428934726 of:0.14796924514508458 in:0.08133076080650468 The:0.08114591481584524 :0.45331030494321833 +in:0.22158543314457307 of:0.14269227623478345 and:0.10147790521139766 on:0.0819677805784537 :0.45227660483079213 +should:0.44224020003280307 can:0.2850179680914361 will:0.14632903485725832 would:0.0755232514993932 :0.050889545519109264 +80:0.08417522391053849 60:0.0794783334372887 25:0.052883462695355765 24:0.0381523247412039 :0.7453106552156133 +the:0.4797867248813597 tho:0.03704971482658472 a:0.02693399345326547 his:0.019602862517874513 :0.43662670432091555 +saw:0.8681109464519454 heard:0.08559626664942799 see:0.024709043253802625 let:0.0027709863350376357 :0.018812757309786248 +know:0.9699236695456552 knowing:0.002967162721981043 think:0.002530631963887458 know,:0.0012188055803930556 :0.02335973018808332 +for:0.24842484445567956 by:0.18869341939720027 to:0.13269083149768301 in:0.10056530712214154 :0.32962559752729564 +cases:0.3217078167861901 things:0.2967103892257637 men:0.03139667927057901 matters:0.028428986937754086 :0.32175612777971313 +com-:0.1263408164639915 re-:0.053387909744549183 very:0.018222323642037623 really:0.015254306060045067 :0.7867946440893766 +have:0.6478628411674742 not:0.03637376372562473 be:0.02995543570849561 be-:0.02814062987236314 :0.25766732952604215 +the:0.28290734037250365 a:0.11324276782399317 his:0.04430849992210151 their:0.03834325280839994 :0.5211981390730017 +the:0.18938696914947112 and:0.15602823568607332 that:0.08966198506857753 his:0.0849917148580452 :0.4799310952378329 +now:0.3130817943792636 is:0.24051851514204667 was:0.10078444004528876 has:0.04452419045745665 :0.3010910599759444 +was:0.884513044152859 is:0.04238938583041738 that:0.023526977834073023 not:0.012706770595615242 :0.0368638215870352 +have:0.7685439500877439 had:0.1628863120334112 havo:0.021933649539843985 not:0.02107561737245849 :0.0255604709665425 +be:0.5377459928883694 get:0.2624691622933179 properly:0.1842246622209275 bo:0.002231654217324786 :0.01332852838006019 +the:0.011484136108369828 and:0.008316704793866297 of:0.0049174790789452425 will:0.004480246102681732 :0.970801433916137 +found:0.07518514047110963 brought:0.028946938365822496 carried:0.022874311558445763 worked:0.012911440172294815 :0.8600821694323274 +was:0.3401243891296677 would:0.15990492707977644 had:0.13103471002064593 could:0.08457071463272832 :0.28436525913718175 +the:0.9793518119079578 tho:0.004120139628974263 tbe:0.003384500767949461 their:0.0015174807893701926 :0.011626066905748295 +of:0.6718178317745893 ot:0.2424106194081387 the:0.01453471889062049 by:0.009984662203635114 :0.06125216772301644 +me:0.9058308643124491 ber:0.040242328750975186 him:0.029076356171365843 us:0.007456915358795018 :0.017393535406415066 +the:0.5436001923624945 this:0.06043811637299688 a:0.03975117932768241 tho:0.02526409696930075 :0.33094641496752547 +the:0.5397614962226698 tho:0.33532404740446414 any:0.0966009713819027 a:0.018850241851437764 :0.009463243139525497 +be:0.2060165586983566 allow:0.13638111795499944 give:0.05994893182249941 visit:0.053337732273822734 :0.5443156592503219 +them:0.05895628443143333 up:0.04691689688905052 and:0.045864026841902626 ought:0.04253988793366954 :0.805722903903944 +to:0.7786405310601009 then:0.03708829175591009 ready:0.03154725252637594 not:0.03126519357150148 :0.12145873108611169 +the:0.4077762319758722 &:0.14113606626449288 be:0.0809403158901098 its:0.06775720143026051 :0.30239018443926463 +to:0.6610061078619702 from:0.32680878251122636 being:0.005343634407821183 on:0.005021006080923521 :0.0018204691380588492 +within:0.11596895494841095 towards:0.08078268299147173 of:0.07257266032470815 at:0.014377782975594144 :0.7162979187598151 +to:0.3183539753541746 in:0.23027349816129358 by:0.21300274183825285 into:0.10061925435703609 :0.13775053028924272 +places:0.12275732408691774 condition:0.024017968461976492 property,:0.014499257549346155 dress:0.011942480310070192 :0.8267829695916892 +with:0.9529147343759001 est:0.0001460114706713668 great:0.00013924417266648198 the:0.00013514392284571706 :0.04666486605791625 +and:0.14697444432397516 of:0.11310947020389411 the:0.06789232380178381 Now,:0.052367244732044585 :0.6196565169383024 +the:0.7883692518736475 one:0.081430745781042 his:0.06639345757494951 a:0.03447279946817033 :0.029333745302190607 +the:0.24349421778442537 be:0.18429396168253126 his:0.05125812352710118 their:0.041225412760810765 :0.4797282842451313 +be­:0.18546993688383384 acre:0.10475925923187578 be-:0.06825110080047868 is:0.059939956551519125 :0.5815797465322925 +a:0.5212203709036196 the:0.14273463333684946 no:0.1293583547420012 to:0.10424609603727299 :0.10244054498025687 +education:0.07091614903665723 music:0.04449477394309512 life:0.0203199980195834 children:0.018161500141103282 :0.8461075788595609 +it:0.09902968349845502 them:0.07013234362225822 was:0.05668529574949408 taken:0.05422351771598832 :0.7199291594138043 +and:0.1134584128307397 of:0.08355330593685366 the:0.07157103588053393 to:0.040356013553972704 :0.6910612317979001 +and:0.25894678483608413 of:0.17057743333028264 within:0.14798896989896623 for:0.07260926528141812 :0.34987754665324905 +for:0.286377512248864 no:0.16032161214816518 and:0.0832795598527614 ing:0.05360338077765091 :0.41641793497255847 +equal:0.8577433372569091 pure:0.022090491961526165 it:0.010464325604051597 money:0.007890173759499469 :0.10181167141801375 +and:0.31704785309145433 |:0.15443815719840828 head,:0.10279547042571716 on:0.09528974630474654 :0.3304287729796736 +the:0.24042947098457906 was:0.13259825427166153 he:0.08975931051626797 an:0.07946245430315198 :0.4577505099243395 +old:0.38715532752321075 the:0.019359313143210353 usual:0.011318714339713626 mixed:0.0054408643745269035 :0.5767257806193385 +in:0.39699234015240015 under:0.12705693660086156 In:0.11969187694649977 gave:0.1196637480171153 :0.2365950982831232 +that.:0.7920934941309289 not:0.07864819986258535 so:0.025220038280732004 the:0.022414895740690458 :0.08162337198506327 +large:0.7476057205741323 largo:0.1406395252442606 great:0.04387264607042995 considerable:0.014593120684947924 :0.05328898742622907 +the:0.21735597176636673 deemed:0.0961087169053902 and:0.08199957031795155 to:0.07124569199522118 :0.5332900490150704 +or:0.046857486336218945 two:0.023265742932328408 several:0.01953467338767162 companies:0.018797125789960036 :0.8915449715538211 +county:0.03875243889244066 county,:0.03758753623408453 known:0.015165371180492694 County,:0.01219048184306037 :0.8963041718499218 +and:0.0604610794479088 nnd:0.03969216057718809 could:0.037485294080582675 began:0.036173751294756196 :0.8261877145995643 +will:0.0022444348114945504 street.:0.0016779029644595318 side.:0.0008177053955072449 of:0.0008063697068549075 :0.9944535871216837 +and:0.27556236553286995 the:0.0997088146151666 of:0.09965785339516313 to:0.04074428538033921 :0.48432668107646115 +the:0.26199597336364105 a:0.14469864680739217 and:0.08269079697819952 to:0.06325136100479539 :0.44736322184597194 +who:0.3682581164811371 has:0.1713489142128112 and:0.12027394869061074 more:0.05005771588420812 :0.2900613047312329 +be:0.686063781482441 he:0.27281302635708987 bo:0.023507071979147948 have:0.004949943723341188 :0.012666176457980228 +hoped:0.23063607533682096 desired:0.17074843378776586 said:0.017360017253436843 true,:0.0127895407235284 :0.568465932898448 +course:0.2875040948082999 name:0.13717897266830892 event:0.09749616002429617 presence:0.0679256859172231 :0.409895086581872 +and:0.11709841126656202 of:0.09179736833719263 was:0.06470387214585487 the:0.05852413849729515 :0.6678762097530955 +to:0.810020654246641 by:0.09332585930763278 the:0.031230681508971684 on:0.016563150178125027 :0.0488596547586295 +tie:0.22289679881474891 the:0.04879913691162124 chains:0.047788654701891746 and:0.017553271205331525 :0.6629621383664066 +is:0.7421672305526851 was:0.17401341552974114 Is:0.035024868484688616 ia:0.014440914312617 :0.034353571120268295 +dis-:0.1660244777970374 a:0.08291344721305803 record:0.05748263417380052 action:0.0281320412196853 :0.6654473995964187 +to:0.1742150852645902 for:0.09701805687039775 by:0.08622190694508035 of:0.05905517935463558 :0.5834897715652961 +entirely:0.6082287755355693 more:0.05590953526359409 very:0.040713899334841694 perfectly:0.0291068245404234 :0.2660409653255715 +do,:0.22476153506632018 refuse:0.15727896136735262 be:0.12476366158374562 learn:0.11203261841442494 :0.38116322356815674 +of:0.5870098008513701 In:0.11715817747459897 was:0.08836287160993127 made:0.06494380376412436 :0.14252534629997538 +that:0.37351840821933713 when:0.1814268578811192 as:0.13663361643924732 and:0.043314284905834666 :0.2651068325544616 +the:0.15811178745633697 say:0.1331157231558436 one:0.09750876136759334 which:0.09403584883355086 :0.5172278791866752 +tween:0.3985030891565642 cause:0.1449552349999478 fore:0.11425381274491163 ing:0.025298712702559366 :0.31698915039601694 +b:0.1827226975182141 forms:0.03244286686018021 such:0.0245698425851084 and:0.015932764035799123 :0.744331829000698 +fifty:0.009935965748132384 twenty:0.004848973622335542 200:0.0009729602727219159 four:0.0008858814820079653 :0.9833562188748021 +and:0.18699833952100972 he:0.15928939133800366 I:0.1584075329294967 He:0.11217149872529596 :0.38313323748619393 +and:0.33238134749421727 he:0.21526559567437006 and,:0.16939041954584136 ex:0.16734009762365812 :0.11562253966191324 +In:0.019081487225318317 ground.:0.006580796180119006 city.:0.0061743222197652645 country.:0.0035815137934913383 :0.9645818805813059 +He:0.4422184184570073 he:0.16327386351363107 It:0.12827709150681557 and:0.07905703038532164 :0.18717359613722426 +and:0.28492929487952945 of:0.10158113240247019 were:0.07405614331943938 thence:0.0636366302745401 :0.475796799124021 +survey:0.13818567354333133 northern:0.11638236528620262 a:0.10702048481586061 the:0.09542107187807755 :0.5429904044765278 +the:0.13061198286821987 election:0.08178837672940681 very:0.06280258181492343 year:0.04908851397710536 :0.6757085446103445 +interests:0.1205259573178742 plaintiff:0.05919067939427458 President:0.03337077691199819 original:0.027023910664562563 :0.7598886757112905 +person:0.10289323692527887 meeting:0.03380875125134984 convention:0.02496301827162521 special:0.02103737587903735 :0.8172976176727087 +At:0.5266663720030045 at:0.27903423868684185 of:0.10865108130570705 in:0.02337748350341802 :0.062270824501028645 +the:0.025183382622744225 field:0.005128323351601909 laws:0.003575624122958304 money.:0.0027650369652973783 :0.963347632937398 +a:0.3658259990441695 the:0.07941694623652307 individual:0.0430908784197807 so:0.043035372873619936 :0.46863080342590685 +out:0.203152041047627 aside:0.13580628657003166 off:0.0778167972633561 up:0.04982955361937465 :0.5333953214996107 +and:0.035094041144463003 is:0.03431130523854738 of:0.034096707287711386 was:0.02828843177408829 :0.86820951455519 +If:0.22448029852314932 now:0.05955752092122674 more:0.05633344781201315 that:0.019647301511964508 :0.6399814312316463 +and:0.42413747988928063 that:0.212202067362812 by:0.1825018275018388 will:0.08349399590166925 :0.0976646293443995 +tbe:0.2725505960619219 to:0.17755991477382074 at:0.12044759528303205 the:0.06680107849602437 :0.3626408153852008 +and:0.10865319998916768 the:0.09173433408969321 of:0.08976165037875783 to:0.04422707077546031 :0.6656237447669209 +a:0.09358671692979513 equally:0.0709809659243791 as:0.06288196235516934 the:0.057640642619616 :0.7149097121710404 +shall:0.2335345846428204 power:0.027007341750261545 !:0.014074891471946927 again:0.011454558878006518 :0.7139286232569645 +of:0.18872520921710603 with:0.12215833988409588 to:0.10089584904747333 in:0.098789897300634 :0.4894307045506909 +and:0.2861796621144677 in:0.06324792835284541 the:0.05974872401036059 of:0.04619192446555683 :0.5446317610567697 +and:0.42187250753838595 of:0.1274624197569512 showed:0.08102905485153068 shows:0.053007439148510145 :0.3166285787046219 +the:0.7376984411110259 our:0.06784202848725089 tho:0.06144091159109017 a:0.054078275934355456 :0.07894034287627762 +.:0.09348199008643206 F.:0.08479119130131708 Mrs.:0.04025530066740158 -:0.03409582591038371 :0.7473756920344656 +of:0.340571214143875 the:0.20410840641634154 as:0.12205914763817878 and:0.06202298595628562 :0.2712382458453191 +Young:0.09398619214035273 Johnson:0.007296785183633045 J.:0.0012134941380387212 M.:0.0009973521812549635 :0.8965061763567208 +the:0.47199247040959175 ns:0.0718913920943141 one:0.028086070952726642 Mr.:0.006243856616792676 :0.42178620992657484 +effect:0.9396511752615799 fact:0.028932399437596755 conclusion:0.0027737178057105007 end:0.002040893825516974 :0.026601813669595874 +and:0.16507564853449774 of:0.13641564604381554 the:0.06335913545785646 to:0.04765745603328515 :0.5874921139305451 +that:0.12755681445465547 and:0.1232769209933101 but:0.10341823327403274 as:0.10049050264793183 :0.5452575286300698 +These:0.5735468775937098 They:0.20088179060959077 which:0.020704017937757627 Here:0.01924515981623914 :0.1856221540427026 +to:0.3460167036920818 in:0.18247977009970828 by:0.1660820463927775 the:0.12881686889905702 :0.1766046109163754 +of:0.8509649114721276 ot:0.10234721592456104 ol:0.0044392831655158515 or:5.743261765583791e-05 :0.04219115682013957 +the:0.029593553806049114 that:0.0038723112198848883 their:0.002595400484442369 this:0.0009197911377536758 :0.9630189433518701 +the:0.5209116505756519 a:0.05768668567784371 be:0.040234064236856486 his:0.0395688323674532 :0.34159876714219467 +In:0.15011448949467307 in:0.13521956947163796 down:0.09297645812007968 her:0.018868023589325888 :0.6028214593242835 +the:0.13040971416961897 growth:0.040662274297394774 interest:0.03058721646767227 it:0.025527261735172654 :0.7728135333301414 +and:0.28038998153357453 public:0.023781758910970636 the:0.0234924888698972 tho:0.009103979678143866 :0.6632317910074136 +circumstances:0.3346229911219278 committee:0.22070741447712902 should:0.05172104842087284 to:0.03867396564369694 :0.35427458033637327 +there.:0.03533050244838167 in:0.0014434223133152294 of:0.0012202339440838374 by:0.0009326948338719769 :0.9610731464603474 +A.:0.9878228649922925 A:0.008093254636164228 a.:0.0010133576828103257 .:0.00018845289330939488 :0.002882069795423558 +he:0.3088128839706846 tbey:0.08542116960908706 I:0.0842681805631435 they:0.06763744800248399 :0.45386031785460096 +with:0.2414380406566811 of:0.15522891735624222 time:0.026408340805419823 end:0.008014086538385158 :0.5689106146432715 +the:0.4015531929649819 you:0.14158044088115238 it:0.11883026470098974 him:0.1046901516434138 :0.23334594980946205 +war,:0.04192983033964014 man:0.027588557997566703 lot:0.016065548526089348 and:0.009086275653958968 :0.9053297874827448 +of:0.31122073134394684 and:0.13405503989111353 to:0.1233786855283223 in:0.09922291108988615 :0.33212263214673127 +serious:0.050305142526921774 much:0.022782581417514783 in-:0.010740934699825625 bad:0.008345874773580503 :0.9078254665821571 +the:0.013947099366700005 it.:0.011426629937675143 him.:0.0035991630367543984 good:0.001850702255590322 :0.9691764054032802 +the:0.09328946122003152 to:0.06221684436565655 and:0.05881124691491848 of:0.050047105929409745 :0.7356353415699837 +new:0.14358527265812213 public:0.037489710115811 longer:0.024532138159554368 more:0.01986124899384411 :0.7745316300726685 +and:0.17949830521238094 H.:0.06707609082249916 A.:0.06076246337606418 W.:0.051857017360151324 :0.6408061232289043 +few:0.047127026362296626 little:0.043194451391538706 young:0.031504440949989755 large:0.019479047501445173 :0.8586950337947298 +of:0.6018919757286022 that:0.1129416204545986 by:0.097490122302132 with:0.09619782977554621 :0.09147845173912081 +opened:0.127255184554624 a:0.035229537967644275 how:0.02153202804534015 feet:0.02056567288880396 :0.7954175765435875 +time:0.029983944646404873 result:0.019252352901607796 course:0.017196156495680254 death:0.01680933418535722 :0.9167582117709498 +certain:0.02395994759376046 true:0.02088054691276777 whenever:0.013439538318876416 time,:0.0109627869115317 :0.9307571802630638 +series:0.15812789159902282 line:0.10833375307620836 hours:0.10426798523554325 train:0.10184316921442581 :0.5274272008747998 +the:0.4541965516706518 a:0.09869370209802142 those:0.07975831250855842 General:0.054701216635565285 :0.3126502170872031 +government:0.04639831034615331 French:0.043425241789616 South:0.03839147844960345 States:0.036637929842870905 :0.8351470395717564 +the:0.8484521752738168 its:0.10843955238201608 a:0.012247103763275615 this:0.005611332125706495 :0.025249836455184752 +people,:0.07335406631864579 States:0.04170037310489658 counties:0.028872910591745113 authorities:0.014298919855681224 :0.8417737301290312 +over:0.34588537017481646 off:0.23496594694760772 out:0.10738529116663674 to:0.05739151654528226 :0.2543718751656569 +the:0.7395655524949727 The:0.17370243735074392 upon:0.02962075963226862 if:0.015536161798462065 :0.04157508872355272 +of:0.13980315638073618 and:0.07810650634279333 the:0.05803406131377488 Mrs.:0.03660481262722133 :0.6874514633354744 +set:0.21544066402748313 called:0.0920346288702698 looked:0.057287326051631296 made:0.0048471885847982885 :0.6303901924658174 +young:0.7383565666639424 two:0.06888838247143218 liquor:0.01413997678992287 steel:0.00971965645642352 :0.168895417618279 +the:0.48075554413494836 a:0.06193967638448899 his:0.05630796669524524 their:0.05284789597049411 :0.34814891681482346 +in:0.17844882089871475 to:0.15939658272009063 for:0.10091857957981745 from:0.09040770878681648 :0.4708283080145607 +of:0.47620013552726925 and:0.0490324666631795 containing:0.024551460286235723 numbered:0.01800609466142783 :0.4322098428618879 +the:0.6675753689901777 a:0.04193374989962267 tho:0.03201816735296839 be:0.025800250161805784 :0.23267246359542562 +was:0.16968864937805495 is:0.16789095769821308 the:0.15375744128388147 are:0.09473210173772643 :0.413930849902124 +placed:0.05519059229009108 put:0.03601870809000216 made:0.030036809978732322 done:0.01841409932084993 :0.8603397903203244 +people,:0.07690196211363236 President,:0.02066370988378599 North:0.018178155358281385 State,:0.015496496483650103 :0.86875967616065 +and:0.2874577487771425 the:0.1659565555615569 as:0.1128982090619039 n:0.10627480478921766 :0.3274126818101792 +who:0.4298666210340012 them:0.13677580577374715 which:0.08630750743049694 what:0.05709444871099767 :0.289955617050757 +he:0.40836562090881057 you:0.18428582916083025 I:0.16208799026118986 they:0.12356919448062258 :0.1216913651885469 +the:0.26440686597321783 In:0.17354824864677104 «:0.013742505601897432 H:0.006993378899386999 :0.5413090008787267 +feet:0.11618292454196708 chains:0.03725626439356932 and:0.022713558300028643 it:0.015103205117643322 :0.8087440476467914 +national:0.07452391410648361 most:0.07038751569630328 highly:0.06193938697521082 Washington:0.04884067746331687 :0.7443085057586853 +point:0.008892123253892499 hall:0.008053975637687727 city:0.00622540967203204 station:0.00495263111102329 :0.9718758603253645 +a:0.22312412560476177 the:0.08479422776140148 on:0.06315488149390443 I:0.040574135404964025 :0.5883526297349684 +been:0.44853058113689254 no:0.06892886498448224 a:0.06091010317350937 their:0.0590276482813486 :0.3626028024237673 +to:0.17749211745913357 and:0.13060396687284226 the:0.04497219721627315 of:0.04320976601504198 :0.6037219524367089 +that:0.3267890497223671 and:0.16694919919794377 since:0.10786129788940982 where:0.08715457639996206 :0.31124587679031707 +that:0.880556156594796 and:0.042220082781998555 of:0.017799014509526492 or:0.013344348506352952 :0.046080397607326004 +in:0.18682491046865513 of:0.16394226520944732 by:0.09637364667210904 In:0.08721762343019789 :0.46564155421959075 +the:0.7777606070965974 this:0.043013705789005 tho:0.03991804901019265 our:0.03553278523628939 :0.10377485286791546 +other:0.9990787120049719 the:0.0005887851467197277 their:3.8939101067671906e-05 his:3.0553927285791105e-05 :0.0002630098199550714 +the:0.9342823439201253 a:0.03381155813944026 their:0.030996847564599184 its:0.0005748224162198809 :0.00033442795961541696 +been:0.28981135426167937 the:0.1684883509224775 a:0.10232511255888989 such:0.05308997723441727 :0.38628520502253594 +any:0.5868389208586487 the:0.055217254285453446 her:0.03232943292393492 One:0.024850903909752222 :0.30076348802221076 +and:0.03269375638819089 tion:0.02217389275522426 County:0.021894625305630043 county:0.02132923694021296 :0.9019084886107419 +one-half:0.16194031720267846 one:0.01965231442992273 the:0.018920320466185386 a:0.018494690460337432 :0.7809923574408763 +that:0.8590670433172867 if:0.029465913861614575 are:0.01271814983172971 above:0.0047131406904832515 :0.09403575229888582 +appear:0.2991779738182339 put:0.09433304839772852 be:0.043196281304097514 him:0.02553744425486672 :0.5377552522250733 +of:0.7198559119268904 for:0.1461686163293037 was:0.04173468881010498 the:0.03136904045536203 :0.06087174247833903 +I:0.19614083258710943 it:0.17122989815509426 he:0.16095433280684882 which:0.09244084558711789 :0.3792340908638295 +so:0.17368859795173094 came:0.1289835724692415 the:0.10589643903144857 settled:0.05867084903891378 :0.5327605415086651 +and:0.08885688848163624 mortgage:0.0720460275569178 14:0.06092021772259067 of:0.06058266832716644 :0.7175941979116889 +his:0.38910715585635564 Mr.:0.22562397346957225 the:0.11849020081018512 Senator:0.036063304481922735 :0.23071536538196438 +of:0.08862545662590521 and:0.07849486353153898 the:0.07339911435889446 to:0.031975342941151834 :0.7275052225425097 +of:0.6306628803652082 in:0.08987791088590197 and:0.08054704692440802 on:0.04331876059294977 :0.1555934012315319 +lands:0.4024292881929144 rights:0.24476743536764806 license:0.057248920903493344 relief:0.00462335160601105 :0.2909310039299331 +and:0.39935943012803254 In:0.19763946707742555 the:0.11545532999645843 they:0.10314504807461022 :0.18440072472347316 +has:0.8121495764324252 from:0.10578753775981399 till:0.013062975559386744 or:0.01196736047818369 :0.05703254977019017 +of:0.17011720953894274 and:0.14769400449282136 or:0.04826380397892968 to:0.0422656322142899 :0.5916593497750162 +the:0.4666080745783522 any:0.18134366020679174 its:0.04367081243291234 a:0.02867981852695301 :0.2796976342549908 +know:0.049293138521038726 have:0.04178310177418823 had:0.024705007203074034 and:0.021129139242362777 :0.8630896132593361 +do:0.3770295045250406 of:0.10417695665847013 way:0.03139181866789538 century:0.02490522925096543 :0.4624964908976285 +and:0.31881140259553287 of:0.04098346580856738 any:0.028808291672267117 than:0.028691305280990682 :0.582705534642642 +decided:0.46759281366311645 supposed:0.1614758519682694 necessary:0.11469618570639414 proposed:0.08702745279691926 :0.16920769586530077 +month:0.1442716364326253 mouth:0.003933495658555632 pound:0.0015332938178553945 year:0.0011749620715943015 :0.8490866120193694 +of:0.39291230468923655 for:0.18723863797909462 lor:0.015354348616312198 Justice:0.012317939820866718 :0.3921767688944897 +and:0.2938447379444675 the:0.2263952478257775 The:0.16414920559161558 a:0.04642997796973908 :0.26918083066840026 +.:0.03656947165916946 -:0.02880030581319794 i:0.0271809519117589 the:0.025795246983959342 :0.8816540236319145 +a:0.9812169198886759 any:0.007631817424208754 the:0.004840963740318833 for:0.0026479109710073616 :0.003662387975789142 +or:0.9496305444073193 and:0.019634897893905188 to:0.018403036678901002 ol:0.0004640351120866545 :0.011867485907787904 +blood:0.00709326414003587 stomach:0.007059241700890447 peace:0.006679685670416845 rules:0.006233355958559588 :0.9729344525300974 +1st:0.05281627175299214 place:0.038873643301910454 citizens:0.037617507973094044 relief:0.026539503632034424 :0.8441530733399687 +and:0.23826848766864983 who:0.211932198851051 lias:0.1301232926008698 has:0.11880864308655541 :0.3008673777928741 +it:0.07518480440592347 It:0.06911702312731098 and:0.049360314665022255 He:0.04819133346798819 :0.7581465243337551 +a:0.45692529342364185 an:0.2112654844712188 the:0.10196371535153563 and:0.032709756951193845 :0.19713574980240978 +her:0.4355164211892187 the:0.23086637217043954 a:0.06311149732793368 his:0.03386817752546502 :0.23663753178694302 +eight:0.35700157139745153 ten:0.3510744944801198 six:0.1358635466755338 five:0.08966162884632979 :0.06639875860056503 +the:0.5676426258323236 his:0.11433778360585621 opposite:0.04235996202394093 her:0.038434354951544576 :0.23722527358633472 +of:0.7910494964040823 door:0.06903421567689204 in:0.03211754010163391 with:0.019072662136940206 :0.08872608568045154 +of:0.12302512382168741 was:0.081549319984912 theory:0.0777381252331131 received:0.07026172433815851 :0.6474257066221291 +the:0.8171178988083152 such:0.11305371276846951 said:0.03606624167058799 every:0.020734561636555876 :0.013027585116071364 +well.:0.3969776092894225 very:0.17954136184295744 pretty:0.06319578898161365 old:0.031953125159393796 :0.32833211472661256 +some:0.04256562236703793 in:0.012041309791935597 them:0.004204125718734888 all:0.001965561990204462 :0.9392233801320873 +as:0.5415464792007593 in:0.20638729020290622 for:0.07301203235654304 of:0.07293492756621911 :0.10611927067357226 +the:0.15966386152041612 his:0.09430693628428916 and:0.06781956989655259 to:0.06778464758649759 :0.6104249847122446 +to:0.514291180589441 in:0.18377671542401014 In:0.09210158369787681 iu:0.03517468948864771 :0.17465583080002456 +same:0.047297271195823054 other:0.039270134150489806 first:0.011399298958816126 way:0.007333795012529237 :0.8946995006823418 +in:0.9975942615918497 In:0.0020626771436000014 at:0.00013318760865882326 until:0.00011799471419636135 :9.187894169526039e-05 +the:0.24323082676908742 The:0.2272945789931452 a:0.11920476622586221 and:0.06343339791647584 :0.3468364300954293 +own:0.2986785541094061 various:0.06297080944390296 valuable:0.01894198172277912 remarkable:0.01679566239918299 :0.6026129923247289 +the:0.4485843104102941 my:0.08519398182854028 a:0.08069498404141948 this:0.05161093101577124 :0.33391579270397503 +It:0.23684808615198516 it:0.22498570785868577 there:0.11760414736753474 which:0.07384887346001362 :0.3467131851617808 +do:0.7815401208226797 think:0.011570767517797018 It:0.011300911631322148 probably:0.011020529348597995 :0.1845676706796032 +find:0.9079263436501733 have:0.03623844739847714 do:0.023963515154528697 be:0.013795203987664116 :0.01807648980915668 +become:0.1738027247437438 now:0.09272803595237909 is:0.07565762345541624 are:0.07157008346365382 :0.586241532384807 +to:0.7458874765309138 the:0.18409640059020915 and:0.03883104717868022 of:0.012395512818992456 :0.018789562881204307 +home:0.1988148117877366 next:0.07841783006691054 regular:0.05298598784155243 last:0.040058023038091736 :0.6297233472657087 +I:0.11396440958456004 and:0.08218553069892039 -:0.04657071963022399 the:0.042453952438200326 :0.7148253876480952 +and:0.4394639419666179 who:0.12082793429200865 that:0.10672754157471664 are:0.07168388158923023 :0.2612967005774267 +familiar:0.06914688119653771 lived:0.038650077314102346 it:0.03329930083277374 raised:0.025080821848555868 :0.8338229188080303 +the:0.2166183092254846 Congress:0.027906646712934344 a:0.012558042609634001 said:0.011405427030549378 :0.7315115744213976 +of:0.46869640024471454 the:0.0770402614373339 This:0.03301130518692245 Our:0.025615818400478024 :0.39563621473055116 +manner:0.771245249007641 committee:0.023434166569262272 week:0.019656772833413518 no:0.003248647335858012 :0.1824151642538253 +the:0.4826353221792427 to:0.1080876002224407 his:0.03400819029839084 six:0.030440855505648894 :0.34482803179427685 +right:0.48073571363412787 passed:0.07551311362174841 came:0.07211285065521209 took:0.04643630621523338 :0.32520201587367825 +and:0.44909133145872326 shows:0.1410967664722165 decree:0.038429999354460835 found:0.023406761285564518 :0.34797514142903485 +done.:0.007567665319120971 familiar:0.003616209515996423 ob-:0.002503877593988385 set:0.0023889982590113617 :0.983923249311883 +of:0.6031216903786949 on:0.15626394864812237 to:0.04718953353603648 is:0.028413786851493365 :0.16501104058565305 +is:0.5399720602013726 was:0.3409066715213559 would:0.017186871702177548 does:0.014515202477938924 :0.08741919409715485 +The:0.7941581405286259 the:0.061178552675703116 snd:0.005416122380997374 between:0.0022145981395455794 :0.13703258627512796 +the:0.48372505477625327 a:0.06444166698889606 tho:0.05505416504407858 these:0.03410316240373856 :0.36267595078703363 +the:0.13729020805695966 to:0.10418828018655847 a:0.059132779457468705 of:0.056424293839491026 :0.6429644384595222 +time:0.1839741664498566 days:0.0978881252164433 war,:0.05250965038542245 year:0.021210529763630172 :0.6444175281846474 +of:0.3403512670028663 in:0.33511476513815985 the:0.20191857347904885 and:0.03275702874156221 :0.08985836563836283 +getting:0.2645044162958104 being:0.2271014987235141 the:0.18537853765928772 Hie:0.01831416056829864 :0.30470138675308905 +the:0.4236418224896402 a:0.08491879224352754 be:0.04564253490558969 his:0.040886510388005504 :0.4049103399732369 +a:0.4722469293568812 the:0.2795658884384398 an:0.0741980323660158 their:0.06262475211058026 :0.11136439772808288 +of:0.4773289086194767 The:0.1646567778605108 to:0.10287815215910137 a:0.07409678132278312 :0.18103938003812814 +to:0.34997951119979276 will:0.20712013605579208 may:0.1342481041558902 shall:0.10831895693538918 :0.2003332916531359 +not:0.33023533368101393 but:0.08634729215606697 fairly:0.08486888402669596 tho:0.0602794287976817 :0.43826906133854143 +into:0.9414598534704912 in:0.030589022811455296 to:0.0221629937798079 up:0.0045231583559718486 :0.0012649715822739005 +bond:0.04961197252282087 each:0.04693577329048745 and:0.04067261948644562 bonds:0.03906203926955687 :0.8237175954306892 +he:0.6136822809416916 she:0.05873461773389177 it:0.0486242812301923 ho:0.037750250887343684 :0.2412085692068804 +side:0.572553890021754 end:0.06892470854892366 members:0.06883386160296084 parts:0.027736768134383607 :0.26195077169197784 +first:0.028726786281535143 the:0.017563104290717554 most:0.01737830040083652 of:0.01609680385601037 :0.9202350051709004 +York:0.07054690567728929 the:0.009858066125907282 I:0.008432109828570311 England:0.001848189203344741 :0.9093147291648883 +to:0.6784766837228403 and:0.31523280761941713 the:0.0012941810341051568 nd:0.0010307130816289193 :0.003965614542008531 +was:0.8040338095711315 have:0.1818858091036031 can:0.008013132787749979 had:0.0018491570348997633 :0.004218091502615701 +the:0.7304369097683804 The:0.058981295969327684 and:0.04901734728709355 with:0.02889195015408503 :0.13267249682111334 +and:0.10142200966225733 the:0.07270554372564335 of:0.06427075114553948 to:0.03240122620511521 :0.7292004692614446 +a:0.6968853718872645 the:0.09398268395924674 two:0.03226948999113029 n:0.017720319382735186 :0.1591421347796232 +I:0.42476013334166923 to:0.18595768035339283 and:0.05009501242803073 in:0.017134588194203233 :0.322052585682704 +de¬:0.8687687049223531 and:0.03292539774139468 are:0.02804277852626504 was:0.02457725109520724 :0.04568586771477996 +the:0.9364774207253994 tbe:0.006720546066030929 tlie:0.005614821402591195 this:0.005465587099620119 :0.0457216247063585 +8:0.07883679344410933 the:0.026652177322880954 his:0.013333962967419666 of:0.004729387529612491 :0.8764476787359775 +floor:0.05367490410348687 people,:0.0389374458019972 army:0.031955844640051335 eyes:0.011283559681528645 :0.864148245772936 +them.:0.0057573777387256615 money:0.003164510326016188 do.:0.0025800378953786496 4:0.002186635178246597 :0.9863114388616329 +there:0.7976588637760128 they:0.12025198148001115 we:0.02269693161882984 you:0.003865707642618819 :0.05552651548252735 +is:0.2659337947781488 a:0.19907765144177184 therefore,:0.15199170459858974 and:0.1440148035871465 :0.23898204559434316 +D:0.9844155464796351 D.:0.006261241123264567 M:0.003513151627395061 J:0.002946561539740649 :0.002863499229964564 +every:0.3940010369091783 the:0.23828070190429324 a:0.2055291280324247 Any:0.09258412229125966 :0.069605010862844 +of:0.07277421620277746 it:0.05549563870656583 there:0.04800967030532325 after:0.035926977785455026 :0.7877934969998783 +to:0.7128171303470217 shall:0.11567141189540953 will:0.04608678685519201 te:0.04499805846498968 :0.08042661243738718 +the:0.4923682605584076 a:0.07494789307738856 said:0.04812648868229441 his:0.03823608312928445 :0.3463212745526251 +city.:0.005862976148057444 world.:0.0036561264721543174 exercise:0.0024868127907082043 people.:0.0021293455800941584 :0.9858647390089859 +and:0.09489583087422691 seed:0.09041097433277066 at:0.032739032347898066 are:0.029251006577220042 :0.7527031558678844 +and:0.16633812974579895 to:0.1338012699985643 the:0.05743669562784407 of:0.04522452606363891 :0.5971993785641537 +the:0.6781192099643685 of:0.06770996626364917 cold:0.02878914495741938 Its:0.028024638760300577 :0.1973570400542624 +of:0.5339177875265633 from:0.04792111975115882 to:0.002618601506258194 by:0.0024140192246261075 :0.4131284719913937 +want:0.5716954528200112 believe:0.04990409901587501 know:0.04903373921766302 kept:0.01892642687429219 :0.31044028207215846 +in:0.8729542034717916 In:0.07844860185539297 to:0.013119693380188754 la:0.006759228539107295 :0.028718272753519312 +of:0.27831357787733696 to:0.17161586909841037 with:0.12562956179560128 and:0.10490289437941588 :0.31953809684923556 +to:0.14068944239732742 1,:0.12064466162030067 Mr:0.07876632950388873 Miss:0.07831660194581522 :0.5815829645326679 +could:0.962204896689455 can:0.01463484818597911 should:0.011832540678801209 must:0.004722330905237693 :0.0066053835405267755 +been:0.9240676443697529 for:0.03458009724450141 as:0.016049731896102398 and:0.012591633180861211 :0.012710893308782055 +the:0.1363289931789252 a:0.032466296814667325 was:0.028654672131176027 other:0.027519519036010815 :0.7750305188392207 +to:0.20938700190649365 by:0.11780355396017235 with:0.11009753526339643 President:0.09466242671504567 :0.4680494821548918 +When:0.3098598697504836 where:0.19899454797995902 when:0.1107748732148344 and:0.08154103445990105 :0.298829674594822 +regard:0.5353376878478053 the:0.020343839008255066 proportion:0.018693070424390706 and:0.008320910174574564 :0.41730449254497437 +the:0.40854654005867014 by:0.12233965503500382 a:0.09474340525385243 at:0.059669083433383785 :0.31470131621908976 +the:0.4125940577188879 a:0.07100263052548063 this:0.046613482640335234 tho:0.034898526048212974 :0.4348913030670833 +must:0.5481622531929216 is:0.3015732878928194 of:0.07640930307331849 to:0.04057463062473029 :0.03328052521621026 +the:0.28593178874146113 Dr.:0.2773028348407261 me.:0.06160961649411383 her:0.060876087644810506 :0.3142796722788884 +the:0.9017482687616544 tho:0.015319971138427308 satisfy:0.011463732827307586 pay:0.0033493029875576517 :0.06811872428505314 +do:0.11418577827063717 be:0.08871053888770214 make:0.051969313119215495 show:0.04803357265958525 :0.69710079706286 +cars:0.05451812106586135 doors:0.010772714037572484 men:0.003983282183804818 which:0.0024099895194220925 :0.9283158931933393 +and:0.23046764678920842 at:0.0652346515403 as:0.04190356060899567 up:0.022125542240593737 :0.6402685988209023 +them:0.12079780122801934 them,:0.07725340360586136 that:0.02596096933747018 from:0.01515593858200774 :0.7608318872466412 +the:0.9331817859763416 tho:0.008386472036191644 an:0.0040405867219549 off:0.0018467491743501812 :0.052544406091161774 +and:0.18841254999249385 inter-:0.12854644571528395 district:0.06987828543154924 am:0.03635681844337391 :0.5768059004172993 +J:0.286887940041851 W:0.06498260750903731 A:0.06053085686099823 C:0.032701917565342874 :0.5548966780227707 +trust:0.0848502994607357 appeared:0.013245839217839098 orders:0.010605182629144227 covered:0.006508636499788651 :0.8847900421924926 +and:0.11923551730529754 ot:0.04050478179056754 was:0.02581313370193139 parents:0.02268610726558736 :0.7917604599366163 +does:0.5757957611853495 did:0.22066930187736034 would:0.14740564172341578 will:0.02067471454806945 :0.03545458066580514 +are:0.830552080221409 were:0.08629521751829121 aro:0.06934986145230294 and:0.0029605632132586298 :0.010842277594738253 +the:0.5566484516005725 selling:0.09224714125074791 a:0.05080907087535952 this:0.05030997982588603 :0.2499853564474341 +and:0.07116080755803109 of:0.051691392592629434 the:0.04479215530486646 a:0.03909953474640006 :0.793256109798073 +to:0.6807480927529117 on:0.06291594582733755 into:0.04590963734732864 on,:0.04378611051256087 :0.16664021355986136 +of:0.333651945608036 and:0.11883490129010947 to:0.05724865176193907 in:0.05656634539817216 :0.4336981559417432 +me:0.11077567316562349 tne:0.07506019217954145 cured:0.061268146646534336 and:0.037837308112768586 :0.7150586798955321 +and:0.9235797904987415 but:0.04221729244023541 when:0.0167598862246599 that:0.008772265820114604 :0.008670765016248586 +the:0.48163265362771945 a:0.13500671629043243 said:0.09128307414097304 those:0.06563038816392783 :0.22644716777694718 +are:0.34074714992325034 were:0.265786821205214 have:0.07248887084353545 feel:0.057037937232845504 :0.2639392207951547 +who:0.3317351358861447 and:0.13457634277269537 General:0.05331735025531831 to:0.03388031908460614 :0.44649085200123534 +First:0.03012734513591106 to:0.02698858606321557 said:0.02325250650635408 the:0.01613375146835281 :0.9034978108261665 +laid:0.058757816938036125 It:0.05132117558837257 of:0.04234779529455482 them:0.035358415868095454 :0.8122147963109411 +are:0.20156869976298097 was:0.1737908157767654 is:0.1105564698754574 were:0.09580204924490245 :0.4182819653398938 +which:0.2557346137662064 and:0.1839353403282542 below:0.1226341384103363 that:0.1117398508358403 :0.3259560566593629 +amendment:0.6232245957514927 value:0.01867049436089668 protection:0.015538936116450604 interest:0.013973904891030465 :0.3285920688801295 +appointment:0.621999454882861 re-:0.07816241882731127 Senate:0.026480757328236057 senate:0.02430280358209633 :0.2490545653794955 +have:0.3317672243575156 has:0.2286824476165948 had:0.08414771645905672 lias:0.06278290027460542 :0.2926197112922275 +bonds:0.04888808591320207 plans:0.047684336114319076 States:0.026870354618307078 facts:0.02050745909165115 :0.8560497642625204 +bring:0.1836636932648869 strike:0.07614302416430134 keep:0.047639557864336636 meet:0.04180518771651528 :0.6507485369899599 +many:0.024940827891807436 nothing:0.015055312175204106 account:0.008756122368485846 each:0.008534884799232189 :0.9427128527652704 +things:0.059148301089320995 friends:0.02331950874160565 private:0.013394674747600508 years:0.012036558126271293 :0.8921009572952016 +was:0.9676686474106466 as:0.017693692405066856 is:0.006541045814097361 had:0.0005231156355056472 :0.0075734987346836 +In:0.5842425482672875 At:0.14120575921156903 After:0.13066541955284217 The:0.01201133637169523 :0.13187493659660596 +and:0.14004544464258645 such:0.13361381181905374 tions:0.09177573833142606 tion:0.06544395268520717 :0.5691210525217266 +at:0.010596956004206605 year.:0.007559985400887817 day.:0.004480885161491525 time.:0.00421068656888722 :0.9731514868645269 +a:0.948854566864391 the:0.04154497953140943 when:0.0006639116132727843 tho:0.0006360794474204188 :0.008300462543506474 +most:0.26776225808995896 some:0.17581904082032115 powers:0.09464794814876609 the:0.07980686671910193 :0.38196388622185196 +that:0.42838287079332127 of:0.27987417553621335 whether:0.1028457078459915 what:0.06880571752727313 :0.12009152829720082 +and:0.24696226408166888 silk:0.08370141692479213 field:0.06473878276557156 white:0.02426035366533189 :0.5803371825626356 +of:0.39999096518897 dated:0.33511046439336223 on:0.04622353404605155 day:0.03274136019057122 :0.18593367618104503 +portion:0.1619008225930601 posed:0.006498864705603996 motion:0.001702724856444905 pose:0.0007975645535405714 :0.8291000232913504 +far:0.6429624236051517 much:0.12698111265454667 long:0.07356114695185868 fur:0.020240451845975404 :0.13625486494246755 +not:0.33599965654856173 a:0.135819988803423 i:0.10313405234281749 going:0.04488650368283965 :0.3801597986223581 +the:0.4755218006675716 open:0.07968966437133038 our:0.06998558689652479 v:0.03786576597906814 :0.3369371820855051 +of:0.9255540672065751 or:0.06029264382989586 ot:0.006392267621637773 Of:0.0029990357615086722 :0.004761985580382616 +patient:0.1757195502707943 stream:0.0465517912490885 what:0.0387534985460922 board:0.02602330465012716 :0.7129518552838978 +a:0.17912224265828106 the:0.10410283994760156 more:0.08885247347561338 so:0.046949330587158056 :0.5809731133313459 +because:0.22732035838858525 of:0.09031583184544066 with:0.0883461971006986 if:0.06195510221613932 :0.5320625104491362 +of:0.09205243433576787 and:0.05610709037900856 in:0.032439352707235705 at:0.029325985125285954 :0.7900751374527019 +the:0.7511079399836 bis:0.08957410749586613 a:0.05433595170783611 tlio:0.029927999061782364 :0.07505400175091541 +soon:0.9513880762885951 it:0.012653614009919103 then:0.010813190300669297 also:0.007253284727682985 :0.01789183467313345 +a:0.07953903260641167 the:0.007236772049886379 average:0.0034873353885712405 of:0.0026115917851568743 :0.9071252681699739 +has:0.8360719293065293 that:0.014592327090132843 by:0.012141084277638728 enable:0.010869409140899837 :0.12632525018479923 +more:0.12786969143240748 most:0.026847087408959084 first:0.02616338640526432 The:0.013521034904724246 :0.8055987998486447 +the:0.25867318969332886 to:0.2313515499207374 a:0.08242625044416096 by:0.05081028814820868 :0.3767387217935641 +the:0.9924169238497733 tbe:0.0027669208865126506 this:0.0019232549150621533 tho:0.0005229547842323602 :0.002369945564419675 +died:0.23886181026710487 was:0.15670652828946816 all:0.14494495838363045 out:0.14238323804912045 :0.31710346501067593 +himself:0.04348510830021439 Brown:0.003643287490817759 representatives:0.0033219448990948683 words:0.0033084222170148307 :0.9462412370928582 +not:0.5996537623776167 you:0.30276949021118876 we:0.07374713811165388 I:0.004134441921531549 :0.019695167378009148 +to:0.47886365539178966 dollars:0.22715641698093217 dollars,:0.13128615605118188 or:0.02289548782295726 :0.13979828375313905 +of:0.9094439174159744 some:0.031118154291179183 by:0.014729937372864802 was:0.007540931919223347 :0.0371670590007583 +and:0.12013233562223898 to:0.10236731138105994 of:0.08721367582053187 the:0.058640636600882104 :0.6316460405752872 +the:0.20912341778176197 his:0.10041332545319684 to:0.07854151889852812 of:0.07670270679304714 :0.535219031073466 +tract:0.0006147307340155373 form:0.00011436226803615856 test:9.296852133735109e-05 -:4.469810760504112e-05 :0.999133240369006 +its:0.4366015805292842 the:0.10431110009172118 his:0.03994513292651807 their:0.027532809586996616 :0.39160937686547986 +first:0.9661421048811781 second:0.021422836732081688 third:0.010132923492146503 next:0.0005419348192776905 :0.0017602000753160654 +the:0.20146961119398712 a:0.13636419157519306 to:0.13329532247258252 and:0.11498117344658426 :0.41388970131165304 +of:0.8194719880727287 and:0.05919605142062286 or:0.05587813705310282 more:0.024522016967475746 :0.04093180648606991 +of:0.2395697405570246 to:0.1699459914106978 on:0.12441172642553437 for:0.11596263314359614 :0.3501099084631473 +it:0.9647147703886377 It:0.02798254444906744 there:0.0031733495162425476 he:0.0012971310795994676 :0.002832204566452865 +It:0.25120869113316124 and:0.14038096450794954 This:0.09762128379119979 which:0.09551012644288177 :0.41527893412480754 +public:0.03659854305374987 same:0.0344533877972225 E.:0.03194626505416 American:0.029874949313958007 :0.8671268547809096 +an:0.8827190836102904 the:0.0636623342516523 au:0.01562537497564372 his:0.011804883181648159 :0.026188323980765548 +the:0.7080640532375155 tho:0.07551178983617188 tbe:0.06619993102154687 all:0.03878769479785566 :0.11143653110691015 +the:0.9524715715026927 other:0.021539501233036804 mining:0.018277212603872856 public:0.007269339274847259 :0.0004423753855503221 +of:0.06626869425244768 and:0.06622532865458103 the:0.03964905347632182 to:0.028871935327294228 :0.7989849882893553 +The:0.7289108392973509 Our:0.1282461880929415 the:0.05830466823781125 and:0.028191419394574046 :0.05634688497732248 +the:0.4554261191125454 a:0.05469544413661045 tho:0.0273960878056248 his:0.02523174800845992 :0.4372506009367594 +in:0.23433444812303175 the:0.1308238040224702 an:0.11580927090479579 and:0.08449384466110164 :0.43453863228860057 +of:0.687389242543848 and:0.07452594811249506 to:0.04313829808973442 in:0.04100296899760862 :0.15394354225631376 +not:0.2228275972818257 even:0.12798799519681353 sell:0.09424573015246228 or:0.04678914743433704 :0.5081495299345614 +ample:0.03508950813245994 posed:0.03429903482043773 port:0.012906848117878266 press:0.00667738464555957 :0.9110272242836646 +that:0.9992814577254151 as:0.0004217744743902065 to:0.00016328404773606456 in:0.00010051421560392472 :3.296953685463009e-05 +to:0.3061809727584565 the:0.13424177754083194 and:0.1271025240847913 or:0.06462361980447202 :0.3678511058114482 +state:0.19950128129163885 say:0.044714772267268756 tell:0.032590176780862165 see:0.025733954669028693 :0.6974598149912016 +of:0.013053687838172798 In:0.010698938681454563 -:0.0037527334770313314 u:0.003677549400443367 :0.9688170906028978 +men:0.20907432900369566 State:0.1910182897870333 state:0.013490919671573516 county:0.009410707007106845 :0.5770057545305907 +strange:0.011705951910750056 yet:0.009862652425595593 for:0.008679207881479873 their:0.008674813344127489 :0.961077374438047 +is:0.051757005048580336 and:0.019397194620471906 have:0.010792189847992347 appears:0.010040271934513139 :0.9080133385484422 +other:0.05879770772803335 next:0.025482322306827346 two:0.019985462661474603 little:0.014990223649539175 :0.8807442836541255 +and:0.2760191929153655 but,:0.034014210461042006 which,:0.03020792813342547 from:0.0263030398626304 :0.6334556286275366 +the:0.39364873797560074 tbe:0.14347066113496204 be:0.07515035115993401 a:0.05043901075401091 :0.3372912389754924 +obliged:0.11065602683674909 sent:0.09577445890711137 given:0.07731958127248859 suggested:0.07037987283303139 :0.6458700601506195 +be:0.62588121588699 not:0.10190089610939426 bo:0.029555725640803564 he:0.022022833342745764 :0.22063932902006628 +of:0.2742471703115664 to:0.1648014478469543 in:0.1426793129317886 by:0.13003490191845188 :0.28823716699123864 +on:0.0012121472920031077 out:0.0007419349373669074 with:0.0003067791003839862 and:0.0002564469352402865 :0.9974826917350056 +and:0.10059297385504566 ment.:0.03324223592023126 tion.:0.019830563349415287 that:0.008893458390856694 :0.837440768484451 +the:0.8600235291684417 this:0.021827237572420253 tho:0.01310104461403604 good:0.00830004067680651 :0.09674814796829545 +of:0.14620736645407084 and:0.11098805542094331 the:0.04338742689206965 The:0.030783626515386082 :0.6686335247175301 +tbe:0.5279131640783759 the:0.28148817117288044 tho:0.14969712880656455 he:0.03082679090598395 :0.010074745036195208 +been:0.6233902311471489 since:0.018182370199211907 never:0.017083097714414613 a:0.012131820455504292 :0.3292124804837204 +New:0.7866880377464778 Now:0.0019803093765007524 the:0.00010527102620724841 a:1.1836960619138537e-05 :0.2112145448901951 +not:0.16968617222351312 be:0.04020922975288653 have:0.03382153697132757 had:0.027363001120741297 :0.7289200599315314 +and:0.15667136696252715 a:0.0541722167853839 or:0.050519197292991265 the:0.049828719542690025 :0.6888084994164076 +him:0.17475586746685418 them:0.13108323657673832 it:0.0862075203833827 us:0.04784868608722282 :0.5601046894858022 +be:0.06165701642477252 cut:0.055635129734291855 only:0.02780826067855388 gain:0.02128200343549846 :0.8336175897268832 +of:0.16104604132035966 and:0.12073805860280624 that:0.10397936428646205 the:0.1034333511064456 :0.5108031846839264 +D.:0.35567709264049946 M.:0.12018862490160116 H.:0.08274960720953146 J.:0.0507397533248786 :0.3906449219234893 +be:0.5851348890768865 have:0.15212057105691593 hold:0.07464349014834613 bo:0.05350506598905065 :0.13459598372880088 +the:0.9072422936806469 tho:0.03890028295054655 tiie:0.0105221362797139 tbe:0.010395426582559542 :0.03293986050653316 +for:0.600128169850412 during:0.11736163447911621 within:0.10178688496568489 in:0.08291476859212751 :0.09780854211265928 +duty:0.7799460924045258 duly:0.027140290623374745 order:0.006770035464923556 owner:0.005690211946897599 :0.18045336956027824 +attention:0.2529698958610746 property,:0.010370389710684267 friends,:0.008039204248993063 interest,:0.004073810356959114 :0.724546699822289 +or:0.4527824339280906 period:0.12926294401281876 time:0.05425827564121796 and:0.04536343374431648 :0.3183329126735562 +upon:0.8879512959355396 on:0.08164954614676394 ou:0.01059428854932351 over:0.006891594061970226 :0.012913275306402938 +which:0.9889781770176519 the:2.1436339199184073e-05 said:5.711465320205591e-06 for:2.5330749328033477e-06 :0.010992142102895985 +all:0.09100967665394781 and:0.0632923271657818 was:0.025532679740332773 bridge:0.015322210981515396 :0.8048431054584222 +be:0.5065635779825466 have:0.13729382134350201 not:0.07593271739131237 bo:0.027010014803243623 :0.2531998684793954 +The:0.19726375781235916 the:0.17787333795436663 and:0.15454638718488048 Their:0.12075416254908589 :0.3495623544993079 +of:0.9978484779416219 ot:0.0010909250307156438 in:0.00029677631977500997 to:0.0002584286060485514 :0.0005053921018390337 +never:0.8830515609146027 made:0.07408517160678864 not:0.03664462097524136 quite:0.0013790919652449964 :0.004839554538122357 +best:0.9419399524247135 was:0.015888095506970512 and:0.013418447425535093 am:0.00804088378200838 :0.020712620860772583 +an:0.4442023889895403 the:0.2670397706207371 of:0.08224236549411232 our:0.036193049207005196 :0.17032242568860523 +to:0.8415020137563699 the:0.1510974385543069 The:0.007057067122519955 Senate:0.00017619013612705213 :0.00016729043067626313 +but:0.03279494357433139 moment:0.032355827923564576 day.:0.028269030454609056 frequently:0.027301088287773063 :0.8792791097597219 +long:0.06873618573045535 long,:0.04655840628641101 a:0.034709376784608455 the:0.029104320210772385 :0.8208917109877527 +world:0.31477202900447787 woman:0.08966353072450584 girl:0.06155166832577439 country:0.051111953928092174 :0.48290081801714974 +of:0.22120329529821348 in:0.1393140179289755 to:0.11621085448603907 for:0.09664796089917871 :0.4266238713875932 +really:0.3225878249724456 a:0.08664946637442376 to:0.07186873645658487 an:0.03469847439205142 :0.48419549780449433 +done:0.9974618505228569 formed:4.810843356150253e-05 found:4.7583890802008616e-05 cut:2.34335446465508e-05 :0.0024190236081330866 +in:0.9390605748567625 In:0.0456666374614868 of:0.006266058116146706 from:0.004534227079998981 :0.004472502485605019 +and:0.11511895843214082 the:0.044948182696011765 of:0.03495205787585481 to:0.026470890460932987 :0.7785099105350595 +it:0.38468061613839216 this:0.16157757564125463 not:0.15009561597567567 never:0.13120335232103353 :0.172442839923644 +proceedings:0.21720109868041124 company:0.09678413513815366 people:0.07624177341494189 Union:0.06693853056054166 :0.5428344622059514 +all:0.15909339643974793 of:0.0766640145185228 the:0.07265487379987805 with:0.06858880313748077 :0.6229989121043704 +and:0.1774100632579583 of:0.13762853418019672 the:0.11265799601649039 lu:0.0806529840979362 :0.49165042244741847 +he:0.051751186817366 the:0.02974169870737384 plans:0.023427405113751614 each:0.01644549449688931 :0.8786342148646192 +it:0.43807278709266967 which:0.4027524975416568 there:0.03236599458237237 and:0.013091305205944835 :0.11371741557735647 +and:0.08586783346312318 out:0.042806903174496175 ed:0.03701365338519698 thirty:0.030909975988576942 :0.8034016339886068 +of:0.6064939407219214 in:0.12633238315938775 for:0.08947076160042607 to:0.06063922121704438 :0.11706369330122027 +take:0.0601917979722153 It,:0.02405517088999673 it.:0.0160780564603995 give:0.015820996858257295 :0.8838539778191311 +ask:0.16266076395079682 are:0.1371658295868667 speak:0.1336198384557095 stand:0.13257163900115757 :0.43398192900546945 +enable:0.017198855922571 admit:0.01559098505400809 allow:0.012517929683964795 pay:0.008309230899112134 :0.9463829984403439 +had:0.266544716597184 has:0.12649504890170551 was:0.09697507724223833 is:0.0692759841200514 :0.4407091731388208 +to:0.1899725433141487 in:0.1339408484644099 with:0.12606334539771497 on:0.11709618715057231 :0.4329270756731542 +be:0.9842302594179719 bo:0.008863639387418146 lie:0.006030612688661705 he:0.0006309957739611908 :0.00024449273198704955 +of:0.9001889931885727 way:0.012578364098164012 years:0.011455826328741415 day:0.011074804021422966 :0.06470201236309885 +and:0.48312680257626317 was:0.0946535886778586 He:0.05709834842861981 were:0.04261082021656604 :0.3225104401006923 +of:0.018915813798618678 and:0.010078046545447776 tion:0.00589600312668601 ing:0.005845425631507378 :0.9592647108977402 +the:0.7533939302274032 tho:0.07001197943754832 a:0.06335534672799428 every:0.035948070562334934 :0.07729067304471922 +premises:0.6627796972040793 premises,:0.06806554038789493 court:0.058494924755334465 wagon:0.042318598974175156 :0.16834123867851628 +prevent:0.1556527650354078 all:0.10051201825996411 them:0.08190026805797267 continue:0.06691886960950848 :0.5950160790371468 +the:0.2902208274987438 four:0.0779377817319393 one-half:0.06958761059095701 three:0.04120763870948432 :0.5210461414688757 +of:0.3330895301065409 in:0.17677174252026726 and:0.1360872020331665 to:0.09462923141547568 :0.25942229392454974 +made:0.35659812546923925 engaged:0.1630905718254194 placed:0.030640323210526704 successful:0.02645436576324854 :0.4232166137315661 +the:0.8580159394139306 said:0.04441275316413156 tho:0.03902973787093534 this:0.014753071820510185 :0.043788497730492204 +A:0.3068924667773994 and:0.26409285570907076 a:0.11731720907736697 have:0.08980878087918256 :0.22188868755698019 +and:0.060385718668642285 hand:0.047920216979255095 strike:0.04095851601720738 is:0.03163307726227129 :0.8191024710726239 +and:0.1085741086161829 for:0.0693020745134626 to:0.03957895444912206 of:0.022837968135137065 :0.7597068942860954 +I:0.5655579697260449 and:0.062427856343024536 1:0.04228288217626155 "I:0.02141760078642386 :0.3083136909682451 +it.:0.2755100048884726 her.:0.22487625654461188 him.:0.03493109537217161 them.:0.02045624764819545 :0.4442263955465485 +in:0.23759242193772226 to:0.21888021942489644 of:0.20251779148300347 by:0.1472114246696881 :0.19379814248468966 +The:0.272238469929393 the:0.013038182169307137 He:0.0027878114053376335 and:0.0013485693114669265 :0.7105869671844953 +any:0.19259354994837766 and:0.03653280735277592 in:0.03281585276692032 to:0.027536266113692896 :0.7105215238182331 +be:0.7977749690923254 bo:0.07858308020640224 he:0.032503195571654465 is:0.01712534958888792 :0.07401340554073013 +to:0.22031762183642226 I:0.1879752272169431 we:0.1364678122281698 they:0.0801076344731501 :0.37513170424531467 +to:0.3045852847944664 with:0.08085271990901052 at:0.06480756049070154 and:0.05757966563485632 :0.49217476917096525 +the:0.23066700835353918 to:0.10390297555997413 and:0.07977225751645156 of:0.05846550585881456 :0.5271922527112207 +was:0.19423737583200648 the:0.18088356612486417 is:0.1544333703781103 very:0.09680206581740756 :0.3736436218476115 +the:0.39969713535807505 and:0.08287289369451886 a:0.07753184971020863 to:0.049074998567631235 :0.3908231226695662 +of:0.3880675790974167 and:0.2118901712306914 for:0.08868837673370536 with:0.048692801381613325 :0.26266107155657314 +and:0.16277970426568988 amount:0.0625745583230258 number:0.02580626001990587 mass:0.023330456127075593 :0.725509021264303 +and:0.1656628378188631 she:0.15538432567359514 of:0.0952925277043106 to:0.04853991639161735 :0.5351203924116138 +their:0.8574723225555044 an:0.04222493452240128 the:0.03162933262389969 no:0.013318619460470242 :0.05535479083772428 +it:0.12212277566596288 and:0.12158423237905333 we:0.11053926964916386 It:0.10079435001390383 :0.5449593722919159 +the:0.3920056762050203 a:0.08693239257419882 Mr.:0.07923077076324055 Judge:0.06333478497895487 :0.3784963754785856 +the:0.3506577886130509 a:0.06838193774418067 and:0.06488506714488708 his:0.030852535201506492 :0.48522267129637475 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +Republican:0.2902589243805654 present:0.22912216980456634 small:0.05024374874930952 In:0.0368210332763906 :0.39355412378916815 +the:0.43966351576135854 a:0.06004201421634257 his:0.056763904709966305 two:0.032571146027213484 :0.41095941928511903 +or:0.18534663714382343 of:0.08527263882709951 and:0.07611667930567394 with:0.048048241013949076 :0.6052158037094542 +of:0.3337024141354172 in:0.19228191223368013 and:0.1237507794896004 on:0.10864477489718823 :0.24162011924411428 +to:0.02174234064695142 record:0.020763702143942894 County:0.014984582292533568 the:0.011031711091828258 :0.9314776638247441 +party:0.026172838716224868 party,:0.014509755895390664 and:0.009362759311223122 party.:0.007906183517820445 :0.942048462559341 +well:0.5953143737790471 soon:0.10651670301805251 far:0.043981270300660145 long:0.04002416522009003 :0.21416348768215024 +of:0.9665604568731656 in:0.00974934290529051 to:0.005812168750967705 from:0.004175227316297455 :0.013702804154278603 +of:0.27268865451939 on:0.22113751606149254 until:0.08497884694335439 and:0.04417070166374968 :0.37702428081201345 +were:0.2911155496669404 and:0.1877861802078546 was:0.13806026186083695 are:0.09835188466323283 :0.2846861236011352 +leading:0.6289747746424603 most:0.020528060817284 many:0.0188634942836086 people:0.007427131922986553 :0.32420653833366053 +which:0.32874302036693864 it:0.19717733310424984 like:0.09697342008782343 that:0.08970886895342198 :0.2873973574875661 +shall:0.1581708921215199 and:0.14212161475632878 the:0.09963321926596586 of:0.08787957526707792 :0.5121946985891075 +about:0.009895812411256939 ing,:0.006403114905318004 up:0.006390460280965149 sell:0.00504281086122474 :0.9722678015412353 +and:0.22793746705643322 or:0.10101517422957193 like:0.06969920041545222 of:0.053517433367140495 :0.5478307249314022 +1:0.16224172574514245 P.:0.1465310782165409 W.:0.020178546158852853 H.:0.017373860445505762 :0.6536747894339581 +be:0.5176287257164423 put:0.1613496947762125 not:0.0851575725264601 have:0.06020178200329862 :0.17566222497758657 +day:0.02963873664030804 out:0.026122642470295252 and:0.02387806086370573 tion:0.012994266828194328 :0.9073662931974966 +and:0.09980446322081706 together:0.028831559742336043 tion:0.024151458892456668 influence:0.02411213578635237 :0.8231003823580377 +Gen.:0.19029233875257248 Mr.:0.1868115299412675 of:0.16354578978065876 and:0.030105962698519693 :0.4292443788269814 +come:0.9406052449545996 coming:0.024681006659325568 comes:0.021771165521760266 of:0.0006708980324427661 :0.012271684831871731 +a:0.1320455792352144 so:0.08393956162095301 in:0.071393827486762 the:0.055404784574435526 :0.6572162470826352 +of:0.1840604328068225 to:0.18218594879716396 and:0.18147128959149827 in:0.13500084324422942 :0.3172814855602858 +of:0.18214640799998677 and:0.14726309735542453 to:0.09162026354077046 the:0.039135346477859365 :0.5398348846259587 +and:0.22193855658895134 or:0.06069326951206104 These:0.032165292927804116 the:0.029324321890812126 :0.6558785590803715 +have:0.4414485676064588 had:0.3100117288667954 has:0.15139672556280803 h:0.010472947034642308 :0.08667003092929555 +In:0.44345178464922863 to:0.2273310977999298 in:0.2230327283456621 from:0.07957081250729975 :0.026613576697879716 +Smith,:0.010966958373205736 James:0.001956545338251521 May,:0.0011372528953999417 Johnson,:0.0004999911459143472 :0.9854392522472283 +the:0.43711792673182126 a:0.05199098217931858 Mr.:0.04621446048905631 that:0.0461670142121214 :0.4185096163876824 +the:0.35080081047319417 all:0.11811887835074011 interest:0.054312911802823945 those:0.04353338527820756 :0.43323401409503426 +up:0.4734590106700996 just:0.45400958546351006 through:0.03163717782734859 out:0.02193224703645032 :0.018961979002591497 +made:0.714321421334468 made,:0.01555032391251744 given:0.00785082814823872 discovered:0.006760863573141355 :0.2555165630316345 +add:0.34543870020280565 to:0.13756901884773987 of:0.12162437793620524 and:0.09723941961168794 :0.29812848340156123 +dozen:0.11567186063174029 year:0.055286833916373936 mile:0.0372239737211588 week:0.0363361982022455 :0.7554811335284815 +the:0.4650145075445461 The:0.36431803725027034 a:0.017331288547023673 this:0.013667660272368497 :0.1396685063857916 +place:0.18916324954650787 the:0.037752456039990556 ed:0.023203927690824137 up,:0.015312826183951652 :0.7345675405387257 +provide:0.9103508269265822 the:0.007884732562256587 various:0.0006489018433717522 thu:0.00027488050657601575 :0.08084065816121344 +at:0.28963697798620264 e:0.1504192132365864 thence:0.11280615530611642 bears:0.05970161247298218 :0.3874360409981124 +be,:0.991713900226614 are,:0.0028489475870019055 to:0.0026350636950225512 and:0.0012735142128019994 :0.0015285742785594338 +north:0.996339244855623 up:0.001132535781551394 in:0.00026368973927780087 west:0.00023489053988627885 :0.0020296390836614378 +of:0.8395870739821316 a:0.14857161908683048 his:0.004742927821284293 the:0.003673005643511146 :0.003425373466242448 +of:0.9169448925891639 ot:0.06859452984507709 ef:0.00786710442768999 01:0.003852262622661496 :0.002741210515407536 +are:0.6405617368488992 to:0.12468374706177088 under:0.06606808308731878 n:0.060029129770990584 :0.10865730323102045 +would:0.36001666559897955 could:0.293400319506205 can:0.25273840814268234 did:0.08515215174144329 :0.008692455010689704 +No.:0.12997435728145562 and:0.08137009417207394 of:0.04767732500398275 the:0.034704167195628584 :0.7062740563468591 +that:0.9304769761445961 thai:0.021361833100954825 tbat:7.825960563855059e-05 and:6.124209814372121e-05 :0.048021689050666866 +before:0.9350880310802452 be-:0.0406497630682133 about:0.00932569123439399 after:0.006218040122311749 :0.008718474494835695 +army:0.0918422102780293 table:0.01019535567632693 voice:0.00909015291694554 funds:0.008535165496804747 :0.8803371156318935 +a:0.22463728322832327 the:0.1998573580035099 of:0.1293276135682617 in:0.0775756960226757 :0.36860204917722955 +of:0.6464829439012665 in:0.23758721038140074 the:0.05331983581438175 he:0.024350864226244124 :0.03825914567670701 +all:0.2785299164729633 any:0.22874856394052673 those:0.15892351736280347 all,:0.11635849056282062 :0.2174395116608858 +fact:0.08857510996840133 want:0.034385509555214855 truth:0.02745363715002041 May:0.019075912541497844 :0.8305098307848653 +from:0.253268269668416 at:0.06087075954877251 in:0.05571274939792225 through:0.036493539794652675 :0.5936546815902366 +shown:0.24414241582233065 found:0.08738255060188199 used:0.06095176809564937 done:0.05269284514351791 :0.5548304203366201 +the:0.08053695579693404 and:0.07882461421518856 of:0.07698790309747619 to:0.03308911272338291 :0.7305614141670181 +who:0.1470980303778104 w:0.07561549819562895 that:0.06150627171774495 whom:0.048350522381480666 :0.667429677327335 +of:0.21235891796037382 and:0.15256825278424496 the:0.051992979617345975 for:0.04849950324542163 :0.5345803463926136 +of:0.4050499835382998 in:0.15559070192498478 to:0.1263064469376875 on:0.08018379369745904 :0.23286907390156883 +in:0.41686892295304995 at:0.2556777001858988 on:0.1257225814883255 and:0.11635835324360583 :0.08537244212911985 +the:0.9164148900151807 tho:0.03549056584574158 this:0.017290931639111135 (he:0.016237289664548224 :0.014566322835418343 +was:0.1629573223892229 in:0.1164604192013154 of:0.06111328407216016 In:0.04567189584336886 :0.6137970784939327 +lots:0.0653227598660576 principles:0.05896636708638596 states:0.03241634513122267 officers:0.031165492834311134 :0.8121290350820226 +and:0.21269490171945934 to:0.14086207859541347 in:0.09200523677642365 the:0.08119070541657976 :0.47324707749212386 +made:0.09062720814689576 at:0.07939702477011958 for:0.05238998678999426 felt:0.050719117181915505 :0.726866663111075 +cents:0.013866844344555559 feet;:0.005664178455155956 o'clock,:0.004517276138020178 points:0.0032733753524725167 :0.9726783257097958 +It:0.2315882654795915 This:0.12943498462458658 it:0.08325220095988728 which:0.07544704655076874 :0.48027750238516576 +and:0.1404639307877993 to:0.09621641658280393 of:0.06776507553012073 There:0.034226147467741386 :0.6613284296315345 +other.:0.019273475694338932 people.:0.011271841342349759 work.:0.010177194470727553 law.:0.009189297329101615 :0.9500881911634819 +law.:0.695127272781061 act:0.0007314089952151229 law:0.0005038896092592416 i:0.00043073799369980397 :0.303206690620765 +the:0.5737759806771942 any:0.06156632342349713 a:0.05780616256821724 of:0.04566307322484717 :0.2611884601062442 +in:0.9971094441178875 and:0.0008737906474561808 from:0.00047761975573793304 ot:0.0003911338344212411 :0.0011480116444971158 +have:0.28071834210822844 had:0.24607005169951465 are:0.19901731479583792 were:0.12104540577220643 :0.15314888562421267 +force:0.04377838785474128 virtue:0.0305661615099997 as:0.027785129646528108 the:0.026981898478218726 :0.8708884225105122 +Now,:0.5235928335089486 Now:0.4057959233548247 now,:0.02834136807465395 New:0.021800389572811586 :0.020469485488761284 +increase:0.20724533844774826 raise:0.19247243215811963 keep:0.11516515726140356 serve:0.04809419596525312 :0.4370228761674755 +the:0.20455476322056376 that:0.1624302804022475 and:0.14582759473788984 but:0.12010058459684014 :0.3670867770424588 +day:0.06513904459448515 tion:0.042347890980186605 instead:0.03215451448845446 ment:0.018741274143174665 :0.8416172757936992 +the:0.6566026104322346 any:0.045471001055652986 a:0.04172626958440412 tho:0.04011840140053954 :0.21608171752716893 +pay:0.061857114990713266 provide:0.053961589500882576 vote:0.047822330946977055 the:0.043634127985040135 :0.7927248365763869 +United:0.23202281944102457 State:0.030832522372138464 State,:0.020148094817640544 state:0.019976460141691382 :0.6970201032275052 +he:0.9711704248074234 we:0.010451190900479303 It:0.008074141743012091 I:0.005308204320721042 :0.004996038228364108 +place.:0.06424592945134808 and:0.004139084210480484 of:0.003428778435474523 mark:0.002867290373081416 :0.9253189175296155 +of:0.26060794735053244 in:0.10771107982451043 and:0.1070834242057091 to:0.07446719108534303 :0.4501303575339049 +pose:0.20761588753500393 claimed:0.1547890465715789 posed:0.007940979311048044 cured:0.005684139689396504 :0.6239699468929727 +of:0.344861320955249 and:0.06138769139648572 the:0.028699560756266475 The:0.027074475814629583 :0.5379769510773692 +and:0.15201974753953282 of:0.08602481300229209 The:0.07024122531499483 to:0.049245422937847304 :0.6424687912053328 +and:0.13480255172495864 over:0.09859670647674773 in:0.08768619128807181 ber:0.029061726188118617 :0.6498528243221031 +and:0.023033780982233264 John:0.0169394497592998 Davis:0.013067941733517727 as:0.01121087809825458 :0.9357479494266947 +done:0.12965323734680273 made:0.08284139717905674 working:0.059192863698288 sold:0.0587012184117507 :0.6696112833641019 +I:0.8329014669449183 he:0.05655425431764798 that:0.03863204918002088 they:0.030269921340678227 :0.04164230821673444 +less:0.11922778869809043 made:0.09387149165038812 remain:0.06277063638914673 the:0.019286255280891427 :0.7048438279814834 +the:0.4443561362143532 about:0.27788735563975325 in:0.15681495844130142 to:0.06503603553116187 :0.05590551417343012 +are:0.41758459513264085 have:0.3138432866818396 look:0.06754144634301049 the:0.02517751773574593 :0.17585315410676317 +of:0.7245721910597168 in:0.053504742328752665 on:0.03907338183802285 is:0.018145674170603088 :0.16470401060290443 +the:0.6324339606888447 our:0.21807209794158997 all:0.017020452534116753 its:0.014611990512342648 :0.11786149832310588 +of:0.5851754886915874 and:0.09792368287421244 in:0.05360371760567696 to:0.04377364395578573 :0.21952346687273733 +and:0.53301647430356 according:0.18855364544984346 subject:0.05687492891051288 or:0.032334586950579815 :0.1892203643855039 +1st:0.042095599976648704 first:0.031209446361048512 second:0.0014616572088388344 Fourth:0.0011265646997443205 :0.9241067317537197 +has:0.5754807035061765 had:0.38123060015259863 lias:0.01213174675177124 did:0.006751801258460625 :0.024405148330993033 +United:0.05110882146953157 public:0.03139122943806514 present:0.03048060166881676 original:0.02588897532765933 :0.8611303720959271 +to:0.4137023431313574 and:0.19390506593389525 which:0.04266942446205401 of:0.038726912196509394 :0.31099625427618405 +the:0.39567322440135516 of:0.2268824035230172 a:0.1121646092154969 and:0.05001148464590202 :0.21526827821422875 +are:0.0652766265234467 two:0.04632530012242121 men:0.022518310934864737 were:0.020109435900386354 :0.8457703265188808 +the:0.6021232686034168 his:0.04378963189812957 a:0.038046606167904895 this:0.021536148059579967 :0.2945043452709689 +the:0.4491162821286029 his:0.09155201747167127 a:0.06233928822509758 this:0.04628047281221058 :0.3507119393624177 +more:0.024836173599515076 evidence:0.007996948596739455 fruit:0.0037581982245481383 intention:0.002294507092039183 :0.9611141724871581 +ing,:0.19512746011448742 street,:0.09469604633773925 about:0.07400492662069608 or:0.05013618663371991 :0.5860353802933573 +and:0.14324017373681433 of:0.06425355591522386 the:0.05367742999115121 to:0.02826384342065922 :0.7105649969361513 +other:0.017079454540086123 the:0.01514127848400741 first:0.012799391958579471 same:0.012655426321905994 :0.942324448695421 +made:0.28560514274758364 up:0.07894431689467703 going:0.03748617967644365 found:0.02838960938709235 :0.5695747512942034 +best:0.14312048064880495 first:0.031822726318343895 much:0.023004256494075857 heavy:0.022266495451964474 :0.7797860410868107 +the:0.27399860113917235 regular:0.0017542264897599342 of:0.0010127302975580707 to:0.0005479573120732974 :0.7226864847614363 +will:0.2989921547075224 can:0.2771365273028577 could:0.16304696925019357 must:0.15951656570217337 :0.10130778303725296 +premises:0.9992419729344515 property:0.00048361571793305996 statute:6.689474720678658e-05 described:6.2471526797369e-05 :0.0001450450736112121 +sense:0.22054648616179234 spirit:0.21549468091017865 order:0.06229152687849407 state:0.05850754640236766 :0.44315975964716736 +giving:0.23178209934307573 and:0.17164420386715154 with:0.1495781966367098 in:0.08807800652730961 :0.35891749362575337 +him:0.01382541078868389 Germany:0.009822562963759201 them:0.009692580489687828 capital:0.009502153853736891 :0.9571572919041321 +of:0.19924821238551857 and:0.09782727820325578 is:0.054222737852144924 will:0.0514046163291603 :0.5972971552299203 +if:0.3671188918800823 on:0.1413390263920167 with:0.06774172478621308 and:0.054938167164307196 :0.3688621897773808 +about:0.32462729659141726 longer:0.19066976846018607 more:0.06908435240705343 to:0.026785278974445024 :0.38883330356689827 +legislation:0.07889964118311713 for:0.045678560450696806 provisions:0.04214758456323068 by:0.035934921333103984 :0.7973392924698514 +of:0.1945506654164092 and:0.09799004081417 the:0.04656684997623317 to:0.02656322976954848 :0.6343292140236392 +and:0.5187549331589423 from:0.3667787379050359 to:0.04952009953490964 aud:0.027387066009659587 :0.0375591633914526 +South:0.37233635370420365 country:0.2479146871842838 bottom:0.04007177658670193 state:0.027565298752706996 :0.31211188377210364 +in:0.2499643801262389 a:0.06081036505178229 ever:0.057578274015363876 fired:0.05724894261146611 :0.5743980381951487 +own:0.05268244385550963 great:0.021825090560513325 national:0.021148516661087573 most:0.018664507733519818 :0.8856794411893696 +nine:0.2398766859056408 8:0.2157693187782185 six:0.2064884682635966 10:0.18274785940809873 :0.1551176676444454 +was:0.20392196509273833 is:0.14107031194880995 took:0.06346389236488666 had:0.06307838949170665 :0.5284654411018583 +and:0.3678777800373636 it:0.1933853506882432 what:0.09981818450524342 he:0.0669186369005205 :0.2720000478686294 +the:0.34419158646135944 this:0.037987178880068424 said:0.032330946060969215 a:0.031122925515753973 :0.554367363081849 +at:0.9120882764930004 in:0.027298915258527377 until:0.015525565027647872 of:0.011096419522757176 :0.0339908236980672 +old:0.04673310726050787 same:0.04098065088999212 water:0.038906990847743766 government:0.033924921238435865 :0.8394543297633202 +now:0.22504552670761283 serious:0.20346299624708974 highest:0.18885859419897827 near:0.035200239932624555 :0.3474326429136946 +and:0.0993718031066457 accompanied:0.05987290022461454 who:0.02488195524219371 received:0.019656213035319368 :0.7962171283912266 +and:0.07678793978829287 it:0.06506133384943426 she:0.05086772753325198 which:0.019859057861240634 :0.7874239409677805 +of:0.33711403457075334 to:0.12226906947479646 and:0.11989593440943642 with:0.10713226448552027 :0.31358869705949355 +order:0.05383729510461628 cut:0.04726902654016431 sell:0.03612745718673236 buy:0.017810762102538378 :0.8449554590659488 +man:0.05942837300765842 one:0.050069301851206366 amount:0.02811537122099273 whom:0.020044724432228888 :0.8423422294879135 +do:0.0655197249580959 and:0.047744652135733145 the:0.04252636332564721 of:0.02988618475467784 :0.8143230748258458 +are:0.35006942299629473 can:0.10713917616399592 fail:0.07159717944192044 could:0.06613265227982777 :0.405061569117961 +and:0.09197308409717814 of:0.07609773870793017 the:0.057872812801843046 to:0.021271546562720643 :0.752784817830328 +made:0.13456530983582068 took:0.11866242945107194 bears:0.08698202307789259 ran:0.05987303832964262 :0.5999171993055722 +and:0.12111521087683998 the:0.10047608094606271 The:0.0857172836922619 to:0.06083419683596417 :0.6318572276488712 +John:0.11243655382186515 and:0.11111947638079332 C.:0.08886429922846831 J.:0.07906543218912276 :0.6085142383797506 +giving:0.21947230713444488 brought:0.08172969965812003 rendered:0.07525357639652346 far:0.015362315131711412 :0.6081821016792001 +a:0.12354214804549651 farm:0.02342299536020675 political:0.016027781953185827 train:0.00897912217403718 :0.8280279524670738 +decision:0.4362131649413839 order:0.2317136292807632 petition:0.11180895943560903 sale:0.07356145813329813 :0.14670278820894578 +be:0.6420910406536748 cast:0.1516970246970072 live:0.07958022774913699 become:0.03474431569759066 :0.09188739120259015 +due:0.13481362330400548 and:0.08664988652806166 one:0.009485174095411046 from:0.008130462638682842 :0.7609208534338391 +and:0.025406094307975368 that:0.011688926110058175 .:0.008960894031345817 it.:0.008886374975875699 :0.945057710574745 +were:0.2828557977951823 at:0.2667935623121448 are:0.12403704295497972 without:0.11259895456486786 :0.21371464237282545 +is:0.3198192270827757 was:0.23215060203474402 and:0.050238262936090516 got:0.03972644571061766 :0.3580654622357721 +bonds:0.31899588229885667 same:0.18219820180132365 stock:0.06432191730353458 property:0.03789682103326903 :0.39658717756301604 +whose:0.18664766011595013 and:0.13016815976747523 the:0.10705981773580939 of:0.05910026238073815 :0.517024100000027 +spent:0.178535655737547 made:0.04487821572184881 given:0.042115732300050904 engaged:0.0377868298318103 :0.696683566408743 +a:0.38446277865610573 the:0.2915456395500864 an:0.05950288777238684 in:0.015522688294886839 :0.24896600572653407 +and:0.020380485847543747 H:0.014614288897185966 J.:0.01308133584480152 Brown:0.009855061809812354 :0.9420688276006565 +of:0.03224109667874665 is:0.028149621341438964 a:0.018328863225581485 the:0.01595460763754185 :0.9053258111166911 +is:0.5023457024867928 was:0.15468942982889924 would:0.05469869481156201 will:0.04388141365979871 :0.24438475921294722 +of:0.5405722045949075 in:0.15140404412114003 to:0.13832271101342913 into:0.058761132250179274 :0.11093990802034417 +the:0.1835418026406272 and:0.16248513607166076 of:0.06886616370611201 to:0.06309563478395051 :0.5220112627976494 +and:0.07664204713994305 seems:0.049858707803274796 she:0.045673423712130096 ble:0.028576243177911194 :0.7992495781667409 +the:0.4154749309190942 a:0.07997761645563142 their:0.07291349116293197 this:0.026295001113265496 :0.4053389603490769 +that:0.4000134046069285 and:0.16559011459121722 but:0.09520273771831095 because:0.038921363785347954 :0.3002723792981954 +he:0.4544231096981514 they:0.368088527722716 it:0.05228013257665498 she:0.05206237279825434 :0.0731458572042234 +the:0.4103214071963715 these:0.060981207468474116 a:0.03542632671279191 by:0.020254559402253704 :0.47301649922010897 +its:0.5122725287962331 the:0.4378785628896519 our:0.02327170389732075 tho:0.014651300500855285 :0.011925903915938953 +further:0.39608227190059003 said,:0.07586980181916175 is:0.03917999730243705 was:0.02460776147284175 :0.46426016750496946 +.:0.20484932981108683 on:0.12133485854133187 would:0.056190055524868415 must:0.03764937670244565 :0.5799763794202673 +made:0.06851471867458277 engaged:0.05299143047381044 held:0.050683531046250126 found:0.043124497204921286 :0.7846858226004354 +of:0.2088305748233409 the:0.162299811924746 The:0.11044966574420777 and:0.0832982315617466 :0.43512171594595894 +is:0.7763733262009249 was:0.18963041555326388 Is:0.013931131044859565 are:0.009760855466147593 :0.010304271734803932 +sold:0.19765009130149144 plant:0.08954348789101914 seed:0.053433032818253554 field:0.05302879591012748 :0.6063445920791085 +be:0.5129747034731924 well:0.10430145991200286 not:0.08795886762003811 possibly:0.03257785883496784 :0.26218711015979873 +of:0.49521651578877957 and:0.0735849858952176 in:0.0681964616394135 to:0.06560196426380993 :0.2974000724127795 +N.:0.07892492023921344 S.:0.05918460800792026 and:0.056044128212177594 of:0.03789466000704048 :0.7679516835336482 +of:0.5539446724734082 in:0.17491025909425442 to:0.1051272216672823 and:0.05224548864079737 :0.11377235812425761 +the:0.568525537023257 thc:0.04595606773947441 his:0.03416923711401726 a:0.032878341496468164 :0.318470816626783 +limits:0.3027964372089303 power:0.004086043888008862 possession:0.0021768180969336747 center:0.0015157345637524064 :0.6894249662423748 +Co.:0.012662752220836375 Johnson,:0.009170789530198894 Smith:0.0016947974344840662 Jones:0.0003664426769106765 :0.97610521813757 +of:0.5137678883094292 and:0.10389477948736821 that:0.042487386496446976 but:0.03535706552763104 :0.3044928801791246 +hole:0.04990205953834465 building:0.03351479858703358 moment:0.02727499756098739 gun:0.02525921496152896 :0.8640489293521054 +to:0.15823746958526963 a:0.14423845928212264 and:0.11891658608800042 the:0.06848642654908801 :0.5101210584955194 +would:0.22841554698548044 to:0.21819986992149307 may:0.2098558886320615 must:0.19805880624035238 :0.14546988822061258 +of:0.35419039909734623 the:0.1070487847999342 in:0.06150831352299782 is:0.031099263831359112 :0.44615323874836266 +come:0.8772139285622061 as:0.019066058445141684 n:0.01575337150203053 hold:0.007188160058834614 :0.08077848143178702 +now:0.09063841872153203 not:0.06014959696565802 found:0.049248974416161356 still:0.04419137433230431 :0.7557716355643445 +part:0.22459235228791274 line:0.08889336534669429 portion:0.07726930184087742 boundary:0.056822049576119804 :0.5524229309483957 +Treasury:0.10574300637947598 War:0.054694333387503895 State:0.05326443694137252 the:0.0059253922584209815 :0.7803728310332266 +She:0.31895395401550236 Ho:0.2602744769183448 he:0.14212138231087554 It:0.13878259999761008 :0.13986758675766714 +in:0.37966821290297165 and:0.16153228197431627 to:0.15539798268433802 of:0.043024688987928876 :0.2603768334504452 +a:0.15700648724556338 and:0.12042394345504817 to:0.07784068146765705 of:0.07638001469648996 :0.5683488731352415 +all:0.8443846104312408 of:0.06645168018440205 nil:0.030106639204293656 to:0.028688987327051243 :0.030368082853012388 +.:0.1854380659637467 at:0.14701481600209979 now:0.08918603322416527 the:0.0043446249382245485 :0.5740164598717635 +corner:0.15169778585228005 the:0.14725529887672661 place:0.06226186525884461 center:0.043775408754570325 :0.5950096412575785 +the:0.29634141389383045 our:0.1707303168747197 when:0.1294107468743191 if:0.12526068988203612 :0.2782568324750946 +knew:0.000777598252021886 opened:0.0005204206140335804 knows:0.0004974899331213992 did:0.00047965410386700136 :0.9977248370969561 +was:0.09796565194055529 any:0.09340881018597486 iu:0.07453150096501043 the:0.05853992375582981 :0.6755541131526296 +By:0.14154368829585004 by:0.0896172518945013 through:0.08540077111765997 away.:0.059173914715021717 :0.624264373976967 +ought:0.3980032656985545 a:0.11832072520050327 not:0.06422799255953603 like:0.045705128363425634 :0.37374288817798074 +week:0.39006855761896797 September:0.3148100012692145 night:0.24433700548056128 beginning:0.018648273256479674 :0.03213616237477653 +way.:0.0014649935742227658 to:0.0010903676380354121 protection:0.0008726519766630998 rights:0.0008255521015511985 :0.9957464347095275 +total:0.17007664485603016 declared:0.1353901303432379 cost:0.04600960687166654 real:0.03121282148831482 :0.6173107964407506 +.:0.07490287229554654 M.:0.03946385526457651 Here:0.02485545877669898 then:0.011682565439718115 :0.8490952482234602 +In:0.5570252200468062 in:0.3890200733184334 into:0.04645984699346703 Into:0.005675977004506836 :0.0018188826367864248 +Los:0.9708402556452833 San:0.006796460352414848 the:0.004244368972674883 York,:0.0016935605362027716 :0.016425354493424305 +o'clock:0.1578137079762713 The:0.05186434423928468 and:0.04010084063189734 a:0.039000871770288985 :0.7112202353822576 +the:0.09673725038300351 its:0.0022315732795348377 my:0.0017811237047599229 tho:0.001235070460454585 :0.8980149821722472 +me:0.07172881658159347 him:0.07148016303382008 them:0.03034347524492091 sister:0.026314571257861085 :0.8001329738818047 +This:0.4827634181265833 It:0.2785414966789873 it:0.09396045289688487 tion:0.024931940305039976 :0.11980269199250455 +not:0.1084781955916847 a:0.1067053912481612 in:0.09579152184789162 the:0.09057283998002144 :0.5984520513322409 +I:0.9057103999821652 We:0.044201659411323785 one:0.020775757515372088 "I:0.017606067375548283 :0.011706115715590782 +A:9.457420986589368e-07 it:5.215138515824927e-07 smaller:4.890025412595359e-07 of.:4.990211946538766e-08 :0.999997993839389 +and:0.07376530608063625 occurred:0.03678550990641146 that:0.03432324968575662 of:0.028239186482949874 :0.8268867478442457 +the:0.5635930477002048 his:0.24512690619835223 her:0.0755383576933239 my:0.06111601674043322 :0.05462567166768578 +I:0.09681400127169561 against:0.010743548864091575 heard:0.008477198754858993 House:0.0049318279399680936 :0.8790334231693859 +formed:0.0007815264454019265 -:0.0003327664577602369 and:0.00019830055309624767 to:0.0001977630690361864 :0.9984896434747054 +of:0.30868063900923415 and:0.11710788256984792 the:0.09454834670523628 a:0.084022489852988 :0.39564064186269376 +any:0.9745622061392429 the:0.009715578433361051 a:0.006228427420469561 bis:0.0047999056384012305 :0.004693882368525326 +of:0.6132184144564 in:0.1971942984980669 to:0.0590647820217733 In:0.05653193644231741 :0.07399056858144239 +that:0.7893674839934702 That:0.19647505430254858 that,:0.008567203631433847 thai:0.004217571959952627 :0.0013726861125945243 +be:0.5625418110749172 pro-:0.21224356415553844 bo:0.056985733782568646 have:0.05368170571732249 :0.11454718526965312 +Frank:0.05015772865143546 John:0.049488983240091745 Charles:0.04550000638972826 J.:0.04466002296252637 :0.8101932587562182 +to:0.7361828695832319 upon:0.1722276054424218 in:0.027195611374887352 with:0.020672401462563328 :0.04372151213689573 +people:0.03779975713396915 law:0.03345354502232287 military:0.029937749875953355 government:0.02691614433278007 :0.8718928036349746 +men:0.035322793771307176 natural:0.006512951109013652 than:0.005063922689176354 Western:0.0045192734589179955 :0.9485810589715847 +fill:0.14531764687790028 same:0.046895532022152644 air:0.04569190887983367 sup-:0.03718259675943904 :0.7249123154606745 +in:0.3207291588234647 at:0.23097249032679035 of:0.22169610804032816 with:0.11939395460526983 :0.10720828820414696 +day:0.032060921731111344 and:0.023257182838462495 out:0.016608139984233054 tion:0.01372361830507933 :0.9143501371411137 +and:0.08574236881522457 ed:0.07134291844475565 up:0.05535914580956111 but:0.026476220322872345 :0.7610793466075864 +worthy:0.04023847452403823 the:0.03502060523915556 interesting:0.0220540005589792 a:0.005754070255715903 :0.896932849422111 +be:0.8853827157046084 he:0.05534657078422152 bo:0.03314264124050699 lie:0.011493515256356675 :0.014634557014306479 +to:0.9996934892702871 almost:2.815959857104252e-05 you:1.9249546700258985e-05 only:1.656267079168529e-05 :0.00024253891365002195 +he:0.6951254307844927 it:0.07098587753728895 been:0.003218188583329233 had:0.0031507141986976323 :0.22751978889619132 +have:0.42477417176172616 be:0.33908560592685677 had:0.05875404754484687 has:0.03327105131293888 :0.14411512345363134 +other:0.002047242667207939 skin:0.0012889254015949836 such:0.0007266920100292036 the:0.00016558448466236748 :0.9957715554365056 +set:0.1347376025953652 put:0.09371484589056896 come:0.0135685254488678 taken:0.010156321396490498 :0.7478227046687074 +of:0.30646376521509827 in:0.169016345273979 and:0.14619396295784398 In:0.05595466636337768 :0.3223712601897011 +the:0.5666292728841699 this:0.061146399585246605 tho:0.026702701544065385 these:0.020968801738135052 :0.32455282424838316 +on:0.9897882123092194 ou:0.00915071249279118 oa:0.0009885927620824173 by:5.039036561946934e-05 :2.2092070287536263e-05 +battle:0.2201714762179916 fire:0.1374133504478863 crowd:0.049928844439462175 weather:0.025588074367420374 :0.5668982545272394 +regard:0.5458453133953357 order:0.09666029346959269 the:0.03821871929243145 and:0.016839333006662655 :0.3024363408359774 +of:0.25902852976819934 and:0.07478768784797545 to:0.05460254644412681 or:0.041174067667747886 :0.5704071682719505 +days:0.6845994373129266 hours:0.10828572123541082 years:0.028746078342746437 months:0.024298165176649737 :0.15407059793226632 +a:0.00427288255108169 pressed:0.003359218508325718 of:0.002959491193877365 the:0.002108494820952398 :0.9872999129257629 +I:0.07804635956349032 that:0.0042578282106941825 as:0.0035325682262708634 you:0.0022411056579354103 :0.9119221383416092 +the:0.892376589198444 tho:0.04235713963972626 his:0.024427994254549983 after:0.013800099992450403 :0.02703817691482924 +and:0.18331495943865295 of:0.1255181972766651 in:0.11756072613665994 the:0.07848577819935099 :0.4951203389486711 +on:0.9148129346059282 of:0.04735613266036477 near:0.01896620039320111 in:0.009879957834788667 :0.008984774505717288 +men.:0.004225706788863111 one.:0.002367902432317389 people.:0.0015585528582199592 work.:0.001361467535618347 :0.9904863703849812 +public:0.06079373265080885 country:0.04880925140035495 community:0.033949635443084845 opportunity:0.0338362325723366 :0.8226111479334147 +easy:0.2967660100447977 the:0.09903973799756263 able:0.09542074819304532 difficult:0.0918324808132118 :0.41694102295138263 +or:0.35415504260088093 in:0.3266008447357336 to:0.08579539174863966 and:0.05290599066297497 :0.18054273025177098 +I:0.2726573930233234 we:0.11504363970106944 We:0.10794389684165841 who:0.10759358518406358 :0.3967614852498851 +part:0.3644134483933685 top:0.05551243363501848 face:0.047425933903054225 back:0.04666826612595544 :0.48597991794260353 +she:0.5589941094136269 he:0.32309597080529034 I:0.02271493627850882 they:0.022714839878631782 :0.072480143623942 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +of:0.48614804872482076 As:0.24121133034175324 as:0.08534314839872373 and:0.05487746680619969 :0.13242000572850252 +of:0.37442274844968537 for:0.21042977725102613 at:0.1353079736523066 in:0.053199533844771656 :0.22663996680221019 +an:0.7913278517930159 the:0.08454742029182219 too:0.038155491893296936 another:0.014677766736158024 :0.07129146928570694 +of:0.6717587603361547 in:0.1307616337614596 to:0.09684420227351705 for:0.03897134141076855 :0.061664062218100266 +time:0.9928829892131826 moment:0.0013837167126292784 period:0.0008530230971319718 season:0.0005114727611288287 :0.004368798215927152 +a:0.9998853635978585 another:7.033218670620619e-05 the:2.269837654920682e-05 to:1.3779413803571332e-05 :7.826425082389511e-06 +the:0.5261009895756256 tbe:0.32304285691331613 all:0.03915774382911102 his:0.032992055913693676 :0.07870635376825344 +by:0.4691515289936965 and:0.02416178863687305 S.:0.013155301208831049 N.:0.010141737199460354 :0.48338964396113904 +war.:0.3957852846643892 government.:0.025089845699509603 money.:0.004604745420053957 people.:0.0022692049982079954 :0.5722509192178394 +Mr.:0.16220531118050868 of:0.11769760569245884 the:0.08542082333383777 The:0.05443262471147593 :0.5802436350817186 +No.:0.15106100553619486 to:0.1243001866470914 of:0.07463222437435142 the:0.0660937229275699 :0.5839128605147923 +county:0.3732871643665108 or:0.060132497327536276 attention:0.0568823170592615 time:0.03016196774370802 :0.4795360535029834 +or:0.7519095540054435 of:0.026440268594967318 the:0.026271499597821893 in:0.021952257925933655 :0.17342641987583363 +heard:0.38045220625585513 seen:0.18529618732394149 saved:0.052399148181265294 followed:0.01659781900676972 :0.3652546392321684 +and:0.9955918012951339 at:0.002906896298194556 in:0.00031786579881544995 as:0.00023480322421334918 :0.0009486333836426208 +or:0.23467760974055416 of:0.11834870103380153 and:0.08183628643020105 his:0.046740923405743276 :0.5183964793897 +and:0.2625327943511301 ,:0.03146658259931945 of:0.03092946665549879 by:0.023040680992781105 :0.6520304754012705 +of:0.23058475456857525 and:0.0754039274188516 was:0.07226157888874639 the:0.04937280504629111 :0.5723769340775355 +ot:0.7134635084912849 of:0.25812739593637063 and:0.011485923028064995 men:0.009943837339822247 :0.00697933520445726 +every:0.026662060189550276 full:0.024318058706403363 expressed:0.01978421660105792 one:0.017152604493846195 :0.9120830600091423 +Board:0.04748548278269842 State:0.04048155050483828 number:0.03518466951177834 board:0.027463388158588224 :0.8493849090420968 +success:0.17036219635619368 use:0.13408798399921998 building:0.08151583535471112 time:0.0680735251860469 :0.5459604591038284 +is:0.027464720537352844 the:0.016691197501399933 was:0.015956854252849737 are:0.01251737917562406 :0.9273698485327735 +treated:0.1785831748196237 be:0.10088876400371556 to:0.09261197660279145 a:0.0843829426204861 :0.5435331419533833 +labor:0.9801015493538647 information:0.005617543246517713 than:0.003867091957424151 frequently:0.002035597304100151 :0.008378218138093299 +which:0.3746783446876453 it:0.06862057651226576 them:0.01237957738213092 God:0.011240444791658593 :0.5330810566262995 +the:0.8301294664728867 his:0.0418442620179785 its:0.026989001408318707 our:0.02168918162164492 :0.07934808847917132 +there:0.9476391755397516 it:0.03461341648001024 what:0.004104533852392401 he:0.002659355361046 :0.010983518766799595 +the:0.4762385313633296 his:0.17893439668779854 a:0.08283777921487341 its:0.05114263651050054 :0.21084665622349794 +the:0.18731101137764225 then:0.0879313839786454 was:0.08457347702660642 they:0.05641345462560401 :0.5837706729915018 +eggs:0.05528187674064636 cities:0.04698315261131494 what:0.03676735225432949 I:0.023649821577335247 :0.8373177968163739 +and:0.2637485351199977 of:0.2604179855712634 be:0.16101926820209925 on:0.08275958980786922 :0.23205462129877036 +the:0.01121143844976435 a:0.0023490145713895003 12:0.0021407618504764364 bo:0.0013046855682533897 :0.9829940995601164 +in:0.32594546196406576 to:0.3134909869248536 at:0.10219624012384802 near:0.07241407773512724 :0.18595323325210528 +used:0.10459757439087608 found:0.09091402593552617 interested:0.06723568256695471 placed:0.05659701761119261 :0.6806556994954505 +vessel:0.1616242258847687 payment:0.1321650262128471 milk:0.07739157381177406 club:0.07541792748533195 :0.5534012466052781 +and:0.046283915525121115 companies:0.04219509714665887 are:0.03159962667267835 now:0.028763523814865438 :0.8511578368406764 +test:0.4900441292275229 with:0.27392503012889285 be:0.15333786555943418 mean:0.033052647135616696 :0.04964032794853324 +navy:0.05354389340337843 blood:0.027389192113630792 place:0.025091789360679514 work,:0.022348252148568035 :0.8716268729737431 +the:0.18725151140198365 a:0.18532601867479367 who:0.17725598838203663 and:0.13716699011603248 :0.3129994914251536 +people:0.07317729058069969 while:0.07258473247700721 man:0.06641932979476509 right:0.0533723125548623 :0.7344463345926656 +at:0.8187754693598315 in:0.0610104913019033 to:0.041628360629828304 nt:0.03351723589675104 :0.04506844281168582 +.:0.32613555276493356 R:0.048248559365704734 of:0.03451509876284042 B:0.034427929926298145 :0.5566728591802231 +the:1.1899983632250003e-05 said:4.233437056075231e-06 Co.:6.87741382292924e-07 Mr.:6.555671085247385e-07 :0.9999825232708208 +.:0.0005113291320606979 ,:0.00024096343589399217 Company,:7.526673691996976e-05 C:3.0808011119466195e-05 :0.999141632684006 +went:0.4552646457249312 decided:0.16209190473089702 tried:0.16034997207349447 proceeded:0.04333021261704627 :0.17896326485363093 +and:0.4053734220683981 &:0.13538928569686237 of:0.05396368885584499 the:0.011770211724479009 :0.39350339165441556 +formed:0.13051757973671932 secured:0.055468331915371843 broken:0.0482402788862954 none:0.017183000556225767 :0.7485908089053877 +to:0.26543057040703844 will:0.2636413303262558 should:0.18447461214435795 may:0.15672945283108553 :0.12972403429126234 +grand:0.019917225471927563 no:0.016870344004184617 means:0.00965662059163319 experience:0.008888114162520092 :0.9446676957697345 +any:0.37246480441251045 a:0.36419201062856255 the:0.22207746883057275 honest:0.0158713118839924 :0.025394404244361856 +the:0.8437583516846614 down:0.06420444883331394 great:0.01715169993242135 of:0.015576987100371401 :0.05930851244923186 +the:0.4386438088129693 this:0.07338750689618645 its:0.06750826702250448 his:0.05082758309759251 :0.3696328341707474 +had:0.30255508116637575 was:0.09205460098995054 in:0.08507340659068015 of:0.07445771014008778 :0.4458592011129059 +the:0.04461027493185002 character:0.006918356889143034 it:0.006788037431768241 events:0.0037180310240640738 :0.9379652997231747 +the:0.6356215579995941 in:0.12319884475525904 my:0.04457973369293655 each:0.03319175913529344 :0.1634081044169169 +the:0.9342728066212175 our:0.026379313069476745 conditions:0.008066056710890107 tho:0.007220121824442245 :0.024061701773973376 +to:0.6889643832192065 who:0.2898151385212553 would:0.01000941996989538 will:0.005760732652155511 :0.005450325637487339 +fallen:0.16272523337400094 up:0.09567663886278294 said,:0.0491565851984114 told:0.015773129177132788 :0.6766684133876719 +for:0.1848725964472949 profit:0.15488655195097262 and:0.07441248886733612 New:0.059151824335699064 :0.5266765383986974 +wonderful:0.05608239465152514 great:0.03780695922422522 the:0.029799085776547485 most:0.02595079359159752 :0.8503607667561047 +felt:0.048909478696629996 looked:0.04552713883501978 grew:0.027596781158969706 was:0.02126141104620411 :0.8567051902631765 +Southern:0.54296946048486 United:0.3581171775712204 two:0.005045518165680063 U.:0.004112638415012538 :0.08975520536322705 +the:0.645487940933503 to:0.1371299557200006 at:0.08254518065232873 from:0.07002853034369322 :0.06480839235047442 +their:0.10451237059724679 best:0.050861450907628204 sufficient:0.01165977478835752 and:0.009467036230440212 :0.8234993674763272 +followed:0.08472086212603308 accompanied:0.031632060702995624 done:0.014847183272971883 made:0.014270395989414764 :0.8545294979085847 +and:0.9461389213579066 that:0.013218252394032593 but:0.00638308868288755 him,:0.0033075399776520825 :0.030952197587521137 +of:0.3569770839096716 that:0.1433318376294079 and:0.12907762387293548 etc.,:0.11647367634318213 :0.2541397782448029 +which:0.05410810382883926 power:0.049220964432185675 who:0.030211963903997288 I:0.017649811714774904 :0.848809156120203 +records:0.07622360674204569 people:0.04820093105783444 facts:0.03578142788268628 ties:0.021402518260812395 :0.8183915160566213 +a:0.3769521825507097 the:0.3092517930868245 that:0.13335072258686537 two:0.05878577118620704 :0.12165953058939345 +the:0.10917388677073948 he:0.060909432713190416 lie:0.038706011151794534 his:0.032513617747027816 :0.7586970516172478 +the:0.38303701568226617 any:0.11290742145331112 said:0.08529389208531626 no:0.07837440301748186 :0.3403872677616248 +city:0.0906069387736062 town:0.07254119023499792 world,:0.02686358277580563 court:0.022672849383855265 :0.7873154388317348 +and:0.45031716231362307 the:0.18940080144728255 of:0.10496297792699227 or:0.030164514289796163 :0.225154544022306 +and:0.25262676796490713 or:0.1013186330862511 the:0.07426676224965378 of:0.0735527269223688 :0.4982351097768192 +official:0.11281797858342905 following:0.0539259828512921 the:0.015808248450168903 almost:0.014981301293981534 :0.8024664888211285 +and:0.1476078335262073 of:0.11101364301827957 the:0.06524093363580165 to:0.050567936875504434 :0.6255696529442071 +weather:0.24847077886045704 grass:0.06853005162455782 there:0.027624686071891884 summer:0.026816689035246852 :0.6285577944078462 +In:0.8443254039518919 in:0.054125113052258624 of:0.05152743771339889 price:0.008980632093837558 :0.04104141318861307 +serious:0.6415176402024052 good:0.04653006643056264 similar:0.011998485820328208 labor:0.005077629300512789 :0.2948761782461913 +the:0.32279958000439896 The:0.3150532773520676 tho:0.11943219781471592 and:0.08376485112917631 :0.1589500936996413 +the:0.43909376558689617 a:0.0344504810150033 these:0.02269930847595286 tho:0.022237695032559013 :0.4815187498895887 +campaign:0.07644391857225075 living:0.033058448140935934 hole:0.0290964330106161 while:0.02607425965910199 :0.8353269406170953 +the:0.20456292451864355 to:0.10100922171243569 and:0.0956194380754673 was:0.0902275599649257 :0.5085808557285275 +to:0.19464462563955254 and:0.1928830469823311 that:0.14670808063321353 of:0.12257071819358224 :0.3431935285513205 +and:0.07182349131247531 of:0.059617931428472874 the:0.05388143543295026 to:0.026310828781584847 :0.7883663130445168 +to:0.9997918302260069 lo:0.0001570964377548322 u:4.379737569772246e-05 and:3.0794085371367667e-06 :4.196552003444259e-06 +the:0.39092284998654026 their:0.12032427097898053 a:0.07475574512054942 Mr.:0.05894914752317061 :0.35504798639075924 +and:0.007629362028219242 Lincoln:0.0023541781178398015 John:0.0020339073344689293 to:0.0013184210812377775 :0.9866641314382344 +the:0.4260241360015604 a:0.1311208926626271 and:0.06022869779824387 The:0.044995887566045195 :0.3376303859715235 +people:0.23144309212682362 the:0.1506256184923316 men:0.07347237115620081 these:0.061069133372005355 :0.4833897848526387 +there.:0.029039235317910875 treaty:0.003856493805133532 President,:0.003688395464334668 office,:0.002912207739087228 :0.9605036676735337 +as:0.45664841541624934 that:0.11042451038706841 and:0.08945125183569415 when:0.056042162178014936 :0.28743366018297317 +who:0.26692673819529666 a:0.18785858351467044 the:0.07616864786234559 whose:0.06588319951483712 :0.40316283091285027 +as:0.9265239063311633 a*:0.02294737768639665 aa:0.010762453379104198 from:0.010757478127160814 :0.029008784476175317 +said,:0.2177435227590346 said::0.1427144412338942 would:0.09323261934557728 may:0.025581373364492715 :0.5207280432970012 +in:0.6047457211308485 of:0.16207869373752787 In:0.09004538381168915 a:0.0429736926834313 :0.10015650863650315 +will:0.38717839132995724 to:0.28457647243237316 would:0.2670778000648386 of:0.038791416482938386 :0.022375919689892623 +out:0.15412768013308095 quite:0.050062059460385104 is:0.033083133923636376 to:0.0286932330515317 :0.7340338934313658 +dollar:0.487692780206813 hundred:0.3764963482069648 thousand:0.03301292950059908 dollars:0.012921614020710816 :0.0898763280649123 +the:0.3776848255225242 a:0.0887440087599077 this:0.04308133229421538 such:0.038441963565132964 :0.4520478698582199 +by:0.08621830967915835 the:0.04636148155283131 a:0.045724865802102506 an:0.037342504447979374 :0.7843528385179286 +and:0.05528793677015723 day:0.014733447897540082 feet:0.013618260083480428 ed:0.013415933013914043 :0.9029444222349081 +the:0.32595722105206715 St.:0.15435559123775264 a:0.10827987622138716 tho:0.08674867149254549 :0.3246586399962475 +of:0.5501471573521923 and:0.2529093507670277 in:0.014374930031535171 the:0.009397710022667455 :0.17317085182657735 +Now:0.13140660485924843 the:0.08902184154955377 -:0.0423179484900848 W:0.034647575348477025 :0.7026060297526362 +during:0.7928543610501771 in:0.07419140395040187 nearly:0.06188328870447254 by:0.029837833744580097 :0.0412331125503682 +the:0.0013037767493009507 being:0.0007008454514300035 be-:0.00026315170015677066 own:0.00019365607819962836 :0.9975385700209125 +was:0.5435211419543815 is:0.09529112867179704 I:0.0507534068768413 had:0.04655582481343953 :0.2638784976835406 +to:0.9986491036964051 and:0.00037257687276289093 rather:9.921287492031022e-05 in:7.403319052804109e-05 :0.0008050733653835913 +shall:0.5812452961269188 may:0.15358723767882845 to:0.12760454754731332 will:0.08804532488237353 :0.04951759376456595 +the:0.0005179999433021646 A:0.0002639306992196761 a:0.00019686161081884155 The:0.00016916987412432896 :0.9988520378725351 +were:0.38998733089309356 are:0.147279457062699 would:0.10404385432776922 will:0.08258156375112631 :0.2761077939653119 +from:0.2614632336580859 in:0.2110579092727464 George:0.013792881198973025 the:0.008019495629354412 :0.5056664802408405 +in:0.2245215804599846 a:0.10006285351832676 more:0.09081834912149249 very:0.0837225923497449 :0.5008746245504514 +of:0.07814096495705551 and:0.06760889751563269 C:0.05978234555938611 the:0.05942156109633506 :0.7350462308715907 +had:0.25769502013127016 can:0.09898329406856783 did:0.08942673142103362 was:0.06478607403116161 :0.4891088803479667 +that:0.28181350704420316 the:0.24728190528280372 of:0.21042920024009953 when:0.18663634631596032 :0.0738390411169333 +them:0.27345044913638156 it:0.25518251661070546 him:0.12766884797920586 back:0.09499305344575217 :0.2487051328279551 +make:0.04035684466286492 be:0.038568429470918236 the:0.02668114739430891 of:0.025268890572175053 :0.869124687899733 +the:0.8749958604761802 a:0.06759353138703598 her:0.014766673905418084 whatever:0.012227953790925547 :0.030415980440440294 +the:0.16979949005519412 a:0.12204908891761027 personal:0.08492198361548632 proper:0.04900750749723815 :0.5742219299144712 +to:0.24512434326943935 and:0.14314300569129773 the:0.06558648948570395 which:0.03778668138096902 :0.50835948017259 +be:0.03264129186646562 have:0.005887603247339424 bo:0.002435240447007349 the:0.0021379609984711763 :0.9568979034407163 +caused:0.7910824725229865 discovered:0.022881434746105465 taken:0.0075916264624411815 occupied:0.002243634121551231 :0.1762008321469156 +make:0.2780417870608412 think:0.018400885901735622 turned:0.014996794043369404 making:0.012498571111215504 :0.6760619618828382 +deceased,:0.16051839509466936 by:0.08756981498541916 of:0.08479323790753086 as:0.07850407522706723 :0.5886144767853134 +They:0.10655918600730764 who:0.0615990369299782 has:0.011051241073745994 city,:0.010104842450734302 :0.8106856935382338 +the:0.8132482096075805 a:0.06639314050733394 to:0.05048339240550636 In:0.03810200040499365 :0.0317732570745857 +is:0.07323698666120138 w:0.03928215668777687 recognized:0.03572921954094513 was:0.03066944737703752 :0.821082189733039 +of:0.13724090467868602 was:0.08344462479860489 and:0.07206773551945925 the:0.06616245151170921 :0.6410842834915408 +of:0.19185768142958218 ?:0.11570426001916301 way.:0.09576193865290514 that:0.022585293671925605 :0.574090826226424 +it:0.09696234856933116 set:0.06780394042580812 took:0.052833875965088505 put:0.04674149957982235 :0.7356583354599499 +of:0.5162076102805505 in:0.1072020613157248 that:0.09051311681387891 to:0.06697910993047372 :0.21909810165937196 +and:0.11048684025255955 the:0.1046004594698735 of:0.05359530541600796 to:0.03611863074856278 :0.6951987641129963 +man:0.1100828258710485 woman:0.055462630503606954 crowd:0.03331953523037526 death:0.027217327718678075 :0.7739176806762914 +the:0.735199489532237 his:0.022112185843419046 a:0.018670872897424064 to:0.010039805212399751 :0.2139776465145202 +went:0.21431587604346242 vessels:0.10337516814204263 are:0.05078857465431899 were:0.04935658999423671 :0.5821637911659392 +be:0.1979016203423284 republican:0.13671210035923673 his:0.07838208424093006 the:0.042353836103953824 :0.5446503589535509 +expenses:0.041581320351445926 failure:0.04151169315260701 homes:0.03306370219765396 life:0.02875012290639881 :0.8550931613918943 +get:0.10851532807233565 secure:0.08954133764177998 go:0.05517700313056748 return:0.03506167816084435 :0.7117046529944726 +gold:0.7857855881641833 severe:0.0053982637082408145 trouble:0.003068796981834031 fear:0.0025302682238051597 :0.2032170829219366 +entered:0.10318674745913183 notified:0.0690012782729221 filled:0.043774738502690355 closed:0.037291944541027175 :0.7467452912242285 +he:0.5161378032518448 they:0.3863794232690794 she:0.03849883276295926 we:0.03105265588460763 :0.027931284831509088 +that:0.31902005249873217 and:0.23928118023244363 But:0.12277552400001049 if:0.11795074621355488 :0.20097249705525885 +of:0.39196584125470935 in:0.31862764908950025 on:0.10161567215379227 sold:0.0693370706070182 :0.11845376689497993 +me:0.3412869293323859 him:0.21945748676042617 her:0.10359967365555803 it:0.10242261280466369 :0.23323329744696625 +is:0.5148729666913561 was:0.09364226120000528 Is:0.0677824204624019 the:0.050218600804770176 :0.27348375084146653 +but:0.15414346603191995 and:0.13704960302005706 that:0.11181600976410026 as:0.10591161921139271 :0.49107930197252997 +Court:0.8610791254483748 Attorney:0.08404173896746552 Judge:0.011916784583885376 court:0.011154790635028347 :0.031807560365245825 +he:0.45517786230053553 mortgage:0.14600778939231612 it:0.14105044964788935 she:0.033332074395749554 :0.22443182426350936 +the:0.25769896027106687 in:0.21454576064948602 of:0.1858815922955734 to:0.17864988037959195 :0.16322380640428183 +the:0.675118883193916 tbe:0.2340483573068406 tho:0.0779797442024426 tlie:0.00724501374309751 :0.005608001553703173 +physical:0.23126166458792072 moral:0.06842618043795377 natural:0.01886184219141449 French:0.01823587964777617 :0.663214433134935 +give:0.09979945018751285 afford:0.055673490046378143 be:0.006830379192726685 complete:0.006765318921395116 :0.8309313616519871 +beyond:0.8957055803263794 outside:0.08061045381600998 to:0.003815258142149146 without:0.00174204161361537 :0.018126666101846222 +he:0.13454829786537367 and:0.11598487826117854 I:0.10582268568555127 one:0.10187019669816869 :0.5417739414897278 +the:0.4442460041673314 The:0.2793666708177596 and:0.1073422900581724 it:0.030435085430096986 :0.1386099495266398 +the:0.9537589921639819 said:0.03368766417667429 Hie:0.012312092334737776 tho:6.688048672453223e-05 :0.00017437083788147983 +They:0.09619821051145004 they:0.09214159757046836 and:0.08657820371766871 There:0.08559285473387523 :0.6394891334665376 +man:0.06257296538748097 child:0.056206463111694936 little:0.04206643988281696 spread:0.0282036985300026 :0.8109504330880045 +and:0.7365525891563689 but:0.10270178668074939 one:0.05174311061608524 but,:0.01841286636902616 :0.09058964717777025 +just:0.32788488627536017 of:0.18826251576677105 and:0.10476113984959148 to:0.06525084561667488 :0.3138406124916023 +was,:0.016851918403179397 is,:0.008725409690182182 is:0.0074463034119086075 was:0.005383721987325374 :0.9615926465074045 +have:0.1757224253827329 had:0.1623619733147717 has:0.12340693207854772 who:0.019951369991143508 :0.5185572992328041 +and:0.015004830786287999 employed:0.005410135604364554 was:0.004180038469504745 committee:0.00362677417804217 :0.9717782209618004 +living:0.10683888845836102 weight:0.04459875583209262 value:0.035925198486722223 society:0.01955104433701943 :0.7930861128858048 +a:0.35407815014608396 the:0.2630589532444566 his:0.2020731735260508 our:0.09682411761680776 :0.0839656054666007 +in:0.13681907649742672 day,:0.05850589044296906 course:0.02588953841956422 friends,:0.022581057242707425 :0.7562044373973328 +a:0.49530055213712754 the:0.18008378886744827 in:0.06646051704712687 of:0.05834781375665811 :0.19980732819163904 +of:0.3579066972591149 to:0.12148629899529974 that:0.10237451465657202 on:0.09208354156164006 :0.3261489475273733 +is:0.9297950296225425 Is:0.01814436356574585 was:0.015535208572402358 ls:0.011288547425915674 :0.025236850813393566 +laws:0.026546576765162335 the:0.016156725679379178 people.:0.01584973056542255 Third:0.015558783454597772 :0.9258881835354383 +render:0.2752370218288549 for:0.08332336380585338 that:0.040242399752699665 have:0.03803540789427773 :0.5631618067183141 +she:0.14250367507223277 shown:0.015195053566973997 sure:0.01399548857925904 result:0.010284361613815022 :0.818021421167719 +desire:0.18076170839885097 want:0.07565059876574197 began:0.0712068364345171 have:0.06491310592324684 :0.6074677504776431 +see:0.6789934995030974 get:0.17502513750690948 save:0.10442847973566569 not:0.01172599060458634 :0.029826892649741213 +the:0.08337336218165213 a:0.07001499598278614 Black:0.06246913822187911 St.:0.055380467402951036 :0.7287620362107315 +submitted:0.1800759068529919 of:0.12001159348621337 about:0.1077193551104061 Into:0.07012169418806725 :0.5220714503623214 +building:0.6179138930094686 getting:0.17462481385213863 to:0.11044703309544364 making:0.021117035086000203 :0.0758972249569488 +at:0.5358412183610902 to:0.15383787050312694 by:0.1396517075137154 in:0.08450083130612011 :0.08616837231594723 +to:0.37155223244639496 and:0.062112067322742284 Christ:0.042703751874808286 so:0.04064618376962011 :0.48298576458643433 +the:0.9862446753167377 his:0.010207557628343775 one:0.0009829765495397373 a:0.0007960441317017795 :0.001768746373677098 +first:0.04638468283727037 last:0.02915426365955749 time:0.024505174555645125 exceed:0.023210875038485932 :0.8767450039090411 +is.:0.024080669753754173 dead:0.010341206355652735 body.:0.0009477027310032029 the:0.0008516794342694582 :0.9637787417253204 +well:0.5070216097018351 much:0.06604806371375818 soon:0.05829828783307327 large:0.03009277365985682 :0.33853926509147647 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +upon:0.1981402748679727 Those:0.17292645053863542 All:0.16366542310212187 and:0.038808700791138566 :0.42645915070013146 +made,:0.1053136158082234 given:0.03131936031073346 ;:0.03045987183787077 here,:0.009225614254785982 :0.8236815377883863 +days:0.7689420872512703 year:0.11222915707369653 years:0.029090454028062908 it:0.021226463916770154 :0.06851183773020016 +of:0.502110349389539 at:0.28097788099713633 and:0.1047579490717775 the:0.037010361377945944 :0.07514345916360106 +per-:0.49095751520121167 per:0.1468029398849475 the:0.010709915920912381 and:0.004996542408444593 :0.34653308658448384 +be:0.06459864023908046 extend:0.030527315791967886 speed:0.02833227656317829 have:0.02025424519396138 :0.8562875222118121 +tax:0.14705301626587483 out:0.08703441463252917 placed:0.05627400990794513 back:0.05231495398225119 :0.6573236052113997 +and:0.2907489279533026 of:0.1329414625069413 may:0.03380333265305982 the:0.03339664392501738 :0.5091096329616789 +city:0.10969817732441327 County:0.05810712810293013 City:0.056060748373094785 county:0.05072602697425202 :0.7254079192253098 +in:0.25335525678271403 of:0.2150434913210914 that:0.18868986206439212 who:0.0436827078836348 :0.29922868194816765 +the:0.5063302997875861 her:0.2698050021447568 his:0.08917129929512987 those:0.036268403890532784 :0.09842499488199448 +further:0.5738015539433711 be:0.19657740828395404 a:0.07255920886521872 see:0.03453177229427433 :0.1225300566131817 +from:0.9659202625136815 in:0.008429607360804683 for:0.00556037856059778 his:0.003256946283809681 :0.0168328052811064 +the:0.7235916415934159 a:0.016889346293607506 any:0.013253089808162933 Ohio:0.008287256050706515 :0.23797866625410713 +of:0.754156138104107 and:0.04610998616514594 in:0.032617783501521315 to:0.01923134576854965 :0.14788474646067612 +II.:0.2287352344725676 P.:0.20312506496910848 T:0.06548444368652052 C.:0.02433100227819906 :0.4783242545936045 +;:0.0025352007246563653 tract:0.0022973606692169675 tire:0.00090695563338063 er:0.0008165727581908967 :0.9934439102145554 +to:0.24884436339882846 the:0.2098467194258301 and:0.11760808434839772 a:0.06477876155845612 :0.35892207126848763 +down:0.684488296637638 driven:0.02397649684344119 proved:0.008904993302470677 an:0.007825144552588127 :0.27480506866386173 +to:0.25034816550809064 will:0.1799411284527059 can:0.17065001309423417 must:0.16489658901054507 :0.23416410393442413 +the:0.5472670679108159 two:0.2248668849321215 as:0.08353060432911086 a:0.018649147323832754 :0.12568629550411897 +add:0.05880731702921315 appeal:0.04877102724546849 yield:0.04551873498313603 go:0.04538510061888313 :0.8015178201232992 +and:0.3864729063219001 is:0.1697749111109543 the:0.12116466763107007 containing:0.11050193044709372 :0.21208558448898185 +that:0.5374778262317935 to:0.2201125596194392 as:0.12197390455986952 here:0.03370407591691547 :0.08673163367198211 +or:0.32147865315871826 and:0.09133723326371251 such:0.08794400871750988 of:0.08097600568284402 :0.4182640991772153 +the:0.26388335910702065 construction:0.14955107273848428 such:0.054347070435674626 ;:0.03190628718668375 :0.5003122105321367 +prior:0.9256298074918918 previous:0.06971088383471405 ago:0.00033190200208724766 in:0.00020409135362909597 :0.004123315317677907 +enter:0.8498301807040569 pay:0.030032043825778898 go:0.015246424475035401 him:0.004964886766339029 :0.09992646422878974 +the:0.7770380426596835 tho:0.14135829166244687 its:0.02325248527075935 his:0.014265354474464002 :0.04408582593264628 +man:0.7799562422536155 and:0.03752624406360999 girl:0.013955768243491333 woman:0.009234488790230085 :0.15932725664905303 +the:0.22630240996448198 that:0.19161329302884586 The:0.12313050302002958 I:0.12191986841300771 :0.3370339255736349 +property:0.09165078551830795 way:0.034863674621217616 wheat:0.02101160087328165 money:0.015036958906729167 :0.8374369800804636 +net:0.07186645101049942 other:0.050503357013110296 earth:0.04672369039709293 southern:0.044110294742228634 :0.7867962068370689 +of:0.6983376051861167 when:0.04457912753913502 or:0.04015159063548833 and:0.031437575672373534 :0.18549410096688645 +up:0.43745870563752043 from:0.11375874572617098 the:0.11135176538723207 with:0.047159965562445665 :0.2902708176866308 +as:0.6889623356671756 that:0.20449956378116285 of:0.023235645967628806 and:0.018705301632294377 :0.0645971529517384 +the:0.45413643696750283 an:0.15825111094383842 of:0.06084287160535013 I:0.03789131928114504 :0.2888782612021637 +man:0.10365624402228366 good:0.042621762703203045 theory:0.02886913994109817 deep:0.0252192468642626 :0.7996336064691525 +at:0.70752002316493 until:0.10845526763050761 it:0.06899864950278596 for:0.05040453620026707 :0.06462152350150953 +and:0.14867313332722656 The:0.1312467835399342 s:0.123902583018182 a:0.04555537912232843 :0.5506221209923288 +on:0.6885591602823541 On:0.1206630439575866 of:0.03952286611780821 and:0.028284375695625058 :0.12297055394662601 +of:0.7983457146305478 tho:0.15894064574474687 or:0.019016535404226032 ol:0.010313718003488704 :0.013383386216990735 +to:0.9975146767989077 his:0.0015579153997231255 in:0.00039315322451429424 all:0.00015162252136121277 :0.0003826320554936708 +home:0.0023702001075144095 the:0.0005185636309350201 school:0.0004675030526695301 whose:0.00033363965029871044 :0.9963100935585825 +gone:0.35786594602344335 been:0.1898849144548434 grown:0.147843554184388 looked:0.0708534921568381 :0.23355209318048692 +and:0.25820213254676594 about:0.14191605999906737 of:0.1015676048860122 or:0.08559562616594685 :0.41271857640220766 +cars:0.23660662891682685 charges:0.16968858830561534 taxes:0.08011099274119765 due:0.07184575898615814 :0.4417480310502019 +of:0.1838733503227093 upon:0.1715321310090653 is:0.11109414675606595 by:0.10743331167591214 :0.4260670602362472 +many:0.939852126667123 not:0.0592588510533944 eight:0.00032337972239855763 the:8.238441673046122e-05 :0.0004832581403538503 +can:0.7362545403550724 could:0.07450548465298701 would:0.05801598131682815 will:0.052285347834086775 :0.07893864584102575 +and:0.9693849327213225 nnd:0.02502353760842573 am:0.005097840306444082 aud:7.559440221353988e-05 :0.0004180949615940862 +.:0.04510137914935137 A:0.010324119414735053 2:0.004890023328028913 I:0.004505920253072661 :0.935178557854812 +of:0.5995606657284317 in:0.32570435226717476 that:0.028083267484654024 to:0.019993234375636704 :0.02665848014410274 +two:0.32243881599672686 out:0.06290058864116946 parts:0.05476186288328788 those:0.04445267438579012 :0.5154460580930258 +same:0.1481176413525393 slight:0.1076589849441132 very:0.04710902852631933 good:0.04504562537459549 :0.6520687198024328 +owner:0.05570764366732039 law:0.054136840016975406 value:0.04999061776087547 price:0.03830402363421005 :0.8018608749206187 +not:0.26518204859517425 found:0.16940227814444417 obliged:0.05801856334937609 said:0.05766448255354914 :0.44973262735745617 +and:0.2383436368919705 to:0.04716027705877512 of:0.04271064952711038 ment,:0.038668937855461744 :0.6331164986666822 +character:0.025613783128617246 results:0.023341636735468897 out:0.022784602957438393 the:0.019135691929345448 :0.9091242852491299 +a:0.3645787207427017 the:0.14867750964657142 life,:0.09792942414701726 any:0.05510097408847236 :0.3337133713752374 +when:0.4621374743697145 but:0.16224176192672599 as:0.1331089505027473 and:0.0785226354016409 :0.16398917779917144 +hear:0.24235999605023079 Just:0.20453884093442906 of:0.17111599124865792 and:0.07816899098452573 :0.3038161807821565 +country.:0.025657406238876888 home.:0.010494608926385528 party.:0.009486603478634517 money.:0.00848845123313348 :0.9458729301229696 +the:0.44915116858198206 to:0.07526548919052975 he:0.07123999283839981 they:0.052743943039318265 :0.3515994063497701 +to:0.5788648416673695 of:0.07971615428858551 .:0.06560116287090124 ing:0.027685607603887788 :0.24813223356925587 +in:0.23395413543051136 of:0.14460625614486994 on:0.1029304205844025 to:0.0903705520999477 :0.4281386357402685 +for:0.35075097051274695 of:0.17507620797866671 and:0.1626066772827272 party,:0.13659445007754722 :0.174971694148312 +all:0.4340526523779632 should:0.22691194767639555 and:0.22501332336171584 he:0.05057276963509438 :0.06344930694883101 +will:0.3351659064238288 should:0.3321539683670191 to:0.18578961309886508 can:0.08060849407584449 :0.06628201803444252 +The:0.550197562071937 the:0.1626003054519017 Tho:0.021919651944115697 In:0.02176128200254042 :0.24352119852950518 +consideration:0.08123133161019791 case:0.07387103771757801 favor:0.041061238913304904 view:0.03490568130366297 :0.7689307104552562 +is:0.6613346633730018 of:0.1368841905205162 in:0.07173904102321048 and:0.05370988959030695 :0.07633221549296454 +in:0.14205594468321187 to:0.1273969432144245 a:0.11373295059991398 as:0.09856372545981282 :0.5182504360426369 +of:0.9429873963883334 ot:0.014362126561454613 ol:0.013723178566480889 and:0.007471185164062998 :0.021456113319668218 +that:0.08614115998503749 while:0.06598436794966703 and:0.06170506630341664 them.:0.039177473950698795 :0.74699193181118 +he:0.7784218101071122 part:0.03909634141037576 and:0.03558392989678222 it:0.009071930268451482 :0.1378259883172783 +of:0.3711329929204952 believe:0.22504173747108522 knew:0.10949839181140121 know:0.05119369914068902 :0.24313317865632925 +be:0.43681787463674704 not:0.28433721735450873 have:0.18852710551345161 bo:0.012517040338480931 :0.0778007621568117 +and:0.0676366076038469 as:0.029307437060461298 began:0.01850690676626565 up:0.016772231483178045 :0.8677768170862481 +in:0.27352898266980274 by:0.24382711361818765 at:0.17570821869522757 to:0.09536558843444812 :0.21157009658233394 +only:0.23052719471919447 proceed:0.2154801225827303 sold:0.060858012715479845 honor:0.021244442571946656 :0.47189022741064873 +now.:0.028215718910611552 clear:0.027683058141849827 the:0.023049522362435012 open:0.01294784201789069 :0.908103858567213 +and:0.07914679176636005 ticket:0.057730776731743 are:0.05120426049564566 described:0.039030914575972325 :0.772887256430279 +its:0.6052258430226672 the:0.24194079675863003 this:0.03469991847878713 his:0.029395261643314928 :0.08873818009660074 +said:0.033484139535094375 found:0.017816888622374443 purchase:0.01552608279796158 perhaps:0.013938729451709245 :0.9192341595928603 +thoroughly:0.2912692628064748 en-:0.12070626252479623 not:0.11465225992815956 greatly:0.10248979587085838 :0.37088241886971096 +them.:0.8344711828983487 us:0.020397036237143115 the:0.0149885465920972 men.:0.013723653295564369 :0.11641958097684657 +to:0.8038680743325234 should:0.11504703127853058 will:0.02716495190006344 not:0.02453779482412831 :0.029382147664754242 +the:0.1942309885789938 of:0.1173608632987325 a:0.0875837508266455 to:0.07485951965911627 :0.5259648776365119 +point:0.042999348695725956 source:0.0392495258501556 causes:0.025154450732780373 State:0.0157748551133287 :0.8768218196080094 +quite:0.24701251286530354 like:0.24584837684512514 as:0.20068506620304485 the:0.19297547478939572 :0.11347856929713077 +hands:0.23111713951544077 ground:0.15853989603019444 bread:0.07205886108381637 house:0.0669993955945725 :0.47128470777597586 +most:0.0557382010509473 best:0.04272086360417976 world:0.04047858893150171 greatest:0.0324906812072947 :0.8285716652060764 +and:0.18725878724878153 of:0.16846273766669775 to:0.09178942829473359 which:0.03885490756390923 :0.5136341392258779 +those:0.09968549704660497 that:0.060599064717529814 made:0.043560354444890245 with:0.02949777237558841 :0.7666573114153864 +of:0.2432531901772986 the:0.09620388692785073 The:0.0926507643203954 and:0.049686291186618756 :0.5182058673878366 +and:0.19770094127381976 for:0.19736672782423478 Dr.:0.16047644292843755 or:0.14799119850065362 :0.2964646894728543 +of:0.022496584524231047 down.:0.0066365788834478025 and:0.0063919411803362025 to:0.0055567840064943645 :0.9589181114054907 +the:0.7113989792979234 a:0.0820943665069919 tho:0.055119628410634676 this:0.030180789185813996 :0.12120623659863597 +the:0.691680708350292 th:0.25113633744886643 a:0.052898161936689524 tho:0.0007909602800645966 :0.0034938319840874324 +not:0.004559214392209021 to:0.0014890645259338184 v:0.0014473883401373655 elected:0.0013762871043782553 :0.9911280456373416 +ft:0.4746111732049521 feet:0.29583170452177066 chains:0.09842798684119627 feet,:0.07181352359842783 :0.05931561183365309 +a:0.24138068943277513 so:0.12941771195511642 not:0.07262552698834956 very:0.0713255482023316 :0.48525052342142716 +the:0.35376432437392746 his:0.06449458349153513 a:0.060787669257623765 be:0.05540197474176319 :0.4655514481351504 +all:0.12184646377265831 children:0.013433113341404214 hands:0.0009223536614938839 party:0.0008921980905906863 :0.862905871133853 +not:0.10866861729498552 in:0.10190756301367894 felt:0.0794280317756991 sold:0.052458540550678084 :0.6575372473649586 +true:0.04275153092424165 evening:0.039265775206350544 value:0.03280100242386423 work:0.02568509616069434 :0.8594965952848493 +all:0.9700191382402288 of:0.008939531920420166 and:0.006758946866953998 the:0.0026447450533889296 :0.011637637919008108 +been:0.9843878047509984 had:0.0024112064681143645 made:0.0013317466557218793 tried:0.001029840925099401 :0.010839401200065832 +a:0.2560271424061695 an:0.023183130127910644 other:0.008119286947779613 the:0.0062808976553406885 :0.7063895428627996 +that:0.3647819940637601 and:0.23731590663767366 but:0.09353803575502227 as:0.0524925308198023 :0.25187153272374163 +and:0.09424139970287417 the:0.05389571907459546 of:0.04668737831450257 to:0.024627935272391006 :0.7805475676356367 +to:0.22513054040788225 that:0.1498746413965168 for:0.14325242202151328 of:0.11501817703082101 :0.3667242191432666 +-:0.5099971414219413 f:0.0023508971760188738 la:0.0014383405324261576 of:0.0007673672169963621 :0.4854462536526174 +first:0.025441080219874145 only:0.015782541982441792 great:0.01536074317327786 other:0.010560906496651788 :0.9328547281277544 +to:0.6353428251432289 in:0.21309762600524237 for:0.07040290745473116 and:0.03995420494956558 :0.04120243644723202 +that:0.2961692463307414 a:0.25321542462375507 an:0.11364294535813527 as:0.08506101906270618 :0.25191136462466224 +of:0.46792331471998927 the:0.07297688925063217 and:0.040253006496077375 little:0.03333873140182534 :0.3855080581314757 +it,:0.33437044166106716 which:0.13661281563372224 work:0.11219411904576622 whom:0.03560377443940572 :0.3812188492200386 +the:0.14949697848416446 a:0.048242670182457294 him:0.02452552621071999 them:0.022676690132028568 :0.7550581349906298 +make:0.17682147268209394 any:0.11179754055752698 which:0.06280176628479282 pay:0.04919817860180172 :0.5993810418737844 +such:0.5125478040868527 said:0.17907316912672402 the:0.09213333329464167 his:0.02282814245704431 :0.19341755103473732 +the:0.14806876540655448 a:0.06073898980300591 of:0.05278638078321468 to:0.04080853341861259 :0.6975973305886125 +of:0.45647806701005444 on:0.21469870788641968 in:0.16727643427769698 In:0.09208627201877885 :0.06946051880705004 +loved:0.6302441043365513 and:0.0705334724357433 had:0.04195665917837009 was:0.028403555111439122 :0.22886220893789624 +,:0.07591518660767319 and:0.07525402800979847 the:0.04175958940227114 of:0.041056519441068036 :0.7660146765391891 +so:0.5255869624729501 nothing:0.12034784771711891 it:0.08404230928162577 this:0.05703612600658426 :0.21298675452172086 +and:0.11796287109818174 of:0.06067734628518845 the:0.05809092800496109 to:0.029294911726408857 :0.7339739428852597 +always:0.9265924333509323 not:0.01746708050111861 probably:0.0064723152389712475 ever:0.005294624335131434 :0.04417354657384646 +lot:0.06945857217897262 ber:0.025879305844315144 number:0.020881224377568362 set:0.015973925937720252 :0.8678069716614237 +ble:0.29483761834895433 ted:0.12141564101002265 only:0.022996650638159054 them:0.019728546677157448 :0.5410215433257063 +on:0.541964978642716 to:0.1339454096906968 by:0.11744996308950897 of:0.09653638152851277 :0.11010326704856543 +giving:0.5972802909838901 to:0.21149681670152898 getting:0.020144102073980607 all:0.01676092421825814 :0.15431786602234213 +.:0.032080306346466046 of:0.0153953523901286 It.:0.008805482570604053 it.:0.007015540177883007 :0.9367033185149183 +and:0.23918282067812208 was:0.06114360078844697 which:0.049256157913661475 who:0.03256941239743315 :0.6178480082223363 +the:0.8845634360140257 tho:0.056814665904939395 my:0.02348150992842667 his:0.00547720550572044 :0.02966318264688808 +they:0.5766240682187185 the:0.09379901562973667 we:0.09187716359508023 there:0.052007762643604245 :0.1856919899128604 +of:0.5104657967121335 F.:0.016920391650947064 S.:0.016781679607582284 M.:0.01553660700223265 :0.4402955250271047 +nature:0.08279494833209917 current:0.06883318604523164 fact:0.0615627455909813 home:0.05572495004108331 :0.7310841699906044 +the:0.38875574185215384 to:0.1610345596242364 his:0.12562249270496292 and:0.08371306339806087 :0.24087414242058577 +all:0.9756523076946243 five:0.0031929321313327466 have:0.0016801051650563617 one:0.0013560390466275472 :0.01811861596235912 +last:0.07421174068569683 first:0.061515912562000334 1st:0.055209151690567615 fourth:0.008453895698361488 :0.8006092993633738 +in:0.2381013608813047 with:0.23123311253741882 by:0.1434809102249599 on:0.0820280341285039 :0.3051565822278127 +the:0.5597461719824556 a:0.13096561245515165 his:0.11230730608802776 our:0.009490130895056395 :0.18749077857930868 +the:0.004970465845171644 his:0.0004426889274351591 tho:0.0002557105224860489 a:0.00010868457220224187 :0.9942224501327049 +great:0.03557923243194545 few:0.031855038417277895 good:0.0266444907165297 large:0.025187669112190482 :0.8807335693220565 +nt:0.06538748963762464 received:0.011947216517271929 long:0.008497207304944644 ment,:0.007202926813403669 :0.906965159726755 +and:0.12140580138370542 Why:0.036868539512849116 nation:0.02944094875372809 tion:0.028861626976648996 :0.7834230833730683 +that:0.41147747877955304 did:0.07246662548709192 in:0.040239588735089794 of:0.0282037611336483 :0.44761254586461696 +the:0.5908600617111592 this:0.05634011415980603 these:0.055333549834400766 his:0.045589215912384136 :0.2518770583822498 +the:0.015182285886175779 to:0.014000556458764728 and:0.01168051053185679 same:0.01109249913046065 :0.948044147992742 +and:0.13785333735278876 i:0.11925668997504923 Democratic:0.11471965259024133 to:0.09780009647779336 :0.5303702236041271 +the:0.4783302639753956 his:0.15199736057956528 a:0.04657101545889457 this:0.03970323525113968 :0.283398124735005 +in:0.8937723766553195 iu:0.04172603363699126 with:0.018066094401325675 by:0.017289638246266895 :0.029145857060096796 +of:0.43382270761936165 that:0.12706045453383646 by:0.09047737873217135 to:0.08594515345360638 :0.2626943056610242 +District,:0.40172826303146214 .,:0.03643043921048471 land:0.02178282411034035 street:0.016011162360857666 :0.5240473112868552 +to:0.2454976711450271 in:0.2245681905985731 of:0.18474491131301113 by:0.09520715688396189 :0.2499820700594268 +for:0.6418944555997717 to:0.1253759430260889 and:0.08023832249245837 Mr.:0.0415741569329971 :0.11091712194868382 +and:0.49817482137518143 And:0.0845358415102661 of:0.028841385252598897 is:0.021113750344839234 :0.36733420151711427 +right:0.25897281537754 heart:0.15736009881381785 mind:0.09732192377916123 chance:0.032530860939253364 :0.45381430109022763 +own:0.042313325487414996 old:0.01778292998987741 personal:0.01493515669189984 time:0.012134307155306384 :0.9128342806755013 +in:0.00810551688863998 which:0.007301117581962944 our:0.005523012431367067 help:0.004855552860796048 :0.9742148002372341 +there:0.10539758081956942 it:0.08526947586022572 they:0.07606451704433922 and:0.07191219842429812 :0.6613562278515674 +the:0.43372443978942066 their:0.07844572773130938 a:0.06541208208186615 his:0.06297067899926444 :0.3594470713981394 +of:0.9959818746775115 of,:0.003780803594652041 to:0.00010374635685092352 for:3.862890075049431e-05 :9.494647023488504e-05 +of:0.9999291413018546 ol:3.3325824566251104e-05 tbe:1.898412725411699e-05 it:3.9929992881181066e-06 :1.455574703687489e-05 +able:0.08823184450849268 going:0.06345257217511933 unable:0.056136389010359555 obliged:0.05062886718700804 :0.7415503271190204 +closing:0.05950496802521125 and:0.0355834942342788 steady:0.011920827107374025 closed:0.011117018005896801 :0.8818736926272392 +it:0.2111521434660693 It:0.1545939158117999 he:0.12709627412779767 there:0.10870286423516856 :0.39845480235916453 +at:0.23528652154789972 week:0.21203166956811206 year:0.20796849433726355 to:0.1394374446855104 :0.2052758698612142 +and:0.04965484400308815 are:0.03424313789879301 were:0.02161369611796076 have:0.011410827596274039 :0.8830774943838842 +It:0.12704557065946415 which:0.11215436345889206 and:0.09910142649046494 He:0.07122646364910246 :0.5904721757420764 +and:0.4750702347622156 which:0.3364090551593195 who:0.14232393848338395 but:0.02080556936891133 :0.02539120222616963 +save:0.9435898393246082 pay:0.01428865089678006 of:0.0006355578533104952 have:8.386392210856554e-05 :0.0414020880031927 +to:0.6667972005345176 for:0.07197706192091653 themselves:0.06884370426239425 and:0.03596014710617934 :0.1564218861759922 +so:0.9965925432856241 the:0.0007562478450139306 its:0.0005296776217128714 not:9.121034782446434e-05 :0.0020303208998245876 +they:0.9500050277261465 Congress:0.023701153298992677 it:0.015866606841984286 he:0.007578230607109723 :0.0028489815257667257 +the:0.26509728507911123 we:0.07669683474048902 a:0.07568373505216361 to:0.05881870505137636 :0.5237034400768598 +one:0.10683417065445076 of:0.09814648943726413 and:0.08188640655188986 fifteen:0.07143881121829003 :0.6416941221381053 +or:0.9992107232712517 o:0.0003098010573991326 for:5.244547342285399e-05 and:2.933935148700624e-05 :0.00039769084643925936 +of:0.930428577635636 ot:0.01952055816208521 or:0.011600688990136072 to:0.009178178496200977 :0.02927199671594189 +in:0.07136190944028295 on:0.044406541159743095 to:0.023072761644399625 is:0.009587914160904737 :0.8515708735946695 +State:0.10274772555930034 city:0.10207727970664271 County:0.07317449030169766 sum:0.07156779906318887 :0.6504327053691704 +a:0.06400552218529458 the:0.05228122127478979 made:0.0448036579391847 easily:0.04243698086554253 :0.7964726177351885 +and:0.16569675158288008 out:0.12397732922683201 but:0.11219061460247759 ing:0.06533102004612702 :0.5328042845416832 +act:0.12918107291932293 to:0.06401257599944096 or:0.04920561000628217 just:0.03902187801171989 :0.7185788630632339 +able:0.2664212025961284 earnest:0.13956697138700325 honest:0.09218724973227928 open:0.03005558906788205 :0.47176898721670707 +In:0.18321360524048644 in:0.055641064875486514 for:0.04613175080662132 of:0.011110994866955742 :0.7039025842104499 +of:0.5229192231106359 to:0.2827216295634451 for:0.08574495786048794 that:0.023394829279545424 :0.08521936018588562 +United:0.8386246710314182 Southern:0.05567407048067857 free:0.024041163013117862 Atlantic:0.008959067991237715 :0.07270102748354755 +the:0.8388633624121066 a:0.03548466643156022 Section:0.032147623847515745 tho:0.026018236365980097 :0.06748611094283728 +an:0.3863567213221766 the:0.258554048016528 such:0.18355706589500928 any:0.09521676323968978 :0.07631540152659647 +any:0.3055126635968649 to:0.14437910149903715 all:0.13224133759604595 in:0.12694233974884947 :0.2909245575592024 +of:0.9066392133174727 this:0.0818734352027662 the:0.008373800383578024 in:0.001825089384244925 :0.0012884617119380522 +the:0.41458009854721056 an:0.1402333868799567 a:0.07515038913419261 articles:0.006668064798388489 :0.36336806064025157 +He:0.2565084311093107 bill,:0.1835930849820606 measure:0.011171343922665876 bill:0.010061726120824985 :0.5386654138651377 +the:0.8799213080341342 tho:0.039489791091980773 a:0.02210915847815416 th:0.013028256879000135 :0.0454514855167309 +general:0.12195407237210305 practical:0.09101960267544554 final:0.062439004949889604 native:0.04052608920693666 :0.6840612307956252 +is:0.17923965818970267 and:0.12806105814056837 for:0.10817085782617068 was:0.1074855766371238 :0.47704284920643447 +all:0.5333195283569916 him:0.05678502266972777 in:0.031728348476194324 by:0.026375898099787295 :0.3517912023972993 +were:0.25654550499950307 to:0.24594071713642696 of:0.16030339722528444 more:0.15484661664499755 :0.18236376399378795 +the:0.040330905851913415 front:0.027186462359755286 very:0.02574858604070014 first:0.023656979930148328 :0.8830770658174828 +and:0.13689625306070252 ing:0.04413523609673337 boy:0.03589038183247087 Now,:0.0337179354381777 :0.7493601935719156 +efforts:0.06875215159910929 speech:0.06500143195567773 death:0.05378161484925711 election:0.04617809563316915 :0.7662867059627867 +one:0.07896679503229855 and:0.06600809924409695 because:0.05937439911480863 out:0.057606792699640974 :0.738043913909155 +of:0.997033493693967 ot:0.0013362636440237775 among:0.0006902184733231656 ol:0.0002909567699158881 :0.000649067418769983 +York.:0.3255851796716671 York:0.007778798347154664 York,:0.006976887614283386 England:0.0012735762370793234 :0.6583855581298155 +in:0.6205807169807241 the:0.14854758465939513 a:0.10289907233000148 advantage:0.016182090052916678 :0.11179053597696255 +it:0.08155462209545852 which:0.04982160934884223 proper:0.019660410001728818 described:0.013238134266815107 :0.8357252242871553 +treasury:0.09735552182998217 river:0.09505746763419518 city:0.07179177610049349 house:0.0365424696516185 :0.6992527647837106 +and:0.20449076282366835 of:0.0652614986440252 to:0.06015848388590702 is:0.048341507927727304 :0.6217477467186721 +and:0.31138970580319425 in:0.2040950663802466 end:0.10867830389080506 of:0.10615095431165773 :0.2696859696140964 +last:0.7853093752251744 on:0.059050241418242874 first:0.048516554360183546 o'clock:0.020199686562709603 :0.0869241424336896 +the:0.6825507230464064 by:0.08416087509388517 eleven:0.06558370742109446 no:0.032179959753673514 :0.13552473468494042 +it:0.2147337553718654 there:0.0973336201128317 this:0.08480188474980223 we:0.08092950859755356 :0.5222012311679471 +the:0.30671073431538426 such:0.24061898255793174 in:0.13422313740001 your:0.12873603258214736 :0.1897111131445267 +day:0.06458014149682965 sum:0.011852296252929934 God:0.011685271472687461 city:0.011080654318506496 :0.9008016364590467 +of:0.42580756466009206 in:0.25466318710423924 to:0.07755705560200622 on:0.07051886109324484 :0.17145333154041764 +and:0.29170251420240434 car:0.08216795566221839 corn:0.030310692438756084 clothes:0.0270306334464425 :0.5687882042501787 +to:0.2095130138125193 of:0.15080629553546637 with:0.0986726611282259 that:0.09349834688195273 :0.44750968264183577 +in:0.1258063787412801 a:0.11822554810943531 the:0.11638085936879393 being:0.10051830115521904 :0.5390689126252716 +action:0.07994814339552929 play:0.054676633872801694 court:0.04466274185824835 such:0.03383219958112219 :0.7868802812922986 +the:0.02651655172386354 red:0.02134073493808093 .:0.017424570026830528 a:0.014826083160410678 :0.9198920601508142 +air:0.22583689236617083 was:0.13287840244072657 water,:0.10732086248010309 water:0.02055296854662076 :0.5134108741663788 +said:0.8154104627740625 a:0.05647973369364888 wild:0.04778323771333811 laid:0.04227204061585603 :0.03805452520309465 +an:0.07495080380937558 men:0.03410981261666847 his:0.029907027844474163 all:0.022183780476526846 :0.8388485752529551 +the:0.6607476646397195 those:0.1884354105491942 brief:0.049002986584702514 tho:0.046528202896264186 :0.0552857353301197 +got:0.09688975809335533 doing:0.025155116887888847 was:0.0094925082324763 en:0.00890375774358589 :0.8595588590426936 +there:0.5657316514835669 they:0.18469192923011662 we:0.08931916655217116 these:0.03783049643295603 :0.12242675630118956 +and:0.31573785541982125 is:0.10351788033557444 was:0.08423254626227361 have:0.07851133349420615 :0.41800038448812454 +we:0.8270614754113622 and:0.052569354118625136 the:0.03706310782737725 be­:0.024300351153901223 :0.059005711488734215 +as:0.41114913435221495 not:0.35573633381291964 of:0.047427500230737836 for:0.03280122987675836 :0.15288580172736935 +of:0.264756875969516 a:0.17091327479086313 the:0.15898308188340837 his:0.10144702463796164 :0.3038997427182508 +hold:0.6089046229743325 all:0.12459336423050614 clear:0.01901239928606371 own:0.017644091202077442 :0.22984552230702027 +of:0.9779997943583809 to:0.004142919779571642 of.:0.0031367707055479457 and:0.002019488215753782 :0.012701026940745697 +period:0.2018930080793206 majority:0.1315522845289045 copy:0.08053000432343445 rate:0.04269150178771225 :0.5433332012806281 +and:0.3147903769377426 but:0.22282092979821425 that:0.06982662803624536 as:0.06663827861550897 :0.3259237866122888 +a:0.1637742726176309 the:0.09258472439537156 an:0.045310022648616693 some:0.029744688775250945 :0.66858629156313 +in:0.4451371284958609 at:0.4063498854503232 In:0.07352543624730783 on:0.04742878739784245 :0.027558762408665696 +proposition:0.07941740865962449 road:0.06654787292918964 return:0.06118802004670969 visit:0.05169444984610137 :0.7411522485183748 +It:0.19873743494621116 it:0.19262187907613035 and:0.07256421159644241 which:0.06633365466436122 :0.46974281971685494 +and:0.13934360321408437 the:0.10076581539806166 of:0.06299442215988951 The:0.02976732987379187 :0.6671288293541726 +of:0.6402454960197925 and:0.08361415460020098 in:0.05272134174082654 to:0.04801654026684168 :0.1754024673723382 +Wilson:0.5471912923580066 and:0.005600075796970075 was:0.0004832171334661174 Smith:0.0002657416194291601 :0.44645967309212814 +of:0.29400156613381484 to:0.1337636476011931 in:0.11473990469952158 and:0.09833688755967554 :0.3591579940057949 +own:0.07460726484465244 eye:0.05355992982280195 left:0.05021089152728834 narrow:0.03060600146130878 :0.7910159123439485 +and:0.13551712025158766 of:0.056706071456091654 George:0.04977772574988543 the:0.047938479546141194 :0.7100606029962941 +the:0.7809809478724196 The:0.07056606566538613 Tbe:0.03681766558593248 elected:0.015205578701907972 :0.0964297421743538 +should:0.4500608920264729 would:0.1386371751564786 must:0.12141231118011163 cannot:0.11607001814441625 :0.1738196034925206 +told:0.2752573270364892 have:0.24844600665744784 will:0.18297407197777285 can't:0.1276175437443809 :0.16570505058390916 +scene:0.30018375347808146 treaty:0.06880496185862998 way:0.04790029963251824 contract:0.03230609040091777 :0.5508048946298526 +the:0.4323029480107531 to:0.08903915691806728 and:0.08617608479471084 a:0.06958352136350364 :0.32289828891296507 +of:0.9896387519945177 was:0.00012451164750670253 that:8.219836453982601e-05 is:3.667317509019341e-05 :0.010117864818345501 +more.:0.033206399556260695 men,:0.02296527894163897 and:0.020032263745408542 to:0.018746272675240563 :0.9050497850814511 +rest:0.19848869280125156 benefit:0.10253888709882832 purpose:0.025053239548952236 peace:0.022067433175774503 :0.6518517473751935 +and:0.534266198391984 as:0.11264133291177478 shall:0.05372372179301019 to:0.05275167221783976 :0.24661707468539118 +which:0.5243945003957649 there:0.2097832807970059 it:0.20134008287404873 is:0.03131721456465287 :0.03316492136852779 +Supreme:0.459086064939252 the:0.049231843267504675 Clerk:0.030782866255575896 t:0.02126959714244901 :0.43962962839521846 +a:0.4455633973059628 The:0.15704486246312793 the:0.10778506593943177 A:0.07273053797222852 :0.21687613631924885 +ask:0.2760182880952632 ac-:0.2108559243334491 have:0.16800744866979236 sup-:0.10491427884372087 :0.24020406005777437 +very:0.08956126943122064 secret:0.06644640386550697 lost:0.055934271498278045 good:0.050735261660203215 :0.737322793544791 +arms:0.10065512644990728 refuse:0.08513324220335435 bonds:0.06275988887997078 goods:0.052001459716525256 :0.6994502827502422 +made:0.5087227976115718 given:0.04314435900530461 done:0.025361245056074115 aid:0.024669669384766058 :0.39810192894228347 +She:0.22144731475993235 In:0.19778371387481647 The:0.19538755726467233 Such:0.06543379420846823 :0.31994761989211074 +and:0.15069794490649052 the:0.11114766589161224 to:0.079074557053411 of:0.06593562322803531 :0.5931442089204509 +the:0.3683814320448481 his:0.2522418812901509 a:0.12063648978690074 any:0.016062896089809715 :0.24267730078829053 +miles:0.3504171699796465 five:0.19966014915156036 days:0.16441923707039957 two:0.11730571816943382 :0.16819772562895963 +of:0.9417885652365606 ot:0.017147169372485616 in:0.007980140517474884 to:0.007102130878807124 :0.025981993994671715 +from:0.11031837675462229 3:0.04108744741875073 8:0.03804610324433329 6:0.03601303320365081 :0.7745350393786431 +O.:0.16797191012453547 D.:0.14944232023414303 B.:0.10464692468379708 F.:0.0880645086567987 :0.4898743363007257 +and:0.006182201590932489 based:0.0032717077110729735 is:0.002922524917870299 in:0.002617195834836209 :0.9850063699452881 +the:0.5886258794248671 this:0.14693455812219847 their:0.11580073220413543 his:0.04344096503920769 :0.10519786520959133 +of:0.7718875834166814 in:0.0258927150481837 is:0.014398574640917424 ot:0.007530202069594142 :0.1802909248246233 +be:0.30143334492718665 have:0.16460797690218798 know:0.14938065208390028 call:0.12664626779097754 :0.25793175829574744 +The:0.29424737006209367 A:0.061864417391554814 the:0.05245968206366808 I:0.03712246365763253 :0.5543060668250509 +of:0.1312936855888291 and:0.12125615200087576 the:0.0713393582386733 to:0.03480038577649434 :0.6413104183951276 +a:0.9987275483733941 the:0.000781487086727333 tho:0.000169565648972109 tbo:0.00014101750680813735 :0.0001803813840982233 +of:0.2982248634957119 and:0.11659207406420077 to:0.10895574533379375 in:0.1089178715196555 :0.3673094455866382 +and:0.24242513031063714 into:0.16001012840250664 that:0.04984408810922529 mother:0.043414293826655875 :0.504306359350975 +stay:0.25427068142312037 it:0.15811417198255104 remain:0.15157690833263207 do:0.05064484140439675 :0.3853933968572997 +take:0.13568454181881337 accept:0.125215242953535 pay:0.07528717989454811 give:0.06587135144026562 :0.597941683892838 +numerous:0.2254395596470157 weak:0.052909887437036215 poor:0.04628655812029814 small:0.04284734801778954 :0.6325166467778605 +only:0.08819760962876624 is:0.00842083345911122 were:0.0038136329069502835 was:0.0030195328692946845 :0.8965483911358776 +a:0.538088094046159 important:0.08172370923856567 is:0.06085118230465175 other:0.04091153146005796 :0.27842548295056585 +girl:0.3250353361682572 body:0.12072750275868471 de-:0.06755503936789414 wounded:0.04304720750789071 :0.4436349141972732 +which:0.9582035551586194 <:0.0024696043719855524 of:0.001964762398736727 under:0.001001681196835507 :0.03636039687382294 +of:0.8561523921200925 that:0.057722175602494416 ot:0.05618979143325246 for:0.010893061185085425 :0.019042579659075225 +of:0.5303065903106897 ot:0.23662840727704076 being:0.11950959786372349 Is:0.0881326793127512 :0.025422725235794835 +the:0.32412300616806555 and:0.09045884959258868 The:0.07335657589735996 of:0.03900727990971121 :0.47305428843227443 +war.:0.3041142690233287 war,:0.13380053004631284 war:0.05699003635415285 peace:0.03968380899433625 :0.46541135558186914 +to:0.41168104863987115 in:0.11119661725989902 and:0.10540794752589737 from:0.0804774611720379 :0.29123692540229457 +be:0.07866982505669623 and:0.07496984419182755 he:0.03932038491155056 to:0.023155357054174965 :0.7838845887857507 +and:0.12526152536864416 of:0.07532474612076318 to:0.06925569430950712 the:0.057454284887650246 :0.6727037493134354 +committee:0.749888639039807 com-:0.04247804451326325 township:0.021265221610228018 second:0.007098718298559872 :0.17926937653814187 +shall:0.9971150835437949 to:1.5066988858965961e-05 or:5.878303654751494e-06 thus:3.0592036632272366e-06 :0.0028609119600282364 +and:0.05067719474286925 made:0.025250780074512567 or:0.022456782932023876 ed:0.016888595578974222 :0.8847266466716202 +is:0.05764234704199721 the:0.052420273632246724 was:0.02473208237686447 great:0.023209664408799485 :0.8419956325400921 +we:0.17643970581414029 We:0.16454222405597715 too,:0.11508104506858007 He:0.08306873556064526 :0.4608682895006574 +this:0.725179243380094 the:0.06472608362161346 is:0.036048309504871485 a:0.002247424316593435 :0.17179893917682762 +be:0.8922746194953043 bo:0.05395383162426082 he:0.04608100851967828 lie:0.003011409900628364 :0.0046791304601281666 +shall:0.3496692838671437 Will:0.32586268206332797 to:0.2403078022697534 will:0.026211597212545488 :0.0579486345872295 +it:0.5125629201484087 will:0.27551843730642683 he:0.0620196088820507 balance:0.008350495528766554 :0.14154853813434712 +the:0.3118867912650687 a:0.04933552938855661 his:0.027510463513300103 and:0.024228046432613465 :0.5870391694004613 +business:0.17712708714691547 country:0.0613313554162165 matter:0.056687465031044965 road:0.028117915636526485 :0.6767361767692964 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +her:0.7019233179179641 he:0.2033671581735113 they:0.04762569881875454 the:0.03608871858778363 :0.010995106501986481 +would:0.6253985651799849 will:0.17257141867501255 should:0.1046155342565982 must:0.03737358564556687 :0.06004089624283733 +were:0.0006466812083091128 are:0.00021151381890991225 arrived:0.00014507000896398674 have:0.00010401968509593103 :0.9988927152787209 +a:0.12291863580088881 the:0.11913759002240683 no:0.06498130377271197 made:0.0452876835711691 :0.6476747868328232 +the:0.22405306889885462 and:0.12249825446387233 a:0.05626678858552314 in:0.033511362976004586 :0.5636705250757454 +a:0.11061244920546029 and:0.09956947218244033 the:0.0899216912043364 of:0.07910549267709795 :0.6207908947306651 +hair:0.44059851468151423 fact:0.04655065577994445 tree:0.045306911573996966 memory:0.03066817999361933 :0.436875737970925 +same:0.06141763752691841 right:0.04130532776116346 man:0.018183618165427625 said:0.016574579243474368 :0.8625188373030162 +must:0.6600821505277931 of:0.1091527218597396 or:0.02966727075609102 hundred:0.017597979255499434 :0.18349987760087683 +a:0.9947805161508289 the:0.002325802265910198 it:0.0019048284036921929 I:0.0005027250879622721 :0.00048612809160653443 +on:0.7060257307747584 to:0.20961416192747198 near:0.05671495537270559 below:0.022798164849172478 :0.004846987075891524 +one:0.21015472219255707 of:0.1500997542390365 and:0.08126394640968013 two:0.061296112029675096 :0.4971854651290511 +treated:0.05449865413216487 filled:0.05066360133591897 covered:0.043112383768195144 received:0.02622610384336074 :0.8254992569203602 +same:0.04920133312111609 to:0.018165410258303785 city:0.017075192030355853 United:0.016789950195604274 :0.89876811439462 +ing:0.27986608411161895 in:0.04799001740195635 of:0.04753292244280285 boy:0.039003920325002495 :0.5856070557186193 +so:0.1713338876066783 called:0.11663727324760939 given:0.08183460883593138 a:0.06193604118508394 :0.568258189124697 +able:0.1538617488593154 required:0.10553340954906396 made:0.08655255950248772 sold:0.06281439871865808 :0.5912378833704749 +and:0.3127690980053743 as:0.17823622699736721 with:0.1185469774831497 is:0.07948670465493175 :0.31096099285917705 +in:0.44558627584210436 the:0.16167179947752347 In:0.14241132072162793 to:0.10564622532353313 :0.1446843786352111 +of:0.10604141052770806 and:0.06383891032050876 in:0.02926868293531016 that:0.02172978667566931 :0.7791212095408038 +property:0.17448997690201537 of:0.16862733449250808 or:0.1225134151082137 and:0.0894706515626176 :0.4448986219346453 +only:0.3482023544659817 first:0.12778833768693432 one:0.10974009802905027 same:0.07081157335244154 :0.3434576364655921 +.:0.10533770348332973 to:0.08704101226177424 W.:0.06617380475567894 C.:0.06421760271481122 :0.6772298767844058 +It:0.27773272346547734 it:0.12924008878447008 There:0.10629667538123956 there:0.06750508559934006 :0.41922542676947316 +in:0.2924923748747264 per:0.21813529716675742 on:0.14686588558910682 of:0.1354234763049285 :0.20708296606448096 +two:0.5621134797756576 six:0.19143747560536195 three:0.1718731922309019 four:0.05948983467670714 :0.015086017711371337 +of:0.5424893084142045 in:0.1863740853140809 In:0.10304641140057574 and:0.059502315972882185 :0.10858787889825684 +the:0.3839685210989674 a:0.2842347250096784 its:0.1426443919824331 their:0.11989647268641644 :0.06925588922250453 +of:0.5414482557834607 to:0.20209438734336332 for:0.09702873703421006 among:0.05715327727253307 :0.10227534256643274 +value:0.07584185882057329 result:0.041907448241086755 effect:0.020411152411025358 nature:0.02009526920117627 :0.8417442713261385 +in:0.3667023431117721 under:0.12676195581208005 by:0.12565889868990401 .:0.08320611164533559 :0.29767069074090835 +the:0.21641321510580783 and:0.1397214588511958 The:0.11247712649577937 a:0.040544784277899266 :0.49084341526931774 +Lot:0.7894333665420594 city:0.13611258797371756 lot:0.04047507464895282 Joseph:0.013696291569907511 :0.020282679265362567 +the:0.05032991329590409 county:0.048541540848811154 government:0.04251380187864152 attorney:0.042311714605444244 :0.8163030293711989 +get:0.08512433868383286 cast:0.06665701400394441 see:0.04824599454055118 to:0.046503845988803624 :0.753468806782868 +of:0.3210711984464961 and:0.18665798574561623 to:0.13493195168801708 is:0.05436169102881848 :0.3029771730910522 +to:0.9678412137904877 lu:0.0008134891479010339 will:0.00031847742798519753 not:0.0002471558532287292 :0.03077966378039732 +tho:0.4348558410597979 the:0.4328647640460413 its:0.11918620588669096 these:0.011603087574599774 :0.0014901014328701754 +native:0.03720210284208763 domestic:0.03439123124035614 American:0.02640281517968507 silver:0.02294787064171146 :0.8790559800961595 +they:0.3303298516651768 we:0.21061986087331544 he:0.15608281490566386 it:0.09653857388863495 :0.20642889866720898 +interest:0.27447220198951 the:0.09766645815103508 in-:0.07776209937279334 in¬:0.038032778217122365 :0.5120664622695393 +said:0.04970200646602989 the:0.014971026609342136 only:0.01225823994078963 great:0.011422366052953497 :0.9116463609308848 +put:0.9975547519874453 brought:0.0005629923358931065 send:0.00032118912893881475 set:0.00011327596067235837 :0.00144779058705042 +The:0.2775758428946984 much:0.18761501618522655 has:0.1319263372650224 and:0.07130322680780575 :0.331579576847247 +and:0.14407333889514526 of:0.1421180968282441 the:0.048482868911265645 to:0.03908168558072508 :0.6262440097846199 +other:0.0632689492747181 certain:0.04774908482551022 more:0.017150254788618657 of:0.012290129887276693 :0.8595415812238764 +be:0.46526792958825836 do.:0.21788381017394556 have:0.10039953353061924 bo:0.04501859164690392 :0.17143013506027274 +damage:0.021366032175340673 election:0.010707508586372145 loss:0.007487008485166475 death:0.0009110986358214489 :0.9595283521172993 +a:0.33695272266635784 It:0.3085665202098022 the:0.25140802041378785 no:0.05730686466275401 :0.045765872047298144 +a:0.299209212961788 the:0.11683453981081875 that:0.09711127036006617 to:0.06124506271833151 :0.4255999141489956 +let:0.3555274855541339 no:0.14422662927006416 If:0.1061358234951886 as:0.10175483865842859 :0.2923552230221848 +The:0.9268166032227089 the:0.01739677141250033 at:0.01673155006816142 that:0.009367408736514956 :0.029687666560114515 +they:0.35282743234575903 it:0.2949404172814885 he:0.19607501427458987 you:0.05430266100803328 :0.10185447509012942 +not:0.9099656797046246 60:0.04343027083995068 the:0.011720630668307938 out:0.0027474054225916254 :0.032136013364525096 +of:0.11734647426630032 and:0.0991172778408423 the:0.06275534890164106 to:0.028090245498320374 :0.692690653492896 +n:0.13086109726147316 the:0.07594977542583596 was:0.038910757265764664 a:0.03477322693679338 :0.7195051431101328 +appearance:0.126875198053709 of:0.09070642498499501 tion:0.036152523270253166 measure:0.03136187713813366 :0.7149039765529092 +the:0.8809929111833079 this:0.08399493524845657 large:0.014968684686680946 tho:0.003516243155259624 :0.01652722572629499 +they:0.23431158572422828 and:0.1544870958687621 the:0.06137326620484605 or:0.05558856014210206 :0.4942394920600615 +something:0.053120047593149054 one.:0.008445820126567959 home:0.008350611871481131 .:0.0036104523712422497 :0.9264730680375597 +and:0.26930194981614014 more:0.09265227953604169 for:0.06181315617062493 began:0.054713593381948755 :0.5215190210952444 +have:0.5824664887154946 are:0.1043541152826252 were:0.10160672691478634 may:0.043788639938503744 :0.16778402914859022 +on:0.3068362178911937 to:0.2429021453277623 of:0.2153593730502574 at:0.14858937628274543 :0.08631288744804111 +policy:0.006085387448239045 ia:0.004029304263557888 scene:0.003537112428330671 and:0.0020744396799330642 :0.9842737561799392 +property,:0.2650744910728912 property:0.23223436865363192 estate,:0.04376432321398799 estate:0.03215753338388767 :0.42676928367560113 +the:0.08247358612705795 of:0.080397618996016 The:0.07188243414656499 he:0.05045627185142481 :0.7147900888789364 +as:0.8758425971355391 an:0.06002107933364743 the:0.03267854469089244 The:0.014715081796016802 :0.016742697043904232 +W.:0.7193780991811743 H.:0.08583964082319913 E.:0.05982852868491758 F.:0.05391105614422622 :0.08104267516648278 +of:0.7620310436262138 that:0.09301788917542582 to:0.06696062414038732 oi:0.02839586602082913 :0.049594577037144115 +whole:0.6331679310632571 entire:0.12601405827077505 the:0.09774299357143633 Southern:0.07442381393233198 :0.06865120316219968 +up:0.24461641583357696 a:0.08322002561520533 out:0.06772724739532414 use:0.025385033018470365 :0.5790512781374232 +the:0.3639483707518675 and:0.11855010918056662 The:0.08949452916507056 a:0.07334270006096301 :0.3546642908415322 +when:0.10459630721569264 then:0.06477772779622622 as:0.05436047292300875 that:0.05074615357653146 :0.725519338488541 +of:0.46965133034554607 in:0.1300499015075276 to:0.10102970606585501 for:0.08685407719026982 :0.21241498489080135 +by:0.45813084757127515 to:0.21394886767178947 In:0.11992627277733531 in:0.1162012106391822 :0.09179280134041785 +corner:0.43303243916736456 quarter:0.2761422669087782 part:0.0779429338410071 portion:0.029032999895943216 :0.183849360186907 +of:0.0362761500084299 and:0.009412578638822862 ing:0.008643033112783872 tion:0.008225587229108296 :0.9374426510108551 +and:0.2638828549861555 to:0.14832090999675257 he:0.10195285451678847 Ho:0.07443814978787762 :0.41140523071242585 +by:0.20433621249259598 not:0.10450215244702761 on:0.09927307729171016 me:0.07421898250753665 :0.5176695752611297 +The:0.16977338183631502 Secretary:0.10987075817788922 the:0.0898951643070468 My:0.08505509467410766 :0.5454056010046414 +of:0.0625091542071474 the:0.0069902233165794175 other:0.003565068225495195 time:0.003115218673828861 :0.9238203355769491 +of:0.08954402740319663 and:0.03428681222254682 on:0.03397630319017774 in:0.028506101564782893 :0.8136867556192959 +in:0.33304749376475784 of:0.19912273281649556 not:0.07310672673445216 for:0.045672772342002906 :0.3490502743422915 +large:0.2262905210125773 larger:0.1972672646908729 great:0.14550904686488803 principal:0.11932554639065406 :0.3116076210410078 +ready:0.6802694501569513 able:0.07075382735496541 heard:0.041612192349885155 willing:0.03865629967216446 :0.1687082304660336 +appearance:0.10210651861234943 advantage:0.02685085060050053 charge:0.020626220725443047 danger:0.019508597541546522 :0.8309078125201603 +one-half:0.3207588199065837 half:0.2560612539128046 or:0.04734877306127533 of:0.03958535030070929 :0.33624580281862704 +N.:0.05050806014946406 point:0.01602043953771942 length:0.014600409050691147 county:0.013069248956618346 :0.9058018423055071 +the:0.6777412576802205 his:0.044134176444430503 a:0.04183856904030541 their:0.04139831835651511 :0.1948876784785284 +by:0.8389531419668184 nor:0.12259877933980498 in:0.010726405938060376 and:0.00871803600027744 :0.019003636755038716 +you:0.25202416134050976 it:0.13693861314607517 this:0.1312436205269964 who:0.07213697902561683 :0.40765662596080166 +day,:0.7602048400511524 and:0.0501655200940551 miles:0.030088486132374106 years,:0.015107023681728424 :0.1444341300406899 +from:0.419676417814345 shown:0.34586530880388877 to:0.1668621249567885 in:0.034603718022057174 :0.03299243040292043 +of:0.09278333678797474 and:0.06834994698275428 the:0.04894350670858369 John:0.043716422541202005 :0.7462067869794853 +is:0.3109827819433195 was:0.1566096123392016 Is:0.06552036535546728 has:0.04024334684297166 :0.4266438935190399 +a:0.2724359099829123 this:0.24070506782433898 the:0.22728825842277978 that:0.18990586368823967 :0.06966490008172926 +without:0.9921081180892617 for:0.0036332212847091034 with:0.002737182035437952 as:0.000914334916230033 :0.0006071436743612417 +in:0.6849914082478741 a:0.12733604102824814 A:0.05987045857884604 is:0.03772018843340882 :0.09008190371162288 +and:0.3822912136561365 but:0.09860937641136022 of:0.0887343985760075 hut:0.07190360401823079 :0.35846140733826487 +few:0.33256530010924895 ten:0.007303733771965991 of:0.0021266642239883473 many:0.001904999912903894 :0.6560993019818931 +the:0.9716520556351694 George:0.003664951275266379 both:0.00322240744819724 he:0.003018038212394663 :0.018442547428972385 +made:0.08997289289798104 the:0.03248036095327579 Indians:0.02114134731495602 us:0.012746834200025208 :0.8436585646337619 +received:0.09815301566305971 made:0.07086822612292351 done:0.04214684371779189 carried:0.04114225628917011 :0.7476896582070548 +satisfied:0.16358274108908744 told:0.08635727252315169 glad:0.08380440469685 informed:0.07809519022134374 :0.5881603914695671 +Kansas:0.2708446887267229 First:0.06183071608662426 Washington:0.06077787906268644 Central:0.03455312212518675 :0.5719935939987797 +or:0.3849623435912571 that:0.20975696165418514 and:0.06953067399217797 at:0.04464539441577039 :0.29110462634660933 +were:0.6636965201491279 iron:0.10141730205790264 being:0.013430135914437688 be:0.004364909989247805 :0.21709113188928378 +will:0.3854924253452116 the:0.21678251035826543 must:0.17391058321078115 I:0.07588026189854995 :0.1479342191871919 +for:0.01470719670701376 words:0.0022779304128079988 very:0.0019891340880545884 the:0.0009908032349568397 :0.9800349355571668 +and:0.015004830786287999 employed:0.005410135604364554 was:0.004180038469504745 committee:0.00362677417804217 :0.9717782209618004 +H.:0.11624504793810297 W.:0.07525367255770037 A.:0.07512308227076768 S.:0.06831311983062625 :0.6650650774028026 +the:0.46605599939371584 be:0.06261403908211233 a:0.044858687232135604 tho:0.04138332231918031 :0.385087951972856 +named:0.19806802736809226 of:0.18827211978636496 and:0.07575759422755707 a:0.04542216868018087 :0.4924800899378049 +used:0.12028519816278495 regarded:0.1133829581682116 employed:0.09245416607633326 known:0.04051696819015665 :0.6333607094025135 +the:0.10994851638343575 not:0.0686421694701265 in:0.04642668306159958 a:0.026302029520032192 :0.7486806015648059 +the:0.28477200161955746 that:0.1108452462967278 and:0.08632987020373052 both:0.07878580187019993 :0.4392670800097842 +of:0.1346787421283105 favor:0.11121148032230953 ments:0.04624304766620302 and:0.03473154200599932 :0.6731351878771776 +the:0.3575464780214012 his:0.25460134581019966 a:0.03837630399863378 of:0.03752342638767583 :0.31195244578208947 +made:0.12101561221963744 those:0.10942245798298408 not:0.040813646113251376 true:0.03828033605462316 :0.6904679476295039 +a:0.2160681423764843 the:0.18102449650383698 this:0.16113067385278357 and:0.07205128930312212 :0.36972539796377296 +the:0.48998836134371854 his:0.09648188397836278 tho:0.0573398119373177 a:0.03634862846119593 :0.3198413142794051 +then:0.40974279549245096 and:0.11045734049934576 a:0.05636439998375407 nor:0.05523399682529828 :0.3682014671991509 +attention:0.7784609415871933 minds:0.11459454085776798 number:0.008104635090755395 discharge:0.005641630047340486 :0.09319825241694295 +the:0.3357065118658968 a:0.08142033734460491 other:0.027038558962976092 tho:0.018380784717077034 :0.5374538071094452 +in:0.8199146122793347 of:0.045766027629401455 by:0.04159451554556483 to:0.031934625609374497 :0.06079021893632466 +it:0.040281965941419313 all:0.0342509918517506 because:0.03353405093836671 one:0.03325649629607836 :0.858676494972385 +most:0.06607408289523234 public:0.041711061792941644 laws:0.03336429700563289 money:0.024593964736475345 :0.8342565935697177 +city:0.2694419436230203 seat:0.1867121648272388 City:0.09515405444529748 said:0.08686874710655067 :0.3618230899978928 +of:0.9999016525261323 and:1.4460599638720724e-05 in:1.2006188479335664e-05 from:7.023908483037995e-06 :6.485677726642668e-05 +in:0.49337473093458534 of:0.2626224067726018 from:0.09346312738158657 In:0.08948274943313528 :0.06105698547809106 +at:0.6929984837366843 mark:0.17671772668733118 other:0.07114677327672282 that:0.03875288618952646 :0.020384130109735315 +ft:0.12529828867855308 the:0.050473940524150586 one:0.05015415376483088 way:0.04592003675637806 :0.7281535802760875 +was:0.3724308371400417 had:0.15957244786795377 and:0.158261923929685 is:0.052267264886073174 :0.25746752617624613 +day:0.14787433192057886 grounds:0.14260432684931365 principle:0.07159624566303717 effect:0.04814074348349713 :0.5897843520835733 +others,:0.2659893046385941 against:0.0009442810212259686 is:0.0008529962417945485 parties:0.0006980607924690944 :0.7315153573059163 +for:0.89258570514307 in:0.020834221519390503 of:0.01722970625734637 that:0.010495323963045547 :0.05885504311714749 +a:0.39528224832033954 the:0.1595231780956702 an:0.11231324067023346 to:0.07084390770377196 :0.26203742520998485 +the:0.38153187026864444 of:0.0981630058959018 a:0.09390878905364959 The:0.08994998565360063 :0.33644634912820354 +father:0.04258992856204996 the:0.019754655059686235 office,:0.01667252412438231 a:0.011509224627605334 :0.9094736676262761 +according:0.12359267856303059 interest:0.12037527144936612 and:0.08363070953284618 looking:0.06177729837732321 :0.6106240420774338 +in-:0.08596142798979796 same:0.05546434002246204 as:0.03287194628838388 education:0.028561508956824046 :0.797140776742532 +way:0.13602216930891178 and:0.1330394529346635 as:0.08960199714257949 flag:0.056026959365713294 :0.5853094212481319 +Our:0.6293912285100586 The:0.05453759397339794 of:0.0328486784539971 American:0.032706527428793764 :0.25051597163375255 +sons:0.20721581666334493 son:0.10459252221543043 .:0.09291843526372374 form:0.004940667439918623 :0.5903325584175823 +a:0.5587286234002566 as:0.3804799620831742 to:0.01343208586523781 and:0.010965472579256575 :0.036393856072074834 +In:0.9425252959155822 is:0.041883697926488474 in:0.005673029406186235 to:0.003104357083845848 :0.006813619667897453 +and:0.23931225500358183 brought:0.1967604825712625 ::0.04592131481696874 opened:0.04052715573002895 :0.47747879187815784 +of:0.8738394136414338 how:0.03072525740185187 to:0.02835080800110831 which:0.010041065138104075 :0.05704345581750201 +of:0.7623237625815189 the:0.06390928011796178 and:0.04229467832463792 by:0.019012906656972826 :0.11245937231890878 +That:0.2256010484009605 The:0.1978671586419188 One:0.13834397606897925 last:0.138326029679161 :0.29986178720898027 +did:0.23654089506195522 does:0.20581002692819295 do:0.1436266356260409 was:0.10662452877530249 :0.30739791360850854 +I:0.09854412197939948 it:0.09595903960744549 He:0.03737532094130014 something:0.027023302128458382 :0.7410982153433964 +now:0.1447701678818617 still:0.06338443783140682 all:0.057170508152088795 that:0.04724934326775901 :0.6874255428668837 +interest,:0.027269633222466103 you:0.014872369871026522 money,:0.012432497130001701 for:0.007639392089925085 :0.9377861076865808 +bridge:0.039471715173707234 of:0.032763813830121606 tie:0.02173501123103711 tire:0.018438062432572226 :0.8875913973325619 +of:0.24845817315686 in:0.18487260814872164 for:0.14613524167751749 to:0.10109582296534163 :0.3194381540515591 +the:0.7405720574019187 and:0.03756021997440856 of:0.031480414638473495 The:0.02279743141848469 :0.1675898765667146 +power:0.3045945621863025 ing:0.0656055004449487 ure:0.0482612720935808 thing:0.03518954369659183 :0.5463491215785762 +to:0.6428060580715067 could:0.12236226018867111 or:0.04574729824077136 will:0.03310632642824738 :0.15597805707080356 +and:0.11656257400409843 of:0.07128160614524064 the:0.05995885929148567 as:0.04981076356849741 :0.702386196990678 +to:0.6508011717854791 lo:0.31894356471773744 and:0.021679890426712062 could:0.0020962403175574444 :0.006479132752513829 +the:0.7563885283757421 a:0.0533399183248676 tho:0.03644643199130324 tbe:0.020495106884193592 :0.13333001442389347 +the:0.22335301004924255 and:0.09485108869540512 a:0.06322898601545697 of:0.044932467339552036 :0.5736344479003435 +matter:0.9940245817333117 work:0.003953044903861043 saying:0.00023237512433596695 telling:0.00022409193104648618 :0.0015659063074447363 +interesting:0.05238394877409237 hour:0.050156307937126915 upper:0.028067814039488333 idea:0.025406214850746973 :0.8439857143985454 +it:0.3123539601959634 he:0.2892711165330495 there:0.1375351881801776 one:0.11508319299535683 :0.14575654209545263 +the:0.9899693917810538 each:0.006333360221905818 tho:0.0029965459343320395 both:0.00038592659140148717 :0.0003147754713067831 +his:0.39766243748119223 my:0.2693206363427562 her:0.13541893920344383 and:0.085781385938551 :0.11181660103405672 +of:0.13913220046711136 the:0.13317642037637514 police:0.12301658470237543 in:0.09232671104894907 :0.512348083405189 +the:0.5853979702172097 tho:0.0514288185567597 a:0.0394149287489161 give:0.03373489318397126 :0.29002338929314303 +the:0.555944173370192 tho:0.2588422017123622 a:0.030519852459055852 tbe:0.013942823432793927 :0.14075094902559598 +of:0.2644913534251872 or:0.08253602969526606 and:0.031316542256751005 In:0.021840530224295596 :0.5998155443985002 +or:0.18262869430721335 were:0.1362060362028295 different:0.09316863434667086 miles:0.08830961771502242 :0.49968701742826377 +the:0.9801754891740574 that:0.007092032582308748 one:0.004141642016210964 every:0.003922137196234381 :0.004668699031188555 +has:0.3162702402408134 have:0.2827338111420012 had:0.16712761708665633 having:0.045346500118117375 :0.1885218314124117 +the:0.31038496390610426 a:0.1720666644077519 it:0.09906004346544052 him:0.06901310734092905 :0.3494752208797743 +people.:0.0327895265081787 trees:0.021962021597658008 time.:0.015375281505842334 State.:0.0127625553212767 :0.9171106150670442 +and:0.09969207400173816 the:0.07561418764927813 of:0.05942045057205774 in:0.03869926733491096 :0.7265740204420149 +and:0.3921177731103171 I:0.09864701529393168 he:0.0627894655958336 she:0.05353892158884988 :0.3929068244110677 +the:0.7135517459878787 tho:0.1216739790029426 a:0.06097678645723488 my:0.025173965336089916 :0.07862352321585397 +me:0.13489938515282313 and:0.10078477198741623 as:0.0630154821065558 is:0.04693657860487737 :0.6543637821483276 +sons:0.019932187949070188 of:0.009581543911659048 feet:0.009428458830158923 and:0.008524457964511218 :0.9525333513446007 +labor:0.831423063584936 a:0.039108384509004425 yet:0.030029967251460777 wholly:0.019236156598113924 :0.080202428056485 +to:0.6871325841692294 in:0.0619177696483854 and:0.061481868302687565 gave:0.0507341882918951 :0.13873358958780244 +will:0.9343394237413805 to:0.012867291885554685 should:0.009841865893046621 already:0.005175060745347168 :0.03777635773467107 +the:0.34265909394216637 cut:0.2132697127036946 a:0.06154355204722696 new:0.05022030393601083 :0.33230733737090107 +is:0.17574623461179997 came:0.16940599409234616 are:0.11844139957485744 was:0.11374001444357679 :0.42266635727741964 +are:0.6390431302206001 arc:0.33361118112682336 were:0.012900889514886126 ate:0.011517785357620103 :0.002927013780070392 +to:0.9902624990460185 worth:0.0025161682159726534 not:0.0007857149323729306 the:0.00048625235724680154 :0.005949365448389052 +is:0.7544967310542526 Is:0.12131619094512301 was:0.10927012610318895 seems:0.005408903236448013 :0.009508048660987393 +the:0.2144191742851025 and:0.14872588036244921 The:0.13006385760740352 by:0.11405018235291571 :0.3927409053921291 +there:0.23786513314279312 which:0.125884829858546 and:0.09713136664307326 it:0.09015207237771404 :0.4489665979778735 +the:0.030811516326620523 annual:0.028854450622840724 grand:0.02826133497601955 permanent:0.025981481240690395 :0.8860912168338289 +to:0.011349389994099457 you:0.010228601436236546 shall:0.008504793030208305 cannot:0.008013732162283465 :0.9619034833771722 +fine:0.10705301070548423 heavy:0.102980234589907 reasonable:0.06183088120215421 public:0.03531372037507179 :0.6928221531273828 +speak:0.2936882631840503 was:0.047454983532283064 kept:0.04061689448112438 am:0.0284824093889635 :0.5897574494135789 +to:0.17914944045081788 the:0.12955327360969124 not:0.07990901598750692 be:0.07745641232619463 :0.5339318576257894 +the:0.29798805711966486 in:0.134480665230184 a:0.0699115861679192 too:0.03954332751414121 :0.45807636396809087 +the:0.4264974834754443 known:0.2603055795993228 organized:0.08896234481862551 dressed:0.05183200470624709 :0.17240258740036019 +that:0.878619635730965 thai:0.02801050724300212 and:0.009129658928339153 or:0.0041011608488852516 :0.08013903724880848 +a:0.6487941545022725 the:0.024845904931570982 one:0.01181011285349474 every:0.007443912628269396 :0.3071059150843924 +class:0.06417835137253368 deal:0.06028927755672654 and:0.023863107126384977 thing:0.02154794255906342 :0.8301213213852914 +where:0.24657724949196708 that:0.23377721830175227 when:0.01952516688855632 what:0.012812618448525546 :0.48730774686919875 +man:0.38075969596832115 men:0.08781131850406396 one:0.061071332001536846 gentleman:0.04192547750555861 :0.42843217602051953 +is:0.4681251285240179 was:0.27265852422175824 are:0.10529824630620425 were:0.04671466909149159 :0.10720343185652817 +are:0.208793860633969 the:0.1305581713283417 all:0.11914629638457039 I:0.10921990445766068 :0.4322817671954584 +more:0.514978489472381 of:0.24330046879111322 was:0.029803387734719213 found:0.029755088489019203 :0.1821625655127672 +himself:0.28029127606218956 well:0.07680287039980266 for:0.06645201143049585 him:0.04452708106111983 :0.5319267610463921 +which:0.21654890341444535 to:0.07157153870654741 would:0.0656181377616924 that:0.04544769288354485 :0.6008137272337699 +the:0.22848016771834823 I:0.22165024401202682 that:0.21160513047535937 her:0.16531160189380573 :0.1729528559004599 +the:0.2594509224683883 constant:0.08128542413848393 two:0.07859581835438872 in:0.06182725979185692 :0.518840575246882 +and:0.11354356822621499 of:0.06810570999542703 the:0.06603632094338749 to:0.033049512151928556 :0.7192648886830417 +of:0.08322682708902689 and:0.06747464939708377 that:0.05633852260162326 for:0.03063403035544392 :0.7623259705568222 +the:0.4458359571602525 a:0.07011837365705609 each:0.03295166235556334 and:0.025206779222486982 :0.4258872276046412 +bad:0.2946896928728441 sold:0.03597154329287029 the:0.03036787881194323 a:0.02227379422597965 :0.6166970907963627 +be:0.9626548077853537 bo:0.015315641937571223 thing:0.003133676691521657 been:0.002056202315939066 :0.016839671269614408 +time,:0.40281094653069127 methods:0.03759077892439238 year,:0.033273225428660166 conditions:0.018751595300004812 :0.5075734538162513 +in:0.296236947546069 of:0.20289321655780504 are:0.19655930812115543 with:0.16231544841988124 :0.14199507935508926 +that:0.08558085346237049 and:0.08239001110531463 situated:0.07326457505601455 That:0.03189789254769358 :0.7268666678286069 +been:0.05583263237720318 given:0.02320837444613677 no:0.01572960501119849 ta:0.013909138065942713 :0.8913202500995189 +and:0.5486985259419296 of:0.1172143659715317 who:0.10515312128855683 in:0.09371575423404274 :0.13521823256393914 +and:0.9999765984358303 of:1.4642880376569614e-05 the:5.044105992742115e-06 care:1.605935562512163e-06 :2.108642237799773e-06 +contract:0.007114879114301498 month:0.005030283428495085 man,:0.0041936003805818035 crime:0.0022351014089700577 :0.9814261356676515 +word:0.05268650768666266 words:0.039423188203798996 a*:0.023961416901989212 words,:0.019583671920892942 :0.8643452152866562 +accompanied:0.09556942581815382 done:0.07988057188706996 made:0.05684719663368055 paid:0.03707876998610238 :0.7306240356749933 +and:0.33197030645177183 which:0.24746734429375172 however,:0.107875401661007 he:0.08224583071792621 :0.2304411168755433 +important:0.09591994072252522 popular:0.030086979599649087 prominent:0.02981048167670573 accomplished:0.021679683041547743 :0.8225029149595723 +other:0.22244391630867733 of:0.11577415557328262 the:0.10031897087438574 all:0.0784049907659089 :0.48305796647774535 +see:0.016337875645023387 hold:0.013497942971648151 of:0.013490255874629266 help:0.012544340355528814 :0.9441295851531705 +not:0.13062841285182342 all:0.07686995105576679 the:0.06544154412859018 to:0.04097243348200599 :0.6860876584818136 +the:0.9774045511575583 tbe:0.01516997196436586 tho:0.0034896288743164307 of:0.0021693001378090956 :0.0017665478659501467 +and:0.016386281522723176 de-:0.011343180446099695 of:0.008376589758382251 election:0.008071762060810539 :0.9558221862119843 +c:0.15369737994145757 of:0.11866865935803245 has:0.10543990006264072 with:0.09069107484041374 :0.5315029857974555 +of:0.1956937583566442 and:0.17372637349392098 to:0.07354181472395047 the:0.03795277633162338 :0.5190852770938609 +the:0.9299504326052487 my:0.02328328230939783 tho:0.02281889625714711 it:0.01268888835874945 :0.011258500469456869 +He:0.7935224254610129 They:0.07609114684059844 and:0.04933762604316351 1:0.047506861768283046 :0.033541939886942075 +the:0.5804703766856899 your:0.3560357991650261 75:0.007498490206703885 to:0.0037130018126758915 :0.05228233212990408 +feet:0.8483271955420444 chains:0.08550373660669344 feet,:0.04239438188450033 feel:0.02049832137211799 :0.00327636459464376 +of:0.8483474401167431 with:0.07202415241402142 from:0.03521586945232798 for:0.02802228111103602 :0.01639025690587157 +of:0.07219735138603868 and:0.05181333353291522 the:0.039863620462039034 .:0.02841375687064699 :0.8077119377483601 +ing:0.18241029978699697 kept:0.1499682797744179 is:0.0955185075011702 pay:0.07050498830908225 :0.5015979246283325 +which:0.13704840720716438 that:0.1319091897576729 would:0.12009825935228698 who:0.09847746065400045 :0.5124666830288754 +the:0.5876238426716162 a:0.4055207900169232 tho:0.001523622614397057 te:0.0014243188369524222 :0.003907425860111216 +more:0.30278586621057413 rather:0.1788167329399859 county:0.034650414934506595 strength:0.03182771704393599 :0.45191926887099737 +as:0.667660250325643 aa:0.04129809836901347 that:0.00037755612843517447 those:0.0001444628272682358 :0.29051963234964007 +that:0.6983755833482242 as:0.09428734114972949 like:0.07929726660275782 for:0.04232096580818492 :0.08571884309110359 +people,:0.19233930648797942 people:0.12201308840993788 vessels:0.07861653903394437 best:0.016694442522195253 :0.5903366235459431 +and:0.1039610158482721 attempted:0.06635073952595626 was:0.06280372507494095 attempt:0.060878768256691265 :0.7060057512941396 +was:0.25047138012326736 had:0.12858092066525179 is:0.11205842391445395 has:0.08150388216775056 :0.4273853931292764 +hoped:0.5194128224617361 thinks:0.13476905469126804 is:0.08303747888550382 kept:0.07176853808070861 :0.19101210588078324 +the:0.3023221144135042 a:0.2651629384277823 his:0.05304151479788495 an:0.051075147140347 :0.3283982852204815 +which:0.7977223890017796 that:0.18395637600824097 as:0.008211107188554525 here:0.0024969755640993586 :0.0076131522373255765 +day:0.15126504836941923 day,:0.019927465758299026 make:0.01679064381881691 ward:0.010875680274076439 :0.8011411617793884 +to:0.9083367406624452 under:0.035965637194934695 on:0.029119955260810532 all:0.013291362361806357 :0.013286304520003183 +see:0.2502001133282621 do.:0.15043638561301984 say:0.13215247714623463 know:0.11718799757602097 :0.3500230263364624 +ought:0.6755760129827276 said:0.04497480359797456 never:0.042305163548998076 like:0.027487098715166074 :0.20965692115513382 +to:0.7636784661992287 in:0.03260590543798117 of:0.020945335304670545 that:0.008363124757498388 :0.17440716830062122 +he:0.6459523524418943 I:0.1658737661958295 it:0.08148727180277192 that:0.05511567032189264 :0.051570939237611635 +well:0.5831097503521222 dry:0.06904866240216054 soon:0.06570177184455736 far:0.04400651603141983 :0.23813329936974 +who:0.6948273474364428 that:0.02756932394218699 that,:0.019361434016694025 what:0.018344496512878054 :0.23989739809179803 +and:0.1679199947409058 to:0.13186947992058398 of:0.05809517227415305 the:0.04269358802256062 :0.5994217650417967 +United:0.021231302125769038 same:0.019038535270119148 great:0.015458866380417583 be:0.0126428617192682 :0.9316284345044261 +the:0.2850735743288139 or:0.24029241987969294 get:0.1344340603909318 her:0.058071191765426945 :0.2821287536351341 +I:0.22568978662877498 they:0.15963141981476664 we:0.14057229381439293 who:0.07355010592792735 :0.40055639381413816 +to:0.39008888039724116 and:0.06455382530627625 it:0.04278549481849437 will:0.041986036626072885 :0.4605857628519152 +way,:0.4245319239361755 line:0.08710589779402263 that:0.029814629130346517 and:0.025444690267323794 :0.4331028588721316 +notice:0.9892039173211448 out:0.00709618550426446 evidence:0.0005952554349407744 him:0.0005666346631859478 :0.0025380070764641147 +taken:0.011848679510941611 seen:0.011217357705794889 the:0.008449948113608987 found:0.00830478281857046 :0.9601792318510839 +who:0.18187105966653502 and:0.12418902334399479 county:0.11354582337794447 has:0.07285267581289756 :0.5075414177986282 +and:0.8776070052250433 be:0.07461441105533555 had:0.020085409142101412 was:0.0174639911124797 :0.010229183465040006 +was:0.3020536905733829 is:0.2666754900664342 lived:0.023151684533691715 used:0.021245016796686514 :0.3868741180298046 +no:0.43775688256407647 the:0.3943552390103126 full:0.08227737829685376 not:0.041983622650048125 :0.04362687747870897 +only:0.5181645081942605 been:0.2065343146848705 yet:0.07302219130691578 the:0.037852913201682034 :0.16442607261227113 +entitled:0.9313306152671889 and:0.048758948213318325 has:0.0013015628007957407 passed:0.0007527773179604908 :0.017856096400736383 +half:0.8081334735875448 quarter:0.1852933450309693 few:0.0020866185419459587 hundred:0.0012590063256749148 :0.0032275565138649466 +principle:0.11076656980305936 number:0.04842240939063683 throw:0.03837756630027113 tion:0.030468115195214526 :0.7719653393108182 +the:0.7369572842507139 tbe:0.0438364294665563 n:0.027117033737755886 ihe:0.016201743246871788 :0.1758875092981021 +the:0.4406485216469821 a:0.05373257997303371 other:0.02440444131865349 tho:0.022264810115760866 :0.4589496469455698 +was:0.1933903431144998 is:0.14088049208137735 and:0.10143307489281907 are:0.0954281689451023 :0.4688679209662015 +B.:0.15692418282641787 A.:0.11115406309945836 I.:0.06967671446972412 P.:0.06924259521750534 :0.5930024443868943 +are:0.640776706301301 Some:0.017272045136659638 ture:0.016478647924237956 One:0.012201166345938368 :0.3132714342918631 +who:0.18890198503623393 and:0.08065939806110023 refused:0.07400334242625846 election:0.06143491674956154 :0.5950003577268458 +the:0.08936625359602839 page:0.07192091735760756 and:0.06911848571592213 of:0.05847815418346537 :0.7111161891469766 +This:0.334685072353352 a:0.05815306484137802 every:0.05541860424778829 of:0.030551077976877665 :0.5211921805806041 +and:0.028214828939649914 Brown,:0.007168005611774444 H.:0.006277340132919591 A:0.005599443418192794 :0.9527403818974634 +street,:0.05551258018405704 street:0.02507635748034739 degrees:0.014114177851911389 ed:0.010266063787784305 :0.8950308206958999 +by:0.8339506906093314 in:0.06882941171987811 of:0.03018199820638611 from:0.02949656355588108 :0.03754133590852322 +States:0.03526276880492928 tion:0.027635114500873362 law:0.013283887337653564 of:0.011382729865785436 :0.9124354994907583 +the:0.08855731312696931 was:0.06082557492823455 is:0.03824108701532659 a:0.02924573469937992 :0.7831302902300897 +and:0.22143292922923166 that:0.17674150949454084 as:0.10979107407436049 when:0.0708325191323157 :0.4212019680695514 +the:0.3601845387751073 his:0.07083575397626511 a:0.03959381412676048 tho:0.028361907328304597 :0.5010239857935624 +as:0.039904398470047904 in:0.029487053318050457 of:0.015467100066552514 et:0.012875361816631039 :0.9022660863287181 +have:0.6287870442396494 many:0.05861709698295734 the:0.05087862460553796 think:0.039782224112062656 :0.22193501005979274 +in:0.6340816433003277 to:0.17409366782818753 us:0.08373637308676098 on:0.02865062286838782 :0.07943769291633615 +disposed:0.0013593613871735416 habit:0.0009846422134756302 compelled:0.0009345235106462702 frequently:0.0006567607706810047 :0.9960647121180236 +every:0.5367205596752399 the:0.2392208225229773 about:0.06489821133008974 each:0.05059130352597068 :0.10856910294572228 +by:0.03802349772434134 writer:0.03600004186755788 from:0.03213573411616075 but:0.031396411906571595 :0.8624443143853682 +the:0.1018029310442993 and:0.08764891467819662 of:0.034755466551445645 on:0.03398706370486593 :0.7418056240211927 +could:0.1164513104553385 that:0.01247245106940596 has:0.007442548079696315 should:0.006104530418435532 :0.8575291599771236 +so:0.18878033133833827 as:0.18447389326309202 and:0.1250368432339843 How:0.11489720516862016 :0.3868117269959652 +and:0.12952263119982935 of:0.10828536077968724 the:0.09580924409365063 in:0.04799599329391082 :0.618386770632922 +best:0.986857641781762 only:0.003334376294003393 following:0.0026846576226917797 same:0.0008151913696893941 :0.00630813293185336 +of:0.34715082091173266 to:0.22625112242959447 on:0.2218516770422249 in:0.06649117120863864 :0.13825520840780928 +was:0.2481911606969466 a:0.12986635955235054 and:0.05641666008842736 the:0.05021547478061206 :0.5153103448816634 +not:0.7270526060142937 hardly:0.037981750704973775 scarcely:0.010928705338462812 I:0.0026695318564217913 :0.22136740608584793 +make:0.8994016900384898 prevent:0.019032125051673395 maintain:0.004609940661862442 all:0.000617848797609933 :0.07633839545036451 +it:0.15256936431936702 up:0.054409636544510295 this:0.019288961743122075 even:0.015075152636179772 :0.7586568847568208 +take:0.8585473454600886 always:0.05514749159510719 not:0.028051413642618494 lake:0.0034966848758795897 :0.054757064426306026 +of:0.7692455035130366 to:0.05802140113839814 ol:0.03284483887961475 the:0.02342154613678393 :0.11646671033216655 +the:0.8264294452468618 its:0.05428168104717636 their:0.047290521135321686 tho:0.027503495849797555 :0.044494856720842656 +In:0.2881626829437896 When:0.23450301771116722 Now:0.08409517814111833 Is:0.034516911751992965 :0.35872220945193184 +It:0.21978526483386518 This:0.13476263194262258 which:0.08696590924950491 it:0.08056838036891824 :0.47791781360508917 +them:0.15238622985281894 together:0.11889966343648285 away:0.04939172912855626 man:0.0356471976225883 :0.6436751799595537 +shall:0.19720461344132356 was:0.1870649981102475 has:0.12138228584962822 can:0.11263668707691997 :0.3817114155218808 +and:0.17827598022697017 of:0.11719527228227161 was:0.05181028915434254 the:0.04764455886820862 :0.6050738994682072 +children:0.9991015918001726 people:0.00021344334819717748 weeks:0.00016002582981121692 miles:0.00013975445053441242 :0.00038518457128450365 +to:0.49147248033854707 will:0.35222662208063854 not:0.07964040386892152 would:0.03522614466811151 :0.041434349043781266 +ry:0.5025284594132158 try:0.16264545603101174 ty:0.05231591813238671 ties:0.009703978434966171 :0.2728061879884196 +a:0.2432669530045507 as:0.22648975707099367 order:0.09027265249102692 only:0.06239752930105842 :0.37757310813237027 +as:0.9610906362431878 from:0.02168306485754334 with:0.00932319884016274 summer:0.004212494512041243 :0.003690605547064854 +me.:0.038621537881854615 men.:0.03269132619041147 said::0.01849531886092558 or:0.0130200131089323 :0.8971718039578761 +and:0.16661942139982716 of:0.07901232620497817 the:0.0569224341461376 to:0.04974709002019648 :0.6476987282288607 +the:0.01884910327228665 here:0.016889550595640682 re:0.015598638543445304 un:0.015473054351929201 :0.9331896532366982 +the:0.3780089653399855 other:0.053563959656837565 of:0.04465038746934203 these:0.032889549121937964 :0.4908871384118968 +The:0.1934421200382351 and:0.18392779215399452 tne:0.13491383002834478 the:0.11200294605776641 :0.37571331172165917 +in:0.2956932091750441 with:0.199186049259978 to:0.18589191137075395 by:0.04887775305109116 :0.2703510771431328 +a:0.09184786956675474 the:0.08130389131884515 their:0.03482763995754065 of:0.02132094103467651 :0.7706996581221828 +and:0.12622032605573852 the:0.10449979150758112 of:0.07953780627229018 The:0.058740124464672666 :0.6310019516997174 +views:0.02664115788382621 fields:0.02123062862995557 constitution:0.016878239285828097 years:0.013745903159070035 :0.9215040710413199 +-:0.03747693370698529 to:0.030850023340864206 and:0.027198724036027147 .:0.024275672031992386 :0.880198646884131 +ordered:0.02817790492097522 find:0.019456115643234156 place:0.012366379903800023 reports:0.01184794097672867 :0.9281516585552618 +over:0.5505878138512238 of:0.3874706096883624 to:0.03431048176275349 with:0.01251712428203174 :0.015113970415628572 +which:0.7035500924072179 meeting:0.06841678190200638 this:0.06327826864502868 it:0.04577374087687989 :0.11898111616886708 +.:0.2858001483755703 he:0.09296609018845205 is:0.05259781879193455 I:0.04738372645230917 :0.5212522161917339 +of:0.13793452586095356 and:0.12975791248322366 to:0.127155470559156 He:0.09857771024812068 :0.5065743808485461 +The:0.32463237867224404 the:0.28964234567619773 tain:0.1573243313684663 and:0.12669658724210944 :0.1017043570409824 +it:0.4112287179226017 which:0.29259188265751557 as:0.20444525458260746 this:0.03834100701615998 :0.053393137821115245 +whole:0.8268975039507378 complete:0.08354099959622777 other:0.06220246178979791 entire:0.005185031875184617 :0.022174002788051858 +and:0.14398556629227596 the:0.09970055892471043 of:0.0659439468747942 to:0.05870101479805674 :0.6316689131101627 +all:0.6172010785284552 in:0.22380097280338265 to:0.026501126684459288 for:0.02518560040354934 :0.10731122158015369 +and:0.09734968476155055 the:0.07242336100088057 of:0.056335167137691246 to:0.039227554198766695 :0.734664232901111 +it:0.1835952785459837 the:0.11361510762225696 they:0.060215303932831546 &:0.05491193112263435 :0.5876623787762935 +as:0.036589563479796916 and:0.031553841058702924 But:0.027910026567160313 for:0.022969560917068203 :0.8809770079772716 +application:0.12049122413767825 cotton:0.07101087767881321 stomach:0.04709679406662893 name:0.0430381522541502 :0.7183629518627294 +that:0.23713280966977923 to:0.1949694341386461 the:0.11842525739985948 and:0.10584337635426926 :0.34362912243744587 +been:0.12355457330919103 for:0.08972100825083006 had:0.08564204757917779 made:0.03263855736301509 :0.6684438134977859 +the:0.4697205284909625 tha:0.09068986949737243 their:0.06131823958026296 this:0.05659636815117828 :0.3216749942802239 +his:0.34247725562870174 their:0.31276199976318403 the:0.13414368961965772 her:0.12560731934555278 :0.08500973564290391 +and:0.29401492087819625 is:0.12001361813401626 are:0.08868410518470887 was:0.08463105352596044 :0.41265630227711814 +soldiers:0.30342212931793583 and:0.01976691350096744 church:0.014178967834300617 men:0.008981008174779497 :0.6536509811720165 +of:0.58280409054457 or:0.10584459179848488 in:0.053339805535606216 for:0.03649221419443634 :0.22151929792690256 +and:0.45892249930101875 elected:0.09014266708665215 when:0.055082001634656985 in:0.03563572619936396 :0.3602171057783083 +to:0.29542123897642 a:0.18736454367196012 and:0.15954869412412523 of:0.07747638163090723 :0.2801891415965875 +Chinese:0.03767053591770741 people:0.024232730756202494 matter:0.015019411409516747 rest:0.009796858660463752 :0.9132804632561097 +and:0.5409008843857266 to:0.21923575045172974 or:0.03265409249915528 the:0.01840672495798844 :0.1888025477053999 +of:0.7475378394786046 to:0.07924862421845028 the:0.007708225173940893 in:0.006545263461754825 :0.15896004766724942 +more:0.9092897897295439 other:0.008280608721258687 less:0.007725454448149537 practically:0.00710524329017263 :0.06759890381087524 +which:0.4794220968728498 by:0.24303867963079978 the:0.040434817928602505 and:0.02403433110454343 :0.21307007446320447 +the:0.16168218544979016 his:0.07573796310606132 other:0.0538803489252504 Frank:0.04840276884724815 :0.6602967336716501 +and:0.11718573442173931 or:0.014697504478977602 but:0.014490579070015566 was:0.01410328613922482 :0.8395228958900426 +in:0.2135917742043947 the:0.2063332016327717 of:0.19988986313296978 The:0.16185410745265924 :0.2183310535772045 +and:0.9938874868567235 of:0.00401863940559909 to:0.00043112284722286547 between:0.00017463318547032776 :0.0014881177049842428 +in:0.22693649605904392 to:0.15451305264326112 with:0.09393499953705821 and:0.06483945126542605 :0.45977600049521067 +ion:0.6282811875160482 a:0.01701489490710146 -:0.008253402593054833 the:0.002632699772018949 :0.34381781521177657 +;:0.04160249710509248 times,:0.012128276491831838 so:0.011029755545700317 however,:0.010466246989992363 :0.924773223867383 +a:0.925658277905616 the:0.03694272786789115 tho:0.006885779545472784 Fort:0.005781542315461263 :0.024731672365558965 +thoroughly:0.14870030020175448 hard:0.015286156415422768 any:0.013902824876083705 well:0.009145069071900033 :0.812965649434839 +many:0.264288761074734 the:0.2586996784268523 a:0.08373194344198094 their:0.020044653683318578 :0.37323496337311424 +of:0.5173702110643774 in:0.17147145041137166 and:0.12161895173850207 to:0.09308936257371883 :0.09645002421203001 +is:0.24782046712400255 was:0.1903634890548077 has:0.028189338100910667 will:0.024422173619249813 :0.5092045321010292 +a:0.29690839847160033 was:0.16620149828670427 of:0.07058577334881211 light:0.03652510120665888 :0.42977922868622453 +day:0.3477032001182613 morning:0.3099605221363959 March:0.11834528706174452 time:0.10998321569070373 :0.11400777499289469 +of:0.2420257486679992 by:0.18225658225174937 to:0.17604216285949142 in:0.15662595889251585 :0.2430495473282441 +and:0.04349155579792315 miles:0.01748355523310413 free:0.013423228828008418 away:0.009700504075363627 :0.9159011560656007 +l:0.11443934258287931 having:0.09682954477173643 material:0.08690088910179071 early:0.08157894004595352 :0.6202512834976399 +the:0.892603453515488 tin:0.022274967794713205 some:0.02132998181513549 all:0.016328268017177506 :0.04746332885748569 +I:0.503092532814005 the:0.33046152727959743 Mr.:0.06084824374913788 Col.:0.01762924407037855 :0.08796845208688102 +of:0.8635114474933507 and:0.03465971852829277 is:0.019561578912621926 ot:0.018550630138623854 :0.06371662492711082 +on:0.01841015419890874 for:0.006990443186825243 and:0.006209385895718932 it:0.0026443284020383827 :0.9657456883165088 +anil:0.13613678482418567 the:0.07795181172535813 England,:0.07609125604861297 and:0.02432657069203431 :0.6854935767098089 +the:0.9097428903710635 his:0.015442212275149468 my:0.007718321188989404 a:0.004751145470991295 :0.06234543069380627 +the:0.24052423156869052 he:0.13628544931530817 it:0.07738532596439536 they:0.06284259832758392 :0.482962394824022 +that:0.9317936422726472 what:0.016769345956538166 whether:0.010198543683452181 as:0.006557868617963362 :0.034680599469399276 +of:0.3354688022288884 such:0.10813849299924251 and:0.07390714436050987 to:0.04726475067721639 :0.4352208097341427 +long:0.2479213339692863 certain:0.23457963634967613 suitable:0.1221034915511501 high:0.10860105455188673 :0.28679448357800064 +so:0.9918716770259235 as:0.003494379238676842 is:0.0002159069524831629 not:9.602315542867408e-05 :0.004322013627487761 +man:0.2115492766573587 disposition:0.09254369760522647 view:0.08209453140760516 character:0.04420640437159214 :0.5696060899582175 +in:0.1651319085202665 and:0.04240421217029194 at:0.035006517433460484 to:0.03210586822253391 :0.725351493653447 +a:0.599262123595119 of:0.23924629907382683 and:0.043159018315496726 the:0.03671863103060202 :0.08161392798495547 +and:0.5613173080418007 as:0.18336899295587342 snd:0.15603678540208246 to:0.023837153450674397 :0.07543976014956903 +the:0.1432678940659373 a:0.0365301559418461 other:0.02284299883813718 to:0.014224985031318974 :0.7831339661227604 +him:0.07715490694803051 that:0.051238491503659826 himself:0.04493045310248087 themselves:0.041888779240967455 :0.7847873692048613 +the:0.5700540034878583 to:0.18285114391635332 an:0.12146462447592465 is:0.11091967805489367 :0.014710550064970159 +up:0.14626730208575586 charged:0.10850900997516119 also,:0.09942201086303774 ;:0.07721487609161483 :0.5685868009844304 +ten:0.7631372505406335 eleven:0.20642571177395055 six:0.00715999313812812 10:0.004900081951299937 :0.01837696259598796 +in:0.8820933916595219 In:0.0574136127736744 iu:0.0547578770477547 with:0.00561591042157571 :0.00011920809747335967 +that:0.06877956084761985 made,:0.02518853756389524 the:0.012533584522024672 men,:0.005863743444133505 :0.8876345736223268 +and:0.22253581338316153 as:0.1809653175570096 If:0.12697739941420963 which:0.11797722925477207 :0.35154424039084703 +then:0.9522742533893956 immediately:0.007946232278798022 and:0.0058347252325090995 who:0.0042550765972958 :0.029689712502001656 +leaders:0.12715097709854695 members:0.06040029401957465 history:0.053539331548533416 sentiment:0.02645411198024057 :0.7324552853531046 +the:0.30986922055292426 a:0.15514520350688404 this:0.10756136632691721 that:0.08846795958071467 :0.3389562500325598 +drew:0.24662142562194778 commenced:0.17763847872986813 cut:0.1502184510271268 and:0.09869062377362531 :0.3268310208474319 +Mrs.:0.1913800343620613 Miss:0.17012363417920506 the:0.1303222110166024 her:0.10110462669083048 :0.40706949375130075 +the:0.28324061120478067 a:0.0475610938877412 October:0.032226611628922416 being:0.027189777923735975 :0.6097819053548199 +the:0.4540384864754504 all:0.08670100006892047 a:0.05778233514814041 this:0.02821525300490966 :0.3732629253025791 +for:0.06040496476237355 cured:0.05996769004635906 to:0.0517481635361539 therein:0.049210079979980434 :0.7786691016751331 +d:0.0490839433738702 entire:0.042235460552997144 dear:0.02623593776456554 own:0.019168422965393617 :0.8632762353431733 +who:0.28818696705786895 There:0.09362286475168426 and:0.07470690921965283 that:0.024531887595784858 :0.5189513713750092 +must:0.2765102675889828 dog:0.16467268156328094 will:0.12347714250761396 may:0.09472629071605033 :0.340613617624072 +man:0.06813320503712818 men:0.06777032152736606 party:0.04548639858839001 people:0.039835570092301355 :0.7787745047548144 +lie:0.17554002381295636 "The:0.11348731340252435 He:0.05501043381411272 she:0.020723092271690943 :0.6352391366987156 +in:0.24376401627236052 With:0.1622227714260676 at:0.133042411606772 as:0.0705687463437179 :0.390402054351082 +away:0.42955722601572593 It:0.05496322269040579 attention:0.04563422225228075 taken:0.023113451950768187 :0.44673187709081924 +out:0.36829700580138447 over:0.2248964550938744 back:0.10698579548839914 in:0.07356509575464355 :0.22625564786169858 +was:0.480812031896786 01:0.27198622333114486 and:0.009204420603105203 of:0.00546331782320272 :0.2325340063457612 +You:0.9990525152306332 we:0.0005887753720165889 We:0.00011121221887092908 It:0.00010939868790270278 :0.00013809849057658832 +and:0.2617407183500989 when:0.23184601013426773 If:0.1449385688431496 for:0.04619199620833604 :0.31528270646414763 +of:0.95979072926243 oi:0.01686043700195045 ot:0.016027609610556666 ol:0.002730107483557545 :0.004591116641505498 +a:0.9805473232415568 the:0.009149661270414814 to:0.006080842351635135 their:0.0023526288000150566 :0.0018695443363781514 +lived:0.14454541359970102 was,:0.07176537582946457 visited:0.024441605228410417 walked:0.023085178597095413 :0.7361624267453286 +said:0.020864486701233066 same:0.01849797041403757 most:0.018368717551696567 the:0.018344649249562608 :0.9239241760834703 +and:0.1305620372025166 the:0.09994162342946739 to:0.08911812823081014 of:0.08252313956127612 :0.5978550715759297 +get:0.11955404902154984 make:0.10790237142733629 force:0.09713063197823944 help:0.05108334220256617 :0.6243296053703081 +this:0.7470972852588011 the:0.23512388519651292 that:0.01288489537235313 our:0.0027887624203270477 :0.002105171752005877 +the:0.5160342015355645 The:0.408526787751269 Mr.:0.006066260627766783 an:0.0021371937052704587 :0.06723555638012922 +the:0.8571416761172513 a:0.12210049549133208 his:0.007854325827305622 their:0.006280121435732377 :0.006623381128378589 +must:0.35081779042958067 is:0.08404438430709808 will:0.06512960723996783 was:0.0460485537782752 :0.4539596642450782 +to:0.23157401970305472 will:0.18845279685483723 and:0.18262736836927052 that:0.12794581906549984 :0.26939999600733766 +place,:0.018038336641478973 other,:0.011156162865755147 not.:0.003671311317988234 another:0.002846633780467563 :0.9642875553943101 +and:0.9546222150462577 on:0.031602979277077226 at:0.010255887276396236 to:0.001491296594385148 :0.002027621805883643 +that:0.9046263558841852 out:0.02063504062595197 tbat:0.016101901805960894 ia:0.008620511775503442 :0.050016189908398644 +the:0.2641805785549393 others:0.22938541965411005 a:0.08570127021936386 other:0.08529201776692921 :0.33544071380465745 +people:0.042902410669302886 members:0.026467818726263647 majority:0.015298511590159443 action:0.01510213963982019 :0.9002291193744538 +y:0.04648293272250761 water:0.01866450153242436 Mayor:0.018662842976420905 the:0.009613630020946206 :0.906576092747701 +the:0.18730632998061855 price:0.03900411927415824 agricultural:0.031944438733149665 short:0.03170516135778341 :0.7100399506542902 +to:0.21397722814556505 has:0.09436628733181644 have:0.08571678486421117 and:0.039945294276777996 :0.5659944053816293 +of:0.5325809011856739 with:0.15737950298236453 and:0.0988483732638328 in:0.07046409316846844 :0.14072712939966023 +at:0.4279777474462302 in:0.19286699900676557 of:0.17147080210997553 by:0.1298747714169443 :0.07780968002008436 +is:0.18376526951588978 will:0.052411533439730026 was:0.03975317676897358 waa:0.03220293603527136 :0.6918670842401353 +would:0.38922794306127756 will:0.2699706744221541 shall:0.1359299449112873 should:0.1047901486435146 :0.10008128896176655 +has:0.7157638905358615 from:0.059389336312462813 about:0.032243799387118244 for:0.008374063117128057 :0.18422891064742938 +the:0.09028779753129498 that:0.06782002513736682 a:0.062187094398225166 w:0.036106730302621313 :0.7435983526304918 +fifty:0.7964320321926815 ten:0.03735997169298594 20:0.028562891224565956 the:0.012933840295656458 :0.12471126459411021 +of:0.19596906555173385 and:0.07824451857659293 to:0.06862675159149952 the:0.03667553692911287 :0.6204841273510608 +be:0.4447016995622349 have:0.2054214892977866 the:0.10857199621973798 which:0.06649476695651922 :0.1748100479637213 +to:0.6373863810479293 greatly:0.2980224602728777 an:0.02439403878715633 the:0.02078725232688135 :0.019409867565155173 +grand:0.11530936053599984 old:0.09761231226605449 party,:0.0139340101760597 peace:0.013392823544715571 :0.7597514934771704 +heavy:0.13887412888253697 two:0.09661253942299604 vote:0.0881063029033724 long,:0.06885993615890869 :0.607547092632186 +d:0.2976185226292115 property:0.08449639478832828 action:0.06809180246296843 bid:0.05926126758045205 :0.4905320125390396 +of:0.21363165956377692 the:0.19416936423466935 and:0.1757858632837826 The:0.07766174885906749 :0.3387513640587036 +of:0.28601209605169603 in:0.20370288126542446 and:0.15112036707406104 for:0.14616160893950922 :0.21300304666930914 +and:0.1293994507899263 the:0.12096003430815006 of:0.09635620223233057 to:0.07146303314634718 :0.5818212795232458 +pounds:0.02165186234318387 ,:0.01091627644768559 rates:0.010497669031174222 to:0.002659578271335792 :0.9542746139066205 +ing,:0.35960475255499574 and:0.27437088189851144 our:0.03700343501723355 and,:0.03432527368278279 :0.2946956568464764 +government:0.22953753204371982 justice:0.061909418929708755 parties:0.060672902361604567 the:0.05855311326515391 :0.589327033399813 +the:0.1812799821861062 Miss:0.08847460058283774 John:0.0583273204086798 Mr.:0.057635727311114326 :0.6142823695112619 +elected:0.45809737413954693 in:0.31386879471311113 that:0.12146197938627457 a:0.027721147978396202 :0.07885070378267107 +himself:0.4394877282672613 that:0.18559321672891696 such:0.11725367136492766 to:0.0939682748497392 :0.1636971087891548 +fact:0.32423770789291717 ground:0.03401629397759808 idea:0.028194104361640132 opinion:0.027609561751368306 :0.5859423320164764 +and:0.30635251439061134 public:0.035501172547548546 tho:0.02411870048518074 people:0.023113703803630384 :0.6109139087730289 +the:0.593766027058783 ihe:0.18336706669668 tho:0.16902748513090107 Hie:0.02791047394426103 :0.025928947169374838 +or:0.02231140695969316 and:0.015163108617949545 working:0.014941097427171474 ning:0.013759091636589251 :0.9338252953585966 +there:0.7858769637565626 also:0.11575876652050333 clearly:0.012204474209751126 not:0.010326504531809406 :0.07583329098137356 +not:0.08504488991940634 begin:0.05243538353171847 only:0.04186927514822775 agree:0.03946309037483792 :0.7811873610258095 +the:0.0447893122114053 them.:0.029560230811856384 it.:0.01433803708935059 ':0.009044129509351725 :0.902268290378036 +the:0.9867749535448433 tho:0.0037629421721828544 a:0.00303903925693177 tbe:0.0023223033969443124 :0.0041007616290978256 +and:0.07943141841799739 of:0.05737043440435821 the:0.0530008738708967 de:0.045947727185825196 :0.7642495461209226 +little:0.2560732550649022 word:0.1656777873844702 party:0.09709458945897308 tree:0.027935355058928107 :0.45321901303272644 +make:0.3253431343978706 give:0.17969230993425137 add:0.11102149525223062 see:0.09070278254136005 :0.29324027787428736 +and:0.16077124515229854 of:0.10269914848189261 the:0.04589556041281166 to:0.02956876292184516 :0.661065283031152 +of:0.3714198824829735 and:0.1518768906793142 from:0.10036340777702885 to:0.08747391123555467 :0.28886590782512866 +to:0.9999572411063636 in:5.982568738006023e-06 and:2.3291472738117965e-06 o:1.7535176493676193e-06 :3.2693659975044165e-05 +were:0.06674979349166563 rule:0.03905971754257516 numerous:0.029087999636439602 very:0.02147862112172073 :0.8436238682075988 +to:0.037225856118236776 daily:0.03480150247991133 and:0.02534651811813833 The:0.018938307103148325 :0.8836878161805654 +by:0.34840526112372083 that:0.17958776489520192 but:0.1636251710765397 and:0.15494101952827 :0.1534407833762676 +three:0.13672359288513777 four:0.1073208383618645 several:0.08408054140311684 100:0.04866627826803439 :0.6232087490818465 +o'clock:0.9663392026234134 o:0.0010713800892756184 1:0.0006119458723089988 cent:0.00012098363186919587 :0.03185648778313282 +with:0.7592465846593794 over:0.11355066661979404 for:0.054632527755942996 have:0.02231805951692949 :0.050252161447954004 +and:0.2580122550977784 when:0.15279326350886496 the:0.1269179412824279 Mr:0.08508528674140484 :0.37719125336952375 +had:0.5616592700011971 has:0.1990095136276355 was:0.13817572599969502 is:0.05349675407983531 :0.04765873629163725 +name:0.2386177682726096 command:0.1568375971504562 laws:0.12413303238561246 direction:0.03393120275442674 :0.44648039943689494 +and:0.14127464809142615 due:0.1258142697841463 shall:0.0603140579685942 delivered:0.041215846895242214 :0.6313811772605912 +or:0.15238690569398092 and:0.05251354805157377 of:0.03180087653693559 ed:0.026213369558341786 :0.737085300159168 +in:0.6383018239973658 io:0.29409575403943417 In:0.024402457710545236 lo:0.022924580252469844 :0.020275384000185064 +to:0.2739678900826645 of:0.1284107803732545 that:0.10691895620364163 for:0.033576705883818316 :0.457125667456621 +and:0.3087053752862101 above:0.21206966656416879 already:0.14694936971047035 herein:0.08330715283044543 :0.24896843560870535 +on.:0.02204724845264266 them.:0.016558322974006043 it.:0.014856253218734532 to:0.003680144492116616 :0.9428580308625002 +It:0.23193304278419277 it:0.1119404361992778 which:0.07534688523671824 and:0.07391257171270423 :0.5068670640671071 +It:0.22950536179888129 west:0.1479855736327456 He:0.13217292145296802 She:0.09280671799044736 :0.3975294251249578 +the:0.62308959980193 said:0.12135107663536229 a:0.06524442780608683 that:0.04255807141703985 :0.14775682433958118 +For:0.7794518055813694 The:0.024255692965949305 of:0.004503843716611238 the:0.0032766752955951635 :0.18851198244047507 +of:0.8322026313461484 that:0.05468300230543041 and:0.05420391485256954 to:0.024080950224701966 :0.034829501271149824 +line:0.5019140534517545 side:0.19462593146053442 end:0.022147976485597905 corner:0.013659999619238689 :0.26765203898287426 +lots:0.24067802773317762 1,:0.08038695114747983 No.:0.05647892123682476 4,:0.0459607066874624 :0.5764953931950554 +in:0.8083761888640766 In:0.1513801283694508 iu:0.016977555428985054 m:0.014403958494811664 :0.008862168842676045 +the:0.858775881134467 his:0.02712372722080889 tlie:0.011620665319977411 tie:0.007864690656797206 :0.09461503566794942 +Smith:0.13824628853215207 means:0.06768973798829651 tions:0.038992722097028226 .:0.019142996503415114 :0.7359282548791082 +etc.:0.03137276974632134 and:0.029226170233214124 -:0.023956633835934542 .:0.02395071851529077 :0.8914937076692391 +such:0.6503364583044038 colored:0.2574520605232904 any:0.02783044071511837 a:0.02712782055945616 :0.03725321989773134 +and:0.06776535449063538 State:0.038913813437522066 party,:0.028790186547909477 people:0.02804967037200891 :0.8364809751519241 +decision:0.07060601850556045 action:0.06520930717085122 authority:0.03782690711343567 power:0.03703830624369237 :0.7893194609664603 +of:0.8912866527341333 in:0.02504750946472274 for:0.022231455519265374 on:0.008597707875204995 :0.05283667440667358 +of:0.9900660537747243 in:0.001696606676713166 to:0.0015208724227935187 the:0.0013798724605943082 :0.005336594665174492 +and:0.26225382145010334 or:0.07442642812674281 iron:0.06432570354855184 the:0.052825228750853645 :0.5461688181237483 +the:0.13514390609143825 cor-:0.06525204421052115 a:0.03453384968543161 evidently:0.023446818052595436 :0.7416233819600135 +and:0.14876574169527212 without:0.07786791172366701 that:0.06605535346602531 is:0.04388619221931005 :0.6634248008957254 +degree:0.23046060671115493 party:0.13030730563953224 knowledge:0.11531478201811772 committee:0.08841849445043247 :0.43549881118076267 +at:0.4050563547192044 on:0.2197585271350394 only:0.18350650221485942 in:0.1319717992087658 :0.05970681672213092 +line:0.80809434889358 of:0.006837116349348742 year:0.006037177875418951 all:0.00282627578375124 :0.17620508109790115 +of:0.4315373928605195 or:0.10326641777281798 and:0.07338410154783838 to:0.06796329512123178 :0.3238487926975924 +be:0.7062283509941685 sell:0.09364431773524007 receive:0.041135625050792345 say:0.01580202170860511 :0.143189684511194 +lots:0.4646337855051683 the:0.15887237663754414 No.:0.0062694653632308864 No:0.004903201058957281 :0.3653211714350994 +the:0.2503751514302222 .:0.02441378841499098 a:0.02280339106403117 and:0.007164803363480435 :0.6952428657272751 +this:0.27307430453010334 the:0.16228238068244488 you:0.0501871316056249 death.:0.02468788665149364 :0.48976829653033316 +arrival:0.21637516445630145 members:0.05473679264102212 bottom:0.033115444109089946 closing:0.03274063169260655 :0.66303196710098 +by:0.20903315038670595 in:0.19649795690122607 to:0.18853582751729547 from:0.16330811956556388 :0.24262494562920875 +half:0.5005094023227243 quarter:0.027104661363585417 few:0.023855660616590498 hall:0.023655198897875637 :0.4248750767992241 +is:0.22163600533971028 so:0.026790083918342273 be:0.022127388110664042 amount:0.01980028006005066 :0.7096462425712327 +of:0.3549771779740058 and:0.19144088136163748 the:0.05282058307324106 to:0.03098080176573623 :0.3697805558253795 +most:0.1094305763488931 health:0.09407744153996012 least:0.029665845831302655 other:0.020656482970681792 :0.7461696533091622 +horses:0.08921707646772141 glass:0.04905345111332633 heads:0.03958534167487645 train:0.019497989737159098 :0.8026461410069168 +the:0.1239734756278263 to:0.0487108221346952 .:0.03426185167003269 a:0.03330058751123979 :0.7597532630562059 +there:0.026648508593833643 gun:0.022135337986368336 who:0.017723163877386452 It:0.01631065973260358 :0.9171823298098082 +as:0.15668795416935852 and:0.12936302405104502 the:0.09008218566060049 of:0.054583979697329886 :0.5692828564216662 +he:0.012420584425460946 close:0.004435923725738552 interesting:0.0030750084091388527 clean:0.002761573907141752 :0.97730690953252 +and:0.13176134907421258 corporation:0.05482013563682717 not.:0.0117686831824533 time,:0.01171729790986662 :0.7899325341966403 +of:0.20839740938169735 and:0.09385682438214941 the:0.040506183158134736 The:0.027138536321572163 :0.6301010467564463 +themselves:0.2831125297858287 compelled:0.12917171370389807 that:0.0827899655855107 disposed:0.07285569844980827 :0.43207009247495426 +man:0.5573319375594477 man,:0.26588868852245967 man.:0.17490207284014592 Mr.:5.5556778809414835e-05 :0.0018217442991373825 +work,:0.015280200359662549 the:0.01319268071646227 most:0.010743062564663909 there:0.009813704403544565 :0.9509703519556667 +We:0.28601081166414716 I:0.17756491442072034 or:0.14778486483560335 may:0.09363593072535242 :0.29500347835417673 +to:0.1656366164269203 a:0.16066039444981847 too:0.12650295095752973 by:0.10716842714530722 :0.4400316110204243 +of:0.46949530769099657 that:0.45434186263456366 for:0.0424718505400252 to:0.015853036360406726 :0.01783794277400811 +the:0.1278925456224653 a:0.03574123216166056 he:0.010029163629200422 her:0.009509670607082221 :0.8168273879795915 +tho:0.29091630079828273 which:0.2557852630386096 the:0.1295449458103277 giving:0.03571337238354521 :0.2880401179692349 +only:0.3066948621787506 so:0.01765626285243488 more:0.013059886216504165 going:0.012343024628456491 :0.650245964123854 +and:0.11777334860039669 where:0.039755173600303464 is:0.03638518739946657 while:0.03332225698673062 :0.7727640334131026 +and:0.07619664612854887 as:0.026321945821444197 is:0.018300243625299938 according:0.017151658726441203 :0.8620295056982659 +the:0.0718084142325144 noon:0.046741399161820255 once:0.04626578672854398 least:0.02506410360256474 :0.8101202962745567 +whole:0.5389918610228883 present:0.11528020573752171 old:0.05504608092636751 new:0.0494447686589055 :0.24123708365431723 +the:0.005355742609054115 his:0.0039916290230896465 air:0.0032262247629560167 a:0.003182548102304586 :0.9842438555025955 +common:0.13620703511673912 only:0.08786431853765478 the:0.06852852957195969 local:0.006539238171219906 :0.7008608786024265 +be:0.08370368461965175 extend:0.05397786303627505 you,:0.03912993849835741 for:0.025553995171551776 :0.797634518674164 +the:0.39420557337976103 his:0.1888196851284051 general:0.08971835354207378 an:0.07886249631413346 :0.24839389163562667 +of:0.2125225891594033 and:0.10005274717592753 the:0.042649280445236255 to:0.02421982856930586 :0.6205555546501269 +land.:0.016349017550301527 feet:0.0008407373952786329 works:0.000837479812749396 government.:0.0006118104984401576 :0.9813609547432304 +the:0.4110775438528082 their:0.098169979602409 whatever:0.03255636229221128 a:0.03207000242926758 :0.42612611182330395 +The:0.33939486003744124 of:0.2193864838652179 and:0.13099851893102232 as:0.11567954832877993 :0.19454058883753872 +duty:0.9660319460818715 honor:0.017853566161200273 duly:0.0009770745069894672 the:0.0004814732023066101 :0.014655940047632076 +could:0.4357349499695601 can:0.17758259114115377 should:0.1198491986158086 must:0.10734925547045464 :0.15948400480302305 +I:0.5474489947413085 he:0.18925986854176632 she:0.12575934823464002 they:0.001666392856489185 :0.13586539562579605 +day:0.9983957026272542 dry:0.00031629207008965947 of:5.7728762956502135e-05 number:4.572331664566319e-05 :0.0011845532230539628 +land.:0.009864931075833375 street.:0.006735667466026783 city.:0.005212595710211886 bed:0.004266989244040733 :0.9739198165038873 +and:0.8495092140410505 not:0.05275034512043646 was:0.021580605994249106 more:0.014938336743178059 :0.06122149810108587 +the:0.8748840975198054 tho:0.05624678069969944 these:0.043050223692602675 tile:0.007257243912065991 :0.01856165417582644 +seat:0.03483202568548311 to:0.03426409207097537 On:0.032895957518414114 body,:0.020346516114016718 :0.8776614086111107 +the:0.08570412475589324 will:0.05441305254127956 life:0.013849940264069207 peace:0.01004922438664031 :0.8359836580521177 +for:0.9992350152296499 of:0.00023870217977881817 in:0.00016036281904282054 some:9.601381986618553e-05 :0.00026990595166227825 +I:0.11165081391884647 the:0.0957006888066395 ed:0.08587777317978146 an:0.053376015994912415 :0.6533947080998201 +the:0.3208063602397392 similar:0.17581752678581886 their:0.15519743425577173 these:0.12721320928925725 :0.22096546942941309 +of:0.26583327808178525 old,:0.1748168954203978 ago:0.12165001821624237 to:0.11267775732258854 :0.3250220509589859 +call:0.04378533405800129 matter:0.025279051565646353 money:0.019758472329255393 question:0.017755887215163125 :0.8934212548319339 +are:0.2385554977591513 of:0.19658347465208076 to:0.14855990799227378 and:0.11596627818977338 :0.3003348414067207 +decree:0.12024962349143212 part:0.07865586667059435 portion:0.047630284641089114 member:0.044328793385283526 :0.7091354318116009 +call:0.31896325312629087 agree:0.12695304244026465 look:0.10072738593695728 fall:0.09655317898660783 :0.3568031395098793 +Mr.:0.14843777280673232 U.:0.08338821579310354 line:0.07774564643007115 road:0.06529800280973724 :0.6251303621603558 +to:0.40109524238929023 into:0.28492306901757075 on:0.15899710684699958 in:0.0649242798147627 :0.09006030193137658 +manner:0.4886169085356607 order:0.17464463345481662 state,:0.06206073859040335 States:0.05472378362989908 :0.21995393578922026 +its:0.45373501710110337 the:0.43554453809669774 a:0.04124967306940948 tho:0.00648161283774119 :0.0629891588950481 +the:0.5983332878543046 a:0.03589094458470489 tbe:0.024950258040526026 tho:0.024294912430266834 :0.31653059709019765 +which:0.1735176920485615 It:0.17304875999672992 it:0.11773554740692212 there:0.08640953968375772 :0.44928846086402885 +of:0.5830672178926407 a:0.1657280084618448 the:0.08981954604257049 its:0.03971025430192913 :0.12167497330101495 +.:0.09785856630183716 ii:0.0753304228397765 i:0.05295400804497881 as:0.04482804273372315 :0.7290289600796844 +first:0.03677731011810701 great:0.0274428006977824 general:0.018087022773991053 total:0.015498111076776597 :0.902194755333343 +quiet:0.009461419954910365 dull:0.008284192548751993 and:0.0074766486294976535 John:0.005363277829075037 :0.9694144610377652 +inches:0.7372557163889155 feet:0.06897080117542373 o'clock:0.012193036189053083 years:0.00726559587059339 :0.1743148503760143 +form:0.28794264724972457 six:0.05927568814509324 strength:0.056468149484599175 all:0.04763795847265021 :0.5486755566479329 +yield:0.6586033299129282 increase:0.03169247378289604 public:0.02679997009589815 cattle:0.008579061301981782 :0.27432516490629577 +of:0.47080432938952405 at:0.2343598146866254 in:0.14871550638538888 that:0.12344663428792615 :0.022673715250535582 +share:0.045231217003457065 vote:0.03290820722469823 use:0.02931468464209294 the:0.014096090962218444 :0.8784498001675334 +In:0.30764899474986945 the:0.21004874469551515 our:0.19456890280699185 of:0.16217369321448843 :0.12555966453313516 +a:0.30309672373811164 an:0.23180944363892222 cor-:0.07764486775491984 things:0.027045412128809107 :0.36040355273923724 +and:0.12107550777378391 of:0.08764320531416185 the:0.08343696009885222 land,:0.041091221854161475 :0.6667531049590406 +be:0.4295317041848926 have:0.11655423107609274 bo:0.10062864063400981 not:0.04324304298861923 :0.3100423811163856 +the:0.7027636958113291 tbe:0.11210153936196705 tho:0.06523464509854883 that:0.06336406552857374 :0.056536054199581416 +tho:0.5546256898258288 the:0.20846527760484013 a:0.05236744069596071 The:0.03308758078766248 :0.15145401108570783 +of:0.2829364129632516 and:0.13181743563433038 character:0.1239975645107551 the:0.08655760773509583 :0.37469097915656707 +in:0.5025362964723359 the:0.29723721688929405 them:0.07443348254301248 their:0.03304399015044072 :0.09274901394491698 +treatment:0.17132765591574156 year:0.07042542396085623 week:0.06645235250543234 contest:0.06388854412138258 :0.6279060234965872 +to:0.26856678663140415 that:0.2546662017615727 of:0.10380820912968965 by:0.10145437856814399 :0.2715044239091895 +the:0.22606900552530648 Lake:0.040833385967812684 of:0.008974079319429442 In:0.008715216309772914 :0.7154083128776785 +if:0.4596734373352718 when:0.18481209098830825 them:0.14542226322629465 after:0.0830585341035905 :0.12703367434653465 +a:0.3891561616785284 the:0.22648662813992848 an:0.04927167309307798 to:0.01495856573807158 :0.3201269713503936 +which:0.022740666191628754 contained:0.0223529805183337 of:0.007812400662525161 or:0.005964997869409515 :0.9411289547581029 +left:0.10852873981144737 started:0.09143508344603167 do:0.08313100442093582 was:0.07171435456298304 :0.6451908177586022 +and:0.16763202936292312 or:0.055334048683835686 of:0.05332149702789563 the:0.05136126536754116 :0.6723511595578044 +He:0.9087368806696371 for:0.03732418353072776 this:0.022638859161604175 until:0.010956307366679135 :0.0203437692713516 +evil:0.04944930764021651 the:0.02445067996710081 stomach:0.021857764410104757 same:0.01984013366320857 :0.8844021143193692 +21:0.07458979744030027 20:0.05836049346608044 40:0.04263850450576714 30:0.039876542350886855 :0.7845346622369656 +when:0.3268052415350961 and:0.2635178626523575 When:0.07697240974614636 that:0.06517358124705341 :0.26753090481934655 +a:0.9964210232376718 tax:0.0008597266138947827 commerce:0.0003876087182589116 the:0.00037141072847643084 :0.0019602307016980945 +in:0.9509881283310735 In:0.026747967739231514 iu:0.010573809688037806 m:0.008526502579950055 :0.0031635916617070827 +of:0.31094022829957974 and:0.14011761597540504 the:0.06132406191787519 or:0.060495936021128315 :0.4271221577860117 +the:0.9514451423349277 tho:0.02517607604502193 tbe:0.002346027800585288 tlie:0.002001625163721901 :0.019031128655742982 +of:0.311059371603658 to:0.13060583435145465 in:0.10178521595242943 and:0.09219717257615184 :0.36435240551630604 +men:0.1437503821303359 was:0.0992415867967264 last:0.09432033871303112 above:0.04802570135533601 :0.6146619910045708 +be:0.8182488164076157 the:0.035897864045012814 he:0.02702984191605709 bo:0.026222196418423552 :0.09260128121289078 +This:0.3555958471722947 and:0.0934878809808881 or:0.08255470263200945 of:0.08057061607332919 :0.38779095314147877 +kind:0.16463560632983587 sort:0.14977447254555065 right:0.13808084009633734 amount:0.12284137475380805 :0.42466770627446804 +It:0.10774632527288595 ami:0.071923092799455 All:0.05799171448726517 she:0.05394718597569995 :0.7083916814646939 +and:0.12257250218179665 of:0.10680553135705755 the:0.07477461619886605 The:0.05671532047319611 :0.6391320297890835 +later:0.10391122185054276 went:0.07117315407610496 so:0.06934884960175014 going:0.06153161758164272 :0.6940351568899595 +the:0.17466008662684634 and:0.08689178580305439 to:0.08310065692480968 a:0.06520861548040172 :0.5901388551648878 +the:0.3835961929175815 force:0.1923779506244926 session:0.12736115869507714 their:0.0720852469931913 :0.2245794507696573 +and:0.18719404960550656 to:0.16897542652342495 of:0.08332154045604914 or:0.06063977743103109 :0.49986920598398826 +sale:0.1669112944468967 from:0.13656855744851856 fully:0.11777604155986396 about:0.11010521474804484 :0.468638891796676 +now:0.41109966921890634 usually:0.13631322893079886 court:0.11544916923605815 thoy:0.012799208083115222 :0.3243387245311214 +only:0.3208484182006001 said:0.060757640224072734 now:0.06031082316831618 I:0.04832754676143079 :0.5097555716455803 +and:0.05866354149330008 to:0.037347908274005144 of:0.01929347569746079 The:0.003338516224879424 :0.8813565583103545 +nothing:0.3574595025471474 that:0.25945740540018175 anything:0.032188664403538715 little:0.030685458563994843 :0.32020896908513713 +of:0.39700548921634865 in:0.1745943445797793 to:0.09606872591617203 on:0.09478883450031902 :0.2375426057873811 +knows:0.3479266041757594 got:0.26220699255509855 has:0.22552154885122602 into:0.09677774280058325 :0.06756711161733268 +down:0.4160397065034214 out:0.2071385815609115 in:0.14131938017472617 over:0.11853091850641714 :0.1169714132545238 +large:0.12648366943661193 fine:0.06668231742417882 good:0.06049636061007519 great:0.053709838160310115 :0.692627814368824 +Western:0.06863158299805776 local:0.04751886995796364 great:0.04686377570362902 National:0.044548729054946175 :0.7924370422854035 +a:0.8939720764763283 the:0.04819123532010248 to:0.02034930675010964 We:0.01202678192095607 :0.025460599532503563 +the:0.9911879208808876 that:0.004944340654138936 any:0.0011189001393641714 in:0.0010516774569805458 :0.0016971608686288887 +long:0.30470244988334494 their:0.2555588978407145 the:0.13549395517483645 and:0.0303043677799651 :0.27394032932113893 +little:0.00048599932767730546 few:0.00036904866955831853 well.:0.00026732890555919154 him.:0.00021108593365782707 :0.9986665371635474 +Henry:0.08290958180843461 chains:0.05391229710316035 L:0.053345739817748615 W:0.051042055012476314 :0.7587903262581801 +the:0.26747202033421963 duly:0.04102846117923491 pur-:0.03133873838729595 said:0.022280235265412413 :0.637880544833837 +and:0.2627513890250305 the:0.06845172181376047 of:0.05788854786946388 to:0.05210597553706363 :0.5588023657546815 +country:0.4538101092847295 it:0.3498097807911267 he:0.022259047739414724 He:0.01959922643456177 :0.15452183575016742 +they:0.51780740251467 there:0.19547587092496066 and:0.12092319440661804 we:0.0838444471437352 :0.08194908501001635 +and:0.23623325408845736 country,:0.061347547731483584 by:0.05102051347254317 at:0.03128371466790928 :0.6201149700396066 +a:0.6470813026190971 the:0.05513835553348129 was:0.03393064157519639 your:0.028702015226648996 :0.2351476850455763 +that:0.261981364701488 and:0.15528559329920585 when:0.14354732935082898 said:0.10453094625689273 :0.33465476639158437 +corner:0.9645965085490291 T.:0.0005541123293280125 and:0.00022064173684404267 ,:0.00019857042122284292 :0.03443016696357566 +Third:0.5892768792699146 West:0.058505641582252174 Second:0.05351753170248601 Arthur:0.04210785765859033 :0.25659208978675696 +the:0.4855649634063352 a:0.0984042400627931 such:0.07154731659741922 he:0.0714088117246917 :0.2730746682087608 +taken:0.8356259570480273 given:0.020386040706512804 made:0.015171648511559645 submitted:0.008528379630472302 :0.12028797410342788 +water:0.14338020245925107 trust:0.05928652916539537 matter:0.04976734525928689 terms:0.04120094628820231 :0.7063649768278643 +or:0.21582537602323565 tion:0.17034335166191628 and:0.12118900505134951 on:0.029517406178717176 :0.4631248610847814 +the:0.48650832810987593 a:0.04745096947773049 The:0.04476728027208805 to:0.01643763678352323 :0.4048357853567822 +make:0.9229327849655815 enter:0.03708841115903832 visit:0.010178209220918477 cause:0.0068759961585412475 :0.022924598495920302 +of:0.17623912793096588 and:0.07715218528698913 to:0.030959638918182607 the:0.028802805936239684 :0.6868462419276227 +A:0.362372678712258 The:0.32923475638294863 a:0.10003736507029104 the:0.0994866986235798 :0.10886850121092251 +to:0.9985467183031543 lo:0.000406484964208518 shall:0.00037792894533230986 will:0.0003341535564538005 :0.00033471423085102824 +the:0.8465597107575021 her:0.048030479984096035 its:0.038465332321815926 other:0.029488149801545377 :0.037456327135040636 +in:0.6567613408635825 the:0.18543474311086924 In:0.08957778606064398 a:0.020025893447715087 :0.048200236517189146 +they:0.7797350882220787 here:0.07918100816660419 and:0.035400395547392445 it:0.021196782728440007 :0.08448672533548465 +of:0.1476398689532141 and:0.11648203882746233 gun:0.04639275304615571 was:0.02707627320272548 :0.6624090659704424 +of:0.5238578212750157 to:0.06418407203989417 and:0.02694850328812119 that:0.011659066065840348 :0.37335053733112844 +year:0.20977035350518847 of:0.17482327594586758 and:0.049219279330115315 tion:0.038258998962491124 :0.5279280922563374 +of:0.08862545662590521 and:0.07849486353153898 the:0.07339911435889446 to:0.031975342941151834 :0.7275052225425097 +larger:0.4439124622865585 command:0.0855521744364857 bo:0.06520499713717151 be:0.04570230155557353 :0.3596280645842106 +full:0.5968253804931025 the:0.13433728838392808 final:0.10655600093971479 a:0.0905350398605366 :0.07174629032271804 +was:0.5051672080015445 The:0.17009128720036917 when:0.11194391542876617 had:0.059565743049335616 :0.15323184631998465 +the:0.5183427395912742 that:0.14441985186822978 his:0.13098374020138603 a:0.0919135849225616 :0.11434008341654832 +and:0.1465012314899106 P.:0.10851051576782574 ?:0.07580694079308656 the:0.05836586289030229 :0.6108154490588749 +t:0.5422162396041146 be:0.01280038539016435 attend:0.005338254850262015 of:0.004537534922380239 :0.4351075852330786 +the:0.16772877351596532 possible:0.08564499509413888 first:0.07460111218745887 any:0.04246777855591111 :0.6295573406465258 +law:0.3474875653099191 bill:0.11162374727823893 good:0.05225272736870684 little:0.029385332325174946 :0.4592506277179602 +war,:0.8615654995395179 year:0.0026371596264499588 day:0.0024521819656264485 war:0.0016924507807903229 :0.13165270808761548 +tract:0.0015570853978952338 test:0.0004376747593061663 brought:0.00015578459569992898 the:0.0001552345304095301 :0.9976942207166892 +from:0.8226936060144394 the:0.026956420551151643 a:0.018794506177062437 From:0.01518389444289504 :0.11637157281445154 +has:0.3628698152313158 and:0.11433848730005168 is:0.07222679469702198 but:0.057680186902669205 :0.3928847158689413 +be:0.05876550313938336 appear:0.006809825828826905 come:0.0067558006889890205 pass:0.005873170302763535 :0.9217957000400373 +served:0.32132724013921077 scribed:0.017326513324258032 and:0.014034612155293955 sent:0.010584327874544275 :0.636727306506693 +places:0.00015217026958285203 place:3.596749116444889e-05 roads:3.5105821591810674e-05 lands:1.9827741609957226e-05 :0.999756928676051 +be:0.9952307377510015 bo:0.003031776575743414 he:0.0005197206435647172 lie:0.00013809215836819394 :0.0010796728713222633 +and:0.19085963744759946 has:0.14084150227105732 It:0.08152564720414779 to:0.07640480363678867 :0.5103684094404067 +and:0.43114048916560627 to:0.187660357757224 with:0.12967358703978382 upon:0.11285114260712643 :0.13867442343025957 +of:0.11138839497657003 and:0.08675248660795758 the:0.05259686371597646 to:0.034175984813326135 :0.71508626988617 +for:0.22321945825218154 in:0.20752620629660704 on:0.17019605183983438 of:0.15589976910923206 :0.24315851450214504 +work,:0.07777402828722392 cause,:0.035446113291520025 willing:0.00323817899465758 way,:0.0019458669733859893 :0.8815958124532126 +for:0.4226509726671869 no:0.14441635945995074 No:0.12555153528814292 If:0.08043845288488641 :0.22694267969983317 +woman:0.5027782614383577 time:0.2248010318563518 ono:0.01860281476913809 one:0.014428415757518168 :0.23938947617863432 +place:0.2096698661454075 time:0.1658707158179398 is:0.044278864068574245 moment:0.02583479670631393 :0.5543457572617646 +for:5.2243109967305337e-05 the:5.18237924378102e-05 «:3.003400636828701e-05 Company:2.3524526575637424e-05 :0.9998423745646509 +necessity:0.040234447719803355 date:0.03765953872951975 time:0.029422158486139154 use:0.0176900867192501 :0.8749937683452876 +will:0.3531156864230659 is:0.2835235224659204 waa:0.19143025235543099 was:0.1212295305404992 :0.050701008215083436 +as:0.8734119427069735 an:0.07006906740518262 after:0.01105842963343422 been:0.0066488572664367565 :0.03881170298797299 +County,:0.5146087822368166 of:0.19729016854586742 county,:0.11149879534377544 county.:0.07462254240601376 :0.10197971146752682 +ns:0.28948965471363647 to:0.1492918866907178 will:0.13936084224913217 should:0.10043531709215003 :0.3214222992543634 +tax:0.12871264237045366 time:0.06166382999929529 man:0.044491849038648126 woman:0.03694679437404219 :0.7281848842175607 +district:0.09331843451951005 the:0.06070487764116418 supreme:0.038687141223962745 ty:0.03150247577654408 :0.775787070838819 +who:0.1770456121989588 events:0.1455855750402385 of:0.0879357706410448 in:0.017297354511126937 :0.5721356876086308 +and:0.17810550948487788 said:0.046228607197012446 says:0.02812559694674648 so:0.0259064202031886 :0.7216338661681744 +just:0.34026119183670384 broad:0.12694525407760138 large:0.0908768687538848 fair:0.05723855490863919 :0.3846781304231707 +dent:0.030918523426804404 return:0.01712391861462023 selling:0.015241217511582073 presented:0.013775639571124385 :0.9229407008758691 +streets,:0.41097579085665 men,:0.08607269219858515 persons:0.05345600763839235 that:0.017225166233280118 :0.43227034307309237 +as:0.19093548275794256 and:0.08314308602860584 out:0.03327045834350469 him:0.018136930662604567 :0.6745140422073423 +the:0.2626073647577366 a:0.034840020626892905 tbe:0.020640573049618086 tho:0.01756710516116294 :0.6643449364045894 +and:0.351779443680821 covered:0.16456499600569108 who:0.12015109610175609 to:0.09438288184608119 :0.2691215823656507 +people:0.02749927050079126 clerk:0.025031533595603544 Council:0.016701059367592665 interests:0.01626105152558256 :0.91450708501043 +they:0.8299043540853553 she:0.14998561261654902 be:0.012953045116372887 he:0.004753469574632875 :0.0024035186070898865 +so:0.4395530195080636 in:0.1236288365211191 for:0.12292727523287765 ao:0.056138962444662696 :0.25775190629327704 +by:0.5748447776156973 to:0.2682060322965047 on:0.06589433170533895 across:0.04351569566058152 :0.04753916272187765 +knowledge:0.20991654890678643 matter:0.09226515279217389 one:0.05957107325486454 means:0.019740988480118984 :0.6185062365660562 +or:0.8538146664997533 for:0.05827353872334193 and:0.053322895600967125 of:0.012084931471482003 :0.02250396770445572 +of:0.36537680289660646 in:0.20521049746009118 to:0.1292743940618732 and:0.101642674181574 :0.19849563139985527 +and:0.13523540095045597 the:0.10741571214969213 of:0.0935504015612545 to:0.06954864342735671 :0.5942498419112409 +could:0.4252126275258995 must:0.3220162684796287 would:0.06805420012915958 will:0.05179219321328235 :0.13292471065202985 +very:0.10947986210802539 complete:0.060427951686520695 telling:0.054210067239603976 most:0.049505938325486436 :0.7263761806403635 +the:0.6783434634008905 said:0.08110899681714838 tbe:0.020700281531016603 tho:0.01997144594863914 :0.19987581230230547 +of:0.6342702858621161 and:0.07420065586349872 with:0.03657162103016779 or:0.03343780293621041 :0.22151963430800684 +to:0.6257519401638001 would:0.16611940106409095 and:0.10623987519754266 Wo:0.06354962524713458 :0.03833915832743158 +God:0.530217083041954 Smith:0.27477232924831074 what:0.10540020072940691 it:0.034679558256261386 :0.054930828724066995 +the:0.21193691691094085 to:0.037622601951874834 a:0.03402886276059107 its:0.02426996760644836 :0.6921416507701448 +and:0.09895580317490618 him:0.0714685583854347 them:0.05578209716493586 it:0.03945653385699339 :0.7343370074177298 +his:0.682047709779664 family:0.05535397915818943 one:0.015779765405488373 other:0.012463236140808886 :0.23435530951584935 +P:0.06980403268872644 B.:0.031144372967557902 N:0.025874436757543053 C.:0.014970662986724864 :0.8582064945994478 +Hut:0.2265123865083074 business:0.21164429590093936 and:0.19731705678499298 But:0.09918146934863589 :0.26534479145712436 +the:0.28132309071609785 and:0.26085840337272687 The:0.10392283387374061 of:0.025711368267722308 :0.3281843037697124 +and:0.13249243319214282 the:0.07939516021052338 of:0.07624507691185164 to:0.035825897971287136 :0.6760414317141951 +course:0.15976259682187743 this:0.0351725935910621 which:0.027295400683298516 education:0.019012620137765866 :0.758756788765996 +who:0.42717881598210933 people:0.05811967816420495 Democrats:0.026722520379846827 They:0.022732645316117038 :0.4652463401577219 +of:0.22193971916385738 and:0.19020101962145117 the:0.09087072217267081 a:0.024081677717371873 :0.4729068613246487 +they:0.4478418766732445 he:0.2656470710702222 you:0.15814325067087892 it:0.04097391527719087 :0.08739388630846354 +It:0.11558869044237721 it:0.09977930613404525 and:0.09310938862180274 which:0.050802619137475157 :0.6407199956642996 +and:0.30445352637548745 south:0.08281277068292164 owned:0.07844485057233694 is:0.06694695496615362 :0.4673418974031001 +west:0.07842294840595018 and:0.06869274410575821 the:0.06828810714206 to:0.04947361047330985 :0.7351225898729218 +day:0.10210947947894107 tion:0.021962016131698504 Court:0.021823678158920837 line:0.016188594857459104 :0.8379162313729805 +not:0.40022027526660153 me:0.10071617983639726 us:0.06021962804937673 safe:0.05871555048485848 :0.3801283663627659 +the:0.22649744703075989 her:0.1941772702068264 his:0.12838998919028377 and:0.07098623197594352 :0.37994906159618647 +and:0.21423318067195604 a:0.18594712648963604 the:0.16434496590696432 which:0.11894010034798386 :0.31653462658345966 +the:0.24123707358593025 a:0.09696602380396718 ac-:0.0769421008708821 con-:0.05995006260891574 :0.5249047391303049 +.:0.21511487244309577 v:0.1713835272381508 he:0.09691705503022546 been:0.06810183875852267 :0.4484827065300053 +He:0.22953404564793928 and:0.21122516927970872 but:0.15659078816062533 at:0.09225259521322358 :0.31039740169850316 +the:0.22346001832353968 to:0.12138343507957443 In:0.08442323928831522 with:0.05778694000958459 :0.5129463672989863 +attention:0.8347287208164237 wholly:0.023007489571880143 than:0.013023563257564149 time:0.009051124513836922 :0.12018910184029502 +of:0.4875225295222451 for:0.14871441223200274 in:0.06010752239324237 to:0.05350170680510435 :0.25015382904740546 +he:0.8259265461238777 I:0.01703690923509534 she:0.015691537938048096 any:0.013738388186013323 :0.12760661851696534 +likely:0.5907266927681994 certainly:0.058102334899775385 probably:0.046543111810943866 naturally:0.009845658139398254 :0.294782202381683 +and:0.20842381192427833 that:0.19975861250076227 but:0.15149324991302848 But:0.10061483319220133 :0.3397094924697296 +of:0.8347287622593063 on:0.06719700909940741 of,:0.0531749410423162 at:0.02744321503506384 :0.01745607256390628 +one:0.3227892193616899 or:0.12820708257418784 some:0.09109469489155911 most:0.07943326537450322 :0.37847573779806 +and:0.07917691777496506 that:0.05975361003314004 of:0.05731277033873571 by:0.026775471259478885 :0.7769812305936803 +the:0.94109234979058 said:0.02247962740316757 tho:0.02001151388062238 tiie:0.009528306105810382 :0.006888202819819754 +referred:0.279427577429025 taken:0.10659767377470464 necessary:0.07029173391704956 proper:0.03407249250416001 :0.5096105223750607 +were:0.4424164358809279 had:0.15272614804050655 began:0.13233250231410396 advanced:0.1293755623022103 :0.1431493514622513 +the:0.26896481959709384 of:0.19027481453147696 and:0.127677088135323 more:0.04285770117517799 :0.3702255765609282 +in:0.45011156249686435 of:0.24591465730547118 to:0.15872290228176875 for:0.058048723937530064 :0.08720215397836568 +execution:0.11827004856933677 condition:0.061397309149658554 raising:0.058355909456992004 making:0.047653038380172444 :0.7143236944438403 +and:0.24428033113855066 of:0.15791296174152938 in:0.09260564865358706 In:0.04898523509273532 :0.45621582337359745 +taken:0.25318177490407656 ing:0.09738803663585463 take:0.08279531225589884 to:0.052628532917729294 :0.5140063432864405 +of:0.8127237535834985 day,:0.10356622933851693 in:0.023327855220047013 on:0.0071976766206418045 :0.05318448523729575 +day.:0.06317884185266096 other.:0.029853783175652134 town.:0.025087681049683355 morning.:0.005134496418544996 :0.8767451975034585 +are:0.16674444195913868 and:0.11494236688842194 is:0.09445695726180131 were:0.08550305030960206 :0.538353183581036 +and:0.1094816156043832 of:0.07526489025598183 the:0.058996953001351084 to:0.03760302103462412 :0.7186535201036598 +served:0.8133350045795561 found:0.06255657473963756 committed:0.04051946785454744 paid:0.027615575429747085 :0.05597337739651166 +the:0.23372925112514112 as:0.12262155894654674 and:0.09546444821099939 The:0.08746235603137285 :0.46072238568593976 +and:0.08597280619092801 of:0.07287225969101918 the:0.06277213964341026 or:0.045359749526602156 :0.7330230449480403 +to:0.2129751659788304 and:0.18671106084692607 per:0.1472163953629958 for:0.045247519072700915 :0.40784985873854673 +price:0.2093660944925809 Mayor:0.09842323217907475 value:0.09694390821296973 purpose:0.0403079263013296 :0.5549588388140452 +of:0.4597686638103083 is:0.09411832348879068 before:0.08426650781576832 and:0.07040876087175164 :0.291437744013381 +paper:0.042549535792306935 light:0.03609164514775053 and:0.03507070747776221 brick:0.030682055897487827 :0.8556060556846925 +proceedings:0.3708813384558457 home:0.17427051209000313 liquor:0.13616474871711443 to:0.044464260885801146 :0.2742191398512355 +of:0.03452250389431661 ;:0.016899801742247485 and:0.014897619057176747 is:0.014400418128719889 :0.9192796571775393 +the:0.3154048783601706 and:0.036413094764096626 a:0.035687185678666036 her:0.03229489334618939 :0.5801999478508774 +It:0.17735773766487015 There:0.13940396639731795 it:0.09806167064449961 which:0.09501076234122141 :0.49016586295209097 +the:0.2096863425876684 and:0.13102328813141254 The:0.05871969090356409 a:0.05750178225830407 :0.543068896119051 +a:0.2747895586817302 not:0.08105379570434074 the:0.08076909648542391 in:0.07778764180795734 :0.48559990732054775 +such:0.8809915293775722 said:0.06873018209320714 the:1.5540809011952688e-06 a:6.275071936868505e-07 :0.05027610694112575 +of:0.9714696859884971 ot:0.008554725376312074 ol:0.006750830187575229 and:0.00653609949613933 :0.006688658951476189 +to:0.5552150852299018 down:0.08749487644268684 ahead:0.05296607131598142 up:0.050194130614521694 :0.2541298363969083 +made:0.1475977261865452 note:0.06515285333443804 and:0.03555977161213172 year,:0.03420989209394201 :0.717479756772943 +two:0.563761568289891 other:0.22292512707898401 in-:0.034264903859471625 human:0.017250965335283072 :0.16179743543637026 +the:0.1885064663663681 and:0.1409864727069763 of:0.11832138058709007 The:0.11795379081920422 :0.4342318895203614 +to:0.10427769257306481 and:0.03688049255092419 have:0.018203200815365906 is:0.01764673285114699 :0.8229918812094981 +as:0.9481325326687989 with:0.013684668261324962 while:0.006411352316711427 for:0.0057475567577567254 :0.026023889995407928 +of:0.18788133116918931 and:0.13603331239970268 the:0.05317344184980432 The:0.03879750617379903 :0.5841144084075045 +the:0.40448618840869605 a:0.07737575653798906 his:0.042098228526909504 their:0.028036751688421818 :0.44800307483798363 +throughout:0.48942289440390935 to:0.2772129676458752 with:0.0983368938544492 In:0.07868032719280157 :0.05634691690296466 +citizens:0.0602336083687717 cent:0.024475234619820544 control:0.014754369323062727 vessels:0.014018012756780215 :0.8865187749315646 +the:0.507642466779167 this:0.0737933652841238 a:0.061569711167349446 these:0.023085366604353813 :0.33390909016500586 +use:0.4180290339136803 application:0.16531316363447862 knowledge:0.028346041099829983 notes:0.02319229391409149 :0.3651194674379196 +talk:0.08409952008060288 friends:0.06822588264594247 time:0.005939377985427813 weight:0.004418273226764321 :0.8373169460612625 +and:0.6245210958569538 un-:0.13309375917752045 of:0.020630799267297252 is:0.005077493283137549 :0.21667685241509108 +much:0.055806021871730345 many:0.043123603666407495 long:0.0386087187567807 to:0.018430397644430413 :0.844031258060651 +government.:0.10301826326669582 man.:0.04322160707009686 world.:0.042023061628780924 way.:0.03845960801124804 :0.7732774600231785 +the:0.5942635454208838 his:0.055755824786832185 their:0.05180137259160769 your:0.0499754286150192 :0.2482038285856571 +ordinary:0.21722411964934624 years:0.19886429020669646 weeks:0.04847727842905125 other:0.04375157284234551 :0.4916827388725604 +and:0.14664063295991284 the:0.08649586649192934 of:0.08110331123538388 to:0.045694780036180334 :0.6400654092765936 +the:0.29039631021320844 a:0.0698817268148372 my:0.04368284281344488 his:0.032890457814555615 :0.5631486623439538 +other:0.0994748180471733 of:0.08506148491294929 heavy:0.0692359494796678 small:0.04785535543872099 :0.6983723921214886 +most:0.025135984142367007 the:0.01980706530771048 following:0.014124187992798867 same:0.013659864639956198 :0.9272728979171674 +an:0.12975930032901611 only:0.033209894318843615 practical:0.03193614754883669 natural:0.03131831164806307 :0.7737763461552405 +am:0.11387289647515886 was:0.10957202743311346 have:0.10227329681829651 had:0.05026389512761803 :0.6240178841458132 +of:0.017646032961926045 and:0.013314838605190145 to:0.010862000552936386 it.:0.00961346381251249 :0.9485636640674349 +The:0.17034628358632084 the:0.10398886789807814 of:0.09791152357266518 and:0.09024872774165865 :0.5375045972012772 +and:0.3629177873098762 having:0.21006515284173266 of:0.1997989519407398 are:0.11575474728024043 :0.11146336062741082 +head:0.05491354694190673 door:0.04740512506157473 north:0.047344283430899 boat:0.04109487535529632 :0.8092421692103232 +is:0.6444799034794154 was:0.24053413927087083 it:0.02858202613247316 be:0.02596161536756155 :0.060442315749678975 +the:0.2580585218729842 a:0.17174834515677 this:0.1276642344150992 been:0.07321585436972862 :0.369313044185418 +hand:0.4290090416707735 hour:0.2025852145577544 year:0.07030606486307274 can:0.026166406897059916 :0.27193327201133954 +shall:0.5695523738399377 will:0.19040030852859122 to:0.11538622261983508 may:0.0746338611798862 :0.05002723383174985 +have:0.25123399077600495 had:0.22063768256956756 which:0.16427452220554206 he:0.11146767422603729 :0.25238613022284817 +constant:0.0915964434285248 un:0.09031907752412137 total:0.053154750022590846 every:0.049451622424302434 :0.7154781066004606 +the:0.0032219489037183637 ir:0.00266532706759691 political:0.0009945837866326198 nnd:0.00025364182553598883 :0.9928644984165159 +the:0.640979719851904 tho:0.09220897849046367 a:0.08107385653711291 u:0.025308300168104887 :0.16042914495241448 +and:0.2622966583717091 but:0.09436696897008333 that:0.08731398825811106 as:0.07085458289485734 :0.4851678015052391 +office:0.9994489566745405 office,:0.0002624538916550919 coast:3.2460134780778642e-06 morning:2.5288007599760515e-06 :0.0002828146195665807 +the:0.9614805392627839 this:0.030481380266390145 its:0.0036574114682809277 any:0.0023008408015850954 :0.0020798282009601137 +the:0.5479221603233599 a:0.04938817921454827 be:0.03818474543752409 tho:0.03448277627612261 :0.33002213874844516 +in:0.5072442477186776 of:0.2974300192052616 which:0.0774793109765517 and:0.06396094059348349 :0.053885481506025755 +the:0.281992615868201 and:0.1850196254483828 or:0.06650736797414074 The:0.06641317430558392 :0.4000672164036914 +his:0.4212136306973465 the:0.2976087883582343 their:0.1318038897358397 her:0.11292319129177045 :0.03645049991680906 +or:0.2472285503810288 the:0.14627085796452188 to:0.09743081326023859 by:0.04983447761503697 :0.4592353007791737 +;:0.1671036874147091 and:0.15684049871220232 but:0.1451781531649447 will:0.06124262204133412 :0.46963503866680967 +at:0.41659137324744017 from:0.35444576574079656 near:0.09005054138774116 to:0.06833063052441486 :0.07058168909960737 +the:0.27227472302730926 a:0.12377740012759184 its:0.0338881265922882 Mr.:0.03366793765599233 :0.5363918125968183 +eight:0.35700157139745153 ten:0.3510744944801198 six:0.1358635466755338 five:0.08966162884632979 :0.06639875860056503 +that:0.994966790777474 for:0.0020375202812631145 which:0.001003926094136779 to:0.0005273129789956784 :0.0014644498681305109 +been:0.05519521106496207 and:0.045164911124549734 the:0.022088849748717065 nomination:0.019447000396049324 :0.8581040276657218 +.:0.8383023851914698 .,:0.08016080388933716 ,:0.0035788472386338362 ..:0.0023149398084807353 :0.07564302387207857 +com-:0.5145373659050695 com­:0.07394918243096238 the:0.009173236583238488 little:0.0073255631501670734 :0.3950146519305626 +put:0.1759704311209434 all:0.14266026853077973 had:0.09665507178443025 have:0.07761252922540882 :0.5071016993384376 +and:0.09093490749052613 of:0.07930306879021419 the:0.06553183002459302 to:0.032356893561517566 :0.7318733001331491 +they:0.12575730335785745 one:0.11536843233857018 he:0.07980745351986052 we:0.057886620983246644 :0.6211801898004651 +of:0.5424773010897671 a:0.2052212064926824 in:0.14077597283733637 or:0.06471971287326847 :0.04680580670694585 +and:0.08822682242850652 using:0.05409756956616834 the:0.043503183204848764 in:0.033373093428615504 :0.780799331371861 +it:0.32082716909260545 was:0.19396218668073856 .:0.15513477844528623 a:0.09703772827536979 :0.23303813750599986 +of:0.014016795661821199 than:0.007338569659546849 sent:0.0060280991785388715 considered:0.005847184740268328 :0.9667693507598247 +the:0.35514399543711644 him:0.2548362133086139 Mrs.:0.1122314201723065 their:0.06349539394863137 :0.2142929771333318 +before:0.5314487138849447 on:0.044253339460300835 to:0.036022553672498854 near:0.023247934839773304 :0.3650274581424822 +of:0.87177127145391 ot:0.09314799615540076 ol:0.030745565918268124 and:0.0024069998265600244 :0.0019281666458612397 +in:0.25512384182884307 of:0.14426587645941144 to:0.12942783122364543 on:0.10932736254734132 :0.3618550879407587 +political:0.1839447956917128 domestic:0.051841789590713165 commercial:0.03791925407066548 financial:0.03182440050839387 :0.6944697601385148 +finally:0.5592408938886817 and:0.0671671997193446 was:0.06257823531256781 tion:0.0622178682407057 :0.2487958028387002 +tne:0.2787589213945998 the:0.2238719625161887 to:0.10651989586545374 of:0.0785006589825807 :0.31234856124117705 +of:0.6108085462817208 and:0.08634575100957889 to:0.06858191739877598 in:0.05230167437125612 :0.1819621109386683 +line:0.9995462116303379 was:2.3531583314460423e-05 of:2.1082096599881573e-05 being:4.2540519617707985e-06 :0.00040492063778619 +of:0.2049070540060472 and:0.13903659436076618 in:0.10400313111837393 to:0.10381240102471198 :0.44824081949010075 +found:0.22038897444810604 wear:0.11818418871195087 were:0.11693485440738477 own:0.03046387140515441 :0.5140281110274039 +ar-:0.029312003342152494 t:0.028875102287117236 own:0.025179479300056335 long:0.013491952484664912 :0.903141462586009 +that:0.43855594155493044 But:0.11476422513052179 and:0.11351917788298539 think:0.0571475070329416 :0.27601314839862073 +and:0.31758604931474516 to:0.1375641702557181 in:0.11382475013486054 together:0.10277350744077125 :0.32825152285390496 +will:0.4890974794681212 to:0.36392526677615605 should:0.09256337341157335 has:0.009032162335678913 :0.04538171800847039 +of:0.36258109359048984 to:0.17375590937017313 in:0.14041919522947946 and:0.13082875028924332 :0.1924150515206144 +made.:0.01916068447563172 Section:0.01912701530285806 in:0.008672849211930447 Sec.:0.008090563894234674 :0.9449488871153451 +and:0.015042222027507124 corn:0.006095433542288359 heavy:0.005379597670960661 land:0.005061902110868261 :0.9684208446483756 +and:0.004740189773200828 away:0.00337993793719475 those:0.002323359627763869 case,:0.0019726196584712924 :0.9875838930033691 +one:0.42510743031237763 seven:0.16489715071522706 j:0.11173893055118997 1:0.06019449474624448 :0.23806199367496086 +and:0.3937644143722567 even:0.1495795798822663 and,:0.08703768182452451 but:0.06460445893014485 :0.3050138649908076 +large:0.40492679016995453 limited:0.17452684840410748 certain:0.14002354218388113 great:0.1396849865438994 :0.14083783269815758 +one:0.05049433901411561 out:0.03427250766164783 tion:0.0319992787143891 and:0.02813067978504592 :0.8551031948248017 +and:0.09069026360170859 at:0.0537426647014201 or:0.05051231862622047 with:0.04915079848506019 :0.7559039545855906 +the:0.5170760057912385 that:0.32661196841440077 of:0.036326488887507676 The:0.03537829635471418 :0.0846072405521391 +but:0.3457137304141743 is:0.11089981806485201 was:0.0997040180921114 however,:0.05997740041676906 :0.38370503301209313 +a:0.1973955843645598 any:0.19501880314177614 other:0.17711889781048973 the:0.10618020422843386 :0.32428651045474055 +be:0.9473019178585801 lie:0.010285709345566099 nn:0.006163214603348737 bo:0.004787406314024241 :0.03146175187848063 +the:0.4479681876144183 fact,:0.11950310376141393 this:0.04914218025028312 a:0.04604445915323126 :0.3373420692206533 +he:0.4732312361340092 I:0.22330285967946745 she:0.13958018194535518 and:0.10665105336161465 :0.05723466887955356 +to:0.19127844097723776 and:0.0737263378822695 the:0.029964503817515874 of:0.02476987938679531 :0.6802608379361815 +the:0.6225236020939999 Mr.:0.11440707574743185 his:0.07239671316436204 Capt.:0.02769917290443901 :0.16297343608976736 +the:0.9463347578184352 th:0.027813935768087474 tho:0.022133712514147186 their:0.0009260048236994864 :0.0027915890756307796 +was:0.1589773529201601 kept:0.11079549121228026 is:0.10553196259577097 as:0.060136797387033425 :0.5645583958847552 +Southern:0.03528177935801437 public:0.031805633172529685 purpose:0.026118260820722352 young:0.022619259956338816 :0.884175066692395 +and:0.0033002098833042563 of:0.0030914727216289793 Mrs.:0.0029425402292942967 the:0.002679719407965954 :0.9879860577578063 +the:0.12083869676067169 its:0.08846788822515263 a:0.021850191459570394 Sec.:0.017004459934606315 :0.751838763619999 +1:0.30311626934969005 with:0.24237429742531563 I:0.1093379670346519 than:0.07077874523825341 :0.2743927209520889 +passage:0.042606145550592084 majority:0.018539086462779977 Secretary:0.01684577433173167 result:0.012245383005532271 :0.909763610649364 +at:0.2750331487905505 not:0.1916533344915019 under:0.11105082794473277 already:0.0730620389880717 :0.3492006497851431 +in:0.7525851617093537 the:0.24147713589599362 their:0.003218354473729835 In:0.00188721874090808 :0.000832129180014596 +of:0.46706724506072717 in:0.21121668518624903 from:0.11718749701419894 to:0.058263861791417446 :0.1462647109474075 +and:0.11319755467290553 of:0.09397235390650188 Miss:0.06626366515258843 the:0.05556599665875088 :0.6710004296092532 +in:0.1420650554037115 the:0.10534032723595552 The:0.05330006531187413 and:0.047822622472526465 :0.6514719295759324 +of:0.6643983516547699 for:0.14322546951742107 and:0.05432390789725836 the:0.03744562292806982 :0.10060664800248084 +They:0.31894556397565355 they:0.13538246568661222 that:0.046721659768970365 which:0.04396858181108525 :0.45498172875767856 +it:0.9379475148050704 we:0.03383229703353486 are:0.014377960965302127 the:0.006788143190640146 :0.00705408400545241 +next:0.5072217520886116 plan:0.1903430258974922 new:0.033828066888823505 present:0.010510684186987833 :0.2580964709380847 +young:0.04640176596422266 light:0.04433411961977291 thin:0.02275974541452889 large:0.020994406894891994 :0.8655099621065836 +visit:0.4608857952322077 long:0.08498449098977469 trip:0.06952954132344404 call:0.01896269446802843 :0.36563747798654506 +the:0.534522388534153 great:0.09751731957465191 a:0.063235202449272 an:0.0174261801332291 :0.287298909308694 +the:0.22382713516439873 in:0.1347187900876944 of:0.13410674711296622 himself.:0.10379752992977098 :0.4035497977051696 +the:0.1632692952232426 and:0.10296938480013205 acres:0.010147652839800257 est:0.010106193473301642 :0.7135074736635235 +and:0.03229864134048263 from:0.013136255022708569 to:0.012948204659090657 on:0.008729527232569154 :0.932887371745149 +Block:0.46082813335852046 1:0.050219833060182864 and:0.03039861357353475 2:0.029948428973302774 :0.4286049910344591 +cash,:0.1743613790303132 of:0.05301989697818518 and:0.022979251499552086 the:0.018245341468988957 :0.7313941310229606 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +of:0.0950579773440261 in:0.07738290048705894 ex-:0.06434304638088119 d:0.04986613257487184 :0.713349943213162 +for:0.928605318144569 in:0.024706341579512132 fur:0.011384270497160393 most:0.01015955802908531 :0.02514451174967311 +work:0.33496178842681384 be:0.06704602790823515 the:0.022893423900565216 have:0.02193419445559707 :0.5531645653087889 +in:0.3431944620585385 with:0.12610297954929367 on:0.10222850933504234 of:0.09971398488661005 :0.3287600641705155 +to:0.2710726701690087 that:0.1520070923354187 him.:0.08331159042566412 as:0.06046735142083665 :0.4331412956490719 +the:0.3256965202776228 and:0.11060869802411484 of:0.0550203148211898 The:0.04428948587866085 :0.4643849809984116 +and:0.16565449682406513 will,:0.14661411110526687 is:0.10740446079349861 acted:0.07382389080653626 :0.5065030404706331 +of:0.20544493512462872 and:0.12143816327997191 the:0.07646266424769704 The:0.07394838131970809 :0.522705856027994 +it:0.5060465130382913 there:0.13435049279899305 he:0.12651598615535983 this:0.07764157857229764 :0.15544542943505812 +and:0.13560558526462657 the:0.048176326758702426 of:0.04157479309545819 to:0.02415382230732238 :0.7504894725738904 +to:0.20762272471892557 the:0.15928184712028823 will:0.1520063334335563 a:0.05752147244426303 :0.42356762228296696 +1,:0.2375023132183708 2,:0.009044278203319704 and:0.0039973908443089205 the:0.003797454331983895 :0.7456585634020167 +a:0.3402246680724996 the:0.14931367505258303 tho:0.09619984020154165 their:0.08937526198611402 :0.3248865546872616 +E.:0.15581638492787436 W.:0.1109060610870744 and:0.06631793997058748 was:0.04700458751178449 :0.6199550265026793 +law.:0.06775761139130697 thing:0.024111187769269224 crime:0.022961669587697933 year.:0.010563947640654282 :0.8746055836110715 +By:0.9399012356023809 for:0.022694589949309497 the:0.021518840261306748 by:0.009607416889848402 :0.006277917297154602 +been:0.28692529405262374 im-:0.13686337552555075 to:0.12310017113582677 her:0.09430101247852965 :0.3588101468074691 +by:0.7384648727038793 of:0.10698499985637686 beyond:0.09809817055029302 that:0.03492080842485591 :0.02153114846459481 +get:0.1403350211251122 be:0.12521696918430558 make:0.10493772596726245 have:0.08209891200530661 :0.5474113717180132 +has:0.7089307165485451 were:0.0288085861699481 was:0.025671835165846327 he:0.012994230680716303 :0.22359463143494415 +schools:0.09359886208917129 road,:0.052242405765004295 authority:0.013620696305593578 hearing:0.009633119540463328 :0.8309049162997675 +the:0.4785834567056704 their:0.06316807440400629 our:0.06243086209426054 his:0.06143932557756831 :0.33437828121849456 +to:0.4683584338222822 they:0.32237470528035894 now:0.13680122339123785 I:0.04020407565233542 :0.03226156185378556 +commercial:0.014648753418996616 commerce:0.011139785523241059 money:0.010742477690964805 private:0.008491413058042229 :0.9549775703087552 +work:0.0751457916464621 purpose:0.04872050349713778 idea:0.03909704672003571 business:0.02705617860566078 :0.8099804795307036 +that:0.356290964366658 to:0.22770302614835677 as:0.20737386724437215 throughout:0.11250278868957155 :0.09612935355104166 +the:0.9700031283603808 its:0.014530744591800206 tho:0.009191760245783874 a:0.0044739339753298805 :0.001800432826705334 +by:0.5828361702410745 in:0.21899917223208762 for:0.123629415653798 after:0.042349542196382636 :0.03218569967665727 +the:0.16377839817090606 and:0.13218268933865515 of:0.13208275804521707 The:0.09131059601100891 :0.48064555843421264 +young:0.26913521664055895 the:0.20070384004183678 old:0.08203972165094028 very:0.058086467981328084 :0.39003475368533597 +the:0.22146862231817455 The:0.12933584531019626 of:0.05576703325383362 and:0.043898346240689105 :0.5495301528771064 +been:0.5508048704817379 short:0.05892279246165672 r:0.028217890744025597 the:0.027587286795102833 :0.334467159517477 +to:0.028792765912883368 .:0.018903243442338222 of:0.016014632977618813 and:0.01295473293694868 :0.923334624730211 +w:0.5821758623104415 of:0.05121980955658496 .:0.039595976961707566 contained:0.01932643345699112 :0.3076819177142747 +for:0.9764882503625242 at:0.015737697226974816 to:0.001683321016752011 with:0.000925786140623701 :0.005164945253125197 +of:0.09393460432427848 ill:0.04134540819757635 was:0.02916704373665841 do:0.02008061930346112 :0.8154723244380256 +the:0.9214329741565656 tho:0.07775758231000177 tlie:0.0003218278237602502 our:0.00012720872336343688 :0.0003604069863089545 +It:0.19059939552965208 it:0.16390560350672634 he:0.08176214470529078 and:0.07316435632399876 :0.4905684999343321 +will:0.07334807162583225 is:0.03947785047716812 and:0.03489283015477423 County:0.012423369392430684 :0.8398578783497948 +of:0.5834349333793856 and:0.16628444050429317 that:0.06348563182887998 in:0.034854390334026784 :0.1519406039534144 +month:0.09461501684675044 other:0.08433335972744262 of:0.06186903677289816 aud:0.052224283568637016 :0.7069583030842719 +that:0.251407125259333 and:0.16462610923930904 And:0.12280567509093118 If:0.08460819762808817 :0.3765528927823385 +life.:0.003705387595848756 man.:0.0009350227010334286 and:0.0006903170234032272 tion.:0.0002691001905635955 :0.9944001724891509 +follows,:0.7336285493774833 the:0.052375921567935815 a:0.021677479760202345 to:0.015375644121157802 :0.17694240517322074 +tion:0.1876266439552756 equal:0.10722871907122151 similar:0.09100195966720426 ence:0.07920516294549615 :0.5349375143608024 +has:0.13888611862262376 have:0.08455366362817622 the:0.07910479554060657 of:0.07152990441518248 :0.625925517793411 +done,:0.5420392249523811 known:0.14936802123200937 the:0.10055512652969666 not:0.003654116444394607 :0.20438351084151818 +and:0.12559583491336437 the:0.08011343892894934 of:0.06289052597419442 to:0.04228479675373756 :0.6891154034297542 +to:0.15063449404784376 the:0.09944194720575439 of:0.07527504385558262 ¬:0.06196196446329269 :0.6126865504275266 +we:0.6712841028624876 the:0.04071284881488692 and:0.039673288825666043 of:0.035076648595027266 :0.21325311090193214 +make:0.20509588804623718 expect:0.162577297062292 be:0.09075781882167605 take:0.06793133102563821 :0.4736376650441566 +left:0.17637444446945463 It:0.0950738554361945 many:0.07409531175999738 increase:0.04654937346079276 :0.6079070148735607 +and:0.19944544881989443 which:0.18209328856834292 In:0.17596360087464658 is:0.09160184605906774 :0.3508958156780483 +this:0.729047935586651 a:0.142110384156996 the:0.09837684980027757 in:0.024951888154113245 :0.005512942301962065 +than:0.500146517549718 protect:0.09958504740608005 serve:0.0794405962783042 take:0.0631031466049541 :0.2577246921609436 +which:0.3756474967667393 it:0.2993363572598916 he:0.13246407969322016 what:0.11243932047866373 :0.08011274580148517 +it:0.19264321605009657 which:0.15887333343440904 the:0.0852908983142992 he:0.06338285763087263 :0.4998096945703225 +even:0.2701423429978025 back:0.2437592654542488 out:0.15203200409653236 again:0.03257683023799111 :0.3014895572134252 +men:0.1266306878923351 years:0.06054092344856156 prominent:0.03330759960756384 books:0.03111486649498886 :0.7484059225565506 +made:0.11106991224953787 paid:0.08668117965083008 placed:0.06661722455576152 called:0.06448784882411134 :0.6711438347197592 +and:0.2858220990931131 of:0.19155663766517764 but:0.07816517174112331 on:0.07683117298782818 :0.36762491851275764 +done:0.1421580719236911 taken:0.037674637100316224 considered:0.030660891197118716 elected:0.023304598391703533 :0.7662018013871704 +question:0.3149786912237311 little:0.08698087819083017 place:0.04419620525463887 sufficient:0.031389397114897306 :0.5224548282159024 +and:0.3917691174614889 from:0.15186578905297582 by:0.1385582432738559 the:0.13033730379960634 :0.18746954641207314 +in:0.47313525832175646 last:0.23334019986555185 In:0.11835735710055675 this:0.09201491126447724 :0.08315227344765759 +and:0.0857403579699909 of:0.02861000637399956 down:0.024025752241546572 effect:0.021041658221488825 :0.8405822251929742 +on:0.34413669592370555 entered:0.24166661216790677 in:0.08639083434004917 opposite:0.05867237054893255 :0.2691334870194059 +of:0.9218670764180558 or:0.011602743540480732 o:0.009818247508511128 ot:0.00931531100651144 :0.0473966215264409 +the:0.8036585344585642 tho:0.018577606149361645 The:0.008950768353979413 of:0.0033754458323069277 :0.16543764520578785 +of:0.278836992567822 and:0.11425020393145224 the:0.058041930463155124 to:0.02748120691557154 :0.5213896661219992 +of:0.11375758959324046 the:0.10490064496267529 and:0.10174385058805749 The:0.08389573512611269 :0.5957021797299141 +be:0.33089741104678055 the:0.16645555830320805 get:0.09868145193789925 to:0.07935385103035598 :0.32461172768175617 +time:0.03297634385361442 about:0.014694785702065975 interested:0.008947829079264969 interest:0.00826940875863868 :0.9351116326064158 +were:0.20941559149001507 stand:0.19973022672954427 got:0.10577749102731407 fell:0.06833995946378241 :0.4167367312893442 +as:0.9271002329506551 aa:0.012969432291566184 ns:0.011966252480063135 us:0.00942574935764299 :0.038538332920072464 +in:0.27358535869588946 and:0.18398281098630417 of:0.18347650173530178 by:0.16373164504049767 :0.19522368354200695 +went:0.9198695091344378 by:0.014607246244059976 broke:0.014126256383280886 came:0.003506625029867717 :0.04789036320835364 +it:0.5513940417398148 not:0.406355143126174 hardly:0.01664275519776032 absolutely:0.013930114180299274 :0.011677945755951737 +members:0.5253284624525214 men:0.26622169896605696 they:0.033215789417292765 all:0.018373275518033604 :0.15686077364609533 +the:0.5229796443080339 th:0.2722769963808875 a:0.159497577404518 The:0.028691295131907758 :0.016554486774652627 +most:0.03272148076692491 the:0.020393761351246643 said:0.01655872075124551 same:0.011961434573755177 :0.9183646025568276 +knows:0.2807357336457358 or:0.13635905553446662 then,:0.1116160216273448 now:0.051588555582059166 :0.41970063361039367 +aro:0.29051240878854717 were:0.27454310803253434 are:0.17737505187985608 have:0.08576975769516725 :0.17179967360389517 +aged:0.04331123274839221 her,:0.028454270372696298 sweet:0.025356574413871017 them,:0.021823515538391545 :0.8810544069266489 +to:0.3256450220774853 of:0.2515990315139512 and:0.1427230369883599 in:0.11143343506096559 :0.16859947435923797 +back:0.4738358967324713 along:0.1898842377099003 home:0.07945758268733837 down:0.06993162973183167 :0.18689065313845848 +whole:0.08681610819441787 fire:0.08550676735627988 day:0.0635304294429224 year:0.031632098079391414 :0.7325145969269883 +State:0.41200010838366186 Bank:0.18648413737925226 and:0.008255248112039358 for:0.006392491268864398 :0.38686801485618216 +not:0.6522078844457379 have:0.12988861842927976 use:0.05250520399836861 apply:0.05197060487546021 :0.11342768825115354 +being:0.12596513168642287 saying:0.09238936179897347 hardly:0.050113437786242346 paying:0.04173033425162414 :0.6898017344767371 +mental:0.4927822844863878 political:0.04465366988342526 whole:0.03649866379775307 life:0.0054460198906438355 :0.42061936194179006 +to:0.3818918494571352 not:0.35658671111786927 shall:0.12173003326771002 sales:0.01955069433672279 :0.12024071182056263 +will:0.054163539896373646 has:0.04104166996651467 would:0.03677689406979094 who:0.03242282229651934 :0.8355950737708014 +of:0.21181528596690233 and:0.11259819499593146 the:0.04236294686260964 to:0.03398108605256526 :0.5992424861219913 +tion.:0.9943099706859053 of:3.6850070749600055e-05 country.:3.5819840999625514e-05 surface:2.214082114767226e-05 :0.005595218581197734 +these:0.30489257469104203 the:0.1603097122772347 of:0.15643645150975652 course,:0.09231478805447077 :0.2860464734674961 +up:0.9285897317831632 complete:0.02127530434367188 over:0.01650058013778793 in:0.007386038688038325 :0.026248345047338643 +considered:0.7594678821017481 than:0.1349338118699184 even:0.02504241835475768 and:0.02364498413545615 :0.056910903538119666 +you:0.5854570175643757 they:0.16612920134794745 we:0.10336602689607423 yon:0.09618643694574927 :0.04886131724585337 +Some:0.06923769790953042 can:0.026096341765154553 out:0.025257720069568158 society:0.017988514045148427 :0.8614197262105986 +of:0.9373512140243038 to:0.02545142394681235 ot:0.012950539837235169 in:0.007767773256782271 :0.01647904893486626 +made:0.13086532619120925 given:0.11655305356730974 owned:0.10967208545803026 provided:0.05864635003699782 :0.5842631847464529 +most:0.03143079571886022 the:0.017598993232868627 same:0.013322675579389782 said:0.011353106327134068 :0.9262944291417473 +with:0.5641703233661493 ol:0.16563127689612653 the:0.0976670879003674 no:0.09607863603361975 :0.07645267580373706 +the:0.9496168270581227 tho:0.016407585591388496 tbe:0.003899755128476895 tiie:0.0038517221501434807 :0.0262241100718686 +and:0.13940462422147434 a:0.12466477667609949 25:0.11640145407929318 11:0.08840911497229574 :0.5311200300508372 +that:0.25733351101120716 and:0.22740774266253583 which:0.042168198656212484 but:0.018074258373607297 :0.45501628929643717 +government:0.08746089926372495 fact:0.0830974466622718 the:0.07398970565668453 of:0.06173788505326347 :0.6937140633640553 +from:0.5067100658617626 in:0.4743244084317533 at:0.007774151892607039 In:0.0065986270343504575 :0.004592746779526707 +a:0.2023606280376176 to:0.17272205781369446 with:0.07079573738924605 the:0.05476471032001536 :0.4993568664394268 +the:0.6334229326428749 a:0.15738761508446647 tho:0.09934839952154312 this:0.029600414391150298 :0.0802406383599653 +the:0.6140181010132874 their:0.05976611798837541 its:0.04623126733080517 all:0.037767790292636265 :0.24221672337489578 +of:0.09700832562342297 and:0.0949544259042404 the:0.08910640425502155 to:0.048788029622257964 :0.6701428145950572 +place:0.3955580048908689 book:0.048761685475116924 remain:0.04864539225363799 way:0.038460016651748 :0.4685749007286282 +and:0.0914206660724365 the:0.028029784742824276 many:0.0195561152118382 deal:0.013923316568368569 :0.8470701174045325 +give:0.302312826022167 come:0.14169375676325935 go:0.08908038104971634 own:0.06854978944258612 :0.3983632467222711 +money:0.13145902216707425 so:0.01469661846010434 liberal:0.014102354265850598 required:0.011749517674303224 :0.8279924874326675 +of:0.7411467836438745 in:0.055894495976952396 the:0.03955671663980357 oi:0.01585372888680685 :0.1475482748525626 +not:0.48575343825321327 otherwise:0.1653530224126913 only:0.07906383475494354 probably:0.06567490826661337 :0.2041547963125386 +and:0.18490834482788637 of:0.07244596817646214 is:0.0655640355878054 to:0.06399894553911617 :0.61308270586873 +and:0.11024433155528075 will,:0.04441688894830392 Brown,:0.03809319784001192 men:0.0312656253950854 :0.775979956261318 +the:0.5851819532463621 a:0.09640562957956496 their:0.031348896281682075 this:0.029531462830681622 :0.2575320580617091 +such:0.3503856853234761 other:0.07982509681435321 person:0.0662854000966272 one:0.055406565999645795 :0.44809725176589776 +plan:0.1034414753836596 big:0.0949711874427603 the:0.056434454063526124 is:0.023853024794933484 :0.7212998583151206 +first:0.2236236323909889 third:0.1877806033178558 second:0.16028526171458768 fourth:0.1415264993984379 :0.28678400317812974 +to:0.4216370804968253 was:0.19268514778659532 at:0.11107673161080188 the:0.10660976838548705 :0.1679912717202905 +It:0.6997235034220537 it:0.16701030572083186 there:0.044809151636010396 which:0.04218383993516015 :0.04627319928594385 +the:0.3125914570573922 a:0.11505521557729247 all:0.0965389183652579 in:0.08642804117247989 :0.38938636782757763 +front:0.17532619273040395 floor:0.14407118260157264 coast:0.03210214312524737 side:0.02334591361895971 :0.6251545679238162 +of:0.7322817037227334 above:0.002290921822012419 and:0.0015112042589886308 all:0.0011929881062694749 :0.26272318208999607 +enemy:0.606930687633964 river:0.026436825201156387 man:0.024565574155512988 village:0.007692496525661551 :0.33437441648370536 +trade:0.04409373370952801 more:0.035896280518162745 charge:0.026909996724453992 down:0.01912688792716522 :0.8739731011206899 +and:0.11078171305770794 the:0.08493819736320882 at:0.07235024694180946 a:0.07088041815586724 :0.6610494244814065 +and:0.05279340402753503 those:0.03215052888918115 the:0.032081780960693675 men:0.030124460749031898 :0.8528498253735584 +meant:0.05003835928749193 of:0.047129863053214684 have:0.03781435481927777 had:0.03635935009363362 :0.828658072746382 +and:0.13895923013583658 of:0.095968021033192 to:0.08424351150075199 the:0.08196504969543016 :0.5988641876347892 +about:0.5361427497423669 of:0.08894094500916826 to:0.06336930944475686 that:0.04769510488577053 :0.2638518909179374 +the:0.35114594797570264 7:0.12782389693101906 my:0.11053597960842693 tho:0.049496256201681764 :0.3609979192831697 +and:0.6146952398549775 street:0.02391437774494612 South:0.021208034257340826 &:0.01977612802207215 :0.3204062201206631 +lands:0.19117541228059173 premises:0.1693871145678067 mortgage:0.042795665086810236 will:0.03608789836433163 :0.5605539097004598 +week:0.16237173375280384 city:0.1160662590190881 to:0.09164324070956473 time:0.09134699134930038 :0.538571775169243 +the:0.5436137655632907 this:0.3465339705833712 a:0.02605711899856497 that:0.013143851346289814 :0.07065129350848351 +and:0.4571901010705044 as:0.2337329153695529 but:0.18931636691380327 which:0.02677695695272725 :0.09298365969341221 +the:0.15557215372385572 a:0.04687770377457092 kept:0.024563005213612404 was:0.023103806068401293 :0.7498833312195596 +for:0.9079445682950302 us:0.017339618701392535 today:0.010678372024040683 to-day:0.005030949205143143 :0.05900649177439326 +tho:0.5419845413505846 the:0.3505976095587107 a:0.04765481557537427 ihe:0.0022600346834988167 :0.0575029988318315 +not:0.2635290697215345 be:0.16195476515241924 consent:0.07117402666101724 have:0.02998766834379488 :0.47335447012123427 +power:0.12499099585602405 sale:0.07025217253537899 bond:0.06048746064691798 action:0.041350466855731044 :0.7029189041059479 +husband:0.04911508041814935 work:0.026046377773991138 own:0.004672258766945732 or:0.0027418263488045943 :0.9174244566921093 +when:0.14219485499747544 ing:0.13167204494856458 May:0.07453430770145344 last:0.0713139929361231 :0.5802847994163833 +tariff:0.006817621457719022 ;:0.0042414460198623525 act,:0.0013225388665722348 only:0.0007584145886340551 :0.9868599790672123 +and:0.052374182879419966 N.:0.038533702343658965 tho:0.037298126587605784 to:0.030110301188131912 :0.8416836870011832 +question:0.23720779321998342 same:0.1142316795024028 opinion:0.052097952231911666 story:0.02242434247400608 :0.5740382325716962 +and:0.1995881611746674 of:0.16563904254493178 in:0.0853237570642384 to:0.057480003344097225 :0.49196903587206525 +did:0.29180016121734875 and:0.1724742487313168 all:0.06655689442147304 threw:0.009303709028976969 :0.45986498660088454 +one:0.23210449059045687 he:0.18034743389615146 it:0.06365188280907953 which:0.030716394575805384 :0.49317979812850665 +death:0.11517885267838938 conditions:0.06889801173759252 use:0.029208724139706484 production:0.01900325943601613 :0.7677111520082955 +no:0.7406688023078587 great:0.08101781130870352 a:0.07374661732125817 good:0.05245288337841781 :0.052113885683761955 +the:0.21632900000510527 of:0.20713282655029353 and:0.1605483616664763 The:0.041647086476418946 :0.37434272530170587 +tion.:0.02369198735253374 has:0.014388723755293608 way.:0.012106650453342626 .:0.011678962575312608 :0.9381336758635175 +make:0.08662982828961655 all:0.04043301135274689 meet:0.034531812448178545 see:0.03172983133137923 :0.8066755165780789 +the:0.40953058071762555 his:0.05624524487626167 a:0.0539861858369996 which:0.029197095860503904 :0.4510408927086094 +bill:0.2382307588647634 law:0.07797343441213275 one,:0.07229164249518001 administration:0.06790844838127041 :0.5435957158466534 +to:0.44005945085821296 shall:0.29940389513149507 I:0.0421427649567027 and:0.029150241071504965 :0.18924364798208426 +animal:0.17545785666933972 steamer:0.05210153366235672 girls:0.01442399944926614 second:0.0077295772251375836 :0.7502870329938998 +and:0.45620331665017755 to:0.29573641136906637 should:0.067061379079596 who:0.050635314374951584 :0.13036357852620853 +and:0.16597214136826394 of:0.09883406082183714 the:0.06982498872068545 The:0.04270069694192672 :0.6226681121472869 +the:0.7483834801913676 his:0.07593436704901729 said:0.061064756732239024 hi:0.052499053541493215 :0.06211834248588277 +of:0.2757969135281512 in:0.22689665752924307 by:0.21566172912030537 on:0.13558958462112922 :0.14605511520117115 +the:0.049921416167165056 and:0.027996493048388586 The:0.021524645693608905 of:0.011784135565806342 :0.8887733095250313 +had:0.4990781429771629 has:0.3742662201255027 have:0.008658714572797039 lias:0.006543710389577865 :0.11145321193495944 +most:0.018318711430889326 same:0.01601800595114586 the:0.013230236607263315 of:0.009937533054673518 :0.9424955129560281 +not:0.24133796175322544 dry:0.046840283341713716 to:0.027551714907019558 very:0.02116137399281671 :0.6631086660052244 +was:0.1620555663646921 has:0.1077041811346432 began:0.08028256912886945 can:0.06245764412513658 :0.5875000392466586 +to:0.48048799416386273 into:0.2761469729308728 through:0.09684742783144089 on:0.08949067747118149 :0.0570269276026421 +to:0.19513175262685023 of:0.15510538055701903 the:0.10921284805204165 and:0.08077849896384169 :0.4597715198002475 +and:0.1671594753535295 to:0.16003523165230082 of:0.1580715206674331 in:0.13596736495887168 :0.37876640736786493 +free:0.7269155730350124 first:0.06405816157881467 natural:0.050889003599115086 the:0.04029970527394043 :0.11783755651311736 +no:0.6760267798746914 the:0.061384055090696596 in:0.014814396997827071 having:0.014400296171638856 :0.23337447186514587 +a:0.21076689950098304 so:0.1886855122675826 the:0.12789690224276884 an:0.05803456871686488 :0.4146161172718006 +bo:0.5848074633017553 be:0.3266198140756566 lie:0.03259535251053597 he:0.011840583871845932 :0.04413678624020622 +did:0.22486300909837192 cut:0.22080490488282795 said:0.12102826332597652 showed:0.07321507279156718 :0.36008874990125644 +when:0.3859207197932591 If:0.2639324632240469 and:0.15255103816235932 is:0.07540937607391997 :0.12218640274641453 +1st:0.5567121340512908 morning:0.03320170281569497 night:0.029161202419461147 first:0.020924919187539772 :0.36000004152601356 +the:0.3845449319938359 this:0.10528327726502368 his:0.045036291982443084 all:0.03556789872898777 :0.4295676000297097 +?:0.06914347750865096 men:0.030984207260206266 so.:0.012363999698771255 1:0.012318457941846758 :0.8751898575905248 +in:0.35234549072356525 and:0.3165736976279271 being:0.11075572140524453 to:0.07887958151165908 :0.14144550873160425 +is:0.7533938833045678 to:0.03125989787016664 was:0.028830977461050608 Is:0.024567443779919085 :0.16194779758429606 +of:0.9747519115125023 cf:0.005919957146743037 ot:0.005223332760396212 Of:0.002955197616427933 :0.01114960096393055 +in:0.09942955343407758 of:0.024491110924680027 for:0.006284297287882626 was:0.0035619143995518723 :0.8662331239538079 +in:0.5287132150353118 fur:0.3185840864164117 In:0.078434256956799 iu:0.03941100465083763 :0.03485743694063966 +if:0.32151330274864354 the:0.26725848818739 that:0.19713622391307528 whether:0.12619922044340182 :0.08789276470748915 +and:0.2753883117503624 that:0.1066483183229331 which:0.08847322426552441 but:0.061134616090066596 :0.4683555295711135 +whose:0.5645701219805956 their:0.22340525976060294 the:0.13365883144979784 his:0.06034814525155896 :0.018017641557444803 +office.:0.007282030633708862 It:0.006129063268664385 says::0.0038440595787259534 ::0.002892593125770128 :0.9798522533931306 +and:0.36942361909791044 as:0.296847698017109 they:0.23067727987160633 up:0.024685186403479043 :0.07836621660989523 +law:0.34479031482434436 eye:0.1984053367168111 payment:0.0927608117954738 process:0.06344506787349011 :0.30059846878988067 +the:0.46524491442510296 a:0.4524125224424056 all:0.03268972289880779 any:0.025756885617532647 :0.023895954616150905 +both:0.4576317732475495 all:0.23277095751426086 of:0.14507352076831154 the:0.04791615564288058 :0.1166075928269975 +have:0.08295651789388979 are:0.06683224378661154 appeal:0.0532934521370457 hope:0.05204906624423181 :0.744868719938221 +worn:0.19114031477678353 done:0.06769321383668325 made:0.05072844491497736 reached:0.04827813633415981 :0.642159890137396 +in:0.23577518824877655 at:0.22710647930182237 on:0.06774907840125328 had:0.05006211390605718 :0.4193071401420908 +a:0.6998687342561919 the:0.1548798588098485 almost:0.09877806363928458 made:0.023126552418959376 :0.02334679087571567 +of:0.3253288459881801 and:0.08738609130975676 the:0.0625652025853561 The:0.04378706160354342 :0.48093279851316345 +bushels:0.9949073714453582 pounds:0.0015991161540419715 feet:0.0004393168066758431 tons:0.00034541889890115924 :0.0027087766950228136 +him,:0.05627711333045529 him:0.04762502254675916 Court:0.03164968767844849 the:0.02770283809355592 :0.8367453383507812 +tract:0.005294625282193762 office:0.0017709202085956883 test:0.0008635732223490748 the:0.0005193854715684167 :0.9915514958152931 +he:0.06588916511846478 it:0.04040445345076708 they:0.036060349967141095 and:0.029564510985475977 :0.8280815204781512 +crops:0.31717422209371987 plant:0.05261947918994861 they:0.02351524914792236 interests:0.017528550343011852 :0.5891624992253974 +To:0.8189502416175513 Where:0.09492107114795713 Hut:0.022897243194610745 Well,:0.02273864387140281 :0.040492800168478095 +the:0.6236188999997021 public:0.07867476124329979 a:0.049220633586387064 an:0.03212132190716495 :0.2163643832634461 +.,:0.06498128844859924 and:0.058808336371630535 .:0.0585462090835505 to:0.05830271955111452 :0.7593614465451052 +of:0.9977780340112355 a:0.0008951565012230807 in:0.0006587920687024694 with:0.00031744026681094866 :0.00035057715202790944 +to:0.31054281096840325 when:0.07396282508656077 of:0.06684502370165878 and:0.05668615847712668 :0.49196318176625065 +a:0.04041028550029116 to:0.03563738246585041 the:0.03334442448260426 moved:0.02515395727341446 :0.8654539502778399 +place:0.040430562418226734 city:0.02042484265241795 amount:0.01858364634831534 sum:0.01581250719172623 :0.9047484413893138 +that:0.12617825713624364 and:0.0614955905252625 England:0.026523902297071238 value:0.02232047312522818 :0.7634817769161945 +pay:0.8984802299279316 with:0.007446383211037354 visit:0.007251556494480881 see:0.007162692440706166 :0.07965913792584392 +do:0.09804684101061809 effort:0.040783600286624484 meet:0.025690954897539205 look:0.022887366089456414 :0.8125912377157617 +is:0.5159126168398086 was:0.3593565822302526 Is:0.10663473717016243 has:0.0064100766051021114 :0.011685987154674149 +what:0.4963066061120207 and:0.21567752651024305 was:0.028055089769572304 He:0.025109292738309624 :0.23485148486985422 +of:0.12528213525277027 and:0.07605765592499823 to:0.030112847606741718 the:0.02548243931521424 :0.7430649219002756 +Hall:0.010411023917401485 II.:0.008923847683662185 he:0.0042246674872028845 be:0.002040793570363436 :0.9743996673413698 +make:0.27305519657800287 raise:0.10764163564750118 give:0.07829295712234188 render:0.05208951064032892 :0.48892070001182525 +made:0.07063551029485045 two:0.06014218573443205 en-:0.05004198481722602 pre-:0.03968585990717093 :0.7794944592463203 +fellow:0.3977522073813462 country:0.08757251977565779 8:0.02892081402981663 machine:0.018854806047864665 :0.46689965276531475 +of:0.5673683268073791 at:0.05101100804574916 and:0.03907300859732177 con-:0.03239679495960077 :0.31015086158994903 +of:0.5235119019248018 one:0.28678823214999544 some:0.07384158455672467 in:0.03553881810183173 :0.08031946326664638 +according:0.07045799274427705 as:0.06964942303890337 and:0.055733587050935014 them:0.030448984666719345 :0.7737100124991653 +former:0.07549197875845078 rich:0.05198906861195476 general:0.0422022671293588 most:0.02775071046851049 :0.8025659750317251 +and:0.23538832633649423 to:0.14650303158650202 with:0.14221444350603327 the:0.14018638989914217 :0.33570780867182837 +and:0.06772719383021035 of:0.04673967250263357 or:0.022151984261199388 was:0.01595881642759748 :0.8474223329783593 +to:0.00010043767434630356 the:3.560712096410577e-05 of:3.2820869946580845e-05 its:1.3111815608686587e-05 :0.9998180225191344 +the:0.3729808115803159 a:0.05856686416647868 his:0.0262361834258075 tho:0.02170197117974197 :0.5205141696476558 +which:0.5722633096483699 as:0.03867236570113457 that:0.020407952757640246 and:0.018089762493483905 :0.3505666093993715 +struck:0.6547591279916867 to:0.054764371170919694 with:0.004467519798976631 for:0.004041368570061805 :0.28196761246835533 +first:0.6376750711984784 least:0.11596217954311241 new:0.06956084630342278 people:0.008974724297336645 :0.16782717865764973 +words,:0.0891280292447691 as:0.06296231985828368 State:0.06217866649268666 hand,:0.04769901774651701 :0.7380319666577436 +make:0.8994016900384898 prevent:0.019032125051673395 maintain:0.004609940661862442 all:0.000617848797609933 :0.07633839545036451 +a:0.6975774329452699 the:0.12985146869544525 one:0.11621387191130297 another:0.02267523628117763 :0.03368199016680422 +sufficient:0.14004378513733068 that:0.06206329655966256 and:0.061763301751234914 as:0.024455471220219134 :0.7116741453315527 +first:0.8873660441525384 form:0.009241743162958402 same:0.002859231562683114 line:0.0027075495222350886 :0.09782543159958489 +about:0.46657983308877166 over:0.16108806565614572 the:0.02910323014486322 least:0.028644911269811637 :0.3145839598404078 +ward:0.10051497941348758 saw:0.09485277166433248 read:0.05769943387554712 head:0.05138365923098395 :0.6955491558156489 +and:0.2942743010184279 as:0.10319166042609484 that:0.067045752216114 but:0.060366004681920715 :0.47512228165744264 +property:0.011392799558373835 V.:0.008213789162203595 and:0.006745213549918421 Johnson,:0.005010508839328253 :0.968637688890176 +own:0.4238971175228861 little:0.05887708489150536 the:0.027714898782802824 his:0.021683613544770514 :0.46782728525803524 +orders:0.536506647105049 kinds:0.18170806643708273 persons:0.03156158736738948 records:0.008528021600604571 :0.24169567748987422 +of:0.12475106944859855 to:0.10531824318223654 that:0.10231485357522378 at:0.08789419111239248 :0.5797216426815487 +that:0.23381239695074948 in:0.15725426869740533 the:0.1429801417680165 a:0.14077717619196456 :0.3251760163918643 +value:0.04410163841576523 and:0.009512722671081386 difficulty:0.009237598910898375 to:0.005247061812521742 :0.9319009781897334 +the:0.4854860780718048 a:0.11785422040783637 an:0.025268482700108497 said:0.02448585624331864 :0.3469053625769316 +of:0.9841448768959633 to:0.005483459336287554 without:0.002470559584327268 in:0.0018330838598986196 :0.006068020323523178 +of:0.3736719589573888 for:0.13139972368683733 more:0.10296254694738811 told:0.029327327405592494 :0.36263844300279313 +could:0.03565535590086275 now,:0.010598252298600562 was,:0.009037202103011182 turned:0.008472532171152743 :0.9362366575263726 +to:0.6526993505365957 careful:0.08763824420351231 having:0.07255003676579484 that:0.03948292123325713 :0.14762944726084004 +followed:0.026029891974366053 bound:0.022609094958660737 accompanied:0.021676080101725392 made:0.013375405027480167 :0.9163095279377677 +in:0.3531129938362554 there:0.3316101955658478 all:0.11895150191121501 of:0.1143500716681358 :0.08197523701854598 +the:0.471222358477799 our:0.11106361125633422 their:0.1110064893627616 Ihe:0.07460706684633892 :0.23210047405676618 +and:0.14597360786014338 of:0.10552943740727311 8:0.08985033057059116 Mr.:0.05108737213569955 :0.6075592520262929 +feet:0.008852332798271995 years:0.0043172183354464565 pounds:0.0035966995416205415 miles:0.0027104948938633583 :0.9805232544307976 +and:0.0815179209773105 enough:0.07634777186333788 on:0.07110640884141403 difficult:0.04473200940299131 :0.7262958889149463 +upon:0.2848259113136563 On:0.24090817456189983 on:0.19083538531901795 Upon:0.15192850790027385 :0.13150202090515214 +wind:0.096410473171545 scene:0.09161643725175467 light:0.08423981057292663 cars:0.04397930758720687 :0.6837539714165668 +started:0.07514740208569282 son:0.03701885131072644 made:0.01802028018382006 on:0.012398731687774901 :0.8574147347319857 +work:0.9654042758771028 dinner:0.012230991650688692 wore:0.003487480607665587 sleep:0.002654172063236646 :0.01622307980130609 +can:0.050467302441506524 force:0.027220939419415183 well:0.02685343568397094 that:0.022946789103804596 :0.8725115333513027 +the:0.23670375262440235 being:0.22675795788620556 finding:0.06729775527872633 a:0.05084464270552829 :0.4183958915051375 +will:0.8406198146431924 no:0.05905766716558328 should:0.04395544753473259 must:0.030273893728082004 :0.026093176928409737 +the:0.579249649734583 their:0.07307913591155729 this:0.06008884223208238 his:0.04835253971316779 :0.23922983240860937 +of:0.23632224767581136 that:0.1900686331625912 against:0.06883714291950409 in:0.06797574013091384 :0.43679623611117946 +and:0.061989291806142585 the:0.04220681635789823 of:0.03440693299167229 a:0.02496808937766939 :0.8364288694666175 +find:0.3443111625788658 get:0.2254834604060017 give:0.10136385000975129 see:0.09481751319065831 :0.23402401381472296 +upon:0.3482730782171209 with:0.1208033080914688 to:0.10732808396838202 on:0.1003285706655645 :0.3232669590574638 +the:0.7524335974901281 tho:0.03780555126446216 a:0.023508298759770594 our:0.021861999493221495 :0.16439055299241767 +the:0.33523249365147045 a:0.08583854927822983 and:0.08509192654032642 The:0.056906290720707485 :0.43693073980926567 +the:0.18200225919471155 and:0.12594873133195025 -:0.09048796776778172 |:0.07084722107181154 :0.5307138206337448 +and:0.17823576019892418 shall:0.17337188799015343 or:0.05495097140426603 of:0.025989515717427275 :0.567451864689229 +of:0.6530128730060722 and:0.0730233648243866 in:0.05791792336853422 to:0.04515333842134479 :0.17089250037966203 +and:0.13560558526462657 the:0.048176326758702426 of:0.04157479309545819 to:0.02415382230732238 :0.7504894725738904 +per:0.7348105398991012 of:0.08134183950229872 this:0.03283427669935171 to:0.02739968955225498 :0.12361365434699342 +first:0.04128884739702434 1st:0.03970775798957859 third:0.00442006711498364 second:0.003289986599692004 :0.9112933408987214 +your:0.9409232587923765 the:0.0547609970664943 their:0.0008144836916977865 his:0.0007849569771943394 :0.002716303472237216 +the:0.29758575582296065 his:0.13921845662298288 this:0.10231996094954443 such:0.058824169408026324 :0.4020516571964858 +was:0.1947798996351566 had:0.08450635125978885 is:0.06617139671679954 has:0.047543775938058544 :0.6069985764501964 +same:0.05154375992818732 time:0.04173724962314189 first:0.033514396914439325 expense:0.019296032084849812 :0.8539085614493817 +effect:0.20537429816218727 interest:0.17310202611928552 voice:0.1580522471174505 influence:0.11321286015156035 :0.3502585684495163 +of:0.40130531522808127 and:0.12380806528776948 by:0.0951917222249332 with:0.08566933931772915 :0.2940255579414869 +children:0.7742601246092965 banks:0.010640738997965301 people:0.009424294388904884 men:0.00139625731424235 :0.20427858468959104 +change:0.6842144840581694 write:0.03005013812367876 hear:0.010640291882770355 hit:0.009059892346402908 :0.26603519358897837 +took:0.17364168051616558 pass:0.16750855856348745 the:0.09728266036082897 under:0.04535747639909418 :0.5162096241604239 +District:0.001070871513843751 Supreme:0.0008598506549556685 City:0.0002016008128954098 General:0.00018749756468158067 :0.9976801794536235 +appeared:0.4437689549494159 and:0.08974633338968706 of:0.013748440055909701 west,:0.01220965412538248 :0.440526617479605 +we:0.3043663078252769 Ho:0.10837655219221906 We:0.09059590222472783 I:0.08288203686434432 :0.41377920089343195 +do:0.029768013459225626 appears:0.0159200118207315 see:0.0075805169000376866 make:0.0052078429527653266 :0.9415236148672399 +make:0.4385460584110797 give:0.3157360955716523 enable:0.022596067579242 aid:0.015711094056434095 :0.20741068438159185 +the:0.6720583152319117 an:0.10888243291554987 m:0.04772325909711787 his:0.004179254087520171 :0.16715673866790037 +of:0.20522514093974334 .:0.07922018701205572 that:0.04358819321043011 as:0.030978350574429412 :0.6409881282633415 +it:0.11321780824002599 It:0.1046885185660372 He:0.04472455536582988 and:0.027341457103682947 :0.7100276607244238 +were:0.5204865586652033 are:0.24594465055798984 still:0.044591152205173734 have:0.043959687543102595 :0.14501795102853066 +of:0.9830308957174312 in:0.004063657300907479 to:0.0037618875183278158 on:0.0031019505195539923 :0.00604160894377951 +act,:0.0007845054701847997 paper:0.0007723486506515374 for:0.0002864080418005932 power,:0.00018846086144427393 :0.9979682769759187 +that:0.38848598140661206 .:0.30435558724608913 now:0.0265319201770264 perfectly:0.022199819477332326 :0.2584266916929402 +to:0.9858185964126783 as:0.0026032719161089403 the:0.002344924958982403 and:0.001808413522278338 :0.007424793189951876 +the:0.7759978396497532 their:0.1402585052585934 this:0.04227520155417906 tho:0.016917483115395916 :0.024550970422078516 +be-:0.9062411154804586 be:0.05860086407661705 be¬:0.015471198544234416 be­:0.012191678533299099 :0.007495143365390833 +day:0.10733576099794667 tion:0.07749415616197598 ment:0.020289075472513962 and:0.01649359728118814 :0.7783874100863752 +that:0.3888692377760794 in:0.2726996964485022 at:0.12495464199502541 and:0.11193321567074775 :0.10154320810964514 +all:0.16594621459178968 how:0.09398461668948413 not:0.0845265255870792 when:0.0506040434874201 :0.6049385996442269 +made:0.020022006098516072 other:0.013766499025296516 death.:0.013501985318585225 then:0.013238285896565134 :0.9394712236610371 +to:0.7369445445528203 by:0.08677520465518283 for:0.07381650401036574 in:0.05209574106025606 :0.05036800572137512 +most:0.9695979037597777 more:0.005467657243852565 less:0.003123051689859028 only:0.002706651422420938 :0.019104735884089764 +a:0.3168122094483986 an:0.11357136769533253 post:0.03507825136426965 pretty:0.02353589591331941 :0.5110022755786797 +made:0.24771454839548834 issued:0.22340829684681382 found:0.048450190809530745 attended:0.04799677384195798 :0.4324301901062092 +current:0.10974553106116769 the:0.0976405209902116 court:0.07453507212781375 ma-:0.026566562510162563 :0.6915123133106446 +reason:0.16323037248266975 time:0.13202441442559554 years:0.05851864164594587 of:0.041380896413936157 :0.6048456750318526 +from:0.871062590561653 in:0.014358158661594301 to:0.01384608270467774 and:0.013715315947955414 :0.08701785212411961 +of:0.1385253950486514 and:0.11037719248087165 to:0.08335516302074422 on:0.07096925029475903 :0.5967729991549738 +according:0.7620422036757427 and:0.019549053816224824 feet:0.007110416132418101 rights:0.006240778267652389 :0.20505754810796203 +of:0.3556825504940654 in:0.1552698233761484 to:0.14205962513327083 on:0.06610688423089953 :0.2808811167656157 +have:0.3887405847453252 as:0.33550801820893544 and:0.10084503489611317 is:0.03107505888311843 :0.14383130326650764 +was:0.6513505848054669 attempt:0.03814250429651526 and:0.030325513848038034 the:0.028057316618536186 :0.2521240804314435 +not:0.22675176166360503 said:0.19556954147052288 likely:0.09699264763536986 known:0.06630525621413105 :0.41438079301637104 +The:0.19081040966834753 the:0.1281680326339854 and:0.12808417672830225 of:0.0655551090838409 :0.4873822718855241 +and:0.054960086622473196 work:0.019554054136664334 play:0.01817358815416945 ment:0.016647575853929317 :0.8906646952327637 +and:0.010932538256085773 tl:0.008967673389529153 -:0.008958808138088492 !:0.006235812173815602 :0.9649051680424809 +up:0.986121259037044 of:0.008873641731877475 to:0.004102679811360272 and:0.00024860305422726495 :0.0006538163654909554 +of:0.0862462435003356 and:0.06390845918267718 the:0.04177240513815104 to:0.036518623766303604 :0.7715542684125326 +the:0.7027174761434555 a:0.1183999718121026 tho:0.041087445904530985 tbe:0.020880064999677463 :0.11691504114023325 +and:0.22289768766063206 that:0.08010256459206147 which:0.06738284384035031 when:0.03730499654398407 :0.5923119073629721 +of:0.04531218373704624 and:0.03707047284169391 Company:0.020279409256566135 is:0.014401459791752448 :0.8829364743729413 +but:0.5507695033384157 and:0.1613248634533488 for:0.1279249983739318 as:0.1012956685667088 :0.05868496626759501 +that:0.22880442801238704 It:0.16639021578178964 once:0.16177628656505558 which:0.14953896520091586 :0.29349010443985185 +cover:0.19386373562010822 all:0.07821171345379709 one:0.04682315914991787 color:0.03830842314812446 :0.6427929686280526 +man:0.07759589808901557 master:0.054706664813113995 witness:0.028912355971072553 count:0.016350154811102188 :0.8224349263156956 +the:0.28793068590749044 and:0.1377698195619663 The:0.0708933721980492 a:0.04132768326085587 :0.4620784390716382 +but:0.8740130206185035 in:0.02776227953652755 as:0.02509458655262959 of:0.02454964056310729 :0.04858047272923202 +more:0.26643752736787435 the:0.24713892740712462 having:0.11133211307366891 no:0.11004947323719913 :0.2650419589141329 +improvement:0.672801539698254 sale:0.0794482221448784 operation:0.026948052051183984 many:0.01435095045318406 :0.20645123565249957 +buildings:0.05866684148773832 road:0.02219783447340261 bills:0.00795505979484746 interests:0.005402700021948969 :0.9057775642220627 +the:0.23323421844115788 and:0.23030719393244245 to:0.14976695163905426 lias:0.10097069810377687 :0.28572093788356856 +was:0.2401143234977307 had:0.1919509579968342 could:0.0666702288182762 has:0.05442944540566343 :0.44683504428149545 +to:0.06451728894329925 the:0.049781238749412725 be:0.046870475362074 a:0.027223361389686274 :0.8116076355555275 +25:0.24854564888423364 ten:0.2122833591869868 twelve:0.19349007785714342 two:0.06315242941071751 :0.28252848466091873 +the:0.6180675025739907 no:0.15372762225951628 little:0.05624515623043766 gave:0.04474371157619284 :0.1272160073598624 +of:0.3539138740687464 to:0.12813538038865205 Among:0.06631169070682638 who:0.059749905407345885 :0.39188914942842923 +the:0.6551212159725193 their:0.3070827557490036 his:0.027389001966076614 tbe:0.00635889665985284 :0.004048129652547532 +and:0.3231456641453379 letter:0.014509660812694456 of:0.011914016064939909 position:0.01085595213681393 :0.6395747068402138 +brought:0.565804255955056 with:0.06319873401227694 to:0.05813214043732715 by:0.03064912846296082 :0.2822157411323792 +of:0.21296392469444403 who:0.11394978675324444 and:0.09228290401585747 in:0.08885325931862662 :0.49195012521782744 +told:0.9830773858072757 drew:0.002597576688632268 took:0.0018481688677412682 had:0.0015498930606467592 :0.010926975575703905 +of:0.262023791534652 in:0.13575149782432808 by:0.127656107386939 after:0.0934575508389766 :0.3811110524151044 +Mr.:0.16043617590623419 Dr.:0.12896605658737634 and:0.10851793665891334 Mrs.:0.10177567053373451 :0.5003041603137416 +course:0.3117673029081641 him:0.09272630265384488 us:0.06651774207108241 all:0.04985827582402355 :0.479130376542885 +city.:0.015601935353501638 feet.:0.00834303071087197 year.:0.005783254297332279 work.:0.005530845149611311 :0.964740934488683 +before:0.45637861235669996 on:0.25007421518890455 during:0.09476218733821988 and:0.08858095674449994 :0.11020402837167569 +miles:0.37380623641491967 feet:0.08733496457794843 days:0.0447153676133715 inches:0.04451997537152012 :0.4496234560222404 +he:0.3135290177054962 they:0.18171265785276727 we:0.16668841031719628 I:0.13702194921854435 :0.20104796490599605 +him:0.30039381633431256 me:0.2769673522707773 them:0.09866458127022154 her:0.09512995749023945 :0.22884429263444916 +containing:0.6263624614192784 of:0.08352273754374075 about:0.06099632835383785 and:0.03905423043190142 :0.19006424225124163 +of:0.13638049820580084 and:0.12644861064068408 the:0.07558062536712525 son,:0.04963050685566368 :0.6119597589307263 +has:0.4658950468595584 have:0.1975147261137081 had:0.10134263779263689 seed:0.1003771993198661 :0.1348703899142306 +a:0.19402975128813027 can:0.15539556277596073 the:0.0784916382767368 to:0.03878126571360043 :0.5333017819455719 +the:0.22060605144181505 be:0.18396559980897978 a:0.04014412346154 give:0.029029145097580752 :0.5262550801900844 +of:0.9201424443976542 or:0.0062774844733337245 ot:0.004338792526281595 was:0.00412418334385489 :0.0651170952588756 +to:0.3868392781041947 was:0.09820115852957031 all:0.09138516913412448 in:0.06623379674053932 :0.35734059749157127 +the:0.30969613365839854 to:0.089508150249645 not:0.072754220191139 that:0.057449185537517565 :0.4705923103632996 +unable:0.05935709425229251 have:0.054720368294368375 where:0.054120621561911046 tried:0.04346893669485757 :0.7883329791965705 +and:0.17403295061332275 to:0.14909902795997887 is:0.12231661517146537 but:0.09712092626849489 :0.45743047998673814 +of:0.23159925165044445 old:0.18539892216819043 young:0.05984815300848523 lot:0.04766875321596722 :0.4754849199569127 +the:0.1923131504314296 and:0.1837664964131854 The:0.1145682570311275 to:0.06986176649732581 :0.4394903296269316 +of:0.555794345115434 toward:0.15456011757607843 in:0.15217539736409455 to:0.010247384010112964 :0.12722275593428026 +and:0.18548340027362215 is:0.1613640028607964 a:0.15073900224791859 the:0.12348083915591249 :0.3789327554617504 +the:0.22262184155642684 and:0.15311932707921255 to:0.114195493982668 a:0.11173947015912 :0.3983238672225726 +in:0.32963292476253253 and:0.22469116437532408 among:0.1338732690773112 under:0.1325706972466487 :0.17923194453818345 +final:0.1711195435486969 equally:0.07087765817570263 whole:0.02621953620559554 places:0.023665420605340458 :0.7081178414646644 +But:0.03054466059754918 Pacific:0.02660808822643019 call:0.02371393649170154 question,:0.01367307991664496 :0.9054602347676741 +other.:0.0029902243050998825 of:0.002124673088578938 country.:0.001996298736737069 one.:0.0015270228843333054 :0.9913617809852509 +very:0.22370571810832748 somewhat:0.17344163101402826 thousand:0.06370268433822708 newspaper:0.03285506699169004 :0.5062948995477272 +be:0.18946308747781707 continue:0.1549389343457096 learn:0.047211995191529695 have:0.029700970988556605 :0.5786850119963869 +the:0.9226022152544258 a:0.07014843085054365 he:0.003866033674411973 every:0.001149862656463264 :0.002233457564155272 +mill:0.30644321816033243 to:0.19721956565748158 long,:0.14903090107173564 about:0.07073848262115622 :0.27656783248929406 +the:0.8208569641553816 a:0.17666024251375684 hot:0.0008297690688721292 of:0.00026055990548916346 :0.001392464356500201 +ex-:0.8813201742898507 and:0.02054247966080358 to:0.017972851291993178 the:0.010734636628378038 :0.06942985812897455 +pany:0.060086908235886985 mission:0.03903039354622664 petition:0.001864039161170347 -:0.0007778837036475186 :0.8982407753530686 +highest:0.13720100566403887 most:0.04016745656886527 only:0.010236508652209339 very:0.008631352016131171 :0.8037636770987553 +the:0.4996755157363383 we:0.22148229804686254 one:0.09386862456329184 a:0.08013643238915115 :0.10483712926435633 +only:0.394459751289519 ed:0.10405741499390751 on:0.08987534790939983 of:0.059629221342503015 :0.3519782644646706 +one:0.6996600463187725 man:0.115833339962319 part:0.07222975248989798 our:0.02705996674365532 :0.08521689448535515 +policy:0.3582338877551406 supplies:0.036296920487222835 officers:0.031383025769806706 force:0.01922249714490274 :0.5548636688429273 +be:0.1493907048245168 a:0.07229505762899614 the:0.0661916981214816 left:0.04430642948541117 :0.6678161099395945 +cause:0.015544325981682813 on:0.009815390771876363 ing:0.0034371347724135265 fore:0.002819370936681692 :0.9683837775373457 +is:0.2487260417581648 in:0.1586560592148115 and:0.14745582064284385 was:0.07633866719248372 :0.3688234111916963 +and:0.3595246818650332 machine:0.04518889655364331 the:0.019852003240200557 plant:0.015961475667052184 :0.5594729426740707 +in:0.7463751680712588 an:0.09684460673026916 from:0.08212562745131978 of:0.04768288530011789 :0.026971712447034266 +the:0.6258142127039454 two:0.009016497029930395 tho:0.003747586711574959 right:0.0035165661890055374 :0.3579051373655438 +and:0.1291675913728782 or:0.060150068977343873 land:0.0028463229750341854 nnd:0.001843492129305105 :0.8059925245454388 +the:0.5188984123757941 his:0.261289026358898 that:0.0394189842662311 tho:0.03180050343812702 :0.14859307356094972 +at:0.2309540334160383 for:0.2100595885197814 on:0.18028727759318108 not:0.10298591698811206 :0.2757131834828872 +a:0.9301059767171539 give:0.010332918929736442 the:0.00901853578661204 so:0.007609436053223415 :0.04293313251327426 +I:0.9309245252924537 we:0.043484362493033245 1:0.01707599587152401 or:0.00315792223127771 :0.00535719411171144 +order:0.5415480443169514 notice:0.10645915979649993 list:0.08081785276414531 street:0.03874306856056888 :0.23243187456183437 +end:0.4614755977134295 statement:0.4028047607924823 moment:0.007341200867302622 officer:0.006940451237592152 :0.12143798938919348 +to:0.3144188786131678 will:0.2696667533559445 should:0.12532245642070805 may:0.10500196508325885 :0.1855899465269207 +worth:0.633351166477205 only:0.12481182887927487 about:0.12040566640234411 but:0.09314501619362069 :0.028286322047555275 +vote:0.17636189023540666 and:0.05908263665388261 was:0.031079585113188573 ness:0.02810635815352213 :0.7053695298439999 +above:0.8104893915678668 after:0.08165652166245295 beyond:0.02375461276125571 in:0.00805614716537298 :0.07604332684305151 +favor:0.07164537426216099 the:0.05030837047031869 minutes:0.04566794832420973 cases:0.04535866914519097 :0.7870196377981197 +or:0.11891792943485417 and:0.10552721073860388 end:0.10199443178289584 either:0.06859888487007644 :0.6049615431735696 +will:0.2928844076423657 would:0.1918529412634834 should:0.18853194876945695 may:0.17743169051772187 :0.14929901180697208 +of:0.38312126221086296 The:0.15386447614540383 and:0.08702824816715875 the:0.08270883771467055 :0.29327717576190393 +the:0.08438383710481634 though:0.0418908734749555 -:0.04147159336850377 hearing:0.032982450416693905 :0.7992712456350305 +a:0.44901710896794045 the:0.16876016932960833 every:0.14235332747889604 and:0.09338745848331062 :0.1464819357402447 +the:0.6426314757363611 a:0.12100274590096674 an:0.04498466214826563 all:0.03096082080921346 :0.16042029540519293 +action:0.013474005692203916 use:0.012726891475037637 members:0.012501601112982005 people:0.012084700278379648 :0.9492128014413966 +his:0.4584984730836227 and:0.34923454785171487 bis:0.02755824283198316 nnd:0.01096168517483501 :0.15374705105784423 +person:0.21048419947256886 r:0.15078440466995016 country:0.12161830481330639 m:0.02755792545617384 :0.4895551655880009 +only:0.23684978228495163 and:0.08146895903053034 And:0.025266350486383236 was:0.01322627636081115 :0.6431886318373239 +accept:0.07598452689705534 receive:0.07411810110286815 admit:0.06910824346294044 ask:0.05503753988928343 :0.7257515886478526 +of:0.34216245654255834 in:0.1502550617964655 after:0.14100265521033592 and:0.11400341212505877 :0.25257641432558153 +state:0.5514876153663567 deal:0.2502824836558832 supply:0.029272402846884024 degree:0.021627486644122045 :0.14733001148675398 +benefit:0.19543699130562797 importance:0.057539479555260516 good:0.025161260000968216 service:0.018225275930989063 :0.7036369932071542 +he:0.04553310979584363 far:0.02904526461775733 approved:0.01846802308361805 out,:0.012812596011577877 :0.8941410064912032 +woman:0.05926380565429316 determined:0.040085432083154945 next:0.03603374749883992 present:0.034256001597098656 :0.8303610131666134 +and:0.3842606735073345 or:0.3320953085358657 of:0.15465916151824657 in:0.0020582405590711264 :0.1269266158794821 +sides:0.13862393970374515 cause:0.008059261453563272 ing:0.00727340178867915 fore:0.006108397727609471 :0.839934999326403 +the:0.4049104949935815 his:0.23798954586545062 that:0.1101257912502383 a:0.0985138974312655 :0.14846027045946403 +Let:0.21079164868853983 May:0.15823132301799003 Is:0.11499512768238836 would:0.09210306341274858 :0.4238788371983333 +the:0.14656179028209612 this:0.035545099124797724 m.:0.03403325760254728 a:0.02977396608850552 :0.7540858869020534 +was:0.7152460780239219 is:0.26403641240676956 Is:0.018398682866247164 of:0.00013034360892141334 :0.002188483094140042 +as:0.6336808880865694 the:0.05509741233482911 of:0.04907142112055723 and:0.03143353597628729 :0.23071674248175691 +men,:0.23669065417313082 couple:0.1336073215718666 They:0.03499742831095255 persons:0.03452003049023505 :0.5601845654538148 +the:0.1196405857636654 not:0.11056088289204515 a:0.10824071556758207 in:0.06481671337407137 :0.596741102402636 +New:0.9981000274528269 Now:0.001852260480150539 the:1.8338883807942134e-06 this:1.0774339817886611e-06 :4.480074466013898e-05 +the:0.3911190516065924 a:0.04794815584681825 tho:0.026057258729007632 his:0.018834781299757814 :0.5160407525178241 +country.:0.08271628251763764 city.:0.05418888222499525 city:0.05091855066780754 country:0.04658237399409279 :0.7655939105954667 +and:0.1233232634936232 the:0.10705163363863311 of:0.098061083753023 to:0.039415871804241095 :0.6321481473104795 +the:0.38118433607318 a:0.1760965256247041 our:0.16530722607740422 his:0.12924974210647527 :0.14816217011823657 +and:0.06625851510028684 was:0.01518922772807095 is:0.014950200624515353 the:0.012813487940746339 :0.8907885686063804 +is:0.48695963458734487 was:0.12335948263667795 hereby:0.09379649085912295 are:0.06792032400673152 :0.22796406791012264 +the:0.4034061761839645 be:0.07704882783751538 a:0.05435879351655794 our:0.03544273438042959 :0.42974346808153235 +claimed:0.040619516398892344 made:0.04011643359281915 used:0.034265617708918894 done:0.027417594294902436 :0.8575808380044674 +be:0.483033393016887 have:0.14139920481546447 he:0.0703964961749237 not:0.06711497316503824 :0.23805593282768653 +the:0.4202960130767651 a:0.09317748311191959 this:0.04004544586835288 his:0.03281761046546114 :0.4136634474775013 +Those:0.2459441577581986 men:0.12228255537589978 those:0.10356091125728926 all:0.0762366736471103 :0.451975701961502 +is:0.7214702846173003 was:0.14644935491806868 are:0.04768783869273885 Is:0.04219822058547806 :0.042194301186414075 +there:0.7205458505352721 it:0.1690707970388845 It:0.029459967864646167 they:0.018503772117440687 :0.06241961244375649 +of:0.011460375580966707 and:0.01025071756625219 Mr.:0.005983742681637489 the:0.005154258867947242 :0.9671509053031965 +be:0.7070487360076938 bo:0.06790427811606642 have:0.054706234150289 give:0.021034717300346017 :0.1493060344256047 +is:0.05098460004816889 with:0.04960089229022707 in:0.04665385764891914 and:0.04110323218892451 :0.8116574178237604 +the:0.5316617792211132 a:0.04253764923708606 his:0.03494775672758838 their:0.026753504951323927 :0.36409930986288863 +and:0.32646797055249555 the:0.07421999981539587 to:0.05953862571248084 you:0.050901615073303846 :0.48887178884632393 +Ohio:0.012262036080502773 Missouri:0.008514946892386967 James:0.004546175042435698 Columbia:0.003680111159877958 :0.9709967308247965 +made:0.40943138928736794 as:0.10258179829348606 or:0.08693158456012577 only:0.059595794711130134 :0.3414594331478901 +ing:0.7413727832343497 up:0.009492995094772118 one:0.006725729742369214 ships:0.004878301502668917 :0.23753019042584 +spend:0.1723916360034078 make:0.1702267933774037 only:0.11900845855374449 say:0.09179217916127444 :0.44658093290416956 +the:0.43287462699463375 the.:0.2861454620124706 a:0.030899840817010974 his:0.026334336621426008 :0.22374573355445854 +the:0.17279262875616938 and:0.0776269841953875 following:0.06205920196369958 above:0.043484628171537185 :0.6440365569132063 +be:0.16566741519265918 and:0.15954751257264949 It:0.13674136627459424 that:0.13495581949844643 :0.4030878864616508 +lived:0.10336171109640853 remained:0.06491794825630919 from:0.05562012279519747 saw:0.048381240367951384 :0.7277189774841335 +were:0.2424083944286594 are:0.08509646042212017 notice:0.05519059467310033 live:0.04860370314132544 :0.5687008473347946 +of:0.651695922928411 and:0.06518015730631395 in:0.05769696540402446 to:0.03662305162954851 :0.18880390273170194 +the:0.9728479127165922 tho:0.009884888281244692 tne:0.006948292927378732 that:0.005415785510602258 :0.004903120564182085 +water.:0.004722759122634041 country.:0.0034923357386090156 world.:0.0025082581982627025 city.:0.0024444060380077516 :0.9868322409024864 +and:0.2227178663871523 was:0.09790714680024806 now:0.04772421116497353 were:0.0430222284910137 :0.5886285471566126 +small:0.5289226405245195 large:0.17906767348454836 greater:0.08970012339276234 great:0.06309147785714779 :0.13921808474102218 +letter:0.9107131879084032 there,:0.010183324284485902 from:0.010091638987940703 by:0.010068211374345269 :0.058943637444824656 +the:0.4781343358431147 this:0.16271159692315917 any:0.11131304691973644 a:0.06564851428089835 :0.18219250603309117 +the:0.29274648151472166 a:0.1715897952730298 even:0.09588931553779391 not:0.061945511833073716 :0.37782889584138096 +of:0.9132629549695311 ot:0.019304035479921915 ol:0.017233750850085612 to:0.01153153108840519 :0.03866772761205621 +ability:0.9113839066765618 voice:0.04668583208695759 right:0.013017755694111737 record:0.0034750332356500236 :0.02543747230671898 +the:0.14227176521767915 not:0.09439828127505977 to:0.04174340469127638 in:0.040010019223952815 :0.6815765295920319 +Then:0.3158300936764846 and:0.11255994029191221 is:0.10049332695845603 then:0.0955715357562724 :0.3755451033168748 +between:0.5216974452680099 in:0.32556817206661165 to:0.07017016393982223 In:0.04735406177968614 :0.03521015694586998 +to:0.11062670566306484 time,:0.007880951569825682 the:0.0044219464706862196 days.:0.003524893806241416 :0.8735455024901817 +has:0.983449388090328 had:0.011989082511422403 have:0.0020980816247636114 was:0.0006081258901482789 :0.001855321883337749 +the:0.31305493782638355 a:0.12686313153205553 and:0.08355348398866948 in:0.05453418824300081 :0.4219942584098905 +and:0.32646797055249555 the:0.07421999981539587 to:0.05953862571248084 you:0.050901615073303846 :0.48887178884632393 +it:0.883275490548271 above:0.019524370348131672 he:0.01570546338712374 well.:0.012233141748658407 :0.0692615339678154 +record:0.3668234649207533 recorded:0.02394675773169376 Land:0.010264841167607255 tho:0.009748218801100748 :0.589216717378845 +not:0.372342235250831 no:0.11543193569947253 of:0.0880139315256081 for:0.07217045261065058 :0.3520414449134379 +the:0.17466008662684634 and:0.08689178580305439 to:0.08310065692480968 a:0.06520861548040172 :0.5901388551648878 +the:0.1432678940659373 a:0.0365301559418461 other:0.02284299883813718 to:0.014224985031318974 :0.7831339661227604 +no:0.22833232732737663 No:0.15543843523846754 Some:0.13694378009769456 that:0.124973043821113 :0.35431241351534826 +we:0.8783239575165206 I:0.06505436620211902 now:0.02307199581882292 will:0.02042511992194029 :0.013124560540597078 +the:0.05043034403458418 only:0.03303145255133621 South:0.025137660908792846 south:0.017468405204035354 :0.8739321373012513 +the:0.4028215838387957 his:0.18163909480314308 its:0.1063503906693608 these:0.09111858969023869 :0.21807034099846173 +am:0.735887190728768 was:0.16162797596441608 have:0.007262111446556732 do:0.006389162944514651 :0.08883355891574457 +of:0.36282858315500244 to:0.19409411270535656 for:0.13503967274432668 and:0.12756109730729034 :0.18047653408802405 +to:0.9932587068845931 of:0.00025561551967439 for:3.5099536276446966e-05 or:2.6463067231403384e-05 :0.006424114992224809 +situation:0.8002228524874657 fact:0.037568887069066234 fact,:0.026359893332780528 that:0.024183909430998313 :0.11166445767968904 +the:0.4267520778733789 some:0.2998040318329988 of:0.07342715514202819 for:0.06634879662850683 :0.13366793852308714 +the:0.3230654637529748 was:0.23619704875424594 such:0.15331456427395906 is:0.1336509666465301 :0.1537719565722901 +the:0.44032992100183405 If:0.008329811083562377 dress:0.007038298534625293 fine:0.005964278220038585 :0.5383376911599398 +head:0.020189547774449916 center:0.019574456015938792 office:0.010692614268976601 passage:0.009386139578869105 :0.9401572423617657 +is:0.18622860880863384 show:0.15920157686039837 was:0.11947998119615762 fol-:0.1089765908617415 :0.4261132422730688 +a:0.05730100086094087 the:0.05219437557755777 receive:0.02769231404376197 cold:0.024361602165379838 :0.8384507073523595 +said:0.9866360991648585 aaid:0.0038319765313069793 such:0.0028935491278725307 this:0.0008448338374653461 :0.005793541338496693 +the:0.02995893929076159 of:0.01482870803895911 and:0.010058805118883995 time:0.009481978405802498 :0.9356715691455928 +thence:0.14742992889370607 D:0.0673278967962375 J:0.03831067744651916 the:0.03510467741731136 :0.711826819446226 +country,:0.020424450278183806 friends:0.01888380262312007 homes:0.017068233250184257 feet:0.013459413445660163 :0.9301641004028518 +interests:0.07552401433124997 property,:0.023009026894015763 children,:0.016512995399491533 claims:0.01566568120086065 :0.869288282174382 +Jackson:0.0033320179185276104 land:0.0021937697861069212 Well,:0.0018965288907594308 being:0.0008081980952212017 :0.9917694853093849 +such:0.09348640352736674 and:0.092404413709329 known:0.05142786881028765 is:0.018674416168814194 :0.7440068977842026 +the:0.978376341211224 tbe:0.007263902414887229 tho:0.004854439998078191 a:0.001943895921241829 :0.007561420454568886 +the:0.45517893895035344 a:0.04046630922229041 said:0.020806992138433452 tho:0.018720007989414995 :0.4648277516995078 +the:0.824069905398201 that:0.020388985138262268 this:0.01796827090374964 The:0.015445595146477843 :0.1221272434133094 +live:0.37199415070281316 them:0.1403076200358358 take:0.05144739238763919 any:0.02087620532127799 :0.4153746315524337 +feet:0.6986671489247639 chains:0.12777586029003327 ft:0.11963362704207417 foot:0.039686193283659014 :0.014237170459469517 +the:0.12926040292659097 or:0.09639649281609633 and:0.08962578075454476 to:0.0626630978635021 :0.6220542256392659 +One:0.39316246852054626 that:0.10157775563313041 out:0.010575244060367184 day:0.008663693222483785 :0.4860208385634722 +old:0.056087254771942055 almost:0.05531668435345514 the:0.02751737626079553 iron:0.025824983491986832 :0.8352537011218203 +and:0.1528577241088047 the:0.08760423481790978 of:0.06658461313850614 a:0.04122449950944785 :0.6517289284253316 +and:0.18138564817070157 so:0.050406594952441305 is:0.025581562707168822 said:0.022463305466098503 :0.7201628887035899 +of:0.341332266851098 as:0.05819475390836633 was:0.018469181052650975 were:0.015851368661802326 :0.5661524295260824 +the:0.32387348878687433 tho:0.04971222153395652 those:0.04861699946629962 r:0.04566970243504279 :0.5321275877778268 +inches:0.44873803096889137 and:0.07346784228383954 feet:0.054698590592626634 years,:0.03564156041935296 :0.3874539757352894 +and:0.010887113313395213 night.:0.007895929738552335 States.:0.007612895915213087 .:0.006510552783623166 :0.9670935082492161 +of:0.9221438288597656 and:0.021107918804281756 for:0.017546150147383078 ol:0.01576638126849536 :0.023435720920074104 +thence:0.7442530063394289 degrees:0.11756754198504422 the:0.04280039051994666 and:0.01302408343182921 :0.0823549777237509 +by:0.24033048875583268 as:0.19564697953453103 to:0.1677600049807946 of:0.16186457013272076 :0.23439795659612092 +report:0.026982909931748754 members:0.024646138339599576 people:0.019964335479240588 result:0.017644608731749053 :0.9107620075176619 +able:0.1012101875197949 ing:0.09146914087717041 it:0.08101596683169066 over:0.06899246605707035 :0.6573122387142737 +place:0.5376147648230624 him:0.014469509823177639 man:0.0063680297295490235 feeling:0.00604208223633937 :0.4355056133878716 +be:0.789207527044592 bo:0.039552817961467326 not:0.03766635809970658 he:0.02634734932719376 :0.10722594756704039 +of:0.6323082116216797 for:0.08991685122608734 in:0.08761615487527079 where:0.07507089025197361 :0.11508789202498852 +the:0.999683196301463 tho:0.00028598215903643935 tbe:1.0733967085324384e-05 from:1.0573211453428132e-05 :9.514360961896043e-06 +est:0.7064744476170687 of:0.010267090037102935 view:0.00884741906769804 pose:0.0038695672880792566 :0.2705414759900511 +own:0.053245113946171437 voice:0.03128751881456716 wife,:0.02589834201815043 duly:0.017819355773164344 :0.8717496694479465 +No.:0.18263889785439283 the:0.1668097798749219 a:0.15625915577326951 no:0.12741243030232627 :0.36687973619508935 +in:0.7027366755678445 In:0.02155725255505015 of:0.018623246871727984 and:0.017867375446603218 :0.23921544955877425 +men:0.049341073646052835 water:0.02521055499904555 food:0.024317236835158344 faith:0.020546737602948707 :0.8805843969167945 +March:0.5128233519381326 January:0.13033283446630572 the:0.09608747839574137 through:0.05478021658348779 :0.20597611861633244 +a:0.5678201383827812 an:0.2075135674775707 the:0.07226295695445917 to:0.05485023631514957 :0.09755310087003922 +of:0.8904785936947424 ot:0.10879007050055943 as:0.0004229093620934258 and:0.0002735153178753546 :3.491112472942679e-05 +and:0.23799984494841564 The:0.2159599997498299 a:0.16121180973303906 in:0.1471557781258916 :0.23767256744282367 +part:0.05436220603568387 people:0.022925006363374363 face:0.022648521676292315 subject:0.020065319430569866 :0.8799989464940796 +only:0.06828309655760248 patient:0.06260415693059114 same:0.05297191063921298 building:0.049963701460706327 :0.766177134411887 +of:0.4024213881743968 and:0.06299195041791289 the:0.05671300244836099 an:0.0334624851629383 :0.44441117379639095 +number:0.14868192511161804 lot:0.12830442960024413 band:0.056710125469016895 pair:0.05589319361738418 :0.6104103262017367 +him:0.4400890018678758 them:0.18233341411847634 it:0.17169173094149465 her:0.12054248972360107 :0.08534336334855219 +generally:0.40347837377480417 not:0.2737679330224907 formerly:0.04240711350494006 then:0.0402405598177452 :0.24010601988002003 +and:0.10004421542348178 or:0.055254993511833675 land:0.04670629922975678 that:0.020543994842998542 :0.7774504969919293 +on:0.5666594381380619 in:0.35671641180409513 from:0.02712817464700055 In:0.021781036085178077 :0.02771493932566445 +and:0.15231263678170032 at:0.1166918287656763 the:0.09345972448511285 in:0.0667755328964665 :0.5707602770710442 +and:0.6139267376077535 number:0.007720707053450468 amount:0.0015797188027019628 as:0.0009461679439563669 :0.375826668592138 +willing:0.2656281767245322 ready:0.11439806050541179 compelled:0.07766830668589972 able:0.07055303514567232 :0.4717524209384839 +that:0.7637503857522538 as:0.05347379148395568 when:0.03998521932960553 but:0.028376752324522244 :0.11441385110966264 +him:0.492300989594855 again:0.06430292428415238 for:0.022178573204225577 it:0.016268571279328955 :0.40494894163743805 +comes:0.15757648281513578 of:0.044318100916174746 to:0.03771697029420502 fore:0.03433865211382886 :0.7260497938606555 +the:0.5833381860911306 his:0.09722207460442973 this:0.09660139293453372 a:0.05218402510648316 :0.17065432126342264 +of:0.5625907285437002 in:0.11099271851488035 and:0.08113770772585775 at:0.03763101918826169 :0.20764782602729998 +the:0.5302598563068485 a:0.06822439208740791 tho:0.036142416973458366 tbe:0.02660982856575233 :0.33876350606653294 +the:0.39580108704787886 of:0.12832808678688643 to:0.1212134737902754 by:0.10283519889178554 :0.2518221534831738 +been:0.2651731018228671 caused:0.10717744485359694 given:0.10039855071707748 cost:0.05632266253744325 :0.47092824006901524 +and:0.19772232153329433 to:0.1769690938040568 of:0.1432440479943232 was:0.0518719080688614 :0.4301926285994643 +and:0.4110186416218456 But:0.224079068094527 When:0.19395808346243493 And:0.10849648918084863 :0.062447717640343875 +help:0.049728096025463325 husband:0.02731810004156228 grow:0.023472457380634335 be:0.02020309804427561 :0.8792782485080646 +the:0.736234409154995 these:0.049115397991928926 his:0.03635101140120368 our:0.029694096467314156 :0.14860508498455818 +already:0.5601888549176312 and:0.07952905217117602 go:0.015922666447816647 have:0.007916169460704295 :0.3364432570026718 +a:0.4053228305320126 new:0.35246445377857044 the:0.04984012368160585 A:0.03217155727124293 :0.16020103473656824 +banks:0.5505922260087743 companies:0.0092855232342239 system,:0.006253512748021447 Missouri:0.005919313810272736 :0.4279494241987077 +of:0.21873014161872179 to:0.21322430331770398 and:0.16258127785933146 in:0.15003710201548467 :0.2554271751887581 +stood:0.4958750205314354 the:0.09561427160328274 in:0.04850776874425392 were:0.0473753036566384 :0.31262763546438954 +of:0.4058054810713768 and:0.07461242950294852 the:0.04501410328186446 man:0.0443256354013015 :0.43024235074250866 +000:0.018271215398167236 -:0.01799747610308636 e:0.013351381845825681 s:0.012194108579826828 :0.9381858180730938 +and:0.09541679133015965 the:0.05635171899451814 of:0.044356758639818736 to:0.032947294106904876 :0.7709274369285987 +said:0.37831607261747036 any:0.2097143273169095 the:0.20749896204074725 that:0.17726065655869414 :0.027209981466178777 +not:0.1553688636536817 over:0.08626989575714906 the:0.039692792388432076 a:0.03765875049959414 :0.6810096977011432 +and:0.13119996792877114 the:0.06965191512639196 of:0.06736186418854924 in:0.03106849584290144 :0.7007177569133862 +it:0.3060418436908128 1:0.2680777582659111 they:0.2516048388333637 we:0.09384778244415595 :0.08042777676575648 +for:0.27157520000357543 in:0.22856139982947227 during:0.16316568893382233 of:0.13819870106804594 :0.19849901016508403 +wrote:0.7056991668553081 introduced:0.05485842532278607 was:0.04646337465718986 fell:0.027568617054187724 :0.16541041611052823 +the:0.9361508694126848 any:0.045359976458781044 for:0.001706897571587965 tho:0.0015937775380357147 :0.015188479018910463 +and:0.11008874842699243 the:0.07656043961957532 of:0.06353287365959066 U:0.03867078151234065 :0.711147156781501 +use:0.4431287329877576 and:0.09007936934720213 to:0.053633879329202924 as:0.012113250119213633 :0.4010447682166237 +best:0.02552527172536053 same:0.016577115903222847 said:0.01616325290279528 most:0.013698585649159666 :0.9280357738194618 +labor:0.04777895196220635 men:0.015301488529594327 living:0.013720205459395651 man:0.012517515997448386 :0.9106818380513554 +I:0.8399275213028874 1:0.10684960512369715 much:0.024538018166759584 had:0.015037517675935343 :0.013647337730720563 +been:0.7369445896367192 become:1.5267026437187967e-06 others:1.278934466925536e-06 men:7.777597640652675e-07 :0.2630518269664063 +offices:0.03264275321693314 sell:0.03233962697279811 a:0.02057616556420217 up:0.01557945647910848 :0.8988619977669581 +any:0.33607906641905333 some:0.296179835399862 one:0.26985218320918036 all:0.01340708283722652 :0.0844818321346779 +of:0.13036163063358844 Hall:0.057928554667886316 Council:0.025746055949052032 Clerk:0.015641798038141086 :0.7703219607113321 +thought:0.4153636187976808 railroad:0.083830169406202 October:0.07144540331357319 cars:0.06663925574150123 :0.36272155274104273 +this:0.3449649043683679 the:0.32202772734563434 course:0.12600418438914565 these:0.12595011421104724 :0.08105306968580482 +a:0.2962272295155771 at-:0.09451662016479608 manner:0.056751052608310516 an:0.0561932410965565 :0.4963118566147596 +few:0.09517603156358313 late:0.039575181586736355 colored:0.03660028430996429 and:0.03575694985259443 :0.7928915526871217 +one:0.1417598130785313 thing:0.10970485624100648 man:0.08853780770322152 person:0.06824778649446163 :0.5917497364827793 +are:0.8297944281638289 is:0.0751230141086217 be:0.03994424051187223 and:0.03720691334159711 :0.01793140387408016 +him:0.3097077892650151 progress:0.1578075613820024 thence:0.10273724228312905 is:0.06193587218981953 :0.3678115348800339 +large:0.3702014737345066 considerable:0.1984767251216114 small:0.1852344830457388 great:0.1126745957273767 :0.13341272237076643 +of:0.04993730691572091 and:0.010258069180756635 1:0.010172403896576157 -:0.009280478949328753 :0.9203517410576175 +the:0.6153342235647041 my:0.11762731642996484 our:0.06883936413681618 this:0.06088775247652218 :0.13731134339199277 +men:0.19794071567844493 people:0.06446812655767462 members:0.033370671826947945 men,:0.03140567413331202 :0.6728148118036206 +provided:0.9424732673706117 arranged:0.013792193337874235 published:0.0023153712822190273 is,:0.0020235818258969498 :0.03939558618339795 +who:0.2267264413559497 from:0.1454107246391424 are:0.13299946999548443 were:0.111647747838396 :0.38321561617102745 +dollars:0.06766443693589688 hundred:0.031642177726346074 ,:0.030629765585465783 dollars,:0.017292517585050245 :0.852771102167241 +must:0.4618086207232853 will:0.14264420678808334 may:0.1238546222770163 would:0.09835119806745003 :0.17334135214416496 +by:0.17726768979792962 W.:0.14869572224706146 W:0.1000774068772833 is:0.07287882141105445 :0.5010803596666712 +and:0.00759029864388978 meat:0.005228225922470388 without:0.004662112115641354 tion:0.003619583247726347 :0.9788997800702721 +the:0.8140531701667786 tho:0.004449287377452087 tbe:0.0031234576794160127 The:0.0025762012947822496 :0.17579788348157116 +District:0.1731730532653068 City:0.12789673858181447 by:0.06276761455646034 and:0.06116996596898884 :0.5749926276274295 +and:0.12406872911931058 of:0.08734151177318528 the:0.056642150963485245 or:0.05165198915174531 :0.6802956189922735 +of:0.2403567730920176 with:0.13620501603667914 and:0.13396529204333602 to:0.1334657039780947 :0.3560072148498726 +would:0.4074994735833135 will:0.3459595264269646 might:0.1021262757711644 shall:0.0824126958617544 :0.062002028356802984 +were:0.19662554830353415 are:0.13009264441908136 while:0.09769821946249779 was:0.06258835782490332 :0.5129952299899834 +the:0.030830194535713836 hundred:0.017567392675431226 100:0.014073456888766878 twenty:0.011917882404923348 :0.9256110734951647 +and:0.33602068062169127 is:0.23774318665990904 of:0.13930401649509488 has:0.1101911925497399 :0.17674092367356495 +by:0.46021981024426206 to:0.2887375867348051 for:0.05360974349233216 against:0.011328416775371527 :0.1861044427532291 +all:0.04115631018520426 not:0.035111524856572686 being:0.014731837215449742 hereby:0.01013670398160189 :0.8988636237611716 +in:0.5627040759196726 and:0.2843254245767472 the:0.03525756444147247 as:0.03266880006218144 :0.08504413499992637 +end:0.027038168548864174 name:0.024492330511859017 arrival:0.022776155540291842 people:0.0212619307692895 :0.9044314146296953 +of:0.38924401605031256 being:0.2348343165166729 the:0.20118483751477903 than:0.06734415413343003 :0.10739267578480546 +Lord:0.8305719581907338 most:0.0034953365731871435 of:0.003466355349767282 said:0.0026722425060505648 :0.1597941073802615 +and:0.21966818173535646 to:0.16855972593163235 the:0.0935905947622461 in:0.07858540341257914 :0.43959609415818596 +of:0.33554742046616715 on:0.10260932727911852 in:0.04851459125061311 ot:0.011394686060076814 :0.5019339749440245 +one:0.8106600232812499 made:0.018391459530744114 president:0.018048378162095622 not:0.018040457565189516 :0.13485968146072103 +mark:0.020389572882504637 newspaper:0.0174673874303622 new:0.0035496250119687596 man:0.001258504295761593 :0.9573349103794029 +and:0.09840410199264746 tions:0.06074189548044662 fixed:0.05473012307284617 of:0.03215058707410527 :0.7539732923799546 +were:0.14184396236404015 are:0.08840019085872829 fall:0.07635719249669135 will:0.06001746669121542 :0.6333811875893249 +the:0.38528731108445363 his:0.17650472928461358 a:0.11541499034094203 and:0.04941006775735962 :0.27338290153263095 +that:0.15694331941705103 this:0.06360050853365296 however,:0.03363892715529211 the:0.026566017136913502 :0.7192512277570905 +and:0.3832511134137339 he:0.24838306731009466 had:0.08775006895045051 she:0.05704487343854165 :0.22357087688717925 +to:0.346683294228419 To:0.05811519021446362 and:0.017296126952952122 cannot:0.013924584582404293 :0.563980804021761 +name:0.261418243841772 home:0.0322565373044141 life:0.031288959925624985 mission:0.03073748661948832 :0.6442987723087006 +That:0.5780729105700216 of:0.17740214826730064 that:0.10380726582845468 if:0.08303500824763539 :0.05768266708658754 +Washington,:0.023153038966306792 Baltimore:0.006705770855740364 few:0.0009488674493145503 had:0.0009381194131760051 :0.9682542033154623 +the:0.9639158744634727 his:0.03225444421283187 bis:0.003528879729649577 her:0.00025147140108746285 :4.9330192958204885e-05 +a:0.04053920795754083 the:0.04011992399490414 ex-:0.027566724031506496 found:0.02502960562519923 :0.8667445383908493 +and:0.6860954144631498 the:0.0912549661006789 his:0.07995086946764735 of:0.07224359844089008 :0.07045515152763396 +Mr.:0.017382278775020712 night.:0.00831030243136158 When:0.004119868478424942 city.:0.003699608743362006 :0.9664879415718308 +and:0.10411640775969656 the:0.08777657742241676 of:0.05143404681385206 to:0.01887752246742153 :0.7377954455366131 +question:0.13447643572426057 most:0.04906990334868093 people:0.048193109290347175 situation:0.04656744842225011 :0.7216931032144611 +them.:0.02621220266008671 it.:0.021950909499655783 the:0.009090535990673419 money.:0.004264831432043941 :0.9384815204175402 +distance:0.24087923467080877 way:0.14036617348459704 help:0.039511090874199184 different:0.03797274044886118 :0.5412707605215339 +certain:0.027825912022887513 single:0.011712717865302444 sure:0.008781601908334949 a:0.004905113507876812 :0.9467746546955983 +had:0.37178715114707384 be:0.16561831791006815 was:0.1334317440625498 is:0.09965772809450846 :0.22950505878579985 +and:0.04604961452279954 the:0.03596768258815073 The:0.032626516696494225 at:0.023506062220141833 :0.8618501239724137 +the:0.27188348268093954 v:0.08121816578565014 this:0.065405675906215 a:0.035483755943291645 :0.5460089196839036 +conduct:0.020347715194495707 keep:0.012016212012228472 during:0.009039062311890118 prevent:0.008695560829537324 :0.9499014496518484 +of:0.4027665703384091 and:0.2566330737839997 for:0.08178610293195837 to:0.03782302827896457 :0.22099122466666815 +the:0.2757648787931957 my:0.12431210512180567 their:0.06569457980747426 9:0.02950509723613963 :0.5047233390413846 +good:0.17594986201962692 soon:0.04536529363142569 long:0.03914232902153263 late:0.03057648664471543 :0.7089660286826994 +and:0.2412040940280148 so:0.12921111417664924 of:0.03892364362421543 tion:0.02657612096800401 :0.5640850272031165 +to:0.6930589349996491 generally:0.13208113154454892 shall:0.12863817027893987 may:0.012475958125784297 :0.03374580505107774 +on:0.9429856628716228 in:0.010803739598109234 with:0.0033783389998155197 until:0.0028787326545364686 :0.03995352587591612 +the:0.19474793763736373 and:0.0957652270761556 a:0.055298531338398065 The:0.04151144113006673 :0.6126768628180157 +of:0.4708445288387752 that:0.0749482304961323 on:0.06620884888885332 along:0.06260787157843413 :0.3253905201978051 +took:0.4792656659356888 give:0.2736252928162189 gave:0.08304488047773766 given:0.08043891870332091 :0.08362524206703383 +and:0.21026892034622352 He:0.11624724806587315 his:0.08527870181570725 was:0.06127554613772565 :0.5269295836344704 +plain:0.20061407542941231 three:0.12002307133162222 two:0.06734135213093816 the:0.05856363724833081 :0.5534578638596964 +did:0.15330675913535777 is:0.14975964818475285 was:0.14011022776757612 do:0.13223697873605342 :0.42458638617625993 +and:0.453745152094245 And:0.10424795656879941 ami:0.03436548050922864 r:0.01724852068865735 :0.3903928901390694 +they:0.6512967381668459 he:0.1845484125330175 she:0.02975860008821325 I:0.023699404171197536 :0.11069684504072591 +have:0.4459819389803374 had:0.20685017557480648 am:0.1487435979022876 was:0.10922432644957994 :0.08919996109298864 +money:0.1371923328101555 much:0.12451789428452884 the:0.02753322378175215 more:0.02326542186931904 :0.6874911272542444 +must:0.08028475033376016 that:0.07445039144517085 lots:0.06847636860891945 to:0.06377548576520785 :0.7130130038469418 +a:0.2551248119678209 No:0.24376579746092333 the:0.14040744790599652 of:0.08657327393725474 :0.2741286687280044 +by:0.8383072634345317 recognized:0.010373754864241018 bv:0.009951169268109072 against:0.009847667403531076 :0.13152014502958714 +the:0.12600655774705033 a:0.01921508034167294 his:0.011136386910527655 their:0.010222574690887085 :0.8334194003098621 +the:0.1616128293350197 of:0.137776304384036 and:0.11723573335919031 to:0.0828212701277518 :0.5005538627940023 +how:0.808647000812624 that:0.0867341920383628 where:0.041924463445607345 why:0.03499459970008089 :0.027699744003324867 +and:0.3470995531767434 so:0.05199454028877128 provided,:0.027039915396418753 but:0.025521407280982827 :0.5483445838570838 +of:0.3495610553570659 and:0.17037652037133844 to:0.06075116988033777 in:0.027859811964242722 :0.3914514424270151 +land:0.05899769164414481 the:0.01619930451839051 E.:0.005901239796351572 A.:0.005388262131797402 :0.9135135019093157 +government.:0.12774869736911626 way.:0.013323377110961208 amendment:0.0032093064395643874 law.:0.0018943372632180154 :0.8538242818171401 +of:0.9304429210416035 by:0.022103545425031398 or:0.006490758103455155 to:0.004160952230745488 :0.0368018231991644 +and:0.36439974587084 in:0.29454606197037786 the:0.18323799619975803 with:0.0873637552391763 :0.07045244071984788 +English:0.10748082698776544 apparent:0.10688545238920365 excellent:0.010855526308120566 the:0.0098420742998847 :0.7649361200150256 +ing:0.1722369251114117 to:0.10231371274609011 the:0.08024171211431637 and:0.05247433405396558 :0.5927333159742163 +door:0.011876460253275404 city,:0.01187587112692134 house:0.01020513304317268 river:0.009730990179322854 :0.9563115453973077 +property:0.07413414776288961 value:0.06918165049655496 products:0.060697356042304716 crops:0.03352854176848642 :0.7624583039297642 +severe:0.2265877007519329 has:0.12510036260728397 had:0.06686066664136776 have:0.05850179842906107 :0.5229494715703542 +the:0.09997728283024176 them:0.08679330573469332 and:0.08315201858605166 able:0.05389157039249395 :0.6761858224565194 +it:0.09728201321957469 as:0.09420795661511819 which:0.08733105758451398 It:0.084234222273079 :0.6369447503077142 +of:0.4435045252520835 and:0.1209103740846303 more:0.053361101779772144 it:0.03565770592648922 :0.3465662929570248 +of:0.1874292892952151 and:0.10530870809097431 the:0.04528500092539905 in:0.034100788023895184 :0.6278762136645163 +value:0.031561411992880706 use:0.025592187505780014 light:0.01710902599045275 first:0.01580948262724451 :0.909927891883642 +I:0.2769321528323652 i:0.0605124542573572 .:0.0371095918311839 e:0.033792852071146046 :0.5916529490079476 +blood:0.06826142831251451 feet:0.0666818041625073 own:0.036423265027091874 main:0.019531535935126333 :0.80910196656276 +weather:0.4037629869397418 You:0.21519008272095072 I:0.04532017782557048 Who:0.03744070077893314 :0.29828605173480394 +not:0.33508629829220904 to:0.14761769890256263 ever:0.06255764080254816 the:0.0596425158572332 :0.39509584614544685 +is:0.1422405776250435 was:0.06385390993266758 are:0.042594023590559166 of:0.030588070308784108 :0.7207234185429456 +may:0.1600619623288949 and:0.09808521732487117 to:0.07480656294189895 shall:0.07372710810741502 :0.5933191492969199 +and:0.14911502601082932 but:0.035534565207436725 tion:0.025711211509582256 work:0.023377047865511612 :0.7662621494066401 +of:0.11414918812356238 and:0.10015802776690429 the:0.08584086501245461 to:0.04964601561293492 :0.6502059034841439 +present:0.08533692986338558 time:0.0712469811888059 poor:0.05353153286478096 next:0.038543649028370895 :0.7513409070546567 +miles:0.26404764439207734 feet:0.18466960516502348 months:0.07191774714716351 millions:0.07101211059879826 :0.40835289269693753 +secretary:0.14261218092822944 authority:0.09487974136271878 estate:0.0837734200448366 officers:0.08243625899448113 :0.596298398669734 +good:0.12060160714394154 American:0.10273907556517228 August:0.03481304533068398 native:0.02528016965096134 :0.7165661023092408 +cured:0.05134828853445762 -:0.017539286309050103 to:0.01112082675014177 posed:0.008920032025897275 :0.9110715663804532 +charge:0.1842253348401444 which:0.0753099230175697 all:0.06030662610241012 make:0.033016345649729786 :0.647141770390146 +and:0.09963880883598387 at:0.06566351704364248 to:0.025551952051387137 were:0.02146344058720255 :0.787682281481784 +same:0.02504038791559563 and:0.014412985558690326 the:0.013788724290805928 whole:0.011864387602750999 :0.9348935146321572 +which:0.4927927003336821 that:0.15396068104120103 to:0.10980465835289453 in:0.08117957479712314 :0.1622623854750992 +cases:0.5331342449405556 large:0.08158171885671779 were:0.04757567173559429 weeks:0.03422334341057512 :0.3034850210565572 +as:0.6227133436914372 too:0.14483348745839267 that:0.08759059154658282 so:0.08579902617704922 :0.05906355112653816 +the:0.4235196013028708 a:0.09198049409185889 law:0.0545616912950417 their:0.022460984042355924 :0.4074772292678725 +he:0.31137670220662467 it:0.27482386347008414 they:0.2155099398726185 I:0.13002667358148878 :0.068262820869184 +was:0.050583402908009764 ;:0.027100129370012244 the:0.014283605866742809 and:0.012208090784242233 :0.8958247710709929 +of:0.4379146760581485 beyond:0.40086535417623326 or:0.0467302553895666 and:0.026808362727487576 :0.0876813516485641 +man:0.18027241083175882 be:0.17752971709690923 man.:0.14268158807109838 man,:0.09345525093557572 :0.4060610330646578 +in:0.2285863262761265 of:0.19424273388426117 for:0.15432223192311845 with:0.12077515684339307 :0.30207355107310074 +him,:0.12930108659807746 her,:0.10805604300082544 do,:0.060306952155632414 me,:0.01977471289360312 :0.6825612053518616 +of:0.9488235679763644 ot:0.01711870017781265 ol:0.011554012754164164 or:0.009508437533886157 :0.012995281557772721 +and:0.09102009222827073 up:0.0407741123213648 especially:0.019976874251872723 hole:0.01993703531700093 :0.8282918858814907 +I:0.627645592997234 it:0.29490849777163264 he:0.009478196924675402 could:0.008454624500177723 :0.05951308780628037 +name:0.20512244024102852 which:0.05677646213331203 that:0.048508185783801346 she:0.03411248371536442 :0.6554804281264935 +pointed:0.2613544480326517 points:0.10152650492416355 brought:0.05377487826494776 worked:0.050344563827999414 :0.5329996049502375 +m.:0.06526005330433958 the:0.042399042191787736 .:0.041947014658506504 i:0.04092528065476109 :0.8094686091906049 +brought:0.2584808554778773 glad:0.164200087825733 difficult:0.09699149483724123 willing:0.09328313461316044 :0.387044427245988 +old:0.1363848138635384 ordinary:0.10311413546842087 increased:0.06782740319183439 established:0.03039889245520454 :0.6622747550210019 +to:0.21254764280670344 and:0.1315793836766346 the:0.0963890928747522 a:0.03255801407164828 :0.5269258665702615 +can:0.3420185241229305 must:0.29090081079069807 would:0.23606943328913807 might:0.0811542627371864 :0.04985696906004709 +according:0.22745587486484126 ing:0.07639028444477454 as:0.03602168792716192 subject:0.03516209952007079 :0.6249700532431514 +to:0.018081813798331344 said:0.0154866731348913 most:0.007248659684833166 man:0.007022968160287991 :0.9521598852216563 +it,:0.2196088218315259 Now:0.19719654123539698 ground:0.10706731939091516 her,:0.06191939367439735 :0.41420792386776456 +of:0.09363274056374377 and:0.08883540265208317 to:0.06824279499521262 the:0.06486315428109907 :0.6844259075078614 +to:0.5248215470029588 under:0.1306049001017974 and:0.08655346274482184 will:0.0663039273316122 :0.19171616281880977 +are:0.5058061557862635 were:0.17276743117827895 be:0.09509353528794659 and:0.062111765806244223 :0.16422111194126685 +was:0.30865795063839996 putting:0.1320379907040254 the:0.11635109428466854 then:0.10653233491690628 :0.3364206294559999 +He:0.43933496839507774 who:0.06494580039725309 Paul:0.053533294133246284 and:0.023802805580941087 :0.41838313149348166 +in:0.7749864550412958 In:0.07120709388460884 with:0.05061030780381268 at:0.007287078646026169 :0.09590906462425638 +who:0.003959400998465901 tied:0.0016954982088550315 year,:0.0012015062715913418 is:0.001023771192176217 :0.9921198233289117 +at:0.17882946062815014 the:0.17078309322866164 of:0.14760126044923158 a:0.13931095900573232 :0.3634752266882244 +I:0.236424917087145 It:0.22188195215540257 he:0.19010975242372904 we:0.07934491930007802 :0.2722384590336454 +is:0.402142939866109 Is:0.06784378617382827 has:0.06479971397826843 would:0.05465661531867443 :0.4105569446631199 +made:0.2798747743471734 to:0.09133212015583192 and:0.03880833024402297 K:0.02443178735289682 :0.565552987900075 +other:0.04831784779273704 business:0.029430805748344828 me:0.013476607117151627 it:0.013025896699295209 :0.8957488426424713 +to:0.2251834808879532 with:0.17549981416586086 in:0.09909434044337778 a:0.08191038569559517 :0.41831197880721305 +the:0.24457654986583705 twenty:0.23638645792048135 Mexico:0.15980641392197478 a:0.008940971539028671 :0.350289606752678 +or:0.9533488818446973 but:0.0005213907453571948 nor:0.0004943585648480356 than:8.596210614175819e-05 :0.045549406738955835 +earnest:0.017469057579597155 real:0.007724818841186701 further:0.003968672429124603 wood:0.003275022990340131 :0.9675624281597514 +in:0.9053532764062778 In:0.018655164521822275 of:0.009554652039308583 from:0.0016877663582389579 :0.06474914067435233 +are:0.24490381331268693 is:0.23190289281817847 and:0.08245578808047718 were:0.03693702076571659 :0.4038004850229408 +poor:0.06297908431279324 stone:0.03742614636070072 earth:0.02396054746808757 grain:0.023006427642690418 :0.8526277942157282 +by:0.4075451089225432 in:0.2123468628149778 under:0.14213355832602223 for:0.14076372175745339 :0.09721074817900342 +and:0.01611988965284994 on:0.008279611701044942 America:0.006560003909001692 men:0.00572972923852918 :0.9633107654985742 +and:0.10994488887279201 the:0.09658208029881366 of:0.05350309770476912 to:0.03734486040491187 :0.7026250727187132 +and:0.031783711593736774 getting:0.01569818295693119 the:0.010344901260739272 charge:0.009713512135018799 :0.932459692053574 +a:0.49347048817965683 order,:0.15273739318794463 the:0.006897861310252621 it,:0.0051277909558334845 :0.34176646636631236 +that:0.16505507976153008 there,:0.14847469026940813 for:0.14523676778844408 against:0.11267579518048712 :0.4285576670001305 +the:0.978341821599623 in:0.004812743260185073 until:0.002695136024251261 whether:0.0026218071175255213 :0.011528491998415267 +and:0.1565262936882008 to:0.06895450565323079 un-:0.06649452627623495 of:0.06635133010747768 :0.6416733442748557 +fee:0.2452421263016451 share:0.12727138000516114 amount:0.06553332774646656 duty:0.0628594206923315 :0.49909374525439565 +in:0.8042225815504952 such:0.06575856571890207 if:0.022506672933284684 found:0.016582765308383856 :0.09092941448893412 +the:0.10270131087573693 to:0.06806552671323113 will:0.05394388457765476 also:0.050774197311320865 :0.7245150805220563 +on:0.9112723463464723 of:0.043460652082873766 and:0.012173305563908983 to:0.003953667161167057 :0.029140028845577908 +express:0.14803413003155932 record:0.14634889264647385 wish:0.10853860223159409 give:0.043425514807012795 :0.55365286028336 +and:0.17135484368156012 as:0.07979339170404623 of:0.07093124630220651 or:0.04739980775496872 :0.6305207105572184 +let:0.9994852517217405 received:6.984380280817443e-05 taken:4.436884572104041e-05 given:4.207067501442918e-05 :0.000358464954715796 +of:0.39277081177963014 the:0.10305430815946004 or:0.09694990003670094 was:0.08105619755178299 :0.32616878247242603 +the:0.08138501916746568 door:0.025177581924888462 young:0.017383258862344365 State:0.01524460551582262 :0.8608095345294787 +and:0.17339013211053061 to:0.15579157555568351 from:0.08583193970216327 by:0.07815743639278486 :0.5068289162388377 +it:0.16327458558459076 made:0.11181762833940982 do:0.07678198140709898 described:0.07558340998716477 :0.5725423946817357 +held:0.12055584042143754 were:0.0763484260983748 or:0.024405351676795327 up:0.02258884297729891 :0.7561015388260932 +It:0.4800036037432104 There:0.2252109004138837 there:0.017858249654405692 crime:0.017537616909290822 :0.2593896292792094 +business:0.006794221661811179 financial:0.006483184528964125 physical:0.005564377184383188 evident:0.004285895219190157 :0.9768723214056514 +pany:0.15313584923573445 the:0.017541088466471434 mon:0.014042310729338875 and:0.009094695339487487 :0.8061860562289679 +people:0.07084950942207269 interests:0.04315574413362371 business:0.03833243929319641 condition:0.02826809841976543 :0.8193942087313418 +not:0.19168094891100396 are:0.1791733569452332 just:0.08879683613609228 been:0.08486683853511016 :0.45548201947256034 +the:0.6476591511360892 them:0.10160188798416095 its:0.08208808927778537 us:0.08010509033809017 :0.08854578126387423 +daily:0.6568632317690781 own:0.02049625150855259 Mayor:0.012553245564319552 fellow:0.009785065750517564 :0.3003022054075321 +people:0.16459414477552886 gentlemen:0.1298181222013626 who:0.1206082813846226 persons:0.09055949296198111 :0.49441995867650484 +course:0.0627087817576645 Island:0.054575633069473585 period:0.03579420933698538 county:0.02816221051561877 :0.8187591653202577 +he:0.7298304742526063 it:0.09664000798651934 and:0.09134407134659688 she:0.041977073393105545 :0.04020837302117203 +and:0.4546305942648209 They:0.3782419993607557 but:0.05321952849026199 who:0.03684636851528417 :0.07706150936887725 +13:0.07992458919233818 to:0.01888288991699274 and:0.01679060893502049 8:0.013281672955305955 :0.8711202390003426 +elected:0.27084689026663794 closed:0.06964627051776404 asked:0.06120257961940532 given:0.05009398739593908 :0.5482102722002535 +make:0.24636276008857752 give:0.1400070248528483 be:0.04751792358656061 take:0.0377335853185337 :0.5283787061534798 +ance:0.27501177938588356 way:0.055869766181843604 as:0.03843517007027444 according:0.026521406500693585 :0.6041618778613048 +and:0.09719610898702452 of:0.052551195664348266 in:0.04048692141517132 on:0.036258256556134204 :0.7735075173773217 +and:0.27070809278674224 at:0.15581663777256946 is:0.10907664493476245 that:0.07124390797060609 :0.3931547165353198 +by:0.7412518743585 through:0.10580316774024612 in:0.039348699160811094 the:0.037852618455731714 :0.07574364028471112 +their:0.5899017530888426 our:0.1569999547254454 such:0.12198604659163859 the:0.06985639140295517 :0.06125585419111827 +and:0.4386388475258205 of:0.1375336752415643 the:0.029771510941494796 made:0.028619877226342873 :0.36543608906477754 +the:0.4548948467396129 a:0.32356045547851225 all:0.06162071992197324 tho:0.03862798936602734 :0.12129598849387428 +majority:0.8856610108924927 popular:0.025335454332094817 direct:0.014212625805029954 solid:0.006409159022216864 :0.06838174994816566 +of:0.24279380698560682 and:0.15790020587209494 in:0.14938497235032758 to:0.14730555930047767 :0.30261545549149294 +me:0.8218261173775633 him:0.06192475550762337 us:0.013561520760185918 them:0.001970041022976636 :0.1007175653316507 +having:0.1581129211233126 are:0.13257377127199707 and:0.10391328622708894 he:0.0736946202226851 :0.5317054011549163 +meeting:0.544565102009105 value:0.02336824734254287 and:0.012485145844202013 cost:0.011532968468135956 :0.40804853633601407 +a:0.11896567462173893 the:0.10831199956903997 follows::0.09715465449386936 well:0.05814895177197344 :0.6174187195433785 +turned:0.06622645718746459 is:0.05883305652754887 was:0.04093953095048924 get:0.012298042948253818 :0.8217029123862433 +highest:0.03051511471275695 same:0.024162825100498338 to:0.015885645172857267 the:0.014079844595266658 :0.9153565704186207 +and:0.7187394533470981 the:0.08598219021056065 The:0.04922685183052329 religious:0.024127714628187944 :0.12192378998363013 +or:0.9546523531975272 and:0.009310033630566383 of:0.0016456838600291351 r:0.0002826164004604384 :0.034109312911416924 +be:0.4618046348804769 prove:0.3521122975042852 the:0.01962750129713303 bo:0.01178503621910456 :0.15467053009900036 +and:0.9564269193820463 is:0.014614119350002534 or:0.014078382739873304 to:0.008909296754946125 :0.005971281773131825 +are:0.9300424347624101 was:0.017144533342722992 is:0.016245039990235178 he:0.011476826393849438 :0.025091165510782342 +a:0.41675165608968845 the:0.2238962956024625 his:0.10583696762791996 and:0.07173448794595864 :0.18178059273397063 +W:0.5326844015170964 v:0.20306723104843025 -:0.03793992276716989 We:0.025307503469264407 :0.201000941198039 +except:0.08756904438561036 and:0.05239972629069262 were:0.04326406439840254 ing:0.04306999318523461 :0.7736971717400599 +and:0.22409650455634636 of:0.1997926995472288 in:0.08345492038202026 on:0.0833363272127736 :0.409319548301631 +the:0.4063183666576465 a:0.15772263791608004 his:0.07842794054622686 an:0.06458594848365092 :0.29294510639639565 +the:0.08355918694673928 and:0.08081618222277534 of:0.06925842642971239 a:0.05651526984287481 :0.709850934557898 +out:0.2517803561858794 because:0.06278918574128456 one:0.0423269076935246 and:0.040062900153938256 :0.6030406502253731 +may:0.8433497089323044 could:0.08196133029369039 can:0.028665122559605245 will:0.009698373836316382 :0.03632546437808357 +If:0.19752319318331274 and:0.14246231827333602 that:0.13155194920131733 which:0.09613874093575685 :0.4323237984062771 +for:0.6024896655310688 in:0.1370284640249563 of:0.12076818930606159 and:0.0769226054664867 :0.06279107567142668 +have:0.5887028902596039 was:0.18287828839904594 had:0.09901832808178374 be:0.009195793716516205 :0.12020469954305017 +times,:0.12405278986846938 city,:0.05700331626705845 work,:0.0381364311996198 Union,:0.023094409257460865 :0.7577130534073915 +it:0.9989069429903317 It:0.0004156349892957757 lt:0.00016569490283282071 it.:6.90757499206661e-05 :0.00044265136761918695 +making:0.47332580982051264 with:0.21419321522796192 or:0.08343549373668345 paid:0.040926558166088166 :0.1881189230487538 +a:0.04673727488144835 led:0.02897036040291294 carried:0.021759305465672257 sold:0.018582336275734773 :0.8839507229742318 +one.:0.01870554749417303 will:0.014913254904316959 date:0.00921249982536157 street.:0.008558829344481173 :0.9486098684316673 +the:0.45439439722377994 its:0.3430251475163361 Its:0.07777797608459829 our:0.05750375447063079 :0.06729872470465506 +of:0.9023065808731773 at:0.0291800319935407 or:0.026511180705330734 that:0.02124442684217744 :0.020757779585773743 +tion.:0.018175569242632382 Co.:0.01690600640882033 himself.:0.014737392053067698 and:0.009756128520691184 :0.9404249037747883 +and:0.05182415228846802 ed:0.03262372224928267 to:0.02343567105257955 up:0.020390447232114566 :0.8717260071775552 +and:0.11656257400409843 of:0.07128160614524064 the:0.05995885929148567 as:0.04981076356849741 :0.702386196990678 +the:0.41862350520395164 n:0.14270547592759075 tho:0.06966806894688682 Into:0.05770261668881271 :0.31130033323275813 +sale:0.6574017594557015 land.:3.765385617308081e-05 sale,:3.2709877226411806e-05 the:2.4173076205178202e-05 :0.34250370373469397 +The:0.4746870369590579 the:0.24710532649901257 A:0.13546835605188806 Tbe:0.08905842811685871 :0.0536808523731828 +tion:0.05327382766493579 day:0.050174966857325205 year:0.035904849164178514 out:0.03132426606505563 :0.8293220902485048 +to:0.49830874725465496 on:0.14830828653634753 upon:0.12886074477503942 ed:0.06418918112544811 :0.16033304030851006 +Tho:0.3344948849960147 By:0.12411324574094323 and:0.09733321178496246 the:0.07301300141783654 :0.3710456560602431 +strong:0.14988834179637464 our:0.13956612310431066 German:0.1305400301874937 young:0.10447313284420472 :0.4755323720676161 +and:0.157761227211026 the:0.08841938495755142 to:0.08011484547460744 of:0.0633159287487335 :0.6103886136080818 +P.:0.10374299443665352 Mr.:0.07511827649131854 Capt.:0.027134949370204303 and:0.024137379814949105 :0.7698663998868743 +two:0.3920822149128298 eral:0.1988917575737723 three:0.1427060176253191 several:0.1362436914715177 :0.13007631841656112 +of:0.6987061801098242 was:0.09688188758222885 in:0.06448201905557997 the:0.062638150170775 :0.07729176308159197 +due:0.05237625651059414 has:0.04378348385439066 up:0.04152340569817081 thereon:0.03547470584730607 :0.8268421480895383 +Louis:0.12525439379079112 The:0.07221206627339768 a:0.06550387211431358 the:0.029595005628556593 :0.707434662192941 +distance:0.6881908506765484 time:0.12644687706669022 period:0.04393591546569495 man:0.012244380571174787 :0.12918197621989164 +the:0.9675663499159056 tho:0.009708841332285199 tbe:0.003296274714138821 she:0.0017795211139043786 :0.017649012923765934 +not:0.21196601649199254 after:0.19309805535864744 the:0.0822786324791756 in:0.0563834763917353 :0.4562738192784492 +and:0.07031641906519329 of:0.04881076786469848 the:0.04383044132033479 to:0.02849554845170067 :0.8085468232980728 +not:0.31936878744124003 just:0.1562760759788835 even:0.11352058735095703 t:0.05547831790919387 :0.35535623131972566 +and:0.1841773205132114 to:0.1046577471750055 by:0.08194906259375774 the:0.07266975425344212 :0.5565461154645833 +and:0.020981030038002908 day:0.01780811122368477 State:0.01737666462359935 out:0.01314243001097758 :0.9306917641037354 +mean:0.6131809121868078 true:0.040695103728677684 thought:0.019289252852607727 to:0.01707119314043206 :0.3097635380914747 +which:0.18474065747002572 and:0.12425005804988369 end:0.09743507550462371 that:0.03390607425486889 :0.5596681347205981 +white:0.10297767242778731 duties:0.019452668756638883 double:0.01744036735514309 process:0.014157517802818207 :0.8459717736576124 +be:0.9978238520048869 list:0.00023959342111841165 bo:0.00016000306681233792 he:5.924415502565511e-05 :0.0017173073521567217 +the:0.5333836942268239 this:0.052011398649950975 his:0.04769223822029194 a:0.0427763649260785 :0.3241363039768546 +the:0.5578826024811213 Mr.:0.09542127059659862 a:0.09356985918151803 his:0.06960668039005222 :0.1835195873507098 +perfectly:0.629818921842021 leading:0.05879197436070458 and:0.01822566974302297 other:0.01168620403062513 :0.2814772300236263 +the:0.44670412999912024 said:0.1277567793089658 Dr.:0.06465920646392007 a:0.04089026779610501 :0.31998961643188883 +thus:0.518640306555414 so:0.45344769393529455 than:0.004217949078569125 this:0.0003722621793190997 :0.023321788251403117 +the:0.7494092325562992 tbe:0.2134924053602434 whom:0.010984971334126636 my:0.010905608890214993 :0.015207781859115966 +of:0.10732074657106408 and:0.09351577947818594 for:0.09075082165660156 four:0.07604299289789869 :0.6323696593962497 +home:0.4371438009133309 wife:0.025542656779589393 it,:0.02535023337742069 friends:0.020643165751886954 :0.491320143177772 +was:0.4100102483498693 is:0.34912417471340734 than:0.09722683385247853 has:0.07916780981582261 :0.06447093326842226 +would:0.9610718357252805 might:0.010908845962843602 could:0.0069042778615644755 should:0.006280253624947165 :0.01483478682536413 +said:0.6425063132038105 full:0.15436601125530033 principal:0.09090770019341594 great:0.07758466650491026 :0.03463530884256292 +were:0.2572469575965353 are:0.12590558035828037 die:0.1208721035498055 have:0.0846653547366768 :0.411310003758702 +it:0.7805942882482231 It:0.1657395054805368 that:0.020603852134051234 this:0.016786329694882685 :0.016276024442306067 +through:0.6125977913867068 from:0.09901740156214377 in:0.09376986088374245 of:0.07432215326586103 :0.12029279290154601 +the:0.9245771058507266 th:0.06093783491209916 3:0.005010514515465202 tho:0.004546484727903117 :0.0049280599938057775 +and:0.12939985195293408 of:0.11714572209516473 The:0.06752705032287247 to:0.0637280469209641 :0.6221993287080648 +ed:0.1537246399867723 to:0.15115382039238057 worked:0.03859132134208966 war:0.03575470529606708 :0.6207755129826905 +in:0.9117066792824567 of:0.07564411064757054 ol:0.011687483691801517 to:0.0005525670263122432 :0.0004091593518588812 +50:0.17357110757999775 ten:0.10958027586628344 three:0.06704619003947762 seven:0.05917702645350076 :0.5906254000607405 +of:0.21218837303983953 in:0.15725345512248223 and:0.1555446808650975 to:0.12943409290001356 :0.34557939807256716 +of:0.675687513768043 The:0.13259076427317779 the:0.07880702470871573 ed:0.03797721352655163 :0.07493748372351182 +her:0.14644513467038225 the:0.09398943830465756 in:0.055015578774187134 a:0.046026164791072174 :0.6585236834597011 +of:0.6111025902088616 and:0.11374499496490847 to:0.04716548388522606 in:0.044928514024814174 :0.18305841691618963 +says:0.25328322887638155 said:0.23992355746666286 showed:0.18542655720173204 stated:0.030762761909122208 :0.2906038945461012 +beginning:0.8765900937604364 giving:0.028030302189645532 leaving:0.02124083667947602 taking:0.007364861983860187 :0.06677390538658198 +proposed:0.14545524540532895 stated:0.12279107722737409 described:0.11584380894644158 given:0.07002516906820157 :0.5458846993526538 +is:0.2835285949913465 it:0.07318843376650229 Is:0.0726628682110991 was:0.07028204573009783 :0.5003380573009542 +and:0.05840214804920324 pay:0.005201788451008656 wages:0.0014389378191843184 one:0.0012251446840229137 :0.9337319809965808 +been:0.36582735491815177 his:0.18423500451403882 the:0.07948510411394966 to:0.031657183251458776 :0.33879535320240084 +could:0.5082036639438045 did:0.3302209649420126 do:0.08124909459574141 would:0.049177810646192976 :0.031148465872248447 +which:0.1188494683070778 and:0.1059661273461288 showed:0.07137334608716372 would:0.04099481437310942 :0.6628162438865203 +as:0.1830379077136174 up:0.16557817303404787 and:0.0496048954472766 to:0.034582946430455924 :0.5671960773746022 +the:0.72677441986483 him:0.13336928109736038 went:0.08555894966174728 of:0.018071681106440893 :0.036225668269621335 +plan:0.23065843825028529 sort:0.09145381865912389 value:0.06381918888992782 subject:0.021850798262216593 :0.5922177559384464 +were:0.5838403075271187 do:0.18161910358538258 did:0.10375180881683671 are:0.09684615523752041 :0.03394262483314173 +road:0.33278241331700864 situation:0.2351261529628439 question:0.07800885225599286 matter:0.06383491000381564 :0.29024767146033903 +general:0.2716325508375392 now:0.072777560141419 was:0.0526238361717041 and:0.036377493596124355 :0.5665885592532134 +been:0.39433608412755905 for:0.17567965171546804 of:0.07120213975457511 the:0.04435904328221262 :0.31442308112018524 +and:0.8021655163111686 of:0.037534887324993875 but:0.03200777385196934 that:0.029730139933029778 :0.09856168257883847 +and:0.08412568503261837 thing:0.027337462303420403 power,:0.014395158248482367 ture:0.007103042444265723 :0.8670386519712131 +character:0.019318170597273813 work:0.004007162950427966 story:0.003938013677263891 one:0.0029600614036652674 :0.9697765913713691 +him.:0.05625346954133379 me,:0.049264216581630826 the:0.025208240598200902 it:0.023239089762847383 :0.8460349835159872 +the:0.31556804870135113 a:0.15141806197277308 The:0.0907097510278732 and:0.07398156729479216 :0.3683225710032104 +State:0.06183650737288351 city:0.04543330025610883 County:0.034502708857240084 City:0.03270914498578555 :0.8255183385279821 +the:0.24463024808934586 a:0.1659209160157716 no:0.05230235272611228 tho:0.03830339972595253 :0.4988430834428178 +and:0.14160127314009463 of:0.09940777014261397 Several:0.08990468906383622 State:0.08695421679444668 :0.5821320508590085 +a:0.11738681076394368 the:0.072181168639627 no:0.03574930250109193 in:0.029893681378422063 :0.7447890367169153 +in:0.42811916707384007 of:0.1652373320214567 and:0.11367773902554477 among:0.09705548178215782 :0.19591028009700062 +above:0.08319593415735195 authorities:0.041454578404753036 bonds:0.033023562320920866 people:0.019504580548814016 :0.8228213445681599 +to:0.362710962649303 against:0.04382758625231374 etc.:0.03255056660740967 .:0.027208894491273044 :0.5337019899997005 +all:0.5789283323234555 every:0.23279711226479005 ail:0.019058920516148877 one:0.014997769385230297 :0.15421786551037547 +the:0.7853695572045967 our:0.0545224666239681 his:0.044903393330766615 its:0.02405148362487072 :0.09115309921579791 +Into:0.21258488994458963 to:0.1963378461204782 up:0.19231640319691953 into:0.15552805986802076 :0.24323280086999197 +of:0.6501519400395852 and:0.08067839183692913 in:0.04149984512959477 is:0.035092347394060815 :0.1925774755998301 +at:0.5505438773132451 to:0.18324073371295965 had:0.10194672508771216 of:0.05657784253497077 :0.10769082135111242 +not:0.35491023903088187 those:0.1888415216109412 proud:0.12225125910038458 informed:0.009139512787048913 :0.3248574674707435 +beautiful:0.02668646715821445 things:0.023041368250137702 old,:0.01841324619202674 strange:0.017743975792452415 :0.9141149426071689 +member:0.05333836806458692 move:0.018327882667925795 port:0.008619026856594597 ward:0.005862571647026277 :0.9138521507638664 +the:0.4015065629790957 tbe:0.19061674914895063 and:0.08677226908859069 bis:0.0652256905965218 :0.25587872818684126 +the:0.1762906366946796 and:0.16237868517892146 The:0.08738720324453622 are:0.0625513111694481 :0.5113921637124146 +years.:0.7422541021359306 war.:0.0075769092802575305 of:0.004440295646123351 the:0.0038889745270096142 :0.24183971841067894 +the:0.9138314028633232 tho:0.04584160365287545 tbe:0.008469608434523844 tha:0.0070588607857281285 :0.024798524263549317 +on:0.014128144545502359 great:0.013866247443963359 the:0.01285646091289153 Mining:0.00990893446030799 :0.9492402126373347 +him.:0.03587575646755543 it:0.0005305357047491254 the:0.0003065776398459212 great:0.0002033328346852364 :0.9630837973531643 +the:0.5440721410277742 these:0.0851178393247273 his:0.07502468226601901 their:0.052958346799524075 :0.24282699058195528 +by:0.5645591306207447 and:0.09849058641451276 of:0.08209142738955424 also:0.08199492747121537 :0.172863928103973 +the:0.297799388202209 ty:0.09372796176874557 and:0.06137197302035116 tile:0.024671992661174456 :0.5224286843475199 +head:0.34679403337182135 belief:0.049143952145368215 own:0.042101631952288644 brother:0.04129977234365348 :0.5206606101868683 +President:0.05546216108270411 people:0.05372415330803816 Register:0.053018678245777655 members:0.027943251644484367 :0.8098517557189957 +told:0.17618542894259825 gave:0.16667110572337188 made:0.04071798985677835 asked:0.03901864451980521 :0.5774068309574464 +moral:0.07065839392832407 political:0.04603343899284542 the:0.03562299127131931 !:0.027519967926428975 :0.820165207881082 +man:0.2863442759861625 men:0.011274960801001946 so:0.01046541888321788 people:0.0064630425425607615 :0.6854523017870569 +of:0.512799986275387 in:0.1506030340350938 with:0.08751023442933115 In:0.06376071943927644 :0.1853260258209115 +been:0.8287847259288831 had:0.04687841462022311 purchased:0.03195973149443971 for:0.006452762250657716 :0.08592436570579665 +to:0.8621874512596794 in:0.03447913450889985 of:0.03237267365507392 on:0.021742461075915463 :0.04921827950043123 +make:0.2594355068383118 be:0.14590622616221516 get:0.05410379045896222 such:0.05401495830504515 :0.4865395182354656 +of:0.27000883800208647 and:0.10208562481585252 the:0.03696387852387807 The:0.027376646525650913 :0.563565012132532 +to:0.8654227791454769 with:0.05251809121007627 down:0.025180882551917635 of:0.017630197498556793 :0.039248049593972406 +looking:0.2912959548614494 ing:0.06339285380074222 and:0.05899168330251691 or:0.058583747689436146 :0.5277357603458553 +keep:0.15086798133209897 get:0.12401279279993681 leave:0.08753232104877551 have:0.08101867936017017 :0.5565682254590185 +of:0.34973579471044713 j:0.22298723293846945 be:0.057015994384649576 all:0.03666074645644537 :0.3336002315099885 +give:0.5518213750759097 secure:0.42116126833736717 enable:0.003861990252561237 make:0.0031475334090665364 :0.020007832925095507 +being:0.5651303726308176 on:0.11064756523888387 lies:0.06440726035034335 in:0.06386516942128773 :0.19594963235866758 +river,:0.080251573120118 street:0.0762017331548549 fire:0.03907724318728094 and:0.021371872539521726 :0.7830975779982243 +is:0.22424812026532995 was:0.18661580430281935 I:0.12163692726124824 it:0.11962452873903233 :0.3478746194315702 +in:0.2502690184871918 to:0.1472841761448174 that:0.11719090938999448 of:0.10078729253576725 :0.3844686034422289 +has:0.1978777671999446 had:0.12840713411626997 hardly:0.10599216554124537 he:0.07238454766753702 :0.49533838547500303 +and:0.9966857224001958 I:0.0018623805169272463 but:0.0006142204150085968 he:0.00027616575711575674 :0.0005615109107526427 +and:0.22596373716004614 a:0.21158282028336448 the:0.1719800985284182 in:0.15442144666246774 :0.23605189736570348 +you:0.6168867630248243 the:0.309881115828743 said:0.02839877888178204 this:0.021676193365940753 :0.023157148898709835 +only:0.20534227129621516 chance:0.07543716658651464 last:0.03775717908482441 own:0.03428600499097163 :0.6471773780414741 +the:0.5634246500257507 any:0.12201800048676907 all:0.07879221894526918 American:0.05762931381761244 :0.1781358167245985 +to:0.911795202094949 lo:0.07485653091156466 la:0.010140320084344016 1:0.0011534212582773023 :0.0020545256508649845 +in:0.9245937008861321 with:0.0304086563748142 was:0.01940090092988054 to:0.014058393832393757 :0.011538347976779448 +with:0.25991467459571965 of:0.15352317581395078 for:0.125936312925556 at:0.1208893090614883 :0.3397365276032854 +the:0.34788184282969475 this:0.06315378173850261 its:0.046783423953647665 a:0.041016213013721076 :0.501164738464434 +of:0.24745939974723444 to:0.15149400036508542 and:0.06810812172029486 from:0.062394928391795564 :0.4705435497755897 +which:0.1396362855146084 It:0.10272229040791693 it:0.07008048534315248 that:0.06364529820830478 :0.6239156405260174 +acting:0.007796407660670307 here.:0.004342878335852394 to:0.003979264281670222 of:0.0036460779566842485 :0.9802353717651228 +have:0.9632606397541817 be:0.029865740661289365 been:0.004901450889114771 bo:0.0008275601455590675 :0.0011446085498549182 +that:0.09636746096061716 were:0.07037799970284997 to:0.06390410286908826 by:0.041001086678655346 :0.7283493497887893 +of:0.29569258553235905 to:0.15573665551652452 in:0.13143948681522316 and:0.10935121926693432 :0.307780052868959 +of:0.3247569228351369 and:0.24461348207313185 in:0.10794704825456436 against:0.1000083079492501 :0.22267423888791676 +lines:0.15945435179095688 cases:0.10537876190373985 parts:0.09631118983177939 kinds:0.08155801120121625 :0.5572976852723075 +that:0.887381210743236 a:0.03106218268040499 the:0.023394324074280246 in:0.0229119801844946 :0.035250302317584144 +that:0.3692866239808788 a:0.22365288527708768 Many:0.10518567215094315 of:0.05206786802631917 :0.24980695056477126 +The:0.3600839224170285 A:0.006326219071772233 the:0.001352794798695064 In:0.0010799743835005527 :0.6311570893290035 +all:0.1481888784073769 one:0.05270342842103813 and:0.05207916797928774 both:0.04190132212244153 :0.7051272030698559 +still:0.4581375082940212 now:0.32779414597915923 it:0.08341662724437332 always:0.07624116286094798 :0.05441055562149819 +of:0.24483454524395587 the:0.15911541292049083 in:0.1026404651600771 The:0.08035719737440196 :0.41305237930107436 +and:0.5581042269607054 feet;:0.044958287685972834 aud:0.04350712402697711 ;:0.02098907281123157 :0.3324412885151133 +well:0.45916309911072345 much:0.13784976294895465 soon:0.05182485608832302 far:0.04732218058200922 :0.3038401012699896 +men:0.0520462614813536 children:0.02009615680953936 things:0.019282639721555275 were:0.007734887326891586 :0.9008400546606603 +the:0.9174560140204475 tbe:0.03532908140869588 tho:0.023384240024320192 ihe:0.010056919990958037 :0.013773744555578327 +this,:0.30306847958294025 the:0.2573035942581168 much:0.2062835748038341 his:0.0479164540694771 :0.18542789728563183 +Miss:0.23848281771629534 Mrs.:0.2027270543743567 and:0.06011353246043366 of:0.049898149173711354 :0.44877844627520297 +the:0.44849259317278317 an:0.4203301890239927 au:0.07543651302211647 that:0.031692407058988126 :0.024048297722119437 +Hill:0.179150712708368 and:0.16514796354232825 side,:0.09401872319902961 the:0.0886518771296286 :0.4730307234206456 +of:0.5495456696581471 ol:0.42048719205285195 bottom:0.005603196983220486 said:0.004518635575920385 :0.019845305729860006 +popular:0.048507467617543994 law:0.03588609842303592 great:0.03588392213425354 settled:0.029565951393688113 :0.8501565604314784 +the:0.5207960264800116 a:0.2957084654616921 an:0.02730870133947692 tho:0.022901707302173464 :0.13328509941664576 +is:0.7057564036885952 was:0.1723355591120032 Is:0.058081231740524174 la:0.014704822285475184 :0.04912198317340236 +and:0.16486996635172066 before:0.11137541481925874 as:0.08192679258024947 that:0.06727941790155678 :0.5745484083472144 +again:0.5695309841363833 out:0.19447355860870172 up:0.07837547985559017 away:0.06049331607820752 :0.09712666132111752 +an:0.0030091860693520415 ture:0.0024520621013935035 public:0.002432069446045407 Virginia:0.002359408422155919 :0.9897472739610531 +rule:0.07691194816156896 point:0.05313592363030039 people:0.03977499505897306 most:0.03069759236019538 :0.7994795407889621 +He:0.03164097827611347 and:0.011168393583767412 It:0.010967046223947863 I.:0.010731143234625942 :0.9354924386815453 +to:0.9871514480657657 lo:0.004222995722099747 would:0.00024911990872270994 not:0.00012511432952710705 :0.008251321973884701 +them:0.0767096755884305 faith:0.07011974529310878 themselves:0.0700378413968535 ed:0.045738413794321614 :0.7373943239272854 +of:0.3986880973115864 and:0.08484440419754562 to:0.020791841796964687 Mrs.:0.019843947969089584 :0.47583170872481384 +the:0.29536670187008596 a:0.04936269863575518 1:0.023722876180387348 2:0.020438151498325216 :0.6111095718154462 +and:0.4464549626036592 of:0.1340699995162141 that:0.1252196826969744 in:0.09070953440169936 :0.20354582078145297 +it:0.8536407891153435 I:0.06039249170186736 we:0.03928696241481266 there:0.02142040030767558 :0.02525935646030104 +the:0.7955551673200784 her:0.03769196049456277 his:0.03747517963434952 a:0.03032406808674643 :0.09895362446426294 +of:0.7833903534960768 and:0.05168204626232974 to:0.03462695536743122 in:0.03343519525120513 :0.09686544962295723 +his:0.7683793923179771 her:0.09519446782202962 at:0.06773874408731541 for:0.04735325998195639 :0.02133413579072139 +the:0.36919890775437153 land:0.19504349475992205 a:0.038991090123479906 any:0.030544129442446895 :0.3662223779197795 +has:0.7590680440006649 had:0.0888841668115232 have:0.06548472898736872 haa:0.023736163484037443 :0.06282689671640597 +thereof,:0.09962050412929185 from:0.08204806983151333 on:0.03277555523552168 up,:0.03157040977339265 :0.7539854610302807 +as:0.9981467109095379 like:0.001245282632169333 aa:0.000374255755458574 ns:9.538822869750814e-05 :0.00013836247413651282 +interesting:0.3768693465987467 glad:0.13966165974359068 interested:0.08569339638824335 pleased:0.07831847040403098 :0.3194571268653885 +many:0.6602959578595675 thousands:0.16820164034069726 several:0.07087445263188914 one:0.052554589223269 :0.04807335994457711 +of:0.1546369938459548 and:0.10206125744037821 control:0.013839049105809114 to:0.009880218781983708 :0.7195824808258743 +out:0.593128396297212 in:0.07633547330929046 off:0.06133996550301012 np:0.03257623060076412 :0.23661993428972317 +it.:0.004476906786542637 them.:0.004181834271152539 gain:0.002818828531490395 life.:0.002658250345472174 :0.9858641800653423 +same:0.15047383066500533 whole:0.1497445467478308 the:0.10877021318942673 present:0.08957811904424486 :0.5014332903534924 +not:0.8972079481080069 never:0.014333423607345398 -:0.011786984406164583 already:0.00841037764371352 :0.06826126623476965 +the:0.6590316368104603 tho:0.24696950334035914 this:0.05128394727157516 a:0.027908802810923877 :0.014806109766681522 +well:0.5425469667630306 far:0.14202351174250488 soon:0.07127189571521018 much:0.042063121770187596 :0.20209450400906664 +to:0.7440294904438135 thereby:0.07502491558449163 thus:0.07043660075076574 then:0.033597397255310205 :0.07691159596561878 +to:0.30792950122871515 The:0.042025845587541286 which:0.03593488300522807 could:0.020870234202207908 :0.5932395359763077 +o'clock:0.23647922267864768 o'clock,:0.05586159322804354 times:0.02886884957925404 on:0.01801079204954926 :0.6607795424645055 +and:0.27029141697523124 to:0.2197639421539781 have:0.18492786078749995 of:0.15954530300724015 :0.16547147707605053 +leave:0.14948597284134774 work:0.045016623831211966 them,:0.03327205417508408 and:0.032924909801542813 :0.7393004393508136 +south:0.7361911599612381 running:0.029945919772517027 lies:0.011996479518346289 wholly:0.011774601633590313 :0.2100918391143082 +was:0.9898317410052018 be:0.0035045654322628495 is:0.0033461352770663864 were:0.0017106069948037367 :0.0016069512906652606 +and:0.32646797055249555 the:0.07421999981539587 to:0.05953862571248084 you:0.050901615073303846 :0.48887178884632393 +have:0.37181587286879053 was:0.11369658293190038 had:0.09268757471037829 would:0.06515397981091194 :0.3566459896780188 +that:0.9082445247599854 for:0.018456882260050638 there:0.013015196532115345 when:0.004321522000460017 :0.05596187444738847 +the:0.8245691412017738 time,:0.09078524581506643 his:0.019694620362866927 all:0.006598418656256341 :0.05835257396403629 +Senator:0.5898007587977627 gentleman:0.24679346245778322 member:0.06792251327900962 man:0.03432604628558484 :0.06115721917985963 +be:0.6905515111464994 have:0.18141026917118153 lie:0.0866045391293531 b:0.030764159086298874 :0.010669521466667 +and:0.16262665006391422 it:0.12213620381323302 but:0.039547267827301294 them:0.036200467628000395 :0.6394894106675512 +not:0.013961246060458512 Another:0.013462843464219191 work:0.00985948231603946 or:0.00954909445827352 :0.9531673337010093 +to:0.004404108507684051 of:0.004250022362853581 and:0.0020184245131921468 in:0.0012218070036874036 :0.9881056376125827 +lot:0.5070582542472537 been:0.15272416209288897 days:0.029416521161907735 that:0.02013474663726411 :0.2906663158606854 +the:0.3554946549140596 their:0.18000238571739238 an:0.15294168285503804 a:0.10284798207452277 :0.20871329443898717 +of:0.5801186053259075 to:0.20432238949165274 into:0.09247825189329816 and:0.07134085675799103 :0.05173989653115064 +they:0.28853355313054124 I:0.2590754758545704 it:0.15649635378223872 It:0.1228794228523348 :0.17301519438031476 +corner:0.10431454470608152 out:0.09072437150780889 and:0.06313385410443723 miles:0.05231169760351453 :0.6895155320781579 +was:0.15886308142558725 of:0.11929591760622948 and:0.11258667941997935 is:0.07651063835735718 :0.5327436831908468 +tell:0.16018067226796678 show:0.058962552780862904 form:0.03353756616368406 give:0.030264996070295046 :0.717054212717191 +that:0.7837672855876058 rights:0.013214568529366318 hope:0.013135598999791573 thought:0.0125570403027697 :0.17732550658046656 +is:0.33688477197287503 was:0.13260246353848756 as:0.060740120383193215 to:0.05590247178739917 :0.413870172318045 +each:0.17656216501403083 cover:0.15625101079986595 and.:0.058910760306854375 up:0.02408192943999346 :0.5841941344392555 +W:0.12994104743565896 J:0.1214862677187407 H:0.0742794504007815 J.:0.04859694523205301 :0.6256962892127659 +order:0.7873016122784028 the:0.04005222368517327 this:0.019106713369127892 good:0.007794129112358369 :0.14574532155493772 +few:0.9004412814982922 the:0.002511143121215044 most:0.002329043830848545 sum:0.001949583486052544 :0.09276894806359161 +new:0.05584521923463487 present:0.03175858373167242 said:0.022218807115426748 law:0.01875195874122973 :0.8714254311770363 +be:0.11786905234835128 prevent:0.07053170038851073 make:0.06329071763038 the:0.05378207710812105 :0.6945264525246369 +in:0.4825967609558512 with:0.17618017398894234 to:0.10291947125117411 of:0.10287311103294185 :0.1354304827710904 +times:0.15151557377316105 things:0.13733648585156294 reason:0.04479983121199211 and:0.041792297764992575 :0.6245558113982914 +girl:0.613345358980476 great:0.050391526512451 enormous:0.04006409674850821 the:0.008154728083290192 :0.28804428967527457 +with-:0.18649845343829635 with:0.1594123615153976 them:0.09539320985446667 it:0.07917874457135783 :0.47951723062048157 +and:0.591464575329725 have:0.099924783322674 were:0.07261792633886528 is:0.060011507460712606 :0.17598120754802324 +returned:0.86461268168627 went:0.1065597277046332 clear:0.0018896608822109708 send:0.0015141899336616838 :0.025423739793223942 +things:0.14547298154166602 roads:0.09965679953059839 latter:0.047711547436646684 persons:0.038047273426691584 :0.6691113980643972 +C.:0.3237831660031686 H.:0.17783438548684768 S.:0.15524750139544677 T:0.07910029386372511 :0.264034653250812 +blood:0.006612174750230838 city:0.006033116271586438 city,:0.005834725827503672 right:0.004510228061322551 :0.9770097550893565 +sum:0.02439194791640169 use:0.012571355500982947 amount:0.011308468533007217 State:0.01047470779931847 :0.9412535202502896 +place:0.11472026297234707 city:0.07500079077287126 son:0.06703871533236815 manner:0.055628528137537374 :0.6876117027848762 +also:0.27344416617645095 being:0.09961835946434124 hereby:0.052299360423622133 not:0.04092706554225927 :0.5337110483933264 +the:0.3575424439781424 a:0.09966604333666644 his:0.08952710448483714 public:0.04080992448862152 :0.41245448371173243 +of:0.20357479391238084 and:0.13698880672481167 the:0.07093226681106356 are:0.03943401452536732 :0.5490701180263767 +for:0.5749542969271961 of:0.2956695838134902 on:0.06195807095700427 in:0.04370064618316622 :0.023717402119143298 +are:0.4563168068495019 were:0.2642446277549321 should:0.20313361353862178 will:0.041378405476654286 :0.034926546380289955 +and:0.11303171689221772 of:0.09574996549268365 the:0.08626638064305645 to:0.05003519636685427 :0.654916740605188 +ing:0.016434040544597107 and:0.007871010642579569 in:0.007799655150244444 the:0.006922837711490348 :0.9609724559510886 +of:0.17208775578559085 and:0.16014160794089718 to:0.04317720615340921 who:0.037192964210492965 :0.5874004659096099 +to:0.9471635819241115 tu:0.045523789232029245 or:0.0025326847247723228 of:0.0016731752554517366 :0.0031067688636353145 +as:0.01813963723025217 this:0.014438370178582911 matters:0.010653863411351798 These:0.010201130575017956 :0.9465669986047952 +the:0.06698678246857113 lie:0.055396959063042366 m:0.03442850645200787 e:0.034237950187686356 :0.8089498018286922 +pair:0.5252041623118814 turn:0.0686046435281716 fill:0.036051803498475234 move:0.024434066051799173 :0.3457053246096726 +money.:0.3207430627712664 them:0.0325397709117098 death.:0.01948121002897512 the:0.011813903282597519 :0.615422053005451 +it:0.6530915277944735 It:0.125527725011478 there:0.10127960668903603 that:0.0112040259205503 :0.1088971145844623 +created:0.23550920586364418 been:0.19334327471093005 become:0.1113225247434125 and:0.10685249498264442 :0.35297249969936884 +are:0.5937455516780002 were:0.13055935466914134 arc:0.06993792018918843 have:0.0631058422870048 :0.14265133117666515 +were:0.2285727703993749 that:0.17864456308130228 should:0.16120419250792836 and:0.0884186643400835 :0.343159809671311 +be:0.15204027040896603 have:0.08891901954782729 stop:0.06719006209989165 not:0.06334261509194021 :0.628508032851375 +on:0.991202155217256 taken:0.004167083738723912 upon:0.0018606005539383704 in:0.0016433048517002385 :0.0011268556383814718 +same:0.17399980267202234 two:0.05846623788549455 water:0.05069328615242553 cut:0.0370052892143852 :0.6798353840756723 +of:0.22927714436390378 had:0.09421563466917075 and:0.07952252351890035 was:0.061833563061030855 :0.5351511343869942 +and:0.21726776875932965 The:0.12202664624414868 the:0.06599833494108513 of:0.05433716851147186 :0.5403700815439648 +and:0.5285892047154025 to:0.3804459720628352 for-:0.064599716987019 I:0.013303440038072056 :0.01306166619667125 +who:0.9910862507692787 was:0.002339124373452501 man:0.0017022930700894058 officer:0.001244763490101473 :0.0036275682970778695 +declared:0.3747777679515361 said:0.1278454576282741 believe:0.031095674076790397 agreed:0.019708076474118773 :0.4465730238692806 +last:0.09281924740776298 committee:0.07239698184850145 corn:0.0613924389811271 house:0.053690238231890446 :0.7197010935307181 +in:0.2242092237652666 out:0.06855321071030111 and:0.04073616497451695 upon:0.022686922710320478 :0.6438144778395949 +control:0.5111786472597173 believe:0.049060104534068505 consider:0.020337409596069774 be,:0.014419305323741033 :0.4050045332864035 +love:0.2249339937977529 stand:0.11822424601142041 come:0.09359274941379303 to:0.08719661550849221 :0.4760523952685416 +the:0.6094663821802135 are:0.0822860868008714 be:0.07809192702571553 those:0.056163865327095275 :0.17399173866610423 +the:0.5259621420931715 a:0.0766633230957025 his:0.031779697212789934 tho:0.025075347935063337 :0.3405194896632729 +like:0.3994939022710762 saw:0.17123424368301354 asked:0.16524285506747852 told:0.028842565598424196 :0.23518643338000747 +special:0.15179282023320217 distinguished:0.041990616881018725 larger:0.025784931576355943 full:0.020331180514977502 :0.7601004507944458 +that:0.9903963991861385 and:0.004759188094612369 which:0.0036610647635879905 as:0.0004779595308348992 :0.0007053884248262538 +an:0.2536409683778096 I:0.12334960821091523 worth:0.10859167061615793 less:0.09683972606399532 :0.4175780267311219 +of:0.028938512287770817 decided:0.021230544209107208 road:0.016719242077749115 and:0.013470984255713057 :0.91964071716966 +will:0.9069167453938815 say,:0.013232421248326553 cannot:0.01105469676868344 are:0.008280416203610684 :0.06051572038549777 +a:0.2810476892847297 free:0.2763818130285408 the:0.09975583418054274 out:0.0874659167008564 :0.2553487468053304 +of:0.5187885362896172 and:0.14966466208761184 A:0.08797409723628663 or:0.07120176625928375 :0.17237093812720064 +have:0.2397455830304733 be:0.16277610291503483 result:0.017279992892807104 the:0.015093509247483945 :0.5651048119142008 +he:0.36806107274197714 it:0.250896465693195 mortgage:0.09946041898156552 she:0.0658525500576081 :0.2157294925256541 +that:0.749168892658065 how:0.03165497001163829 what:0.02057455703436115 thnt:0.017810049064713212 :0.1807915312312224 +on:0.4759769115778592 about:0.2678871605758179 that:0.11959914700345982 as:0.07558414593937454 :0.060952634903488616 +or:0.2992296602896296 the:0.26975662823657875 and:0.2016168406222223 is:0.03438692679739011 :0.1950099440541792 +last:0.7845197271237787 natural:0.011557255896246236 good:0.008837186623120387 general:0.005861276826967657 :0.18922455352988696 +1:0.3006299950486522 and:0.20608106901803072 will:0.058144666957725924 to:0.055013955093653026 :0.3801303138819381 +number:0.06169066376878449 body:0.03097551107019919 people:0.02744496271015768 members:0.024575116567660378 :0.8553137458831984 +over:0.1384777227451441 a:0.13521276139936395 nearly:0.09509606151801767 worth:0.07065107868572533 :0.560562375651749 +meet:0.636917385080092 you:0.14505674711672104 witness:0.02076996437454295 him:0.016755662670740648 :0.18050024075790327 +have:0.5283977552492884 be:0.09424726470450574 get:0.08969773694170662 buy:0.07636146977733523 :0.21129577332716395 +of:0.14652005930733705 the:0.13985274441780943 and:0.11322408297074235 a:0.06056017064930332 :0.5398429426548077 +of:0.16489623225576072 with:0.1247428368789221 at:0.12349009258379492 has:0.04784428524001193 :0.5390265530415103 +the:0.8048020164528792 a:0.04024438092767754 an:0.025080629720365923 its:0.012975895730773268 :0.11689707716830398 +in­:0.3413694152723962 the:0.19015446750714993 a:0.1098754900933654 an:0.07129649083251768 :0.28730413629457086 +to:0.9388622798709788 for:0.015211890636758403 at:0.014124061900473855 I:0.008479058733457185 :0.02332270885833173 +I:0.24888407942038263 They:0.24374680408028113 He:0.1196412965027419 She:0.03624008550222417 :0.3514877344943703 +not:0.9159654013545853 this:0.018822344324491164 their:0.00840413521182078 who:0.0075184180925680095 :0.04928970101653469 +were:0.003690170154486057 11.:0.002438847441586106 the:0.0018434471109470226 it:0.0012771393258446794 :0.9907503959671362 +feet:0.008391268533665269 members:0.003027532218608854 favor:0.0007457892332010924 one:0.0005462639658744767 :0.9872891460486506 +and:0.09093490749052613 of:0.07930306879021419 the:0.06553183002459302 to:0.032356893561517566 :0.7318733001331491 +in:0.587984232181444 of:0.29349689985084154 In:0.11837503414829872 at:6.290891627649656e-05 :8.092490313906634e-05 +newspaper:0.06694429369644807 decision:0.031053896495892512 friends:0.029781031067793156 j:0.02056350008033547 :0.8516572786595307 +not:0.37767026546149596 always:0.24829191812999551 sometimes:0.14410302861131793 long:0.12292300530469147 :0.1070117824924991 +of:0.2539080103990145 and:0.1700493879917124 to:0.1636414622237623 that:0.15579106503712162 :0.25661007434838917 +tion:0.030769530258705168 day:0.02902765483711168 one:0.027829701475411625 west:0.02769231730844254 :0.884680796120329 +pay:0.09883981606109232 fit:0.06671863541211706 kill:0.0374278010922148 de:0.031096705784591675 :0.7659170416499842 +New:0.8161956292115308 the:0.03184823520944344 this:0.014973250896991397 Chicago:0.012292300509807856 :0.12469058417222666 +in:0.01204441059324437 following:0.00837387567179227 that:0.003370648779994886 not:0.0024004879700651144 :0.9738105769849034 +pre-:0.359350596943538 the:0.055326744529906796 once:0.047806201183203265 this:0.034748105025105974 :0.5027683523182458 +a:0.15700648724556338 and:0.12042394345504817 to:0.07784068146765705 of:0.07638001469648996 :0.5683488731352415 +the:0.23483360314579416 I:0.09343878166859733 far:0.09231726885080138 he:0.05739071401905683 :0.5220196323157503 +a:0.8613533247866966 e:0.0053237934424235035 able:0.004335819885605442 its:0.003311988269142009 :0.12567507361613248 +account:0.6038973657718253 behalf:0.12297870164420151 any:0.06495020549732416 the:0.03634061032626369 :0.17183311676038537 +those:0.06039656425184081 the:0.04800419470316548 Virginia:0.024366226924799447 a:0.023619020289122616 :0.8436139938310717 +hundred:0.3808811798238127 thousand:0.2833324503752766 million:0.19864134743859865 of:0.012388889012756631 :0.12475613334955561 +and:0.10730958949364566 the:0.06337188211240775 of:0.06308860648906092 to:0.03310050120124756 :0.733129420703638 +seem:0.2360977043689503 want:0.07787111796064898 wish:0.0629674726986978 attempt:0.0626139495404877 :0.5604497554312152 +and:0.797356160396245 to:0.04682048424208445 or:0.04344777890374559 thirty:0.02787638252595198 :0.08449919393197299 +to:0.4033463766940729 and:0.16060381785521338 rather:0.07386141400585464 has:0.07290104588117922 :0.2892873455636798 +per:0.8758026247104314 or:0.006722718091516288 Sir:0.0022269656218086957 a:0.001717013855325122 :0.1135306777209185 +fifteen:0.5844128542491196 twelve:0.1859202609933693 twenty:0.18084908587925033 ten:0.021507227523195616 :0.02731057135506499 +am:0.2175074628664271 was:0.2015476204645006 felt:0.06492816259246538 feel:0.050700401803640334 :0.4653163522729666 +recent:0.03460935637667964 terrible:0.033093450275783094 final:0.02336901490516138 first:0.0207080964276989 :0.8882200820146771 +will:0.35898210234806477 to:0.23425824044871132 should:0.15592304652306435 can:0.15531919557980117 :0.09551741510035847 +kind:0.1113883263597132 corner:0.04995398211951292 city:0.046941096850331515 walls:0.02540855927383851 :0.766308035396604 +to:0.7720137174226038 a:0.03715516174045382 and:0.023701635610239264 the:0.018787598917327297 :0.1483418863093758 +money:0.10904318269052063 Chinese:0.10312134837643033 State:0.05925366223953357 north:0.03164714737056788 :0.6969346593229474 +the:0.02786023505540549 most:0.027155534732832977 same:0.02165993067909438 first:0.02081993824749903 :0.9025043612851682 +port:0.5601291366259458 turn:0.05197267421599539 nomination:0.01090204331015118 move:0.009806630598805257 :0.3671895152491024 +the:0.9112555399889617 a:0.028225577426348254 your:0.02075218124896419 this:0.016178516107980066 :0.023588185227745875 +and:0.11658096525093636 the:0.10825127141091223 City,:0.05707260859852912 in:0.05400566625096627 :0.664089488488656 +State:0.08646328966017486 honor:0.028727948520888946 County:0.015921862180668156 power:0.014144493703501744 :0.8547424059347664 +rest:0.022199300634584276 members:0.0205937263155591 cost:0.014835461943914097 result:0.012894075754853395 :0.9294774353510891 +w:0.0038799637532684356 the:0.002849291647329604 le:0.0026350664701444335 acting:0.002281955746621322 :0.9883537223826363 +and:0.13356620928208954 to:0.09296859279588307 the:0.08352910743499459 by:0.08291377403465847 :0.6070223164523744 +go:0.19330768640981805 vote:0.08201407354935224 meet:0.06334838102465183 be:0.0471296362125643 :0.6142002228036137 +a:0.8637591010030259 one:0.11628199128807087 six:0.004453796610916871 of:0.003495785539925689 :0.012009325558060644 +for:0.40700984676597035 to:0.3405752793443008 of:0.09713576784375609 if:0.07016238553782322 :0.08511672050814954 +section:0.050169288246210905 in-:0.043159652891822525 the:0.04210865822800303 wagon:0.03911982185743872 :0.8254425787765248 +I:0.17946488149943743 It:0.1450921469556752 able:0.09965303798591855 and:0.08528857196670639 :0.4905013615922624 +and:0.2242992067206871 by:0.14061361299360264 is:0.12474691069565819 being:0.08302257114504119 :0.4273176984450109 +of:0.1535361450092718 are:0.13390268436109815 and:0.11371667836082185 were:0.07778438282571942 :0.5210601094430888 +Here:0.22196092137497564 of:0.19188417839901242 to:0.16775117983261975 for:0.14243596749876564 :0.27596775289462655 +and:0.15743394691767532 of:0.08145516325365329 the:0.07951472298615707 to:0.07305910007380159 :0.6085370667687128 +of:0.1551670561869561 to:0.13760737968199704 and:0.09860617396657283 with:0.08375466342769394 :0.5248647267367802 +been:0.35817760779539004 a:0.08511508339971972 not:0.07502345629450298 the:0.05278489672360043 :0.4288989557867868 +section:0.1296397900724584 is:0.12921081309220045 was:0.07153646552225329 were:0.0552360754473264 :0.6143768558657616 +the:0.9978753044921289 any:0.0016793141105765758 no:0.00014103403723210762 a:0.00013124714408759887 :0.00017310021597480275 +made.:0.02939523083590617 done.:0.00974354842593441 well.:0.006701442102811784 there.:0.004539888655216815 :0.9496198899801308 +turned:0.6449102897757198 given:0.20800900049477303 paid:0.05090980338855521 bound:0.023215753184686327 :0.0729551531562656 +":0.01066379153753705 the:0.00874289702290495 me.:0.008255754240948047 F.:0.0053999645009647265 :0.9669375926976453 +the:0.16185840974015894 a:0.1443303706783517 not:0.10005008135977977 very:0.052853890704982816 :0.5409072475167269 +and:0.16757285388435753 the:0.11772892237849152 of:0.09296046163184511 a:0.03772819628871512 :0.5840095658165907 +for:0.39718191695282795 to:0.1628708812960567 every:0.14737095110713896 the:0.14662708951307887 :0.1459491611308976 +are:0.9227653185064598 last:0.0009563042471289322 is:0.00042888761289093297 do:0.00039755951342785234 :0.07545193012009249 +followed:0.990689210071208 in:0.0008399457714911638 lost:0.00034129712589698436 made:0.00013457298055442163 :0.007994974050849523 +with:0.2577291081889238 of:0.18425349981660558 is:0.11890373586414969 in:0.11673463428927586 :0.322379021841045 +was:0.22279548904816746 down:0.0576540685514513 him:0.05180912566116874 away:0.025850854523548353 :0.641890462215664 +and:0.05201131196873626 was:0.01935939485388955 feet:0.016532285255547098 is:0.01572916972588435 :0.8963678381959428 +of:0.938598025063103 ot:0.01384258131717987 in:0.009423830230092755 to:0.009403073929960993 :0.028732489459663405 +manner:0.25530363212093543 way:0.08683767386188007 position:0.030837965738548547 spirit:0.03042496555197884 :0.596595762726657 +is:0.3950469047861377 was:0.18652636351944984 will:0.054315593616934 has:0.04400084224007951 :0.3201102958373992 +ground:0.04898793574725873 water:0.04372241040453282 water.:0.04207982873844776 ground,:0.040818857466829235 :0.8243909676429315 +been:0.39169568107727415 only:0.22770300474087 for:0.09622127065282957 now:0.018654128664038653 :0.26572591486498764 +turn:0.02693413739010692 port:0.023095954128994192 cover:0.020606012720004487 signed:0.020156808902611394 :0.909207086858283 +the:0.9710354763971373 tho:0.017425064298948738 of:0.001846956416991498 very:0.001216679692530828 :0.008475823194391755 +the:0.5336435330814302 a:0.06496995051913683 be:0.03796154656421675 tho:0.031016365122480943 :0.3324086047127352 +and:0.1440292054416344 to:0.10490889011427694 of:0.09929373431074637 the:0.05685183789043321 :0.5949163322429091 +was:0.2771956527520609 is:0.21172218519240918 are:0.18222233282692948 were:0.1495916237580274 :0.17926820547057296 +Pennsylvania:0.4030569000432391 money,:0.044715513785984665 the:0.026366810174096166 of:0.013336080793411018 :0.512524695203269 +of:0.9398906270463087 from:0.010071747776274521 on:0.008385815503659449 in:0.007447989458981175 :0.03420382021477625 +the:0.8414479520974845 a:0.09098207990087914 his:0.03112703062946126 this:0.012196143260457053 :0.024246794111718067 +to:0.9678412137904877 lu:0.0008134891479010339 will:0.00031847742798519753 not:0.0002471558532287292 :0.03077966378039732 +buildings:0.014981686250353956 to:0.012290407284029584 views:0.009198525037183287 days:0.004676696493082511 :0.9588526849353507 +in:0.19261660296517927 its:0.11439173936620342 The:0.09138725917684631 the:0.07484925921814782 :0.5267551392736233 +shall:0.0885093581662694 which:0.007003364625997362 they:0.004743526548365169 to:0.0043152190177753675 :0.8954285316415924 +paper:0.795657492924838 affairs:0.13532655505316904 office:0.01559813588123398 proceedings:0.0047997302648271935 :0.048618085875931534 +he:0.5328895843999126 we:0.1209056147294069 they:0.0854397451352518 she:0.06778266675901977 :0.19298238897640896 +thc:0.22761707313308194 the:0.1372705554291833 a:0.017033793925728426 his:0.008853295124652726 :0.6092252823873535 +feel:0.3529205566809977 stood:0.10941194747217878 did:0.09289526358871751 is:0.04760341024788456 :0.39716882201022147 +gone:0.8952829467762243 sent:0.02028386227231953 walked:0.017186480976779325 get:0.012176475504839681 :0.05507023446983713 +May:0.03887891362374363 New:0.002807645855617336 T.:0.0017169254824483011 and:0.0004681639665513097 :0.9561283510716392 +the:0.9460737234630737 tho:0.0249377607364877 tbe:0.01066809830243822 tlie:0.007597272486007683 :0.010723145011992551 +want:0.16110551152030014 trying:0.05122610816134341 glad:0.04104413122322586 and:0.04027024277877193 :0.7063540063163585 +was:0.5747080581826594 is:0.24557419323316212 Is:0.054110737585880406 once:0.03215526237526822 :0.09345174862302995 +to:0.9986614834693102 yet:0.0002564473227388995 only:0.00025088225576955627 I:0.00014755931332593753 :0.0006836276388554499 +The:0.5335062927577021 This:0.12744381599786414 Their:0.09723707885170459 Mr.:0.0536170546754915 :0.18819575771723768 +the:0.756081323274675 to:0.19213341254912342 and:0.0047369096542786366 tho:0.0025350419186169716 :0.04451331260330604 +position:0.11548834553502903 charge:0.00038715750692936796 ease:0.00013090055251865123 while:9.362508703474627e-05 :0.8838999713184883 +men:0.8484556691140456 bridge:0.02384186079431067 members:0.005863642812803627 it:0.00347740442713168 :0.11836142285170839 +of:0.44393405045560813 with:0.2020233145356047 was:0.07625177269196413 when:0.027560266512056272 :0.2502305958047668 +that:0.9992170808617787 and:0.0001933421695648868 he:0.0001424292021517153 usually:0.00011322242984430598 :0.0003339253366603242 +are:0.04456279555513997 have:0.030053636380350374 of:0.023449242350023495 take:0.016767700917876806 :0.8851666247966095 +to:0.847609256066658 will:0.10768103504078173 can:0.02230152803137537 not:0.007697929467866057 :0.014710251393318753 +the:0.8957853773373935 tho:0.05435218811528725 tbe:0.013489414335644273 tha:0.011859963486547257 :0.0245130567251276 +Thomas:4.8946863091027896e-05 J.:2.968418326382091e-05 F.:2.6885086524098868e-05 the:2.6290577693403697e-05 :0.9998681932894276 +of:0.3275306307696893 in:0.16485797988573486 to:0.1608406476919413 for:0.09406754747038504 :0.25270319418224946 +sharp:0.3213878334334557 no:0.2243589835604349 to:0.19469532752175084 they:0.10722334611915084 :0.1523345093652076 +and:0.5795870205017607 but:0.18542054317317108 Then:0.044839528300047685 ing.:0.04384741504589142 :0.14630549297912931 +driven:0.2855535267807872 described:0.13691636466170015 made:0.07215875419242285 recognized:0.027752060832702128 :0.4776192935323878 +make:0.0882156909618476 the:0.05079640159730362 find:0.04878202053349447 keep:0.04410895471242451 :0.7680969321949299 +corn:5.37086195448337e-05 things:3.3382360320510563e-05 and:3.1816706636294375e-05 days:3.159762559286466e-05 :0.9998494946879055 +this:0.890977958558878 a:0.030413606038988763 the:0.030161615262446276 that:0.020654383942804538 :0.02779243619688245 +the:0.13835996740560094 one:0.06317578707731486 that:0.05334986834078942 support:0.04626560170246836 :0.6988487754738264 +say:0.3594817518636792 say,:0.11734272588946883 sleep:0.0913739071947749 live:0.05698256816762284 :0.3748190468844542 +and:0.06467506887353824 he:0.02816199001919266 they:0.017100687002093454 then:0.01655092401029397 :0.8735113300948817 +General:0.03910277108154935 young:0.031202933512795333 great:0.031067696142161823 of:0.027795541344638647 :0.870831057918855 +for:0.29354146134843817 from:0.28222102697176166 by:0.19858932536191262 to:0.11900441918705854 :0.1066437671308289 +known:0.16367090985066568 is:0.05288449055559271 that,:0.03880048975476387 construction:0.03585948781107146 :0.7087846220279063 +of:0.4915019757503335 in:0.1428242287466264 with:0.13651734098162305 that:0.07111113757103954 :0.15804531695037746 +extent:0.17208711831688445 amount:0.09346792921329367 confidence:0.07499717628461501 value:0.07342058396663473 :0.5860271922185721 +and:0.2669477918878781 the:0.20524423186330978 to-wit::0.1253847536117371 as:0.0817907572659046 :0.3206324653711705 +the:0.12288111981074755 and:0.1159727076773827 of:0.10319660745874101 in:0.04365458042112348 :0.6142949846320053 +in:0.9714208888213806 In:0.010273289801167313 a:0.005466095087254272 But:0.0031575333643457286 :0.009682192925851972 +year,:0.007227695294953196 year:0.0035539258146778403 will:0.002958902967858916 week:0.0011103654650237 :0.9851491104574865 +young:0.225520290806502 white:0.10679708796823724 best:0.07142511905486879 wrong:0.03986850545687693 :0.5563889967135152 +railroad:0.47689846374822786 look:0.017217792783085165 and:0.01572291771128156 road:0.008562324422564889 :0.48159850133484056 +pose:0.4613853388506595 e:0.000809329964845663 ple:8.825476036937437e-05 and:5.7727167153527834e-05 :0.5376593492569718 +for:0.24426783208819589 and:0.23495999110288243 to:0.1261439003722379 In:0.12440306010445902 :0.2702252163322248 +being:0.4949183388417877 the:0.004761365620649704 it.:0.0011970904881753394 Mr.:0.0009596504469507793 :0.49816355460243633 +of:0.9963434855148064 cf:0.0027407922710212637 are:0.00022461887355440288 who:0.00021897200679628722 :0.0004721313338216045 +day,:0.14113461721416037 record:0.13293193229785888 day:0.09802217305610293 terms:0.010639990887052425 :0.6172712865448253 +and:0.03273598282537213 out:0.023271151659981216 day:0.022381526776154997 District:0.0208564560606777 :0.9007548826778139 +the:0.4866368381526519 to:0.3168069364990312 into:0.0990102968793698 its:0.0579210657916683 :0.03962486267727885 +the:0.24731705250478825 a:0.04059433143565349 his:0.02030808020604629 most:0.019911944865699648 :0.6718685909878124 +and:0.04496578173123073 the:0.04489881805350235 of:0.029341796431428348 The:0.02639758866661436 :0.8543960151172242 +much:0.518703968418676 any:0.4520108542600875 no:0.013435593539179704 more:0.00897326794843742 :0.0068763158336194 +the:0.38773429705971074 a:0.06708731113986952 his:0.05206070631953004 this:0.043149110893080024 :0.44996857458780964 +and:0.1617784334427446 the:0.07000917148726007 of:0.05996092591075573 to:0.03925090969425204 :0.6690005594649876 +members:0.11597231231152878 action:0.058672287439193185 Secretary:0.02603287800281764 good:0.024002369017301177 :0.775320153229159 +the:0.7352737062216996 this:0.15009435133829516 tbe:0.04937920011986653 said:0.04751593785408065 :0.01773680446605803 +One:0.12053592094372607 tion:0.07315644211392183 Some:0.056256509465813294 one:0.04857982719370828 :0.7014713002828307 +upon:0.37922010774469384 on:0.1312381107694932 and:0.05097504484128826 of:0.04178850889921169 :0.396778227745313 +conditions:0.46666156912919277 as:0.27047494426513063 of:0.10569690849079633 which:0.06913433735595491 :0.08803224075892532 +the:0.48184740752990146 a:0.10859937203084924 this:0.04241964006400224 their:0.03881912566493233 :0.3283144547103148 +and:0.23891347534453866 the:0.17475330046494061 a:0.10223049718733551 in:0.07541093157896611 :0.40869179542421913 +the:0.6118255171090304 any:0.04717295176578517 be:0.039430671919386026 a:0.03542393139120635 :0.2661469278145921 +and:0.19199324145312757 when:0.12468826226248611 that:0.12314098936160367 but:0.104926069482607 :0.4552514374401758 +is:0.38752303365180907 Is:0.2671697707450938 was:0.19059179693356385 has:0.030467525227399195 :0.12424787344213394 +the:0.28832613281582414 of:0.24690091163732306 in:0.23677029467956892 a:0.06506455082850822 :0.16293811003877562 +the:0.08438543278841572 and:0.07947605091395979 a:0.02389367764424123 but:0.0204496890449634 :0.7917951496084199 +of:0.9967516696422719 or:0.00017127606706078137 in:6.462722086405937e-05 ot:3.941231458745009e-05 :0.0029730147552158546 +the:0.2055451951075148 and:0.14895698711079397 The:0.13797621501616109 An:0.03307869651489058 :0.4744429062506395 +was:0.33762036017946573 is:0.2595036024333221 Is:0.02769553138034747 comes:0.018721846156954543 :0.35645865984991026 +to:0.7679586217277564 that:0.15814572878334499 the:0.0596051160219701 a:0.006562471770025561 :0.007728061696903031 +to:0.4236268232006315 into:0.22704187595480366 of:0.12665117759663083 against:0.11544750276874481 :0.10723262047918913 +the:0.5663348948633629 they:0.06459560355639998 he:0.045367006195988734 a:0.044943960148627414 :0.2787585352356211 +been:0.3394568146145236 put:0.0385970071900014 done:0.031885000417958186 succeeded:0.029751508848576007 :0.5603096689289406 +not:0.8337427034796618 have:0.0683484251229607 be:0.061944997023865134 never:0.006971024813221818 :0.02899284956029065 +desire:0.0005238233516837191 be:0.0004970225147791509 ant:0.000481973248695809 company:0.00042447159611736694 :0.9980727092887239 +friends:0.0837460142926866 father:0.03335261456007374 own:0.03130830764256864 mother:0.02574132383427424 :0.8258517396703967 +Sec.:0.7208530044540109 Section:0.008559286739702378 June:0.0013478562112106546 -:0.00010876755994849822 :0.26913108503512756 +I:0.3823485068227457 to:0.26466117652557625 We:0.1969565116799968 who:0.07427871614128652 :0.08175508883039462 +country,:0.027869334471322643 feet,:0.025690260763262352 great:0.0042246634432043665 wife,:0.003108295302408598 :0.9391074460198019 +the:0.18997600204702061 a:0.12588690829891916 and:0.10561888569168434 or:0.09215170167831976 :0.4863665022840561 +up:0.8473093856583349 of:0.030090595004141164 upon:0.022530851133481182 in:0.016487908835675604 :0.0835812593683671 +and:0.05472698300221444 article:0.027361913863059802 one:0.021230055772487984 floor:0.004800152475531764 :0.8918808948867059 +the:0.49230680672731525 a:0.11651637191405387 tho:0.04882048634208831 tbe:0.040534231912018916 :0.3018221031045236 +on:0.4779455419336942 in:0.15205742259726024 with:0.10981377994969554 like:0.08327364798606655 :0.17690960753328347 +is:0.6309103273418838 was:0.22611816901348955 Is:0.04058341127513908 has:0.025689367981217282 :0.07669872438827031 +of:0.37007012034635883 Range:0.13421812758498552 and:0.0636626200412946 The:0.04675758273391315 :0.3852915492934479 +the:0.26592685399081095 a:0.16036827995557876 good:0.05510638698394067 tho:0.04988548444195368 :0.468712994627716 +it:0.21504032525131694 far:0.044988287572770395 feet,:0.027438407999836045 the:0.00964047112308458 :0.7028925080529921 +a:0.9331277904600794 the:0.026838372968789864 upon:0.017525591182904976 was:0.011032454693394771 :0.011475790694831088 +and:0.2856686344711919 nor:0.21493396645765142 as:0.07892105449072061 but:0.04170720429167852 :0.3787691402887577 +day:0.04564716543767337 name:0.02471576467984335 use:0.016891172974959987 place:0.013870558815376905 :0.8988753380921464 +and:0.1057137030051046 the:0.0911003011666583 to:0.06526668461211155 of:0.05984716926154519 :0.6780721419545804 +to:0.22165619175533086 in:0.20352345405915928 of:0.19158723580103193 on:0.1861186774433219 :0.1971144409411559 +and:0.049491770977362896 ing:0.03968037583537352 enough:0.038060273255884715 ed:0.03263537734773336 :0.8401322025836455 +1:0.8471611403692317 t:0.015172480046218016 I:0.012087913951637103 and:0.009971403157036006 :0.11560706247587701 +behind:0.9690845063153797 of:0.027683066286295747 that:0.002158104679198491 to:0.000561954491477605 :0.0005123682276486034 +the:0.3517149826995039 a:0.07837730879396002 four:0.009981582961727827 which:0.009385767141245492 :0.5505403584035626 +the:0.2379503416342385 more:0.1373079145563842 ing:0.07922412639919732 and:0.0640353713833846 :0.4814822460267954 +done:0.18537641055565726 been:0.13072689214266725 seen:0.05516856725859964 won:0.027829887696291685 :0.6008982423467841 +and:0.051846386287867814 filled:0.051318431158454345 covered:0.03973844932752929 together:0.021377379081668268 :0.8357193541444802 +live:0.07209034971001482 eight:0.03473040597697111 15:0.007963342651381556 1:0.005917706397506986 :0.8792981952641253 +to:0.791598833763484 will:0.046093793385776724 not:0.013824140135520045 good,:0.009786854575117576 :0.13869637814010163 +died:0.03682532429011934 justice:0.02705782284582234 Congress:0.0147397622394617 looking:0.013827560165754552 :0.9075495304588421 +the:0.5192020276678465 of:0.07679322491462155 silver:0.02709967611034528 coal:0.01635222292514845 :0.36055284838203816 +be:0.34497005251306734 have:0.2626342184355097 not:0.08611129120115298 well:0.025950848427384102 :0.28033358942288594 +of:0.6944082195526032 and:0.05715744383580234 to:0.024072885504988963 ot:0.022400615213634983 :0.20196083589297048 +route:0.4101911170463356 the:0.13367835541107823 funds:0.09656420290255609 American:0.085379361689827 :0.2741869629502031 +the:0.47351060854525145 a:0.08150868623286615 this:0.04677413464155437 his:0.045106968418366804 :0.35309960216196123 +be,:0.0718787789828242 settled:0.04170983772061849 question:0.03443670563765518 up:0.02514874059966918 :0.826825937059233 +of:0.16806876374521337 in:0.15965887415224975 to:0.13204030512089718 with:0.1227454119499895 :0.41748664503165017 +through:0.26173000096598775 of:0.20910239571745862 and:0.14967074093923588 over:0.11345002264038699 :0.2660468397369309 +time:0.2846077513675973 hours:0.1660107849579584 sort:0.06490434605213725 months:0.055711748329927695 :0.4287653692923793 +largest:0.3963658505887562 best:0.2887399263748584 finest:0.11008587801261983 greatest:0.08322482686385653 :0.121583518159909 +eighteen:0.3283325544449053 forty:0.18621775301178387 five:0.07220244392552913 one:0.03272366845819141 :0.38052358015959037 +forth:0.27007936641216646 any:0.16860992837482364 in:0.054731307332349065 diseases:0.03207336041570197 :0.4745060374649588 +each:0.48749565951497154 the:0.09321236976620756 a:0.07813766652493262 this:0.03488278978776392 :0.30627151440612427 +largo:0.11431039144749204 good:0.09400060104226927 social:0.07941199736992785 few:0.07654847597450488 :0.6357285341658059 +the:0.4509455556422125 their:0.09444044242826374 a:0.05447237608888694 be:0.04493879282450776 :0.3552028330161291 +I:0.36833488392170344 he:0.32545564449593556 she:0.20921211492411787 they:0.02114421267107325 :0.07585314398716991 +of:0.4021297781123723 and:0.12712681260752687 in:0.0954064169603651 to:0.08051039011078012 :0.2948266022089555 +by:0.30738534908902876 in:0.2890938841241518 to:0.16049870499794108 on:0.14524770112157126 :0.09777436066730694 +and:0.750103020128541 or:0.15881710348188616 of:0.08440075637364812 end:0.0036782447137168944 :0.003000875302207859 +county:0.24161881493466225 condition:0.08338550699218499 country:0.08163200958995817 attention:0.053263206671670844 :0.5401004618115238 +to:0.4522312027714774 in:0.14820385327878882 of:0.12757893652665203 In:0.05992962002330275 :0.21205638739977903 +you:0.19704427139853578 you,:0.1960871525954732 against:0.052384660946565666 with:0.044040066642739094 :0.5104438484166862 +and:0.10459018774880856 but:0.0961110761529635 The:0.06926078148986575 conditions:0.05089900903402947 :0.6791389455743326 +It:0.22463743568823014 there:0.12768346710399098 it:0.09342222893225022 and:0.07383947868511354 :0.48041738959041513 +counties:0.11075064219833726 number:0.08737095554434117 privilege:0.06524096120929158 city:0.054370674264237646 :0.6822667667837923 +the:0.7820517543735787 tho:0.055844651053713945 a:0.04424002766342802 this:0.02102005918473436 :0.09684350772454502 +to:0.5961450774281195 and:0.0754824099476894 may:0.033233384735577215 for:0.03171211303577752 :0.26342701485283637 +the:0.5717368815412104 a:0.3993727098825203 his:0.010037389830297526 n:0.003532412437161155 :0.015320606308810537 +shape:0.12004626458871291 matter:0.06156734214143252 sale:0.05569137778085761 coat:0.042600535929579866 :0.7200944795594172 +not:0.9873931333569185 you:0.0033837686357873534 I:0.001732880771747266 1:0.0009526503710579327 :0.006537566864488741 +people:0.04382313706833841 fire:0.04196607740276586 history:0.03582521483155838 popular:0.0354870166996139 :0.8428985539977234 +of:0.20065061589492558 to:0.18346562735991218 from:0.13232314192981412 by:0.13135842520115878 :0.3522021896141894 +night.:0.010061295441607299 that:0.0039148945135160165 a:0.0036808882472814624 which:0.0032600553345375205 :0.9790828664630578 +at:0.326638662323284 in:0.2506575510930238 on:0.14255953908730576 a:0.14100475858767753 :0.13913948890870897 +severe:0.14496206625184951 heavy:0.08778841792827323 force:0.0622448078477805 few:0.04842939639159597 :0.6565753115805008 +corn:0.16653679870192892 cotton:0.05719104632707471 and:0.02720184885568589 wheat:0.02123831383211916 :0.7278319922831912 +call:0.07793905361578501 let:0.06569734280626816 make:0.06170703709046127 meet:0.03359028621484726 :0.761066280272638 +health:0.4366622530602456 danger:0.11419523437324675 life:0.11327537001761595 use:0.10197886990175987 :0.23388827264713177 +the:0.990375153612002 this:0.007067796685863512 its:0.0010205760559566 any:0.0007325139450109298 :0.0008039597011669825 +man:0.12505975196117924 chance:0.12295906857305472 large:0.10315127863059344 position:0.010967060032243955 :0.6378628408029287 +given:0.9494065356864304 sent:0.02584842709789011 published:0.009266653420287072 ordered:0.005412654094527024 :0.0100657297008655 +sion:0.042906608060238056 ment:0.03705831697891054 ment.:0.015387477860047006 .:0.011807081983075965 :0.8928405151177284 +me:0.7084705645402278 us:0.1784795758584343 him:0.06310282407160087 you:0.0336807571878425 :0.01626627834189447 +the:0.23806475289569562 or:0.10486345742463783 The:0.07941687363654096 an:0.07624936669859587 :0.5014055493445297 +world.:0.021533440358994512 country.:0.021458968216055457 city.:0.013915720545416 day.:0.01150189561531604 :0.931589975264218 +taken:0.08821110080334411 and:0.014245116541302096 in:0.005122378560044063 of:0.0038912307355865113 :0.8885301733597232 +hour:0.3418302408989157 portion:0.11237617099955528 movement:0.07371040609878193 day:0.03817558633637927 :0.4339075956663677 +and:0.06826661446341498 of:0.04120128778077011 the:0.032881352411777996 Thomas:0.01726892381043163 :0.8403818215336052 +summer:0.706975002893784 and:0.02532035105605807 return:0.02190214007829129 in:0.015708803025193563 :0.23009370294667322 +it:0.19556731030514155 second:0.05666768443615293 above:0.04309952614304515 letter:0.0408468077009346 :0.6638186714147257 +It:0.14824052532663035 and:0.10064856574841437 it:0.08219460259277558 the:0.05965387740554684 :0.6092624289266328 +a:0.2156232072499487 an:0.18570200211948729 the:0.17179436395475897 aforesaid:0.06417485497236419 :0.3627055717034407 +reached:0.598209478121582 produced:0.16780014951583283 on:0.10568418748450638 in:0.03738135681834308 :0.09092482805973576 +for:0.1884034309999026 and:0.17174437228831366 the:0.16457658675167885 to:0.14696169602483763 :0.3283139139352673 +of:0.9699433687166655 and:0.017662019439697727 cf:0.0081590270039391 the:0.0006877333733546175 :0.003547851466343132 +tions:0.45279241050790675 feel:0.250098989907548 which:0.0075625597959562245 and:0.006877928597621592 :0.2826681111909674 +of:0.5758787773075279 this:0.033503899215756895 I:0.029334526317809192 the:0.02155955559419113 :0.3397232415647151 +In:0.9517165129791726 in:0.026869966766993818 of:0.0038567715332929377 at:0.0008174408306919257 :0.016739307889848867 +the:0.7777891851840412 tho:0.012629790001087132 of:0.0045545419944809235 our:0.0038149455808443307 :0.20121153723954638 +the:0.2587648644221099 her:0.0768313064922002 our:0.05613248068466231 re:0.05492146154303027 :0.5533498868579972 +and:0.7359637501363172 the:0.043170251727887916 providing:0.017257412083692514 public:0.016735570931150197 :0.18687301512095209 +did:0.3599689003810087 will:0.19384806448641634 do:0.18123135066180537 could:0.15521215100060248 :0.10973953347016728 +the:0.24240462939068927 nnd:0.22357187648908522 that:0.09365268452041298 this:0.04903065784494825 :0.39134015175486425 +gold:0.34297839902998895 of:0.11534269854890468 lead:0.05423295620504354 that:0.02813961333550608 :0.45930633288055683 +to:0.4415415363332096 will:0.3194142749737059 They:0.07222422542983611 To:0.0365827747539958 :0.1302371885092526 +of:0.15671158691120157 and:0.1555849072477692 in:0.12026963088973384 to:0.10065550875946644 :0.4667783661918289 +of:0.36118602983305453 and:0.13821896635791747 the:0.1138524787868429 with:0.07531707176676121 :0.3114254532554239 +as:0.1303594932067448 and:0.09010272006150301 except:0.04290626156156839 but:0.04178965611674416 :0.6948418690534398 +Tbe:0.3127661085968057 or:0.2345952047216993 is:0.14722507393681467 and:0.02896580610552349 :0.2764478066391568 +of:0.17832485367065795 and:0.1090130968046962 to:0.05659788403588929 the:0.03318887641715963 :0.6228752890715968 +of:0.08862545662590521 and:0.07849486353153898 the:0.07339911435889446 to:0.031975342941151834 :0.7275052225425097 +north:0.996339244855623 up:0.001132535781551394 in:0.00026368973927780087 west:0.00023489053988627885 :0.0020296390836614378 +of:0.3117808463092407 or:0.061243356303220475 and:0.053653077617304784 the:0.051464700286502726 :0.5218580194837311 +which:0.17660662415796405 and:0.08000912646184656 It:0.07897420372614813 has:0.07870812669575344 :0.5857019189582877 +the:0.16475789132353588 more:0.1022533137279561 one.:0.06390349395802175 tho:0.06315971405575552 :0.6059255869347308 +the:0.7927878875343729 tbe:0.20561937404794137 tho:0.001209398580499506 said:0.00011417741101057764 :0.0002691624261756297 +a:0.6300735198332833 as:0.055183541830444355 the:0.05222647563548345 these:0.004965668539469458 :0.25755079416131954 +to:0.1705074592214472 the:0.07346350378983003 they:0.06280681918463961 thus:0.030515751235027706 :0.6627064665690556 +out:0.42604928184719026 over:0.23282143114291518 on:0.18445202927964072 with:0.08731710532662618 :0.06936015240362757 +the:0.9378334903835085 their:0.017962188322982044 a:0.017176098934680983 its:0.007766572308522646 :0.01926165005030578 +boy.:0.16906833636366025 girl.:0.1557300177987779 and:0.10106123324283173 the:0.08616327006575042 :0.4879771425289798 +and:0.051222099012666056 of:0.04520707514357516 had:0.031666576645912714 aud:0.03054271303989924 :0.8413615361579467 +formed:0.5059643076719417 form:0.14176658051441612 throw:0.13660632362196548 for:0.01750047109372946 :0.19816231709794738 +of:0.971310866645658 ol:0.013095468116077239 oi:0.011717727475919435 ot:0.001297167481669581 :0.0025787702806758525 +and:0.04222129787087571 Joseph:0.03557865928998516 of:0.032975757048619624 John:0.02690012994728857 :0.8623241558432311 +the:0.24832144913105136 to:0.13380021398574163 and:0.07133894529372006 a:0.0677424747657217 :0.47879691682376513 +of:0.061200363790127714 are:0.014778370459606687 recorded:0.014395415465235952 thereof,:0.012258681731553752 :0.8973671685534759 +the:0.2745610034215983 a:0.056993223073233665 that:0.021787144562627446 other:0.020253663608558757 :0.6264049653339818 +of:0.89412296766255 in:0.06348729434469456 ot:0.015373283479250818 called:0.015331948639488328 :0.011684505874016406 +and:0.4642631782647199 of:0.22215812484557299 the:0.08193056494468223 or:0.06537341390140108 :0.16627471804362384 +two:0.06545904644748733 use:0.05050119687490234 soon:0.04428331060926984 otherwise:0.027832007260655656 :0.8119244388076848 +and:0.1637052055161049 to:0.0694038648385573 the:0.06438555129405578 of:0.04505602304064845 :0.6574493553106335 +lots:0.3008128540911054 parcel:0.14537985237629333 block:0.02608557366212182 No.:0.004208796239049423 :0.52351292363143 +wrong:0.20535740593679735 in¬:0.0033514642344460296 noble:0.00279436525561609 more:0.0019411959674609175 :0.7865555686056797 +and:0.39652397343208545 to:0.1864393770203325 that:0.12594838620832652 or:0.11579371139214212 :0.17529455194711335 +every:0.14462813413461345 recorded:0.04622615231244497 located:0.014110695163980313 and:0.009699829162771475 :0.78533518922619 +to:0.5184905270060087 should:0.3555305535960318 better:0.02182198465436274 would:0.020851745692035965 :0.08330518905156094 +that:0.060091089638949984 and:0.049216629966163994 understand:0.038056616295060894 as:0.01545634034580104 :0.8371793237540242 +be:0.8623848792180362 bo:0.05693802711328245 from:0.04055604621944701 he:0.03381709715361296 :0.006303950295621302 +stated:0.2036284697513738 said:0.19816154969454988 says:0.12187256105271785 states:0.04816834351989965 :0.4281690759814588 +whole:0.4627853238123337 entire:0.43317914789812895 full:0.10355901217103104 probable:0.0003477764660740575 :0.00012873965243222356 +doubt:0.6638117672276832 feeling:0.057878269775594945 grounds:0.013146392951933811 man:0.005968819285924233 :0.2591947507588639 +over:0.6624375777254318 to:0.3125308190063222 through:0.01373985034171617 for:0.004847447506292618 :0.00644430542023719 +of:0.6204475148795383 commercial:0.03963483113167526 the:0.005827704343026815 wise:0.004380252429730585 :0.329709697216029 +chief:0.504969543371573 first:0.019828729277746274 last:0.011481462840511844 general:0.002867174136645976 :0.46085309037352296 +on:0.1902968738913804 the:0.12771585136007774 of:0.1130906573506895 and:0.08027056147395449 :0.48862605592389774 +no:0.24676220151627695 of:0.15580646534301545 or:0.12718091664830936 can:0.07488013505985391 :0.3953702814325444 +.:0.1642595007980439 A:0.15214715398411355 W:0.07936256160043614 S.:0.04809485038663093 :0.5561359332307756 +I:0.07350068614164357 love:0.06908677781607095 Washington:0.026202936738276107 is:0.012719653071791829 :0.8184899462322175 +to:0.03091388712311793 and:0.008396968779816502 the:0.005778106502743763 ner:0.002647187550112161 :0.9522638500442097 +that:0.3642899407364748 at:0.3093286821038959 within:0.20514471553254499 before:0.06265422806029804 :0.05858243356678628 +in:0.45217261894603583 on:0.198083704336487 In:0.14788462468109115 near:0.11015976727406139 :0.09169928476232463 +it:0.0795140958710728 him:0.04970897832108131 ed:0.048006715866513644 and:0.04527936005645545 :0.7774908498848769 +homes:0.0055464369548664065 own:0.005346014454066018 rights:0.005248328411700192 forces:0.003980544537292094 :0.9798786756420754 +its:0.13078081231970964 now:0.07469186634488409 t:0.06047231546685446 and:0.055247307760151326 :0.6788076981084005 +few:0.04200826346769786 half:0.03393815137231458 large:0.024938442683541538 little:0.022015419948231765 :0.8770997225282142 +of:0.29976478183487143 at:0.1217070196997959 by:0.1188117783915471 aud:0.10904225229611125 :0.35067416777767424 +appearance:0.22313938346164824 benefit:0.12370898496243239 use:0.09312725857466499 production:0.03932779111915786 :0.5206965818820964 +should:0.53639086820614 can:0.18596005127859658 to:0.10668965656434277 will:0.05908244756983615 :0.11187697638108446 +respect:0.07646358446770361 profit:0.06631855090006065 credit:0.03648037511342326 Ohio,:0.032587075623587695 :0.7881504138952248 +much:0.12395057161700875 some:0.11796627713873661 State:0.06846513300902463 plenty:0.05432497325475278 :0.6352930449804773 +be:0.8105941812128337 lie:0.04143021911546981 bo:0.039693504885150194 have:0.027282562593272726 :0.0809995321932738 +base:0.7186671081265777 road,:0.0730012216686521 street,:0.0030407884766540023 streets,:0.0029745195172254167 :0.20231636221089075 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +and:0.1310392008414269 Brown,:0.044727991416179246 ;:0.03693929113906268 of:0.01897030327009584 :0.7683232133332354 +for:0.1692134755024639 and:0.13457367691558791 in:0.11949397387644274 In:0.0936965796240883 :0.48302229408141706 +look:0.06933396822666861 enter:0.0676297392999331 call:0.06650403336033109 act:0.05016232791867615 :0.746369931194391 +to:0.38456548919626404 I:0.2249349581608212 It:0.12282024727214766 and:0.10185703311241229 :0.1658222722583548 +of:0.26946436537589863 The:0.09996189077898637 and:0.07552184416320709 Mr.:0.05993071145788529 :0.49512118822402257 +te:0.8277247461320888 might:0.03733252527068006 ever:0.03326661342004717 being:0.018717245855935937 :0.08295886932124809 +authorities:0.05634925102829585 bonds:0.04352703830998316 result:0.027263886183734893 actual:0.02307063099778367 :0.8497891934802027 +the:0.5845062626790073 his:0.29919799236111405 tbe:0.08227604804872188 where:0.007814307760547732 :0.02620538915060899 +premises:0.13589853051323736 and:0.05186748573882228 which:0.030965952056901107 I:0.027186122767819995 :0.7540819089232192 +own:0.23908332779911565 men:0.02634826791789389 men,:0.024102371623302747 American:0.01968521977073582 :0.690780812888952 +rates:0.832785232132007 cars:0.009848246454445592 and:0.009781040269544811 lines:0.006021088600691737 :0.1415643925433109 +value:0.10446071731943049 depth:0.09834373788375465 population:0.06886032549818832 distance:0.03706010372367264 :0.6912751155749539 +the:0.3771528034150668 its:0.3584973101613176 last:0.03266626229234464 of:0.007975843313083741 :0.22370778081818737 +and:0.09303790791761678 of:0.0754745517978357 the:0.053162957267971996 a:0.051699035014427845 :0.7266255480021475 +was:0.49240222190206023 is:0.25424556360219336 Is:0.043606875246503606 will:0.041701102132660574 :0.16804423711658226 +for:0.6327367170488974 of:0.10861677956442009 through:0.07760103757215976 in:0.06854988971398664 :0.11249557610053607 +had:0.2536079527378639 Government:0.013612804128469273 Grant:0.013012249289346465 not:0.00495595068536549 :0.7148110431589548 +of:0.2143647830262123 to:0.12742210114407143 in:0.12718517675146498 and:0.11988887000579905 :0.4111390690724521 +the:0.5159599882809782 a:0.24369853942465894 tho:0.02624708822349819 an:0.015023912470292352 :0.19907047160057229 +the:0.4730481760209974 a:0.08539064423245576 my:0.07021640044903303 this:0.037698116148522656 :0.3336466631489912 +in:0.3623650457062156 for:0.2743974184195881 In:0.09420539410380149 and:0.0674336796529764 :0.2015984621174183 +and:0.20004426765865915 the:0.10607435329947647 of:0.070030441587872 Chief:0.03900667609890816 :0.584844261355084 +the:0.13310996457181112 and:0.12661209900093282 of:0.07358840508834531 a:0.05965096124662 :0.6070385700922909 +a:0.8336323826749978 the:0.07352407662578529 his:0.06357602991565084 me:0.015012808227829022 :0.014254702555736859 +sympathy:0.12253284369489417 living:0.06180032696504918 touch:0.009163366477503654 travel:0.002516482948462122 :0.8039869799140907 +the:0.8185367221738604 public:0.0683123164075859 serious:0.062043587570110414 personal:0.019529027654955757 :0.03157834619348754 +be:0.6266063765484263 not:0.04556282098174557 put:0.0272791756593743 he:0.01829234405870276 :0.28225928275175105 +to:0.651138381382202 We:0.08899139769674086 and:0.08747651049861259 will:0.079933457345802 :0.09246025307664263 +most:0.12174684988614956 low:0.03985463491661763 he:0.01287510275580272 been:0.007658146305581215 :0.8178652661358489 +attention:0.04326943847886422 use:0.01883582129938329 people:0.017139224223251738 name:0.013902961961328964 :0.9068525540371719 +am:0.11067831949085545 have:0.06746447818682023 was:0.05061130195381324 the:0.04244857510896675 :0.7287973252595444 +one:0.9781895566615751 a:0.019409594623100226 of:0.0008556322122795108 the:0.0007884876288792948 :0.0007567288741656974 +an:0.9602399672674404 the:0.025657284516549486 each:0.00353472454565612 this:0.0018988030864823201 :0.00866922058387159 +the:0.09614858486904158 a:0.0669277751287494 other:0.0317879418747886 to:0.030330395546925834 :0.7748053025804945 +and:0.14630132356849765 the:0.08479727041608176 of:0.06683700931612194 to:0.05917448773252384 :0.6428899089667749 +expressed:0.21139083465607666 secure:0.03740642282326577 made:0.029893075654018365 found:0.0284780699719367 :0.6928315968947026 +State:0.03271804364489048 one:0.016860784064257946 the:0.014871456392409605 that:0.011864592504182493 :0.9236851233942596 +the:0.5534632129493846 a:0.09070104681268366 it:0.058790110940026875 they:0.056648174024786405 :0.2403974552731182 +the:0.1473069700400761 to:0.09241057876135624 and:0.09187400635705238 a:0.08967236555877528 :0.57873607928274 +The:0.18683389568111797 A:0.11965808329313278 the:0.09064198034518124 Mr.:0.06953238956270671 :0.5333336511178612 +the:0.40952607764662097 tho:0.1566763638080528 of:0.07104824174101777 higher:0.04136377294348104 :0.32138554386082746 +are:0.29446566588347656 were:0.15552296420700287 of:0.1343947681628139 c:0.019136464837726803 :0.3964801369089798 +moving:0.1689002056340679 form:0.00993667101486152 moved:0.009441955970318418 tire:0.0029495833096261368 :0.8087715840711259 +It:0.406479971919502 She:0.10274297945566081 it:0.09094154288518073 This:0.0734591098724243 :0.32637639586723216 +a:0.027335419740875 1:0.02389423283664581 lit:0.023464989307557596 at:0.02331574466004049 :0.9019896134548809 +is:0.15246243985944602 are:0.13265224166518866 was:0.09469770657907563 were:0.07173315183007091 :0.5484544600662189 +fast:0.14861678222602917 man,:0.10064288549788161 man:0.0996763539663595 girl:0.055788298728802414 :0.5952756795809273 +wit::0.23962210526621866 follows:0.020800527198983485 the:0.008466616002378625 .:0.0066443829936176525 :0.7244663685388018 +and:0.1332980062636938 is:0.12385250264905281 for:0.09586790435308601 home:0.06977695823247174 :0.5772046285016956 +portion:0.0011341073576324238 posed:0.0007103030817416249 1:0.00013675383565191053 motion:0.0001075608162967582 :0.9979112749086771 +from:0.29093952049261773 at:0.2838900918579751 upon:0.15853404565664223 to:0.14890891510847282 :0.11772742688429204 +was:0.36751523930243907 has:0.2293269743672744 are:0.1945202599781237 he:0.12049114307947803 :0.0881463832726848 +same:0.1367809820026782 extreme:0.11425828058602791 large:0.08492741448781634 German:0.022850141964246767 :0.6411831809592307 +have:0.13204869291110022 was:0.09682375253738845 would:0.08936514650468258 had:0.0825440686783277 :0.5992183393685011 +your:0.7195090297728379 the:0.14780282228181482 military:0.048789954063860184 a:0.018859884370907878 :0.06503830951057903 +A.:0.5989814552214688 B.:0.26774228348656104 A:0.05591618184613448 J:0.04273220491795082 :0.034627874527884905 +in:0.9116755296029206 to:0.03246819245819154 for:0.022063584555862572 and:0.0195479729319226 :0.014244720451102763 +bottom:0.08728162498457788 edge:0.06659602514261466 level:0.06062125414756062 office:0.03099509187051773 :0.754506003854729 +for:0.11556859800296537 to:0.08573216917956954 15:0.0608183219678728 ot:0.03686255886510188 :0.7010183519844905 +is:0.3182096152632789 was:0.30506202674077815 takes:0.22476977481162705 of:0.07898692580076716 :0.07297165738354884 +the:0.7603375069857823 a:0.0556034440760688 tho:0.04159916675200711 an:0.013329817670415026 :0.12913006451572673 +the:0.34110267078281686 a:0.042759313623994884 his:0.028917850859803997 their:0.019926080303669682 :0.5672940844297146 +party,:0.5768979805301823 way,:0.007698056281296524 country,:0.00595522266750374 way:0.004692404118663287 :0.40475633640235426 +the:0.9095144290189846 tho:0.03758117986698632 tbe:0.031127095327344617 be:0.010276777694215127 :0.011500518092469339 +of:0.18483715303747536 to:0.17439323723655908 in:0.17205129122409177 with:0.09606909438500114 :0.3726492241168727 +but:0.29865747068625703 our:0.18540325229823493 that:0.14133203365107339 and:0.1345864198407114 :0.24002082352372317 +of:0.07194417780050448 and:0.04423298013180746 that:0.017953063278456503 the:0.017332451275171638 :0.84853732751406 +It:0.6468479452320647 In:0.05305251849807955 it:0.0480017145596883 which:0.035661587693610323 :0.2164362340165572 +the:0.061616808130890696 ..:0.04290927327752138 tho:0.012334826603652127 a:0.005860406165137 :0.877278685822799 +and:0.19301086145710164 of:0.1685597544158384 the:0.07282287394405923 completely:0.056822180416686185 :0.5087843297663146 +first:0.42425026362628215 fourth:0.24193220655297193 second:0.055066376604882505 third:0.038427909254547955 :0.2403232439613156 +as:0.5072914634911087 when:0.3313467347991151 to:0.031897311299592085 at:0.024771385247960263 :0.10469310516222376 +the:0.5323820045604108 a:0.12147204906127189 and:0.05080753322988496 The:0.03861122687469375 :0.2567271862737384 +a:0.986436328211081 one:0.007314195959963374 to:0.004731416869037015 home.:0.00031101719545805005 :0.0012070417644605082 +and:0.09739083912120562 the:0.059309741798914614 of:0.05063051644897795 to:0.038309429732604705 :0.7543594728982972 +country.:0.059849755251928 war.:0.043980821362602604 city.:0.02821071908549756 world.:0.025105443170777945 :0.8428532611291937 +of:0.24204343958019142 The:0.12333690487845451 the:0.07565499870756594 and:0.07425475489626131 :0.48470990193752694 +well:0.5856325632641814 long:0.038795678696196524 quiet:0.03848567172182648 dull:0.02956534458215156 :0.30752074173564403 +made:0.0366408365467766 done:0.028415344610746813 seen:0.023999625520556185 approved:0.02331224960193388 :0.8876319437199864 +Missouri:0.059008322046513066 people:0.027057061393269976 party:0.018213256036233052 laws:0.01169182643058763 :0.8840295340933964 +of:0.15430257119136553 as:0.15199322544361352 for:0.14163808748802073 is:0.12310726033428324 :0.4289588555427169 +give:0.1949436173379518 at:0.1895773992832176 are:0.17618237127059622 in:0.11976757611319995 :0.3195290359950344 +memory:0.03615375119447678 party,:0.0322967814944548 children,:0.0241067550376565 speed:0.01178054664134879 :0.8956621656320631 +is:0.8090167693616523 was:0.1598468805007345 would:0.011019772367528463 he:0.010564193812233115 :0.009552383957851568 +him.:0.18055524507483006 it.:0.011104121056274738 them.:0.006466200965620595 ?:0.0017406297989763172 :0.8001338031042984 +other:0.035391301977107485 United:0.032545033611929765 the:0.026626086235636573 said:0.02486685627114909 :0.8805707219041771 +among:0.5336125864948175 to:0.2478086568303633 at:0.05582469597632352 with:0.051868114946079444 :0.11088594575241631 +allowed:0.27282824871480393 able:0.26005726243760274 likely:0.10652745126772904 permitted:0.08169683073027029 :0.27889020684959404 +night:0.27004602224721 and:0.174212886900412 for:0.17352997871212955 not:0.08055506296142897 :0.3016560491788194 +to:0.992480054908851 and:0.002664830657609248 not:0.001174036376614455 will:0.0010927354721766067 :0.0025883425847486687 +of:0.590353965603722 and:0.07982079915260845 the:0.029840410132090874 or:0.020508815890209843 :0.27947600922136867 +United:0.8810344732935819 Southern:0.021078989898067366 free:0.020455934617745402 I:0.001891847923777601 :0.07553875426682782 +end:0.1364251092126402 point:0.08424646353046235 foot:0.07924118159261617 head:0.0763435999718097 :0.6237436456924715 +their:0.17559461729901588 from:0.15338108725252686 the:0.13152095315966755 and:0.09786270056870207 :0.44164064172008766 +minds:0.054814082488147696 names:0.05386026867748171 attention:0.049642252486893565 lives:0.03499765859423095 :0.806685737753246 +and:0.4207099085167778 duly:0.252009883571712 was:0.0911085529309773 were:0.021715528896162697 :0.21445612608437026 +if:0.2661570288065796 and:0.19817006632928727 under:0.1618768985699998 that:0.11135021970572084 :0.26244578658841256 +the:0.24029713797550534 and:0.10509472360925105 their:0.06575535910182236 a:0.05738639228572558 :0.5314663870276956 +and:0.20380818280616297 of:0.12595958589183764 are:0.09766821328632426 does:0.09223420535367466 :0.4803298126620005 +heard:0.4951608868479702 too:0.14495122196860127 that:0.09733062113231797 as:0.08145233061398076 :0.18110493943712985 +in:0.1507001169845357 the:0.13965892647110492 his:0.07598352458683537 or:0.07165984680120685 :0.5619975851563171 +yet:0.17308034572061892 in:0.11285742783139872 declare:0.04496026089777268 says:0.04089707694429731 :0.6282048886059124 +vote:0.017711919477023882 general:0.01659745963729639 chance:0.013290218199846831 law:0.013137967491604289 :0.9392624351942286 +It:0.23241323125119356 st:0.20574349904428035 There:0.12379894357517746 and:0.09170067128177921 :0.34634365484756957 +-:0.013235473165430039 a:0.010789787976378123 an:0.007329204649064801 of:0.005200247520121887 :0.9634452866890049 +state:0.7648971403199926 population:0.04626770086118433 front:0.0176272390323276 number:0.010480201224812356 :0.1607277185616832 +other:0.02207634948170801 to:0.01593119419633965 the:0.013286516061768025 and:0.01095548689245948 :0.9377504533677249 +and:0.15052513766808923 the:0.06158578084151365 of:0.05969411511789138 to:0.030076983608469356 :0.6981179827640365 +C.:0.16489549044345775 Smith,:0.07151103516071644 Johnson,:0.01786184630092528 H.:0.016977755732407614 :0.7287538723624929 +to:0.41496189853126325 may:0.22311128556914034 note:0.04993195120084067 otherwise:0.03981412636598702 :0.2721807383327689 +and:0.39853530314606783 desire:0.26117026936279764 a:0.06704054174658572 the:0.03208530217352367 :0.24116858357102522 +and:0.23105852140156963 to:0.054905353824426115 of:0.05212440784420056 block:0.03393981016654951 :0.6279719067632541 +of:0.9826189234010074 uf:0.007545962864304769 oi:0.004710325667196846 ot:0.0017510515617761807 :0.0033737365057147917 +was:0.15615775422657616 of:0.08451126926483632 and:0.056935582047749726 is:0.0527509856580066 :0.6496444088028313 +com-:0.056157649303415796 the:0.050651297189487396 to:0.0443501384477086 and:0.04290783358061087 :0.8059330814787773 +of:0.8817101055630889 ol:0.08124239707123969 for:0.02009327533087434 by:0.011252217786344195 :0.005702004248452717 +see:0.2630362343756094 find:0.26080816005628304 learn:0.08452494843006378 be:0.04372313284693605 :0.3479075242911078 +for:0.6526112170394072 to:0.10561437296759837 tor:0.08308780328851638 and:0.06479887952487952 :0.09388772717959852 +know:0.4195091194575423 and:0.09090947749785983 mind:0.052438269408169015 see:0.049723678813904874 :0.387419454822524 +pro-:0.39588802447890264 own:0.2790993057147977 pro­:0.03243774838349375 first:0.02870572228102447 :0.2638691991417816 +of:0.334099323809657 in:0.22654038311227095 on:0.1096877935763176 from:0.07674128260022803 :0.2529312169015265 +on:0.9999841670857795 to:5.286569928861135e-06 and:4.546266252075205e-06 for:3.705747029748801e-06 :2.2943310097868004e-06 +After:0.33682096572227915 On:0.16058478777711757 Before:0.10814900608457759 and:0.07398737411914261 :0.32045786629688305 +came:0.178839062442878 went:0.026444618956784557 and:0.007080611306243252 race:0.002460598673125496 :0.785175108620969 +world:0.38668727931921104 world,:0.09373235841267424 case,:0.021820848480797867 matter,:0.01819864018485154 :0.47956087360246524 +the:0.5722876051856783 tho:0.20021560598061217 a:0.04327366591606275 this:0.01093958820002731 :0.17328353471761934 +same:0.009336420512206676 old:0.008933027419696987 great:0.008831079817603775 of:0.00835266864776058 :0.964546803602732 +his:0.6194779796305548 a:0.23067747714836742 bis:0.06641179585711161 the:0.03063336481715171 :0.052799382546814294 +are:0.34468893514065874 is:0.12361381823683093 was:0.11729863714798823 were:0.10552154934132839 :0.3088770601331937 +the:0.19831258653205844 and:0.10623473685238632 to:0.059848032612351366 of:0.04725785375936468 :0.5883467902438393 +was:0.34231305955511054 were:0.11975677759851455 by:0.08261770641247203 called:0.0745698522481629 :0.3807426041857401 +a:0.3881528841816978 the:0.10017063266585188 near:0.07202291827784242 Mr:0.07082208865960021 :0.36883147621500767 +be:0.43803827254277783 not:0.36359290766117464 bo:0.05923167214269253 have:0.03119989114106207 :0.107937256512293 +that:0.5558012303317602 which:0.16765167188340052 it:0.16101995086558574 or:0.07954196504561521 :0.03598518187363839 +of:0.41131776986538293 and:0.15160931082210996 with:0.08253466149400214 on:0.052172764625954625 :0.30236549319255057 +diseases:0.27650230600795755 ar:0.0675266039918455 tl:0.043783013766875135 A:0.02564547732065707 :0.5865425989126647 +of:0.19089436669107235 and:0.10819646093525465 are:0.04610946584959205 the:0.04246507779563035 :0.6123346287284506 +to:0.18991922781453208 at:0.12777698477265473 were:0.11285077929113144 in:0.10707735504792595 :0.4623756530737557 +with:0.5060638901190704 in:0.42319288625177903 at:0.011872036537509012 of:0.005494989067979406 :0.053376198023662204 +to:0.2233370876928324 4.:0.21759490416974764 in:0.029927129230491824 1:0.029854545084369095 :0.49928633382255894 +purposes:0.2190268138905346 payment:0.09047682424961978 publication:0.016448418061675386 business:0.011919283765450765 :0.6621286600327193 +She:0.42343673440701457 and:0.2339703058285081 Smith:0.12054395045080375 was:0.0692805997829266 :0.15276840953074705 +the:0.13222428155277768 and:0.11603436014928525 to:0.10289112283399093 in:0.06737325708699379 :0.5814769783769523 +on:0.2772289662665927 in:0.15476416126256443 by:0.14645457379584 is:0.07490531433455738 :0.3466469843404454 +the:0.3084433582965009 a:0.20750255458464997 one:0.1451638167706178 one-half:0.05932798549414342 :0.27956228485408796 +poor:0.10736045068396259 black:0.07230032551135084 young:0.06614732087908115 the:0.04447970158822626 :0.7097122013373792 +time,:0.7337925340516763 time:0.15390538463761905 which:0.015638206632529624 come:0.011308930215971165 :0.0853549444622038 +of:0.35562329988093083 with:0.28234287542775166 for:0.0915221476288434 in:0.059026881105523094 :0.211484795956951 +the:0.5285008218772688 this:0.07828432393436803 their:0.03672038768955282 our:0.03588441849001932 :0.32061004800879106 +by:0.47147972003016675 with:0.11059431243381145 at:0.10320822678993125 to:0.10166763258398775 :0.2130501081621028 +trees:0.003105164442819466 animals:0.00012857099828321396 those:8.944529239320949e-05 leaves:7.979302065455418e-05 :0.9965970262458492 +south:0.17859931057391923 N:0.15688908986818012 S:0.13772146314705505 running:0.10166427912901006 :0.4251258572818357 +the:0.5889794168472815 a:0.060590061554623056 tho:0.04332074140021809 of:0.02656253386237659 :0.28054724633550093 +are:0.15378556957994005 of:0.102605600179439 and:0.062174812969987066 in:0.04116876537002039 :0.6402652519006135 +described:0.25387330947063913 useful:0.03435938669173269 well:0.03284257632938101 proud:0.015994263927123945 :0.6629304635811234 +and:0.5336953230374446 are:0.057114999247129254 but:0.051923259603056285 if:0.048713592264036085 :0.3085528258483338 +of:0.3589533377676709 with:0.11347149352472292 by:0.09983355589247159 in:0.06213696278248184 :0.36560465003265297 +sound:0.1374139624033805 call:0.09303596632291189 turn:0.08636171247664363 had:0.07906094105020789 :0.604127417746856 +that:0.48441577804454267 the:0.17828917067238534 a:0.09987638101473865 how:0.07671900216558396 :0.16069966810274935 +now:0.11044147738815006 the:0.10656079996463463 thing:0.0942092347941121 very:0.05969050119711515 :0.629097986655988 +which:0.07787802257569586 there:0.07240822941461209 they:0.05394814874694958 eyes:0.0440045992214323 :0.7517610000413101 +of:0.32830300511454164 to:0.14746431412480865 in:0.1460882302565355 and:0.0732317408989945 :0.3049127096051197 +in:0.6687008943469509 such:0.015403782236425573 iu:0.009110006829888571 the:0.003299892115001441 :0.30348542447173354 +southwest:0.4131574126226321 the:0.34798087572225955 northeast:0.1404175167766586 a:0.05116404182360268 :0.047280153054847035 +out:0.07934696266420745 and:0.055653494890660245 one:0.034972033582478725 the:0.03365291867001859 :0.796374590192635 +the:0.5752838017740861 a:0.16265767228710773 equal:0.0780672029109013 to:0.02991007168349143 :0.15408125134441342 +':0.3703253195474475 was:0.2743818248833276 has:0.08730085908513563 had:0.05336814723356156 :0.21462384925052774 +the:0.5310096622558599 his:0.07440998291139882 their:0.06247075625335887 a:0.04706038131458628 :0.28504921726479604 +J.:0.10189531682184712 H.:0.0789410003608918 M.:0.07454657949397982 B.:0.05981313206884465 :0.6848039712544365 +The:0.43926147915667696 A:0.15750181465765575 Tbe:0.15216634011330224 the:0.09473575350359549 :0.15633461256876954 +and:0.8432908980215172 aud:0.07857492247433345 to:0.03275908355426769 the:0.018910400300997464 :0.026464695648884123 +the:0.2583720077449553 and:0.12228456932495042 The:0.07612282516523396 a:0.05809624232934602 :0.4851243554355143 +this:0.3239877107265677 the:0.3100706700240747 Ihe:0.12060434180966739 tho:0.0782036809234627 :0.16713359651622742 +it:0.633071262917195 and:0.25913137869409414 who:0.05802736333362661 we:0.0349319284672347 :0.014838066587849566 +the:0.6426954022722675 Its:0.12327578963767023 our:0.09887606132518276 some:0.0872311835551818 :0.04792156320969772 +meet:0.30679889313625996 make:0.04171593105536543 get:0.03982087486219006 drive:0.03855168087822805 :0.5731126200679563 +three:0.2522548445089157 week:0.023427977115295193 year:0.01095593259552999 day:0.010251114923934096 :0.703110130856325 +I:0.47244232060113694 it:0.08429392899225517 his:0.05322813755551809 they:0.02675171654577316 :0.3632838963053166 +am:0.7778644330576938 don't:0.0455606533723325 was:0.043323846959531384 have:0.03329584723527416 :0.09995521937516808 +take:0.4626094650283599 the:0.1473578218630349 give:0.05674155634625663 be:0.05491740492013046 :0.278373751842218 +de-:0.3415452649194153 George:0.08609806947677882 bonds:0.03757140864743503 road:0.01647103600611612 :0.5183142209502548 +and:0.9552731992426787 aud:0.019269394304519145 ail:0.009513407983822681 ami:0.0092480588725037 :0.006695939596475602 +and:0.39119559718751334 that:0.0990512800430357 But:0.057891617649922684 as:0.05216419847156364 :0.39969730664796477 +and:0.37631823545129917 at:0.18045040665738651 that:0.10386828015858135 to:0.0906209539754355 :0.24874212375729743 +in:0.47308926140951507 In:0.08427552299909276 with:0.06166969084255847 no:0.022087425387926813 :0.35887809936090703 +more:0.5198652631028492 of:0.3385152634911402 from:0.0785479807988563 equally:0.01531636214834683 :0.0477551304588075 +the:0.36365669183833393 p:0.006590036093197257 a:0.005439713634610828 -:0.003130576360623319 :0.6211829820732346 +was:0.43387522306089177 year:0.2398895822922977 is:0.06762872993799016 will:0.04775680389572345 :0.21084966081309697 +been:0.45950562987766325 appeared:0.041021356299109295 lived:0.03181645006435793 followed:0.02482019616517836 :0.44283636759369116 +by:0.28907076541280646 in:0.1958477046965644 to:0.17673437116642024 en:0.07159707006891201 :0.26675008865529704 +the:0.2568522616360675 and:0.15700042478903237 The:0.1335235776275149 Russian:0.09667130033788508 :0.3559524356095003 +said:0.021785651845380713 the:0.021400702290324255 most:0.012672694261125451 United:0.010250338273327398 :0.9338906133298422 +and:0.15680990621158541 of:0.1112879361947839 to:0.10978455332034458 the:0.10286149834653731 :0.5192561059267488 +i:0.036075475068520775 party.:0.02866316089991373 and:0.014510846329829312 but:0.013726022693266617 :0.9070244950084696 +and:0.15324177167742797 of:0.12369515811295177 the:0.08984717123581358 The:0.050605705093274396 :0.5826101938805323 +a:0.9965213838387948 full:0.0004593167464520486 I:0.0002488263920301317 further:5.105930375321164e-05 :0.0027194137189696667 +the:0.6914715755544608 tbo:0.27144560694351283 our:0.009131549699797488 The:0.008047716317531983 :0.019903551484696927 +and:0.31944443188509075 to:0.2821741505594204 the:0.029727600773629327 it.:0.02842111170119253 :0.34023270508066694 +his:0.7393406473996776 it,:0.0658221471686803 them:0.04912021094583452 her:0.04068804591729269 :0.10502894856851501 +it:0.8925637112691398 he:0.054338237725398156 sho:0.007738350867182349 there:0.005983649337766777 :0.03937605080051288 +or:0.07854315254075432 stage:0.036864371538051645 sections:0.01643358429954597 power,:0.011913737195811831 :0.8562451544258363 +about:0.26569385044379423 land:0.1444590990723264 the:0.06416698435916711 five:0.04947665342648549 :0.4762034126982269 +avoid:0.6022183684973442 be:0.25241245590742545 has:0.015887624285664582 which:0.015026562562768084 :0.11445498874679759 +the:0.28280579373327186 a:0.20824719461447114 electric:0.10861246927456654 ex-:0.04366805217127236 :0.35666649020641816 +of:0.19856637820941112 and:0.14380397954457805 by:0.04747101241757272 to:0.0296974494035302 :0.5804611804249079 +state:0.10785912084316887 number:0.052817937386472974 spirit:0.05067136816273395 series:0.04537247635130275 :0.7432790972563215 +the:0.1778684029549431 and:0.12375695098146293 of:0.06461418255895188 to:0.040480132473424 :0.5932803310312181 +the:0.6867695008047093 a:0.21119840893093852 an:0.026738977191645214 certain:0.011638956547766418 :0.06365415652494041 +pretty:0.31920856531560377 popular:0.10411004388284761 ice:0.08450429344394424 now:0.058579599670504676 :0.43359749768709965 +distance:0.46358351895985417 miles:0.11022124184681384 reason:0.06914541705983723 inches:0.022354259428851934 :0.33469556270464285 +extend:0.0018714072803762444 learn:0.0012834519587341686 color:0.0012026554655882636 report:0.0011976047509627268 :0.9944448805443387 +events:0.34951768518872395 chains:0.05795068756524424 state:0.03769676229489503 law:0.0033052192045379745 :0.5515296457465987 +and:0.2914064630353097 but:0.12072528286484234 that:0.08064287054134746 as:0.07017098778561277 :0.4370543957728877 +the:0.9245771058507266 th:0.06093783491209916 3:0.005010514515465202 tho:0.004546484727903117 :0.0049280599938057775 +The:0.27633439525145703 and:0.23057237838498298 the:0.05838614678495013 to:0.04514105569436246 :0.3895660238842474 +the:0.08844278606675138 it:0.07513209922231967 and:0.03457168376519958 a:0.031212631187626814 :0.7706407997581027 +board:0.1958439006967142 development:0.09601061630939389 balance:0.041880973810264 laws:0.02583515510729673 :0.6404293540763312 +by:0.12853603983091627 and:0.10641741040857498 of:0.09887893871233845 the:0.08784654905284407 :0.5783210619953263 +men:0.08906975401725999 that:0.07101655994523413 side:0.05171571392499069 he:0.009618734175565795 :0.7785792379369495 +with:0.20875000599009638 can:0.16124079358762328 of:0.14572806419212994 that:0.1348800012753808 :0.34940113495476965 +and:0.14070991230672528 of:0.13009968480267553 the:0.09422399129617713 The:0.05696162405409914 :0.5780047875403229 +American:0.34173804806289443 young:0.16729315420732777 whole:0.08112184261813506 the:0.06685290622756157 :0.3429940488840811 +Is:0.1634323485299373 is:0.13929953589518881 down:0.10474326571994727 and:0.09315618156731387 :0.4993686682876128 +five:0.423808470345754 three:0.1250660163713925 twenty:0.12356866005522102 30:0.10305725711853612 :0.2244995961090964 +a:0.44143021338331107 the:0.2166328328582948 an:0.027221336910110114 two:0.02441642240504811 :0.29029919444323593 +to:0.9809285646982437 the:0.0054826498053451335 a:0.00340582118644524 and:0.0013717334340045163 :0.008811230875961263 +of:0.595477049921425 that:0.13251997941273289 and:0.06562543316354817 to:0.038705344822717036 :0.1676721926795769 +eight:0.10886107521577079 ten:0.09806148915265635 14:0.054720944624646634 seven:0.048737554906719015 :0.6896189361002073 +we:0.6983465892254204 they:0.10517944589696575 and:0.07404183303007042 I:0.05721309947402818 :0.06521903237351513 +as:0.33951574626352843 who:0.19571024133710896 which:0.19084343829474804 that:0.14232058988300533 :0.1316099842216094 +and:0.17878676650530195 the:0.06426809182169604 of:0.05999860836477079 to:0.037006154865090846 :0.6599403784431404 +and:0.1642014397695324 or:0.14919727954770712 to:0.09377805636601959 he:0.07986604137211023 :0.5129571829446308 +to:0.9999996529793556 bis:8.764297179117741e-08 of:5.611519329608692e-08 the:3.8810817663107446e-08 :1.6445166169706334e-07 +the:0.5610129759093434 of:0.25026277190651924 in:0.07406038567454455 Of:0.013354650004823436 :0.1013092165047695 +do:0.025260973931700806 which:0.01969860706124421 that:0.009839236160431412 about:0.007911381482778994 :0.9372898013638445 +arrived:0.1382866722592481 was:0.1133107851422363 and:0.0729444100098975 were:0.03629776873817523 :0.6391603638504428 +of:0.23142849790022843 and:0.17356077546948204 in:0.12131730043960683 to:0.10047972487917085 :0.3732137013115118 +the:0.8850971519120943 a:0.09874475634087779 direct:0.0065708678801181435 new:0.0024252627160470277 :0.007161961150862789 +killed:0.054799052054056024 arrested:0.04646062078557978 accompanied:0.03962369708660899 shot:0.03620651025808705 :0.8229101198156682 +couple:0.9138690589835863 number:0.06392940206746384 plan:0.0014964340901190776 matter:0.0010515520204285333 :0.019653552838402283 +sympathy:0.37038610018746415 connection:0.11110230279727949 credit:0.07077659416978209 business:0.019230841224335434 :0.4285041616211387 +their:0.4268075324036297 her:0.2695799762777939 our:0.14847498316056135 his:0.060245504700789446 :0.09489200345722551 +at:0.9109864036898341 the:0.031004647181126582 for:0.010739893767725805 his:0.008411217607138331 :0.03885783775417519 +said:0.4684184068943428 going:0.2689664112648795 not:0.12456668554910023 this:0.022555542542262226 :0.11549295374941537 +other:0.2421285525154521 man:0.20300526582219225 seemed:0.1802040197707428 of:0.16796305417492982 :0.20669910771668304 +companies:0.017716522465537243 of:0.007727707694948689 count:0.007203411656143392 in:0.003943783487542329 :0.9634085746958283 +a:0.1675021147956998 of:0.10777791823341319 the:0.06350973510982245 and:0.04755435260167107 :0.6136558792593936 +the:0.9919595698800311 tne:0.004784523484869972 it:0.0021132957290940263 its:0.0006599382711584476 :0.00048267263484640246 +and:0.1902678577955815 The:0.10089453430437799 the:0.08682092758674746 of:0.07710430386117993 :0.5449123764521131 +that:0.421219822981638 because:0.13097604886800182 by:0.11828593583036924 of:0.09899365836425837 :0.23052453395573244 +of:0.023494772573842537 to:0.008893729687878547 and:0.007876483922979545 street:0.006641360494677522 :0.9530936533206218 +you:0.6434077453935663 defendant:0.35564067358096574 ou:2.3108156619569916e-05 John:8.348082335777084e-06 :0.0009201247865128274 +or:0.32994007950628973 any:0.12732974169757263 the:0.10929510020230068 a:0.06688156512195274 :0.36655351347188425 +and:0.062155916239716814 away:0.032951524574403576 ing:0.016376884066548497 out:0.015241711260536953 :0.8732739638587941 +the:0.3019321502243522 a:0.2354581144076962 his:0.09479164318311566 their:0.042517554604654575 :0.32530053758018146 +be:0.8955153889225991 he:0.03765071026586654 not:0.024068239537082495 been:0.02299409929714496 :0.01977156197730713 +hands:0.23111713951544077 ground:0.15853989603019444 bread:0.07205886108381637 house:0.0669993955945725 :0.47128470777597586 +to:0.4328186520042166 of:0.4000343336119707 for:0.09242413992905359 and:0.019080384344149808 :0.05564249011060914 +was:0.29670525037916173 is:0.11736859148349786 the:0.0029889687571941666 has:0.0006354520050172878 :0.582301737375129 +the:0.00019603847557882987 ;:0.00016804129340044257 expenses:0.00011673123282698597 rapidly:8.919706736341777e-05 :0.9994299919308305 +and:0.240324759730555 the:0.22336716504581708 to:0.06677385325260082 The:0.04838174961630776 :0.42115247235471936 +and:0.7761477890494258 I:0.08325098565849538 we:0.0765635187853755 which:0.03667526875641227 :0.027362437750291173 +the:0.5887044696795078 a:0.09259756456858484 The:0.057890754434709826 little:0.024606705127386913 :0.23620050618981064 +of:0.30065492192045423 at:0.23943493047307518 in:0.2362338532422 the:0.15412815638526284 :0.06954813797900758 +to:0.13674555892278345 and:0.12260258751626618 of:0.0662644134174341 the:0.03830605506525097 :0.6360813850782653 +president:0.10278500782916888 ad-:0.06038600771707515 re-:0.02161736034659156 ma-:0.02064416060611416 :0.7945674635010501 +the:0.479724208082641 this:0.06921848677030325 a:0.05915024206745534 his:0.03645836022216652 :0.35544870285743385 +or:0.6464062523677465 any:0.13890557334763393 a:0.03994935463318526 the:0.03054331682513832 :0.14419550282629598 +to:0.9089473031383501 in:0.04279251858104785 what:0.03733585726922791 that:0.005821819165408716 :0.005102501845965346 +the:0.9959296683544584 our:0.003042238095654298 this:0.00039940911259098134 tho:0.00024846598106749494 :0.0003802184562287795 +of:0.2382831512858558 for:0.23133430879765868 in:0.21215807330452474 to:0.14601741061966014 :0.17220705599230057 +made:0.2020570276111027 appointed:0.1260840252718643 in:0.1253607480321533 offered:0.10104017889568995 :0.44545802018918995 +and:0.18882127486444986 of:0.17982298520620357 had:0.10283013753349146 which:0.10160324597203439 :0.42692235642382065 +that:0.7867949255656681 as:0.02069005623694269 when:0.011212002850070513 far:0.01121071792439245 :0.17009229742292628 +said:0.6608243426948968 found:0.039454810513234295 decided:0.013341723951382238 discovered:0.013116081884162818 :0.273263040956324 +Lake:0.31368381816649904 great:0.24533461832445708 gold:0.19349130956571034 original:0.020397592791510075 :0.22709266115182336 +and:0.1653843826836206 of:0.07590989439698488 the:0.07506436048124561 to:0.03348748357168625 :0.6501538788664626 +news:0.08878398009405368 people:0.05467268309027769 effect:0.03547502909856767 course:0.031155212919714157 :0.7899130947973868 +its:0.20216869027265463 my:0.1827740392015172 a:0.13740761572879084 which,:0.09424043808636935 :0.3834092167106679 +to:0.9655846108806158 can:0.010730361514834684 will:0.010210807613303261 did:0.006056162301675426 :0.007418057689570939 +own:0.17148196833185098 place:0.13738423243954354 body:0.0777145016450115 people:0.040363297590479574 :0.5730559999931144 +the:0.3922268546055211 this:0.03644196072419067 a:0.02872675665385611 Mr.:0.026010140524362315 :0.51659428749207 +as:0.36609571450038175 and:0.09004798957982017 largo:0.062152607255076174 ed:0.03777960700840122 :0.4439240816563206 +established:0.7992829828976835 central:0.037008834760048646 German:0.02925389771927842 Mexican:0.026692763523453948 :0.10776152109953531 +of:0.934102010501677 the:0.04947053322568047 he:0.004845079671548552 few:0.0017024671936250613 :0.009879909407469006 +as:0.8710658423066587 ;:0.03538963678003404 should:0.027081568706898797 can:0.024075407902829447 :0.04238754430357884 +lady:0.055865838409413074 street:0.034983227049859386 first:0.028464537428182904 great:0.023878719592225334 :0.8568076775203193 +the:0.9728719774789427 a:0.0253801041200434 tho:0.0006513582723764543 th:0.0006417177727146133 :0.00045484235592291853 +large:0.041441027102544534 the:0.038930834961527494 great:0.028880038478970055 few:0.02198642117188952 :0.8687616782850683 +end:0.875856577179818 hour:0.03672209989559562 days:0.012086432269946967 close:0.011323811664286377 :0.06401107899035309 +was:0.5855514520279518 be:0.13351262377072085 is:0.1259561284953649 Is:0.04505686604062854 :0.10992292966533411 +In:0.18756084004124765 and:0.09562826068781562 with:0.08500199926691913 As:0.07490936012891125 :0.5568995398751063 +whole:0.05449662765740815 last:0.017902388140166283 American:0.016381315999353902 new:0.014984455543121288 :0.8962352126599505 +that:0.30471231102926327 of:0.2029535923139281 by:0.09588170167002454 in:0.09504145434624038 :0.3014109406405437 +heavy:0.26957125094536194 clothes:0.021398026837721646 the:0.018799426245540034 sale:0.017812082855428474 :0.672419213115948 +the:0.2123549188509744 and:0.10024151714455884 of:0.09386862415494562 was:0.05793592377462963 :0.5355990160748914 +will:0.05128520407688424 I:0.03687625721097644 a:0.00967035828729712 was:0.009079804844012006 :0.8930883755808302 +the:0.2384562787833626 Congress:0.0009109137351365665 he:0.0004232737120384471 11:0.0003646840300173272 :0.759844849739445 +the:0.116914324936012 and:0.09944442753374046 of:0.0916529917714443 to:0.0728422874948933 :0.6191459682639101 +its:0.41913807176991685 the:0.25095625382420256 tho:0.24682612106692842 their:0.06688654561354107 :0.01619300772541101 +of:0.16180695062644862 and:0.11666892483072093 to:0.09251796767303438 in:0.08947803302656838 :0.5395281238432277 +sleep:0.11996398566442278 may:0.11183279486045737 read:0.059203363500702676 eat:0.05323965687032313 :0.655760199104094 +they:0.622196332743051 of:0.13921298892333916 and:0.10261719707951845 that:0.050544149967665236 :0.08542933128642606 +United:0.9187907458906039 Southern:0.014515487799700598 following:0.005893903984408257 two:0.0034928229695355972 :0.057307039355751536 +the:0.0255010837743988 most:0.021687494160549898 same:0.019226214674366148 said:0.016888846987884433 :0.9166963604028006 +a:0.6858377002371675 of:0.2668872126086048 and:0.012009605405893308 the:0.005162822658368812 :0.030102659089965383 +of:0.5504126377468954 is:0.13893136589594726 for:0.12430937355722665 was:0.0210799447148767 :0.16526667808505374 +and:0.16173224460157337 the:0.15247244611575494 The:0.14753388054761324 political:0.12159400619210585 :0.41666742254295275 +of:0.8050916556892418 ol:0.10974927747139697 or:0.02732306400156197 during:0.006973047770000777 :0.05086295506779839 +the:0.08123822683484697 of:0.05449390270410906 and:0.04243983537239861 a:0.0352467890454894 :0.7865812460431559 +turn:0.08082182799737454 liable:0.03974663217165081 port:0.021845521677005427 turned:0.014738441350509796 :0.8428475768034595 +him:0.39168566312619035 them:0.1943882553743633 you:0.10782497434468737 is:0.06810892052072175 :0.2379921866340373 +feet:0.7250087791827721 chains:0.21995082944239858 feet,:0.03965509658283731 ft:0.008248653517515605 :0.007136641274476312 +covered:0.9910396518870941 furnished:0.0006837906896597465 laid:0.0004687825405253958 made:0.00021158036302978183 :0.007596194519690811 +people.:0.0010953170215701503 life.:0.00101695142882575 State.:0.00017556384376321652 market:0.0001718802013000767 :0.9975402875045406 +payment:0.04914318956839848 interest:0.0301429639006368 estate:0.02739568665179443 property:0.027085484756365963 :0.8662326751228042 +tie:0.01715957488297232 .:0.016813702594460203 the:0.008461392186998703 i:0.008342088589542279 :0.9492232417460266 +guests:0.31902406374455666 also:0.21770589711295538 kept:0.1769506045629579 sold:0.049484309668450015 :0.23683512491108005 +and:0.1289834828795364 At:0.10513960979640989 of:0.09978684952160283 the:0.07730381724951386 :0.588786240552937 +it:0.37245778264353563 there:0.26898939701061186 that:0.15399546908633857 this:0.09433525586787112 :0.11022209539164292 +stomach:0.06898833903759087 the:0.01867616234694741 children:0.014678222417478149 law:0.004912135315109819 :0.8927451408828737 +office:0.10550488697903397 hands:0.0486458375633884 history:0.03532489398025888 face:0.0272085177432372 :0.7833158637340817 +a:0.3340588153287234 and:0.18483045803809983 to:0.14215609168000096 bo:0.10253189717623795 :0.23642273777693795 +are:0.2110120443799263 sons:0.16721679093485436 wore:0.1391290553747175 men:0.11616443128144166 :0.36647767802906017 +and:0.11283785883780907 of:0.08598324018253871 the:0.08138816052144537 to:0.042758182778592606 :0.6770325576796142 +lie:0.11269261960234327 a:0.07658787410562413 At:0.03943908600725092 the:0.03345858671497934 :0.7378218335698025 +the:0.39967383013492025 -:0.24976828031810308 tho:0.2091491110716114 The:0.0831608904316095 :0.058247888043755906 +of:0.7919259365287927 The:0.05792580713488986 in:0.04017315522864422 the:0.035803575581110754 :0.07417152552656252 +and:0.1278329458409069 to:0.11497810726681913 Mr.:0.10792802264090993 by:0.10138751421540163 :0.5478734100359623 +love:0.15543755090556088 little:0.050864330852425615 man:0.04244329155363539 country:0.010087917104975648 :0.7411669095834025 +the:0.7876409773882279 this:0.1295734061144098 a:0.06937517640448387 our:0.007363129535438699 :0.006047310557439887 +the:0.12402857444365614 eyes:0.11007189527330817 own:0.05509163369741682 poor:0.037044606997925146 :0.6737632895876937 +No.:0.21433128649718836 Block:0.2062794509732636 1,:0.16136515710052723 2,:0.08041426948194877 :0.33760983594707206 +man:0.7590877116737641 son:0.0871103354786209 friend:0.028923309965951504 wife:0.008136065088932887 :0.11674257779273056 +government:0.1740044770833298 President:0.12315729497080233 people:0.027701589936532486 court:0.02410407091059071 :0.6510325670987447 +it:0.9846336309337549 themselves:0.00577908638435408 turned:0.0018234838707399464 gone:0.0010210262537832554 :0.006742772557367581 +not:0.3780003796101314 hereby:0.17378094445194828 being:0.10235835788834295 usually:0.046441264258201484 :0.29941905379137584 +at:0.20087160595740972 beyond:0.17429249939148322 as:0.08925610825814888 upon:0.08531827610158695 :0.45026151029137124 +all:0.3627129574983973 the:0.1798780856943628 from:0.11696996664633508 aa:0.07612117629778817 :0.26431781386311654 +the:0.3807539834489318 a:0.06711229205149828 be:0.0643624335876537 his:0.026998384009106487 :0.4607729069028097 +camp:0.9667816749712391 race:0.007127465316638567 leave:0.0032694468409250376 tire:0.003069002652878499 :0.019752410218318767 +house,:0.07588890672933084 turn:0.0736832330813255 of:0.047612074644390885 station:0.03959254419728851 :0.7632232413476644 +to:0.3328628874405561 until:0.16568553578975928 up:0.1511345101380236 over:0.14854091832067567 :0.20177614831098542 +the:0.9976576958454755 tlie:0.0010236058741334246 tho:0.0008132770753403745 tne:0.000377498503538676 :0.00012792270151202592 +the:0.13373174394504744 a:0.08025805127126864 other:0.02522245060022262 his:0.018601334477254938 :0.7421864197062064 +of:0.3948060667010258 to:0.12822282436534874 in:0.11954178313313 and:0.05103215040440559 :0.3063971753960899 +to:0.5998895299992573 a:0.07935351193114087 the:0.0643215321783606 he:0.05566224099112501 :0.2007731849001162 +the:0.8332010877223291 his:0.07313105227501489 of:0.023346296705201438 bis:0.014287851945346023 :0.05603371135210847 +which:0.2649577522466006 It:0.1339727426611681 it:0.08462621841604354 This:0.06317652141483067 :0.45326676526135706 +is:0.6831626162680509 was:0.1825248981728922 Is:0.043915329444542094 3:0.018645272118302924 :0.07175188399621182 +the:0.8695734115714755 tho:0.07464236373665593 tbe:0.01742243906683188 tlie:0.011173812425172543 :0.027187973199864143 +in:0.25545501661275816 of:0.24485704762270594 from:0.22026068067735444 to:0.1231190798878924 :0.1563081751992892 +to:0.7296666777215007 never:0.12543088617783793 and:0.0844918279381787 not:0.040410612850226256 :0.01999999531225635 +man:0.07666432454851806 nation:0.0352309018688184 and:0.03133839685447019 people:0.029034548511315417 :0.827731828216878 +is:0.02260712861696204 Is:0.01624716527595721 for:0.015995826846411917 to:0.004050418106182554 :0.9410994611544862 +land:0.09636681932702855 legal:0.07143447046801937 the:0.05547098252209978 one:0.05009423102574754 :0.7266334966571047 +fresh:0.12443068799923238 other:0.09256962520823703 the:0.06046858171915473 a:0.051598849800045914 :0.6709322552733299 +act,:0.35067412467836967 amendment:0.2542354116635597 act:0.14299095365667883 section:0.06434228513120749 :0.18775722487018445 +that:0.9215715120732308 before,:0.010866339687175205 that,:0.007562842923137618 not:0.006508895291364155 :0.053490410025092056 +the:0.5261361067363457 its:0.15180244857316313 this:0.06936654689577176 our:0.056183038665152736 :0.19651185912956662 +had:0.3888902326406579 has:0.18583092843402163 carried:0.1373473672742831 received:0.10585669587466337 :0.18207477577637401 +We:0.0748632174918391 and:0.07435790538801652 they:0.039030563036560884 which:0.02008471641005508 :0.7916635976735283 +the:0.27644307557072595 of:0.14795167257918185 tbe:0.058703511809394114 and:0.057886793483208444 :0.4590149465574897 +the:0.775393985854276 tlio:0.05856678390746528 national:0.05150913362184139 tho:0.03327643158100362 :0.08125366503541373 +plat:0.9565694529693272 terms:0.0021403555445131213 principal:0.0018429560792569367 owners:0.001502450491457416 :0.03794478491544528 +a:0.3279361212448188 the:0.14148569954037302 been:0.034554248534324344 to:0.019059505097185143 :0.4769644255832988 +him:0.24125707647211722 me:0.14642462032196635 them:0.14073814590100373 us:0.11842030566065621 :0.3531598516442566 +large:0.05277707796761606 small:0.028449674438177044 few:0.026201253977234922 very:0.023397971331536958 :0.869174022285435 +the:0.09895068957479831 many:0.044241452720467034 Mr.:0.01420628620766366 his:0.008718594047033274 :0.8338829774500376 +and:0.21848697573176176 the:0.17392391866661128 of:0.11178723128086115 The:0.07873325997313667 :0.4170686143476292 +time:0.9831222002941739 time,:0.0022463987269910686 while:0.0010776819524238924 as:0.0007878527560307763 :0.01276586627038026 +men:0.055982219504845464 points:0.04407833555595858 things:0.04001132374226695 then:0.03785987252532671 :0.8220682486716023 +and:0.3898781670529233 on:0.19203141349751357 they:0.14296753021679945 we:0.10849155850893075 :0.16663133072383296 +making:0.204949918117241 pre-:0.08959477869506884 been:0.08648268090717101 a:0.07953210547097712 :0.5394405168095421 +satisfied:0.7187867469449534 fed:0.05785671074240324 represented:0.029509112741745974 filled:0.0034585166159145095 :0.19038891295498284 +of:0.4487569194940223 in:0.21002401617426864 under:0.09707610102106799 which:0.08837204843334405 :0.15577091487729705 +the:0.668920489308045 of:0.08651760086199893 their:0.08260235442440318 In:0.04993914346167232 :0.11202041194388059 +with:0.3982880381981891 and:0.18407156621890103 as:0.1464475642755617 than:0.12029640668249429 :0.15089642462485386 +that:0.5709805793688326 to:0.2944862698664839 by:0.11453133661652609 in:0.01211189894899915 :0.00788991519915831 +the:0.1737349284187729 present,:0.044274074031682056 home:0.030469372408932403 once:0.029919960065514825 :0.7216016650750977 +interested:0.9245644599833321 ed:0.02989838421223172 named:0.0015259139221532013 described:0.0013837040155781344 :0.04262753786670475 +great:0.3775963788350461 large:0.21727322332691185 decision:0.039672576928591725 point:0.022024608149420304 :0.34343321276003014 +like:0.0038207025615507014 was:0.0025858331316088354 election:0.002367137825993391 opportunity:0.0016247149525997838 :0.9896016115282471 +a:0.23375696783273794 the:0.11625225400962393 forth:0.016813937478160273 two:0.016144978363589003 :0.6170318623158888 +::0.28717127573258994 and:0.2053168585282103 ing:0.059020555853965866 so:0.04088244051950969 :0.407608869365724 +and:0.2133284732927371 of:0.178820727444837 the:0.129239484222409 or:0.12803301681170282 :0.3505782982283141 +machinery:0.6278924257756678 the:0.03210270311754169 is:0.02749211216346447 was:0.020733345689032102 :0.291779413254294 +of:0.9597701451572774 against:0.03200532719902786 for:0.001897604025634402 the:0.0015258602523622465 :0.0048010633656983505 +of:0.3630962575990848 where:0.1921350586118666 which:0.04227239191182415 that:0.03485110208276408 :0.3676451897944603 +reached:0.28495859165016535 leave:0.11486642822084878 reach:0.10664957576549339 left:0.10465543382341976 :0.3888699705400729 +of:0.20579755328611424 and:0.16052705382870222 in:0.1561505042340936 to:0.1070825159686768 :0.37044237268241315 +the:0.791481106512435 said:0.044840141007812896 an:0.03167386819098175 a:0.0246775187341367 :0.10732736555463368 +took:0.06017019365899208 cut:0.03679703366652184 point:0.03407245795274529 put:0.031218797982705094 :0.8377415167390359 +go:0.15569909522984068 quickly:0.08029839625252107 be:0.012411757877610279 took:0.011047137669677307 :0.7405436129703505 +the:0.29179821777836995 our:0.1671531930929223 It:0.10646991129089643 it:0.08425278032514731 :0.350325897512664 +and:0.2928853652580356 try:0.06985156874396718 are:0.06202618401239823 a:0.03668701108024199 :0.5385498709053571 +In:0.6506516942113767 of:0.048552980419504004 The:0.042616397914271215 and:0.01602383759699873 :0.24215508985784925 +and:0.14208189948051558 and,:0.0767685733809457 or:0.06444890606300656 was:0.05066225646382632 :0.6660383646117058 +connection:0.08359074490243319 accordance:0.04450083713461612 case:0.030131258318876555 .:0.01930008845634907 :0.8224770711877252 +or:0.38523739577097815 them:0.058274932848320554 and:0.04531415676890521 has:0.039248978418269236 :0.4719245361935269 +in:0.9456440536347072 In:0.02825068096496395 is:0.013870549347337549 ill:0.0069791063217559245 :0.0052556097312354295 +is:0.2898921603343693 are:0.27080252474386607 was:0.15860837724462687 has:0.06539623028127696 :0.2153007073958608 +get:0.16095440464063113 the:0.13684469878107863 be:0.09641065748198925 reach:0.0809370361912367 :0.5248532029050644 +to:0.8417397272560039 for:0.13931167153817917 and:0.010239055071358636 by:0.004537531251077643 :0.004172014883380654 +on:0.04114357773430601 the:0.013636125791430326 deeds:0.00682008729516269 at:0.006359576977134409 :0.9320406322019666 +and:0.12434379813619494 the:0.06764902682119912 most:0.05357174991232007 of:0.049632158188465315 :0.7048032669418206 +and:0.2069290928100972 the:0.038744620345374424 of:0.03346038686485064 to:0.02876982486888721 :0.6920960751107904 +—:0.44750729984222354 said:0.3304628191754577 John:0.06487052945069398 William:0.0626609518042823 :0.09449839972734246 +be:0.3973065239530189 result:0.2594520132361709 not:0.03876514592071253 appear:0.026839013672397757 :0.2776373032176998 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +the:0.58739796041449 an:0.38343681796835033 on:0.01091892759152027 The:0.004191643845032192 :0.014054650180607274 +a:0.41278989592829407 the:0.27866503225257727 our:0.08028379181275055 his:0.07342320330366879 :0.15483807670270938 +the:0.35305772975125815 said:0.26614719108037493 two:0.06011827869289842 only:0.01916998431979813 :0.30150681615567043 +the:0.029204951487677686 a:0.00659073480019804 tne:0.005967117296872746 from:0.005202615215568552 :0.9530345811996831 +of:0.17963813679885562 and:0.09060455110392504 the:0.08572245935067742 to:0.0329769829394071 :0.6110578698071347 +in:0.23792279199771693 of:0.18493977609804912 and:0.09620132018979356 on:0.0811910164677704 :0.3997450952466699 +claims:0.8848492561125477 only:0.022301756155865216 the:0.020261783557064348 it:0.005187377592856967 :0.0673998265816657 +offered:0.29410871969750113 brought:0.18295385555487498 served:0.15163692196431836 more:0.12943560288803674 :0.2418648998952688 +ground,:0.33346094033501006 ground:0.11733865879178752 place:0.06190489664593961 point:0.05906335176689348 :0.42823215246036933 +and:0.010693594269700733 street:0.00750854781711697 quiet:0.006203451422026665 Mr.:0.006067714299638226 :0.9695266921915173 +gold:0.25597539716959955 railroad:0.24597177257963365 the:0.11493450135235801 it.:0.026333739421086095 :0.35678458947732283 +be:0.6939641208838256 the:0.05081235004272627 a:0.04570769217461001 to:0.044008107936782656 :0.16550772896205534 +of:0.2293708959019257 for:0.1898092655931038 against:0.1424852582120558 in:0.0894789187730375 :0.3488556615198773 +C.:0.07278337160055406 F.:0.04822273206085486 G.:0.024738453632660543 Hall:0.023655448357507356 :0.8305999943484232 +means:0.18580012186202008 way:0.07363828564349155 reason:0.07035218048464713 the:0.062256240793754365 :0.6079531712160867 +on:0.057805931153747624 off:0.031957116756814896 three:0.015815933214958146 go:0.013003213131971097 :0.8814178057425083 +of:0.2601036700990993 and:0.10943843679965476 the:0.05968518725750799 to:0.03395452041147178 :0.5368181854322663 +the:0.1079647521885471 which:0.050238634640394006 this:0.047884841442680764 business:0.047471443430505696 :0.7464403282978723 +the:0.5258725640153753 these:0.28521845643432886 broad:0.06695621987425127 new:0.04571762071212557 :0.07623513896391886 +that:0.36807785046247715 by:0.1918079284913921 to:0.180413982617486 of:0.10546463833840476 :0.15423560009024004 +the:0.8902539364049881 to:0.010921894358703273 would:0.009888826024368282 best:0.0021232364258974845 :0.08681210678604287 +of:0.8831409937168836 is:0.028006067391879212 into:0.025663611606469978 which:0.015771881067635152 :0.047417446217132085 +is:0.22335981531887866 and:0.09206525311980307 coming:0.061999409885909074 was:0.035344654426849864 :0.5872308672485592 +ed:0.1491066276941331 to:0.06622524934837182 of:0.06441184291081416 in:0.0571675739879376 :0.6630887060587434 +a:0.8451100170046 the:0.13034877902579992 described:0.007902847866364839 for:0.002104621458047017 :0.014533734645188416 +of:0.9111397836657114 at:0.0036880860530378807 we:0.0028375894293758393 cf:0.002205319545900574 :0.08012922130597439 +ing:0.39750741461129446 la:0.2958576855242181 to:0.22066730968328468 for:0.04006725076959921 :0.045900339411603486 +40:0.05957149397136195 20:0.043490597501394244 five:0.031048761841568705 50:0.029462603183387087 :0.836426543502288 +who:0.060490596939300395 and:0.04633644085214332 times:0.038371208876547706 They:0.03777637498060973 :0.8170253783513989 +furnished:0.057186633002201136 advanced:0.010828185632476546 made:0.001665253499767901 that:0.00037957116488946015 :0.9299403567006649 +of:0.635214675905305 to:0.07753002657891504 must:0.059341761162167085 ot:0.049888906899854056 :0.1780246294537589 +all:0.5168328805688325 the:0.12044712887591405 and:0.03195981792830727 her:0.023615833562618236 :0.3071443390643279 +the:0.5130393719507494 The:0.13243513771074125 a:0.09812941893194244 general:0.07300424235683983 :0.18339182904972698 +of:0.4857528542262221 and:0.22458282062528465 that:0.07739517083007737 in:0.056349092248207014 :0.15592006207020892 +for:0.06855424976515001 direct:0.012668962533709185 officer:0.012232548881108269 men:0.00929663369475056 :0.8972476051252819 +was:0.45671077289145046 is:0.4378231017091763 Is:0.08257839364485296 they:0.010940534296228986 :0.011947197458291238 +ways:0.527487998259787 sides:0.024040438991051245 armed:0.008328388684927046 charged:0.00637130458347877 :0.43377186948075586 +been:0.22028925999254637 passed:0.205318437254166 long:0.14198944588769677 played:0.13735991141321957 :0.2950429454523713 +young:0.25073802701670167 single:0.1070321450394072 poor:0.09020119230137774 certain:0.07732749731601211 :0.47470113832650135 +was:0.8294172121502166 of:0.05924422742878042 is:0.03782401509983934 be:0.022777739837881266 :0.050736805483282264 +It:0.3985328482382214 and:0.17583446736246794 which:0.12366894691926876 He:0.11455753099292759 :0.18740620648711423 +the:0.3168903807916874 to:0.10064987181667577 their:0.07070057464822281 and:0.053004720588331646 :0.45875445215508237 +the:0.4984536663061656 said:0.402123746452791 a:0.07262541789209481 tho:0.02352702934710429 :0.003270140001844405 +City,:0.8249818951999729 City:0.04725655649934032 and:0.014522572023150406 has:0.011852659406991197 :0.10138631687054514 +to:0.4006269801213978 I:0.3357207711051731 1:0.08475472331653726 and:0.0746440411790642 :0.10425348427782767 +people:0.1860160576371742 members:0.019027380441913655 village:0.013645686237701788 state:0.013551848426972869 :0.7677590272562375 +the:0.6285719827924295 and:0.11224254156851239 its:0.035042870698372794 The:0.03043056332719015 :0.19371204161349517 +There:0.12770131887673983 They:0.09258372524170096 they:0.08132398800786549 as:0.0780878970042336 :0.62030307086946 +the:0.35023418759798824 his:0.21070441895997988 this:0.026199556832285524 their:0.023228122096280997 :0.3896337145134654 +for:0.2591791987946567 of:0.1446782791002128 before:0.14128829831668616 on:0.08137335207431129 :0.37348087171413313 +the:0.4058051360322537 their:0.029516678004159247 tho:0.027825364473516138 said:0.023064058223452963 :0.5137887632666179 +of:0.6809244536999496 to:0.0672494768508106 whose:0.03832561989205197 that:0.034857406410541206 :0.17864304314664678 +for:0.08265549703131879 be:0.053423463050013276 afford:0.050658863766604674 in:0.043890559928174186 :0.7693716162238889 +but:0.024278784006804485 and:0.013605658284802207 is:0.010135239391258755 And:0.008319590968689698 :0.9436607273484448 +of:0.21304276948713377 and:0.11741789446868632 the:0.06511093644847561 to:0.05390837804145862 :0.5505200215542457 +while:0.9964412464322676 when:0.0023298123924991487 of:2.2544060612135363e-05 m:1.4404300476944714e-06 :0.0012049566845736485 +quickly:0.33232030930440776 were:0.15790243037974078 he:0.0853323069643309 be:0.06745964241367366 :0.3569853109378469 +great:0.062148684309248685 best:0.011802908063483178 business:0.011665902629452371 various:0.010476796316184697 :0.9039057086816311 +of:0.17618967444524927 now,:0.019360147096589883 how:0.010135370642497863 ;:0.007565572505312881 :0.7867492353103502 +the:0.5938501859401648 a:0.20988200890499253 tbe:0.0274362985473858 two:0.017153826945672537 :0.15167767966178425 +you:0.23203934752103178 they:0.18169488334599332 It:0.16125473265978096 we:0.05321703634602895 :0.3717940001271648 +not:0.6660757991400059 thus:0.15858983661875242 to:0.0197228344016178 be:0.00955714344411075 :0.14605438639551324 +a:0.962703181072474 the:0.01368540203592135 n:0.007970483790179927 something:0.001739053522701178 :0.013901879578723617 +system:0.07932359312740309 law:0.04221031476087826 the:0.032956779102748114 and:0.023518927715733755 :0.8219903852932368 +matter:0.04838708277049499 case:0.03231566739474317 corner:0.023529349263700636 basis:0.019866281695879957 :0.8759016188751813 +to:0.6477713216422248 and:0.11767729836920462 we:0.07804299521785209 will:0.040590581992288176 :0.1159178027784302 +Hut:0.611330044824594 But:0.25221972955420546 of:0.03420076889294038 in:0.030415489187042434 :0.07183396754121786 +now:0.5149809029075175 all:0.1836389301058855 j:0.14708434275099935 being:0.08694339523842974 :0.06735242899716781 +of:0.25700270627951505 in:0.1713313232838623 and:0.14446492712116044 to:0.1142662754148529 :0.3129347679006094 +was:0.5586716213766787 is:0.3724223135497394 in:0.020175498845099404 of:0.018003921245861716 :0.030726644982620788 +has:0.42924413595633404 have:0.25765782473317644 had:0.2178430551296535 and:0.03110030933225868 :0.06415467484857729 +a:0.6603280034029099 the:0.18651982301896203 no:0.10643773343274578 almost:0.028130302786922683 :0.018584137358459606 +healthy:0.28837042351387715 higher:0.025396374318105847 supreme:0.023842829115918954 proper:0.01964007001388837 :0.6427503030382098 +the:0.36097693666231206 be:0.1650113703691221 a:0.05886912413918434 his:0.0341468510603155 :0.38099571776906593 +it:0.15765370562431275 this:0.1441906282531514 the:0.08307467692338938 said:0.013762125188657135 :0.6013188640104893 +capital:0.3282933440335474 themselves:0.17544935569989448 them:0.12230109319302165 himself:0.0962189185520123 :0.2777372885215242 +day.:0.7403656315995224 mile:0.06006816577476751 year:0.008774312962463863 century:0.0022288391088041105 :0.18856305055444217 +who:0.5052335133357395 will:0.27773667207243563 be-:0.10712560170815358 had:0.03533679278436669 :0.07456742009930467 diff --git a/gonito.yaml b/gonito.yaml deleted file mode 100644 index 632e41d..0000000 --- a/gonito.yaml +++ /dev/null @@ -1,10 +0,0 @@ -description: trigram model -tags: - - neural-network - - trigram -params: - epochs: 1 - learning-rate: 0.0001 - vocab_size: 40000 - embed_size: 300 - hidden_size: 256 diff --git a/test-A/out.tsv b/test-A/out.tsv new file mode 100644 index 0000000..7e84d9d --- /dev/null +++ b/test-A/out.tsv @@ -0,0 +1,6321 @@ +number:0.2691037908653228 be:0.17783517668700355 name:0.1418719406532073 place:0.0870504169126773 :0.3241386748817891 +will:0.06360385520365175 is:0.02284514418433793 amount:0.02279296016910514 evening:0.0137269306317645 :0.8770311098111409 +the:0.9375132950100853 tho:0.05405161889000173 of:0.0008165150992969534 sold:0.0003733594509735144 :0.0072452115496425456 +single:0.08024339564057592 represented:0.020085230924746296 a:0.018356041054844435 mortgage:0.017455893249572065 :0.8638594391302612 +and:0.5561431292313732 Two:0.1389697945654216 two:0.05021390622962083 the:0.03480835620526714 :0.2198648137683173 +them:0.026372989757373833 it:0.011999217825698473 to:0.011322296536739601 ing:0.010360221757255704 :0.9399452741229325 +tho:0.1982983397072587 the:0.1157691760784706 to:0.034067344270507574 that:0.017833581604825146 :0.6340315583389381 +ac-:0.0008048693364847893 at:0.00041453633873425095 as:0.00020020438192164884 by:0.00012950126881592085 :0.9984508886740435 +the:0.07467997769577982 not:0.04884062664367626 to:0.04559921363208411 in:0.04298377332499825 :0.7878964087034616 +He:0.4078200480113622 There:0.1225373633515742 he:0.12120302025192145 It:0.06030340207210821 :0.28813616631303396 +in:0.6819709420452901 since:0.02572202307852635 of:0.008831591224455615 to:0.006550424738317748 :0.27692501891341026 +the:0.191015412967297 W.:0.17559444607739808 and:0.08271076325834907 only:0.0731847006798689 :0.47749467701708675 +days:0.03767757976983972 hours:0.026383175103058393 here,:0.026115878962916762 days,:0.022730722924130607 :0.8870926432400544 +come:0.14738734622435012 cause:0.1415966680643566 tween:0.09060340659388762 ing:0.06929640193265814 :0.5511161771847475 +and:0.378387398670267 there:0.2757858490943525 bring:0.13826948779286954 they:0.04803468689227892 :0.15952257755023208 +of:0.4222416295966323 on:0.22907779546555906 and:0.11815306865093247 On:0.0602826738559024 :0.1702448324309737 +which:0.7713433415337734 until:0.01699977232914548 When:0.015713659842155614 whom:0.015306325914764852 :0.18063690038016075 +one:0.49429709280604167 the:0.2855241488491833 any:0.10527487568503673 this:0.08415513842987667 :0.0307487442298614 +little:0.3890979292582848 beautiful:0.20416476381941542 British:0.08461369653125869 proud:0.08312983392044775 :0.23899377647059336 +of:0.25686097994166823 to:0.17951711489707872 in:0.17347146717830225 and:0.10838711155090162 :0.2817633264320492 +tract:0.003984844885068048 test:0.0036810751934466973 it:0.0012237870817407418 as:0.001026479734414041 :0.9900838131053306 +t:0.7092167350393588 when:0.11660806812355771 just:0.025632909725023884 for:0.018203636614037066 :0.1303386504980226 +West:0.24175336046449913 said:0.10731863441288603 is:0.04207964172226311 west,:0.01215071495103007 :0.5966976484493217 +have:0.6422386672486987 could:0.08742513902729881 ha:0.023860160906139332 are:0.020426096613866646 :0.22604993620399644 +and:0.24526728711947546 States,:0.10864494708544369 States:0.051216760285554046 -:0.030752761529093738 :0.5641182439804331 +had:0.4406271185660071 has:0.35749136681628 her:0.09042376754374712 have:0.06325301087747355 :0.048204736196492175 +sent:0.1055609459393076 trying:0.08188825288935424 ready:0.055337368347497445 compelled:0.05420077933170798 :0.7030126534921328 +the:0.3307978993892364 be:0.11167174235094855 a:0.08025002053974663 his:0.04481074931660993 :0.4324695884034585 +it:0.3421972316699516 It:0.33030867107735334 This:0.08501262188702575 r:0.0743836585648887 :0.16809781680078062 +not:0.37128726040347915 it:0.1574805495282795 the:0.10854507734514098 It:0.05243231582320842 :0.31025479689989216 +the:0.5884939644001891 say:0.07636485651114458 and:0.05694352996236213 so:0.03355673354433005 :0.2446409155819742 +run:0.8387738709508016 carried:0.03302473809605509 strong:0.02965593443686961 completed:0.023182382116026187 :0.07536307440024756 +One:0.12560869057236193 Mr.:0.11298046570461205 and:0.05566142863448517 14:0.030379275533174 :0.6753701395553668 +and:0.39283540321122373 in:0.12477568007212475 for:0.08660591915320989 very:0.06509785820230476 :0.33068513936113686 +be-:0.3588534459738969 be:0.17197676598827932 be¬:0.07206553987249308 there:0.028863540779169528 :0.36824070738616127 +Red:0.7496946868084707 first:0.05749508526683834 his:0.006205001648598674 whole:0.0012877149855151013 :0.18531751129057722 +hoped:0.42154361296068193 expected:0.047267207741787706 sure:0.04160483393336544 found:0.03547547913110429 :0.45410886623306046 +of:0.03187364538692269 interested:0.02879306256635095 men:0.01869092112650722 and:0.01705293670696893 :0.9035894342132503 +and:0.07729504539145332 or:0.06997155989590313 trade:0.06711641611031655 coun-:0.033520806008862356 :0.7520961725934645 +secure:0.13580622146102966 him:0.063523992586519 the:0.05127814834552295 sell:0.04219749026873328 :0.7071941473381952 +to:0.7429098203234594 may:0.07632517566728039 will:0.02604802827378041 shall:0.020236397558613197 :0.1344805781768666 +to:0.13174272968898199 and:0.10241081868393563 company:0.05765168521973369 will:0.047309486169886464 :0.6608852802374623 +of:0.7991506716972064 ot:0.018217203045593877 at:0.012794458137874628 be:0.010663441303681841 :0.15917422581564325 +after:0.10451660163758902 was:0.030882888299063396 of:0.021096304520364036 and:0.01619859377083468 :0.827305611772149 +come:0.38881701716283995 as:0.016205428453711753 be:0.004780938114628671 see:0.002408673775316026 :0.5877879424935035 +of:0.9547914172675656 ot:0.012239162028382069 in:0.007552472867455954 nf:0.005992749287643209 :0.01942419854895316 +and:0.1447310467662204 the:0.08266813251912085 of:0.05594791332274193 he:0.05085510628269638 :0.6657978011092204 +and:0.5819769540531816 to:0.13197138691841406 the:0.12256121743996667 a:0.0633210933298129 :0.10016934825862461 +tax:0.12756016538281684 matter:0.023066219443282396 tariff:0.01709744280484486 men:0.014135295304259443 :0.8181408770647962 +twice:0.06373485067660645 once:0.022978723625742836 half:0.0070963776602603655 for:0.003803535687729137 :0.9023865123496612 +the:0.16034098719405485 and:0.11080070312526485 a:0.08855990316439181 to:0.07325616822601767 :0.5670422382902709 +that:0.49478601438708814 of:0.11816351331728771 the:0.1100495206120654 and:0.03939792607670446 :0.23760302560685426 +three:0.42115521950678514 a:0.2925504407178278 the:0.03622971372370846 that:0.012852642983391298 :0.2372119830682872 +to:0.9998705023351577 that:4.1669109898968185e-05 and:4.041207144893471e-05 places:8.591314159496172e-06 :3.882516933494542e-05 +till:0.38174369309165407 .,:0.22672710977879498 .:0.19817433108477456 ..:0.08860117605821455 :0.10475368998656173 +is:0.9945848506004609 was:0.002632835784326035 of:3.617985050108144e-05 in:2.4691303652900518e-05 :0.0027214424610590934 +of:0.1309064017068807 and:0.10865912026512414 the:0.10202389339207432 John:0.05011448402059139 :0.6082961006153295 +be:0.27640180378116286 children:0.26216756764661603 they:0.21324735867144032 you:0.06121530537523431 :0.18696796452554643 +and:0.14326998458059348 of:0.1097324941157904 the:0.0851806267978785 as:0.07971167320069648 :0.5821052213050414 +street,:0.023700761196497527 street:0.013633901091335134 mills:0.012270419832054322 north:0.011762540151107831 :0.9386323777290052 +by:0.7825796611786293 in:0.03536237835394446 the:0.034219516486563434 and:0.024845582627862826 :0.12299286135299987 +heard:0.08692716332467083 still:0.08462804058097514 far:0.067714771978002 raised:0.06352996300066618 :0.697200061115686 +at:0.8593951714890855 took:0.12839642793568462 in:0.003994453349485901 for:0.003303964430007904 :0.004909982795736163 +most:0.02837749438119412 old:0.027898351341294248 same:0.02162583719573551 the:0.020222409482062664 :0.9018759075997136 +is:0.4448800077606835 was:0.28994181837376537 Is:0.029703012754226613 will:0.028939679008452904 :0.20653548210287181 +of:0.8394369933498479 with:0.07139045459994882 by:0.06637276283074829 ot:0.009040352047415854 :0.013759437172039111 +is:0.44291832193084424 appeared:0.09418502620225211 does:0.042640655914017125 stood:0.023425641321781095 :0.39683035463110533 +be:0.4613855766353084 not:0.18807390606865834 continue:0.06891561130634491 in-:0.06590041103023908 :0.21572449495944943 +Mr.:0.11532994903114878 The:0.11093411961564532 and:0.11004267882860799 of:0.06992083371422045 :0.5937724188103776 +of:0.9630226636846154 the:0.004097441711280607 ot:0.00246293423871062 and:0.002136723947468819 :0.028280236417924317 +in:0.6545754569243498 to:0.15888494088900998 that:0.10704431267087851 which:0.0293886461733683 :0.05010664334239332 +and:0.04484749457145861 of:0.025500592174938122 extra:0.02306023712360519 7:0.022986866711245908 :0.8836048094187522 +part:0.036499203703585927 tion:0.027271742244312547 and:0.024056847078144 character:0.019490641740876887 :0.8926815652330806 +and,:0.7097502782251722 at:0.07947732828792706 as:0.06644874188062355 to:0.058337559317562994 :0.08598609228871416 +that:0.41216323077069333 claims:0.31762817218128303 when:0.07650300220840152 if:0.06277292559070508 :0.13093266924891694 +con­:0.35170914945934884 Senator:0.17679519521417714 this:0.1414475403911997 the:0.07848874828465428 :0.25155936665062006 +proper:0.00894649614179618 ::0.002835320247655405 place.:0.0018357374650439925 this:0.00175877285270672 :0.9846236732927979 +he:0.3819914408170522 I:0.24797212649137865 is:0.13277773272954843 she:0.1212245659520874 :0.11603413400993329 +the:0.6371012837407963 The:0.12182336982110864 his:0.06487593867911554 tho:0.04640957032745249 :0.12978983743152708 +and:0.8615088158282347 or:0.08839063609355462 without:0.029999108453494842 aud:0.014744250514565363 :0.005357189110150368 +the:0.9978089153791705 American:0.0007985317376923788 its:0.0005345382977364188 his:0.000419435206865839 :0.00043857937853491476 +do:0.2861426111320447 of:0.10894239799408087 considered:0.10227638032606456 avoid:0.07205406414062597 :0.4305845464071838 +the:0.3250431907182039 a:0.1025595587317299 be:0.10076341829934372 their:0.056619007944891275 :0.4150148243058312 +ma-:0.1843035909030109 small:0.15201490205603727 large:0.11422662239138977 most:0.06352629466016223 :0.4859285899894 +be:0.8840931755646282 he:0.035791401973777386 bo:0.01989935774707118 secure:0.00982726632163283 :0.05038879839289047 +and:0.4178159257203628 I:0.19725222014990276 who:0.05241413014800035 which:0.035307100574204 :0.29721062340753 +and:0.05301901724420149 or:0.04609459471761351 place:0.0457784062400956 party,:0.037814320136977435 :0.8172936616611121 +ex-:0.024486920349576193 a:0.02319054426724592 the:0.019605871456567496 con-:0.016818877018455764 :0.9158977869081546 +and:0.11796287109818174 of:0.06067734628518845 the:0.05809092800496109 to:0.029294911726408857 :0.7339739428852597 +light:0.20548719440704602 ball:0.17918287451722367 dress:0.07460700172032905 fellow:0.027887765020141665 :0.5128351643352597 +were:0.2783180693253725 are:0.2306787483802948 was:0.16706789260753452 is:0.13864301219055977 :0.1852922774962384 +of:0.9346077617580215 and:0.028809281895731856 a:0.012809712005326731 the:0.01028498937938844 :0.013488254961531517 +The:0.3698819842574396 Tho:0.1288237404601455 To:0.059044896823096646 Those:0.05604418616089997 :0.3862051922984183 +the:0.30057745782059014 his:0.13635582175307928 a:0.13372358104406287 eight:0.12540230128509638 :0.30394083809717126 +of:0.8064030461637504 are:0.0918505490605758 among:0.04342750295557016 in:0.023800989429862945 :0.03451791239024084 +in:0.4447976161859483 the:0.1568592234338701 of:0.09195722567134845 In:0.07693259847224318 :0.22945333623659 +year:0.07850124414825467 alleged:0.02789231548179111 first:0.02516175883641143 year.:0.014976161061932409 :0.8534685204716104 +country:0.017059868336104084 wind:0.015921954381548618 needs:0.015862021331133833 people,:0.014768791014334742 :0.9363873649368787 +in:0.5858046124420567 of:0.14143763724110725 for:0.11473199344420172 to:0.09926590004286627 :0.05875985682976814 +which,:0.040789648361322685 and:0.03874843102866999 acting:0.02499150853130935 complete:0.023588651758890748 :0.8718817603198072 +think:0.0765973926633357 am:0.0612990601950411 he:0.05596788341897275 never:0.04565730945204478 :0.7604783542706056 +and:0.18903625973358865 to:0.13340099922091322 the:0.10146689655947001 in:0.07193948280975475 :0.5041563616762734 +heard:0.3531367333371629 dent:0.22626341002287148 mo:0.13581425323681656 and:0.09651472190747123 :0.1882708814956778 +to:0.46928016371751086 they:0.2027577398998032 you:0.06188654753508302 and:0.054354047582520874 :0.21172150126508213 +the:0.1463484899354481 a:0.0909318007945032 A:0.05051283740375374 full:0.049850321235525595 :0.6623565506307693 +was:0.5597883798485993 am:0.19663360891752132 felt:0.053154375890334817 did:0.042137288456620486 :0.14828634688692405 +going:0.2851350431894456 trying:0.014282919286649416 people:0.013758007615001011 coming:0.009404086402676764 :0.677419943506227 +east:0.35747169216056124 fifty:0.023093624502881955 in:0.004909612146698556 thirty:0.002344272242450566 :0.6121807989474076 +in:0.47691087828929973 the:0.14899485631601206 to:0.06052741472960527 or:0.03760456572639894 :0.275962284938684 +;:0.018290570127089123 and:0.011037028143981567 of:0.010075968403953415 the:0.008494675684440017 :0.9521017576405358 +on:0.2728517507441477 without:0.16298427428640627 and:0.14531916352718302 of:0.03200273692702982 :0.38684207451523334 +of:0.2376363038895991 in:0.18540411619306818 and:0.1477003082801093 to:0.1330989877061292 :0.29616028393109417 +in:0.3895486111379747 under:0.3801624832423156 In:0.0669386848267519 of:0.04660270532101669 :0.11674751547194105 +a:0.483641524503607 their:0.3302068055096376 an:0.11853751311180831 the:0.019187167842556738 :0.04842698903239045 +of:0.3622377543382407 in:0.12494073277386555 and:0.11536866285703828 to:0.1095571405665934 :0.287895709464262 +those:0.16197986953370588 him:0.11693503554808174 all:0.10815355139411287 us:0.04365493364434178 :0.5692766098797578 +vote:0.6741962657770557 majority:0.0477409344264366 suit:0.019354773810798732 member:0.016519162199915765 :0.24218886378579302 +jury:0.049669180458096346 total:0.011437908601373505 object:0.009663546777805385 struggle:0.008157880859462532 :0.9210714833032624 +the:0.19823660017307987 it:0.13271628345424466 he:0.11795007421382887 by:0.1142810827650309 :0.43681595939381557 +Board:0.12290068896206592 late:0.11404105930257656 greatest:0.08950687924787241 finest:0.04702057394665938 :0.6265307985408257 +and:0.11650386826221866 of:0.07194159622333193 the:0.06660235185203574 to:0.034074393628613454 :0.7108777900338002 +the:0.4340875786008012 a:0.11799765220416046 his:0.04002167798296163 their:0.03097973561255529 :0.37691335559952144 +the:0.07242321660116469 and:0.060944104269927954 of:0.052457150016252764 to:0.04350462435884579 :0.7706709047538088 +been:0.1764879657841488 all:0.052283690046626016 in:0.03686673884004914 had:0.03432482451782299 :0.700036780811353 +to:0.09304251684568011 and:0.08961410283694575 of:0.05378078530167124 the:0.03676226635633947 :0.7268003286593635 +a:0.3587856428759002 the:0.08555937255862836 and:0.04747891524535742 as:0.044806466768913485 :0.46336960255120063 +the:0.3221656499673905 to:0.23136510336084049 in:0.18194219846852921 his:0.1531996250017109 :0.1113274232015289 +more:0.41551599517033655 less:0.3458958613252586 moro:0.08511619342681395 later:0.018668818859860988 :0.13480313121772983 +the:0.17340766378555827 and:0.13163526877613696 The:0.09344013456385912 of:0.0722902967827352 :0.5292266360917105 +taken:0.5792908173760768 built:0.17185231742826587 called:0.04139620645341206 given:0.01767646205301501 :0.1897841966892303 +one:0.28777473818133265 man:0.27880438744240743 men:0.06972749204644378 gentlemen:0.05255658648226724 :0.311136795847549 +been:0.5452632644059036 added:0.3586579648963653 from:0.01621755988589439 won:0.009259098754324083 :0.07060211205751263 +not:0.019133063721600504 in:0.009989209198428118 ia:0.007309160758368035 «:0.006888987511094553 :0.9566795788105088 +same:0.5706966588906758 as:0.015381177130353007 most:0.011355836572373034 United:0.008712828647324897 :0.39385349875927345 +petition:0.5882090257466757 suit:0.07388804405267872 sale:0.06245363038540411 order:0.04846195496486077 :0.22698734485038058 +prominent:0.05145170894793413 certain:0.04465839132232315 pleasant:0.04053461070210748 popular:0.03852253073383735 :0.8248327582937979 +of:0.17238007708751896 that:0.12800924366911495 ;:0.057727835826745455 mind:0.04251613731200793 :0.5993667061046126 +cost:0.07034462706301789 value:0.04905222233289642 settlement:0.03983426871615445 work:0.029723945131164727 :0.8110449367567665 +to:0.9998705023351577 that:4.1669109898968185e-05 and:4.041207144893471e-05 places:8.591314159496172e-06 :3.882516933494542e-05 +than:0.2852747213866144 the:0.02006624909270935 it:0.01408660135966769 value:0.013857024453685838 :0.6667154037073227 +was:0.2765279882733696 is:0.23224473406323368 now:0.17506358367867372 are:0.16235829011785208 :0.153805403866871 +even:0.2504857421447642 and:0.20665197088493326 reduced:0.048039959741813416 greatly:0.037014389597763486 :0.4578079376307257 +and:0.08426205780547279 of:0.061778457200824546 the:0.047757796545948035 from:0.03905155259771745 :0.7671501358500372 +and:0.6087666973107585 more:0.029657958678205792 is:0.007941229296631637 but:0.007841726041907662 :0.34579238867249634 +is:0.5022821230788861 are:0.28916016584091686 of:0.11537597441725479 and:0.02650384469040846 :0.06667789197253371 +the:0.09950061673299368 a:0.029963901484795306 and:0.028594631890544335 few:0.01942900655744862 :0.822511843334218 +and:0.7964466995976202 the:0.07952525774771964 Its:0.026260851037653046 nnd:0.02441378347944085 :0.07335340813756623 +remedy:0.9949034320274549 patient:0.0007297062709390489 papers:0.0003748907593719677 market:0.0002846924914371734 :0.003707278450796848 +himself:0.33821447234124613 and:0.18780454809909738 which:0.1439070322579608 but:0.029160355315084013 :0.30091359198661155 +night:0.3085948573178868 day:0.15321667889987473 citizen:0.11125063317336226 power:0.0707165016037504 :0.35622132900512593 +In:0.012745373851620629 in:0.007767741986884926 things:0.006753850293837199 men,:0.004467535325889286 :0.9682654985417679 +on:0.9959395547107952 out:0.0017457536602312226 in:0.0015245624627479339 here:0.0003867011488640753 :0.0004034280173614991 +of:0.13756791556898806 and:0.08587505849406664 holding:0.06825892166703695 a:0.054850330868925004 :0.6534477734009835 +almost:0.002176784104817384 be:0.0018070276342477987 is:0.0017116444965615586 bo:0.0014735128969243611 :0.992831030867449 +kill:0.8747962162889968 bring:0.022385123050243108 rear:0.01982643034601996 allow:0.019373546123103262 :0.0636186841916369 +taken:0.40676080257759406 drawn:0.14978229943521235 burned:0.08968454532524472 given:0.0853313639877366 :0.2684409886742122 +lie:0.26550373074452577 be:0.18644886987693732 has:0.09921755199269791 may:0.09102224083560699 :0.357807606550232 +loved:0.07184155645592091 delivered:0.057761126434239723 met:0.031005973074577798 built:0.01950828659626608 :0.8198830574389955 +West:0.001084896292967126 White:0.00048089361230349424 Wilson:0.0003735034611584373 A.:0.0003523945097305462 :0.9977083121238404 +store:0.7252424526654453 house:0.09499174193322632 yard:0.018925762749937826 House:0.014260110928033563 :0.14657993172335715 +done:0.9893906719371095 a:0.0012398526385083337 looked:0.0010660627051767733 adopted:0.0007741453836263151 :0.007529267335579094 +will:0.9660910866299953 never:0.013336699470449756 must:0.006153339780552393 cannot:0.0005254932326004167 :0.01389338088640198 +order:0.23443681660057172 answer:0.11637273560734841 addition:0.11250819645875297 regard:0.09856976517512059 :0.43811248615820625 +the:0.5776141847368709 tho:0.1390298197157896 tbe:0.06313910493308944 tne:0.033905706191590765 :0.18631118442265948 +see:0.0024532152028870473 week.:0.0020237789770648153 man.:0.001858060662013638 world:0.0016917362986390693 :0.9919732088593954 +other:0.14640084206481038 effect:0.1069687139732397 part:0.07635021662951536 more:0.04506503984826623 :0.6252151874841684 +people:0.08469099531821342 clerk:0.01814150788026499 common:0.01604625906656586 prominent:0.009336470790189908 :0.8717847669447659 +of:0.10893606325569931 and:0.10309620669403659 The:0.09755023842282286 the:0.07773863521669881 :0.6126788564107425 +the:0.4873576088482224 Mr.:0.18632682492371097 his:0.08504651548193633 this:0.03574851213911323 :0.20552053860701708 +Republicans:0.0664064432555943 difference:0.055665669149252126 wife:0.053844263738100556 Colonel:0.0482508958537224 :0.7758327280033306 +years:0.11399868828987302 years.:0.017965518288352807 days:0.017900511082964636 feet:0.017799136723292325 :0.8323361456155173 +the:0.7931888930591232 a:0.11180979020231309 said:0.046748092911076386 tho:0.02149355294933101 :0.026759670878156408 +face:0.2000094576049651 wife:0.05794144022656364 hand:0.03776620066856407 room,:0.02705957380821761 :0.6772233276916896 +way,:0.2561556954312827 bond:0.1721299802779441 notes:0.09588169806412002 up:0.08914445453295516 :0.38668817169369807 +the:0.3934621634987159 W:0.21724707914506 .:0.08263034435898438 A:0.0457706360896357 :0.26088977690760395 +the:0.3287000386689112 tbe:0.26131018730579286 I:0.07907374626564245 his:0.012614492091224902 :0.3183015356684289 +own:0.8046482531005056 immediate:0.007244623030653554 entire:0.007087107941716169 usual:0.0012328490245373143 :0.17978716690258734 +of:0.1291798508100681 and:0.10620927497018642 to:0.08932199871699463 the:0.05050619107535515 :0.6247826844273957 +5:0.2889200848643682 been:0.2647656334385055 the:0.16176245806232087 three:0.12775949361026048 :0.1567923300245448 +fought:0.6359103101069107 that:0.10131965956817872 of:0.04184327365195471 grounds:0.018007187949309514 :0.20291956872364622 +of:0.6996914005599989 elect:0.0883504983717247 for:0.05539001269336002 and:0.05484045388062872 :0.10172763449428776 +the:0.15537428600280864 Miss:0.08680378561465543 Mrs.:0.059737242025915654 Mr.:0.04559887467346061 :0.6524858116831597 +most:0.07426620086144695 rear:0.047557147972125374 same:0.036004275627077094 United:0.03360800779587666 :0.8085643677434741 +on:0.7351930862582554 and:0.044614526614451686 of:0.04178214852231363 for:0.03398228043469275 :0.1444279581702865 +and:0.07352456993241589 of:0.0477534903868747 the:0.039794943185304084 ,:0.03386879084082749 :0.8050582056545779 +per:0.10745967058082753 party,:0.0663569952041652 a:0.052940875947155186 aad:0.02914440465074765 :0.7440980536171045 +It:0.907043769235588 to:0.05130138006442102 it:0.009689596475568097 This:0.007096571236561371 :0.024868682987861573 +seized:0.625096308223612 taken:0.16718278158777905 got:0.08733965474428368 to:0.017748295530615254 :0.10263295991371008 +a:0.9256938324287447 been:0.05917757069364153 was:0.00656135486174604 any:0.004553512628761172 :0.0040137293871065 +wife:0.11147811389020802 He:0.08635278711434569 he:0.06875815217351415 Justice:0.013122329403691714 :0.7202886174182406 +no:0.7873478537888956 a:0.03978270567558776 and:0.03507133724702493 to:0.03462324452733288 :0.10317485876115896 +and:0.0901250047885118 went:0.04161488311942262 even:0.03462495171987868 it:0.03400773173563535 :0.7996274286365516 +of:0.18024708599632658 with:0.12042641837162639 in:0.1202236595471421 and:0.09785080248858939 :0.48125203359631546 +and:0.8187404231443278 bearing:0.02023425333012364 the:0.005036394778804493 was:0.003320525232172766 :0.15266840351457128 +such:0.3009735037230923 whenever:0.2000022100614447 when:0.1669538243878255 in:0.10195872696273033 :0.2301117348649071 +There:0.6457600589926515 They:0.025821994553592006 and:0.02080299015174124 they:0.014578962447914985 :0.2930359938541003 +to:0.2932783869044273 of:0.1309921504955013 is:0.10223234234475338 as:0.08090768021179968 :0.39258944004351826 +days.:0.037779495868476995 tho:0.006210980816938766 the:0.004033460280893865 feet.:0.0034607015344091975 :0.948515361499281 +by:0.9376121676569669 is:0.02724833732930686 as:0.017279788901556598 was:0.013542921402932546 :0.004316784709237137 +into:0.5781242578602885 to:0.15840473420248372 the:0.0794587979846878 which:0.03992927707734602 :0.14408293287519394 +in:0.8583299077949863 In:0.10127878085829213 ln:0.0212360041960533 lo:0.009376662611220077 :0.009778644539448367 +said:0.719649969752547 Prince:0.0874464365153286 Los:0.020683497554190373 the:0.0031428473922786525 :0.1690772487856556 +and:0.555343074219524 for:0.13796513441286168 ago:0.09627341876112062 in:0.053056329430588946 :0.15736204317590471 +cars:0.3410622062235404 board:0.2521450196136648 application:0.04896587032788911 ships:0.009760461781965726 :0.34806644205294 +and:0.07284329897506699 deed:0.03151714360272929 tion:0.028280313801918876 reaching:0.023943671492323074 :0.8434155721279618 +the:0.6215830101687609 a:0.05206259269188068 all:0.019778888131345096 tbe:0.019251285740065287 :0.287324223267948 +If:0.029675607414738053 is:0.016871235909798086 for:0.015132534470818537 heard:0.014077605027922406 :0.9242430171767227 +may:0.2931841197001906 should:0.2173214775920078 might:0.18317135598562567 would:0.1541272828299455 :0.15219576389223052 +think:0.8593654726654993 that:0.010190795260479273 said:0.0048978034437517195 If:0.0029055089736152876 :0.12264041965665438 +to:0.05265703988944792 and:0.04867881897915384 mill:0.04765701863208064 the:0.04214501490444146 :0.8088621075948762 +to:0.04856075843606647 has:0.02812795702946124 is:0.01589787676552868 of:0.013127820501815903 :0.8942855872671276 +it:0.5770999239310947 they:0.14196651225015977 West:0.14008241081895367 he:0.09935256975356604 :0.04149858324622578 +have:0.41103347916127037 had:0.10212416636272016 are:0.09221260739325886 were:0.04510935867176266 :0.34952038841098804 +a:0.3067126112484958 that:0.1336469546986538 It:0.11665403204037064 This:0.10105025099300757 :0.3419361510194723 +wealth:0.007024243066743569 history:0.006675221185780297 world:0.0027708530546499644 gas:0.0013158040300014927 :0.9822138786628247 +certain:0.1265051162454994 similar:0.10311333510087166 proper:0.055593957687700105 perfectly:0.051581593809881816 :0.663205997156047 +the:0.4073241769240112 a:0.08633289064313553 his:0.057570426393528516 their:0.042507267014432595 :0.40626523902489226 +by:0.2987622206216724 and:0.20414737968509777 la:0.20265856179260353 in:0.13339688917097575 :0.1610349487296505 +::0.06329177590642719 ":0.020235603507999984 to:0.019005732244341073 be:0.014431811363151916 :0.8830350769780798 +is:0.3483813714096053 and:0.100690873218596 to:0.09836202934375558 Is:0.0715669182376048 :0.3809988077904385 +court:0.4984157704599077 or:0.07290670646281637 quality:0.06065664601093303 and:0.008768589001168657 :0.3592522880651741 +increase:0.06922847180394005 and:0.05190012990567674 change:0.038573131536833914 one:0.02384202100388458 :0.8164562457496648 +present:0.2103406853631456 right:0.12677489309820072 last:0.12605309429986583 only:0.11773157790754274 :0.419099749331245 +*:0.037268064696827946 the:0.016489763007446444 .:0.015209948199244107 and:0.013873673412736424 :0.9171585506837452 +F.:0.03802275389533099 and:0.027748969386174292 of:0.01962948070595563 the:0.018925850635821948 :0.895672945376717 +and:0.43381173426849284 thus:0.1782710656318049 to:0.1128929669453147 then:0.05305035720854765 :0.22197387594583984 +seen:0.7304608210089322 only:0.06060110611068321 take:0.056167971675890334 asked:0.02765636727188612 :0.1251137339326083 +of:0.9491654929393449 ot:0.010230512266029581 upon:0.008869290390799126 ol:0.006802406351861811 :0.02493229805196461 +of:0.9962575786093669 in:4.3870884728643815e-06 over:2.1395283249752533e-06 with:1.8898294029503574e-06 :0.0037340049444322936 +been:0.38614745061978856 about:0.30319170760308695 already:0.09325539040273478 just:0.03697555510597114 :0.1804298962684186 +narrow:0.16094682862197274 handsome:0.07045772731960262 largo:0.05297430652532191 decided:0.04767741249694747 :0.6679437250361553 +of:0.9447686379503302 make:0.012929632250810416 show:0.003382661166245688 present:0.0025640330199621967 :0.03635503561265166 +to:0.2706193220717872 Mr.:0.20099944061223268 of:0.19778780194135556 was:0.06636592910409064 :0.264227506270534 +the:0.05102157763202023 and:0.04742107664009745 sales:0.04034023192920406 of:0.03415917538321594 :0.8270579384154624 +The:0.355837907738027 Tho:0.06446723009952877 and:0.053267691440042696 A:0.04940181453394015 :0.4770253561884613 +who:0.3082954536578677 was:0.061590124444667674 to:0.05794889674761903 of:0.03322784908349443 :0.5389376760663511 +and:0.19280323822557116 to:0.14836627884110293 in:0.09860696634140258 of:0.09584292328266529 :0.46438059330925785 +the:0.1980326738709762 own:0.08724044914081182 old:0.024807479082135615 was:0.009332692655899581 :0.6805867052501768 +prominent:0.10102942339197393 splendid:0.06304778609819534 large:0.05089701699439419 fine:0.027717730490987066 :0.7573080430244494 +least:0.6407457959399179 that:0.006156705096272005 some:0.00569017169630096 thousands:0.004654180992480995 :0.3427531462750281 +she:0.2770074273462938 It:0.2157974726404923 I:0.19630752726933773 he:0.18059777414478487 :0.13028979859909137 +he:0.0010713596462113375 feet:0.0009344724434908152 U:0.0006912123787780827 1:0.0006489162355779707 :0.9966540392959418 +a:0.46236304012931934 the:0.11422884907635705 this:0.014227066756558026 those:0.013611837629820687 :0.3955692064079449 +and:0.08818609995291461 of:0.06851863616659307 the:0.0590118239301087 for:0.029444690193891686 :0.7548387497564919 +evidence:0.11437196058609417 interests:0.09984408117115387 capable:0.06560628097182447 method:0.06170982463474551 :0.6584678526361819 +of:0.31633707904473546 and:0.11933493556690937 to:0.05164017997940118 as:0.029180526705634216 :0.4835072787033197 +not:0.3431590009827515 is:0.11254956143653057 were:0.11157118216695064 and:0.07046708002234078 :0.36225317539142654 +and:0.013281893025356251 by:0.002761270278936949 May,:0.0019018700476016559 Brown,:0.0011241801295006023 :0.9809307865186045 +of:0.362966600234792 unless:0.12485810494894807 ago.:0.09550494524796001 a:0.08150747368625443 :0.33516287588204563 +the:0.23027140259326745 a:0.07153661056906058 to:0.0454445442112647 are:0.037386008678734574 :0.6153614339476727 +and:0.17642980749753737 the:0.06212081582585146 In:0.048344263218709445 of:0.0416733220664639 :0.6714317913914378 +is:0.41837958637063594 was:0.26460387170180627 a:0.04831531284808253 the:0.029484934667280135 :0.23921629441219514 +a:0.21471057101195432 the:0.15705315388223717 not:0.05507663827300309 an:0.04526256598254717 :0.5278970708502583 +State.:0.08984531497733247 country.:0.0766517258084683 conclusion:0.047527961763492624 the:0.01303085886783403 :0.7729441385828727 +which:0.3888244368130026 of:0.23867803931929574 A:0.13292822650125521 The:0.11179282838298903 :0.12777646898345732 +have:0.43187610268911863 had:0.32159254857910796 has:0.20903481386198705 bad:0.018261296795923816 :0.01923523807386249 +the:0.5038858650303191 tho:0.15242169746878836 any:0.13830270756643095 his:0.10755051550802655 :0.09783921442643503 +of:0.10523076139795746 and:0.048056469066362385 will:0.046781196400161956 .:0.04496333659569775 :0.7549682365398205 +point:0.9975794890544538 lie:0.0010125431493107305 hill:0.0008170890495829766 of:9.412638394711186e-05 :0.0004967523627053771 +former:0.7449537322298663 State:0.021050517171956204 late:0.005598427383896658 additional:0.004819618046322188 :0.22357770516795872 +but:0.735296506670391 and:0.10672121845415901 But:0.024440873223110077 that:0.007658710522364435 :0.12588269112997552 +of:0.2601292760966218 to:0.16244372305088323 we:0.15939128978059336 and:0.15138270565675244 :0.26665300541514914 +they:0.3381032277060245 I:0.2160831374577844 we:0.1975060470481036 you:0.1005943715394635 :0.14771321624862402 +by:0.4162348544229653 in:0.2948115203826431 of:0.14449875265324175 for:0.07604524392834089 :0.06840962861280891 +notice:0.5043811044992035 and:0.026231724596273102 is:0.016872707568989127 to:0.016497586277282504 :0.4360168770582517 +had:0.8998731856547446 the:0.025159863156508065 tho:0.008234925428664792 his:0.007319115103147002 :0.05941291065693543 +that:0.9435604474128818 gentlemen:0.013774240091720458 and:0.011577206370642698 If:0.0076506481371067326 :0.023437457987648305 +the:0.7157508761145095 a:0.13306493895917254 tho:0.03556963762910736 tlie:0.017766827009800628 :0.09784772028740986 +and:0.00849991431536391 thereon:0.008346801207200456 farmer:0.00600708716762304 the:0.005333790546709398 :0.9718124067631032 +follows::0.32774833371404366 a:0.07842479298357886 the:0.07352263895106922 much:0.02636808531312554 :0.49393614903818267 +it:0.7841438682178093 any:0.07917816880038037 him,:0.05488667103757751 them:0.00639598502812114 :0.07539530691611163 +the:0.0006226323632322326 lot:0.00041119081879392266 was:0.00018134495173442638 tho:0.00010030622187348681 :0.998684525644366 +tho:0.33055371110472814 the:0.27538777366525025 room:0.13334902451230193 feeling:0.05935152932981445 :0.20135796138790546 +the:0.11619722620437722 and:0.10613259040148014 of:0.08720271270795718 are:0.04708899152220339 :0.6433784791639819 +which:0.89522295958341 who:0.005793122820104089 as:0.005600337227085287 if:0.005498509917338193 :0.08788507045206248 +May:0.20128606141657943 December:0.1579011887536347 October:0.1254523694239043 September:0.11770602172746208 :0.39765435867841936 +same:0.04825602182333104 new:0.02151542534180352 previous:0.02069202709347188 the:0.01927805521549977 :0.8902584705258937 +the:0.5281270504811776 Its:0.12290894985537652 their:0.10243929858202436 his:0.09995313657181093 :0.14657156450961048 +that:0.2668497813281 and:0.20257424412301234 but:0.13395223526471184 But:0.08301922129806787 :0.31360451798610806 +advice:0.46266060451812724 exercise:0.19279362251151103 notes:0.05661027846249602 results:0.03161494268124467 :0.2563205518266211 +and:0.2123156517648072 that:0.16217402909397452 as:0.1491677208279455 when:0.09098276190670988 :0.38535983640656296 +come:0.14840161938403762 go:0.06152482763163188 formed:0.01020194170598211 be:0.009825998909205129 :0.7700456123691433 +that:0.0462180701184 they:0.035849744861548793 one:0.02314553230851969 who:0.01784857512478518 :0.8769380775867462 +the:0.28290734037250365 a:0.11324276782399317 his:0.04430849992210151 their:0.03834325280839994 :0.5211981390730017 +is:0.18707793730672947 and:0.1634495886358362 are:0.08618238844284686 of:0.07418342859855111 :0.4891066570160364 +He:0.14480299990998274 are:0.1415644096982503 and:0.13443972297347634 was:0.055038877873547165 :0.5241539895447436 +to:0.2500287821525532 the:0.14525983533420686 at:0.13495024627711386 and:0.042108530242715665 :0.42765260599341043 +out:0.5062052152538847 on:0.3003360885777358 off:0.08585773086873189 away:0.02940821104911923 :0.0781927542505283 +is:0.3299638510870921 as:0.1503445288088163 of:0.14403625431855582 and:0.0983132920790916 :0.27734207370644415 +burning:0.010370907087132107 President:0.00574526148763833 Washington:0.004573811214215045 going:0.003554417938680204 :0.9757556022723343 +local:0.05424527448750861 said:0.05294148360952798 special:0.03159065562619875 navy:0.028649277264985073 :0.8325733090117796 +city.:0.09178226838540599 day.:0.06797272282990227 year.:0.05383550453231557 State.:0.046833007190681536 :0.7395764970616945 +colored:0.05372924703351169 Indian:0.04100707794196174 the:0.02230329857170707 of:0.0205850099418931 :0.8623753665109262 +the:0.04329131984026745 and:0.021339846865823235 white:0.009207056116496446 support:0.007784637583702464 :0.9183771395937104 +The:0.21222267513213375 the:0.15782276271642298 a:0.0903089479543606 of:0.08757569657988705 :0.4520699176171957 +the:0.4279105808590331 a:0.1038456594442887 to:0.06683022510966519 which:0.045891438143629414 :0.3555220964433835 +are:0.3562608015232547 were:0.2084364404103506 shall:0.17653281320530248 and:0.04405015319606183 :0.21471979166503044 +as:0.1628106428135803 house:0.1004497914895572 at:0.011261593268754774 aa:0.010669853196369546 :0.7148081192317381 +and:0.11029014483286494 that:0.022988652389355324 not:0.020902155902998466 -:0.017987373958789687 :0.8278316729159917 +to:7.497136463885494e-05 was:2.8579468947025873e-05 the:1.512736168242735e-05 of:1.0551888106402644e-05 :0.9998707699166254 +a:0.2743424796237752 my:0.19736901061428186 their:0.16038970731456878 his:0.14189784424090476 :0.22600095820646934 +good:0.02765446193968244 new:0.026534532631456643 few:0.02478927732371726 little:0.02199543209272914 :0.8990262960124146 +the:0.45663690681713204 and:0.16163725305686433 With:0.142204857198906 that:0.0531987876840066 :0.18632219524309102 +the:0.8782384544892038 said:0.0661326042703898 such:0.02463383895935875 ths:0.019864477064039553 :0.011130625217008059 +as:0.7391770395650343 aa:0.026272304545855794 is:0.01594693017666718 a:0.012892004901626258 :0.20571172081081654 +ball:0.1510854264911651 seat:0.13821686695551552 days:0.1008283130880274 hour:0.0878641548426194 :0.5220052386226726 +hoped:0.5770496881784549 said:0.1547546275716128 believed:0.04457931426930602 probable:0.030254447506348786 :0.19336192247427764 +little:0.24980715876390355 heavy:0.13636520981087155 so:0.10710897744982731 two:0.0648254157038408 :0.4418932382715569 +use:0.018509919718205786 members:0.00816876101288009 people:0.007581262396555807 consent:0.007490459520401981 :0.9582495973519565 +laws:0.37247914605209737 law:0.04242136368891766 financial:0.0072775074603720555 corn:0.005129507106392626 :0.5726924756922206 +the:0.8510521145221319 this:0.06935160115480336 tho:0.02128611636849919 our:0.017661827244916883 :0.040648340709648775 +land:0.20523964469682143 line:0.056289723278972276 and:0.029988916317941205 the:0.02145282101857732 :0.6870288946876878 +ing:0.049904002057929664 us,:0.023550272887716325 provisions:0.023410823319739253 labor:0.02003583622870056 :0.8830990655059143 +and:0.1833785915556648 to:0.07197102563551792 the:0.07163032016173876 of:0.0607675507012035 :0.6122525119458749 +for:0.8160632814709031 with:0.025939676493374562 of:0.02580457272018497 lor:0.021287121532370314 :0.11090534778316694 +the:0.477379877603703 a:0.22371543395837667 being:0.042413039843774605 his:0.03490751053444694 :0.2215841380596989 +made:0.8906300103983937 been:0.009456362675848868 ever:0.0055617536421198365 had:0.004413902750269107 :0.08993797053336838 +be:0.8002249035165135 bo:0.07232686323071195 it:0.06280189240485146 the:0.023422720608414778 :0.04122362023950822 +and:0.0501882273475345 of:0.045996015077980706 the:0.037445978700638094 ..:0.026309791930467827 :0.8400599869433788 +the:0.492279400398362 to:0.2493951851007377 been:0.09775585731074533 him:0.04616007391934654 :0.11440948327080856 +and:0.2828088935002049 the:0.0646607810810915 to:0.06325466478140852 The:0.06321770986310714 :0.526057950774188 +any:0.14165626794652017 County:0.12104225051175324 the:0.07660906435069867 a:0.020946367668975365 :0.6397460495220524 +the:0.5386301765279446 this:0.20001697443973881 one:0.12601198751883136 some:0.03719173188902593 :0.09814912962445917 +and:0.1845299003396213 the:0.12986835871914876 with:0.059716966820386054 but:0.033494273065754754 :0.5923905010550891 +They:0.39632312687037413 s:0.09381485513201586 which:0.04889700899596675 they:0.01493732492540699 :0.44602768407623616 +is:0.4104961122633402 due:0.0875220592474131 payable:0.06208092517459293 interest:0.023900668155609324 :0.4160002351590445 +are:0.764796576152205 in:0.06779519754111052 named:0.051876414400796676 to:0.039689393104800526 :0.07584241880108736 +ho:0.4475541405915129 it:0.37496215304503183 he:0.03962902641877191 O:0.013014891135606964 :0.12483978880907638 +air:0.41319651230137733 court:0.012821824665857318 necessity:0.0024016380640915574 amount:0.0015357689150079638 :0.5700442560536659 +with:0.2958329185932027 H:0.15491007630838216 and:0.14168876023037177 in:0.1106258707520605 :0.2969423741159829 +order:0.2797392797948602 unknown:0.08812627345006058 agent:0.021014607317064646 authorized:0.015966257320996578 :0.595153582117018 +up:0.13148001968813625 forth:0.04941771983134177 out:0.0006099937405454772 to:0.0005616849593763122 :0.8179305817806 +turned:0.0859002048316751 turn:0.04753009624185741 that:0.022942414984132232 covered:0.018107345740119088 :0.825519938202216 +not:0.9999326174002324 you:8.632315016730063e-06 most:8.35688638594127e-06 must:5.683492019935776e-06 :4.470990634488279e-05 +of:0.5945783667481179 half:0.16024363691815252 aro:0.08039441925594201 and:0.06695106870821321 :0.09783250836957445 +trust:0.231363674966155 go:0.005314910284704407 license:0.00523640126575443 gold:0.004501947538735755 :0.7535830659446505 +10:0.20487642849515178 in:0.16101804641080997 wide:0.04938118454968366 high:0.039585060668783596 :0.5451392798755712 +disease:0.6918087249707624 head:0.029281646449494835 system:0.022972694951052364 which:0.01796512577182435 :0.23797180785686606 +the:0.991686216951795 tho:0.0030180851475033097 his:0.0014276787995926856 this:0.0008534684386277591 :0.0030145506624813705 +to:0.20387416841070655 and:0.1549571321135266 which:0.08590157945013406 the:0.054506753669307705 :0.5007603663563251 +service:0.038004821893740486 and:0.01546679331050318 but:0.005671359373521619 city,:0.0026473945344632354 :0.9382096308877714 +was:0.15287977009280662 and:0.054776003516402175 it:0.026439883920876445 will:0.024647215812048685 :0.741257126657866 +that:0.5047250263962183 A:0.20279842254494052 a:0.09195019982838092 That:0.07449135014093777 :0.1260350010895225 +already:0.8889239910715412 engaged:0.04000696939498838 here:0.012929709273111798 running:0.012208701318581927 :0.04593062894177661 +and:0.8331459477411861 of:0.0193377145701942 a:0.008104294564131575 to:0.0073513719048436685 :0.13206067121964435 +good:0.9822097406408382 pleasant:0.006320508079654619 much:0.003978065274129211 earnest:0.003394512455686514 :0.004097173549691523 +out:0.768500009795191 children,:0.018758220060440596 boy:0.018552091561979962 again:0.010455173591880551 :0.18373450499050775 +of:0.18355853173471212 the:0.1579499688629147 and:0.08527986451559533 are:0.07550962348453515 :0.49770201140224263 +the:0.1587380498648179 tbe:0.13018329947149515 i:0.1285475472442603 New:0.12156918375844512 :0.46096191966098166 +San:0.03383189822246877 city:0.031341239316585064 the:0.029520243234168995 water.:0.02812478736009901 :0.8771818318666782 +the:0.2423490212335826 and:0.03571990487347746 of:0.027489661979205805 a:0.010007167046014337 :0.6844342448677198 +but:0.5831719563258957 and:0.06408863364871466 well:0.03372379860428036 or:0.028763565409006382 :0.2902520460121028 +in:0.3176666262839784 by:0.18104151109532 the:0.06643379229516116 when:0.06387391899660838 :0.3709841513289321 +man:0.13669444771076225 of:0.07253296032225066 good:0.029545697178245046 for:0.02203711094573735 :0.7391897838430047 +the:0.2804720338779501 ,:0.13847097569381747 two:0.13615496143453862 The:0.07481909566155565 :0.37008293333213804 +do:0.9969439042884449 say:0.001069868981521342 doing:0.0005465628066378863 be:0.0004923365646739735 :0.0009473273587219644 +the:0.5850101989655441 a:0.08972855759237215 tho:0.03952234006648941 his:0.03341713734318708 :0.25232176603240736 +him.:0.2316818447923883 it.:0.03671352899623145 people.:0.03197920153984846 them.:0.028086209517948917 :0.6715392151535827 +and:0.09246986101945154 the:0.07214322978866658 of:0.06475005964966708 to:0.035378169725069804 :0.7352586798171449 +of:0.33799662294397914 whose:0.25940380539296876 who:0.11184726802952713 the:0.06635417806623403 :0.22439812556729077 +and:0.35032251339174225 of:0.07727550432429708 the:0.06856487246159046 its:0.056149991021896425 :0.4476871188004738 +J.:0.10458668139775695 W.:0.06712271947467957 John:0.06669812171621059 C.:0.053554756956628195 :0.7080377204547248 +they:0.9535803075726489 the:0.019049098225127535 I:0.006944835673491611 a:0.0033355236050348304 :0.01709023492369716 +along:0.28431231165314047 at:0.26109797943188573 on:0.23584215622000163 from:0.11973736015469474 :0.09901019254027743 +that:0.3022768147797316 as:0.14128613190583006 and:0.11824366062169142 or:0.06230173887816609 :0.3758916538145809 +and:0.1320777679920785 know:0.06390414459334932 The:0.06297909582475388 go:0.06232275518987028 :0.678716236399948 +but:0.025885622800388843 filed:0.023804845744120413 also:0.022749680064485075 not:0.022651376883411633 :0.9049084745075942 +m:0.2666439937241548 may:0.06281143246293401 and:0.048438953825464065 of:0.015509704446077304 :0.6065959155413698 +and:0.11151238544372684 A.:0.03631219365120152 H.:0.03185982302490903 W.:0.03171809969852304 :0.7885974981816396 +the:0.6604376844599729 this:0.04329396103439373 tho:0.03965012575769192 that:0.024737301626313397 :0.23188092712162808 +will:0.9569956216660719 may:0.03189934720081668 to:0.0058262961799136785 would:0.003299076777396622 :0.001979658175801065 +an:0.32454980577437254 such:0.2366625140199011 this:0.15328508161286467 of:0.1405146057053719 :0.1449879928874897 +know:0.20876692266931413 come:0.10842199448240641 went:0.0578607507648079 suffering:0.010460572644490287 :0.614489759438981 +time:0.507276292461601 said:0.1963881311604088 is:0.06531812462664394 the:0.044823482317824515 :0.1861939694335219 +to:0.15928480464004444 and:0.10488100785380196 of:0.0427624125169114 the:0.03424490709737182 :0.6588268678918703 +looking:0.12396873951431817 waiting:0.07486568636049934 held:0.05037073993029422 working:0.046054082112996796 :0.7047407520818917 +of:0.08279015364990217 line:0.06743287327371651 out:0.031336647580216044 .:0.02849433034547919 :0.7899459951506862 +reach:0.18103663095706365 time:0.1219707460766339 limits:0.07923066203264366 city:0.06303309219709244 :0.5547288687365663 +the:0.5535113038380032 his:0.08360298390853527 their:0.07147775129786627 a:0.04262718741061986 :0.2487807735449756 +two:0.7766141730908152 more:0.21782615928778815 other:0.0019514516618046225 moro:0.0016987696351718014 :0.0019094463244203237 +of:0.33920874313833177 and:0.21898991487736655 in:0.1341262986981036 by:0.07171882359441098 :0.23595621969178698 +,:0.04709677253116726 yellow:0.03832426934138438 notes:0.025552391957643694 out:0.01982446969453097 :0.8692020964752735 +forth:0.7215708688507428 out:0.11904954647246606 o:0.0057737730922615554 15:0.00379389186283973 :0.14981191972168975 +and:0.06395370336718564 made:0.027149280547524846 in:0.026142536614753926 for:0.024375910734351445 :0.8583785687361842 +are:0.1069596833145781 there:0.07436944262565737 them:0.07009224090260642 it:0.05721747477492231 :0.6913611583822359 +left:0.1399767221026099 to:0.12947211666193187 at:0.0864631952023193 could:0.06271285385386621 :0.5813751121792727 +of:0.12139370013839192 the:0.11434910896633674 and:0.08568697762055716 in:0.05726583276767738 :0.6213043805070368 +Northern:0.015222615689155778 and:0.008840095418198857 the:0.0063264500965129365 of:0.005973150262787029 :0.9636376885333454 +New:0.4773014919773094 the:0.12277043811280328 with:0.0399328014504588 of:0.03755179290627109 :0.3224434755531574 +written:0.15646515867826336 main:0.0622554838258107 whole:0.06099555830687216 the:0.03769409201626583 :0.6825897071727881 +room,:0.09826842226763907 goods:0.03626578838629121 law:0.026760130285467837 road:0.026522882966763545 :0.8121827760938384 +and:0.058779913227026234 of:0.045014164343697434 the:0.038866026374322245 .:0.03002746821651586 :0.8273124278384384 +and:0.5846155992547077 of:0.24800664269470396 And:0.0649493485600171 ami:0.019059918677317416 :0.0833684908132539 +trouble:0.6493119430405475 best:0.09198735087358914 President:0.014206551523654604 city:0.007348529967586245 :0.23714562459462252 +years.:0.8509961659951708 years:0.1089772663939231 for:0.0015282344477869116 tion.:0.00018468830148857197 :0.03831364486163045 +and:0.926611976464188 but:0.04124901827779782 never:0.009374027016651446 to:0.008438864929388808 :0.014326113311973997 +and:0.04258815023949745 of:0.02747001361141445 where:0.023302614416864022 country:0.017152895900231745 :0.8894863258319926 +stock:0.889937505321317 license:0.03214326242992743 sum:0.011411644121467392 money:0.010214086018370745 :0.05629350210891739 +and:0.01931540918509897 .:0.00860371239414233 of:0.006446062629569704 etc.:0.00532606711710939 :0.9603087486740797 +a:0.21493419087716376 ber:0.15603342400499945 1:0.13763821666648338 ho:0.12737315097629262 :0.36402101747506077 +40:0.6179562843332157 forty:0.06659321724149378 forth:0.01576449488589212 100:0.015117409857243743 :0.2845685936821546 +stop:0.014756149324139758 wait:0.010653312417954064 move:0.009876841744040224 of:0.009247516752459009 :0.9554661797614069 +round:0.012612336696502266 before,:0.011311503150366881 book:0.007259723659340561 previous:0.004638186186484046 :0.9641782503073062 +t:0.4700792187839606 are:0.15419438736835794 The:0.06235792184740387 and:0.02148411469851637 :0.2918843573017612 +But:0.3462531258388722 of:0.3124150356969663 In:0.27490478818359937 in:0.014556119567654058 :0.05187093071290807 +laws:0.137700100085291 and:0.059761441082290735 school:0.04560507827672804 interests:0.0331362162572074 :0.723797164298483 +and:0.16945386782365726 with:0.09116286743356236 the:0.08583633024760184 or:0.08427055143266181 :0.5692763830625168 +the:0.3488118785204055 from:0.2552116780794396 he:0.13315661577260635 is:0.12474922685556918 :0.13807060077197916 +and:0.3124415821734443 but:0.14765927450658242 But:0.05866279293929462 that:0.047450684023793606 :0.43378566635688515 +had:0.3306907199652089 ,:0.08472350272389775 taken:0.04822434463882666 given:0.03577214928152422 :0.5005892833905425 +and:0.3781958139513646 aud:0.16387133728584224 of:0.11789658391999346 ;:0.10157556856193138 :0.2384606962808683 +to:0.3586230606586182 of:0.31116252507144504 the:0.14849404878265748 and:0.09041152090411929 :0.09130884458315996 +been:0.7525684724019674 now:0.04998717027226648 already:0.043780942016313454 was:0.01069656777613889 :0.1429668475333137 +in:0.2556004697912479 of:0.2540003159272985 to:0.17996306749217358 on:0.11665972467959157 :0.19377642210968846 +young:0.14607445725993567 old:0.043121918146289684 only:0.033670539782156346 the:0.030754615279554857 :0.7463784695320634 +of:0.1640376191655834 and:0.08380577742082403 tho:0.08047066115404933 for:0.03263203250400677 :0.6390539097555364 +the:0.3111109083674928 be:0.12400285485671521 a:0.052356003966625785 com­:0.03125837544338256 :0.4812718573657838 +tax:0.04234351030797153 principal:0.04183058325445793 money:0.039920664370246745 gold:0.01838854649826126 :0.8575166955690625 +her.:0.17063810821167152 and:0.15476587905138453 me.:0.027469654191367494 to:0.02458121710868568 :0.6225451414368908 +were:0.7728040208043161 had:0.18872372872584003 was:0.006616969915460236 would:0.006552250503163115 :0.02530303005122042 +and:0.3865555552170617 or:0.09230740958397786 in:0.08827485619986852 the:0.06753547193350297 :0.3653267070655889 +the:0.768756640553425 tho:0.04204519463407652 a:0.027290419729763458 this:0.02099166444573764 :0.14091608063699712 +a:0.9980914649677972 with:0.00020886961134906096 make:0.00018528262871537508 the:0.00015408267208703947 :0.0013603001200513049 +other:0.21808561851373617 other.:0.06648216612381301 the:0.028861172378421493 most:0.025450470820590758 :0.6611205721634386 +the:0.37581013671814834 his:0.16274246909458145 a:0.09929260414242043 will:0.07492302984295302 :0.2872317602018968 +trial:0.06362370373082077 d:0.05225056172721828 hearing:0.015432810140454688 bill:0.009910324434895552 :0.8587825999666107 +was:0.3670385534350933 of:0.2298358951375309 by:0.17075975593171974 property:0.09072149478263955 :0.14164430071301656 +get:0.12260843433122331 go:0.09982469724828935 be:0.036782750896056114 pass:0.031147744859105805 :0.7096363726653253 +as:0.2894248169125535 As:0.1421102467628815 and:0.07227887995084449 an:0.023700558791576152 :0.4724854975821444 +measure:0.49832499003899605 degree:0.495931239325433 part:0.0013911905849814396 cases:0.0005648770962054825 :0.0037877029543839707 +to:0.3292754454620307 done.:0.09883774350235267 and:0.0891548934385842 been:0.04054528522335789 :0.4421866323736744 +growth:0.133263473762429 board:0.035972359760421034 county:0.029957428892010564 grant:0.02738529093186242 :0.7734214466532771 +who:0.12648588175713402 It:0.10091679836550226 that:0.060572938799718874 he:0.04999754738535347 :0.6620268336922914 +does:0.19978879416370893 is:0.15015309968491042 had:0.11933553774439037 of:0.030148164771907047 :0.5005744036350832 +if:0.808595879192239 If:0.026004230721857348 ir:0.0007130480229486064 it:0.0005328201587447563 :0.16415402190421025 +it:0.41711807809619245 and:0.11667456195402769 who:0.09740616574331479 which:0.09713164708470222 :0.2716695471217629 +be:0.12558121325656535 them,:0.07295491643466982 them:0.0566683782258358 the:0.0431837985751104 :0.7016116935078186 +and:0.1385935453231803 to:0.08788663106503282 the:0.06906413423463492 of:0.06273413075254426 :0.6417215586246077 +been:0.3858007308502508 before:0.18241472413200682 even:0.15355145488404587 since:0.03564440244429399 :0.24258868768940256 +in:0.13832637758520128 a:0.13225343262860526 due:0.057502594475032504 to:0.05076144116468424 :0.6211561541464768 +First:0.1456168844896359 Christian:0.052346058184731335 Central:0.04300921389036248 .:0.021879928355513455 :0.7371479150797569 +as:0.7019802384827755 with:0.07921551388854349 made:0.031544927031177464 us:0.0283479745693086 :0.15891134602819496 +the:0.5469959424736498 he:0.01696410883224455 tho:0.014732954414091398 to:0.014605960823358452 :0.4067010334566558 +same:0.1378932793544319 most:0.0809382470679382 pro:0.043256875944854424 all:0.02734653246618671 :0.7105650651665887 +land:0.3153832614485085 formerly:0.17195172661769662 acres:0.05828714367643387 purchased:0.044745448370020556 :0.40963241988734056 +on:0.35529646139256427 shall:0.23665198723716063 and:0.20927013641392397 to:0.08566320154567487 :0.11311821341067631 +of:0.5989255161564087 and:0.06883071724276928 the:0.040224633991856565 to:0.026890498723821304 :0.2651286338851441 +the:0.2717393840986288 and:0.12313455163162068 of:0.10052194470440225 a:0.06933280193293269 :0.4352713176324156 +very:0.8745587972077471 every:0.020379393989200686 the:0.015013287742451375 same:0.006207465144054402 :0.08384105591654654 +of:0.37694157875805384 in:0.15778331223385603 from:0.09485248566684516 to:0.09373437069560055 :0.27668825264564423 +be:0.3474447718448667 not:0.06728141158389321 bo:0.0318593119005595 have:0.02793844713449226 :0.5254760575361885 +been:0.08834198473398412 li:0.029721744184829483 not:0.024646219776262784 time:0.015246134535972506 :0.8420439167689512 +had:0.4312905463064626 is:0.2664417021299273 has:0.1694906955683783 have:0.03604720472435866 :0.09672985127087311 +the:0.39773794924876443 from:0.10032674190959655 by:0.058684544194355294 tho:0.048571788901718184 :0.39467897574556565 +which:0.029171504348506083 that:0.0020217474681999007 life,:0.0011973362620371442 the:0.0010400050529569926 :0.9665694068682998 +France:0.01578205725749528 business,:0.012537315885911957 ho:0.008224029197401523 English:0.0069539971268138615 :0.9565026005323773 +of:0.31599396392705725 has:0.18581687712032988 for:0.09737230037931903 in:0.08369844314892996 :0.317118415424364 +the:0.4930274283237903 a:0.13277102388733336 tho:0.043127515847121316 an:0.02372730643558288 :0.3073467255061722 +and:0.16934079986481843 of:0.1073503811125535 when:0.04711330204352455 When:0.032336360431381564 :0.643859156547722 +in:0.2085596756897479 with:0.16867269601477344 of:0.1565995090764779 In:0.1338344812428237 :0.332333637976177 +and:0.17624608484986126 the:0.11408233706826489 of:0.07760789495011523 to:0.0517788075297094 :0.5802848756020493 +to:0.5233651943512488 doubt:0.13021951174967994 in:0.05553904344762018 during:0.031193249776243173 :0.25968300067520783 +and:0.07970974780536574 the:0.05626999515285373 of:0.0544413687801013 to:0.030415661122734073 :0.779163227138945 +built:0.09566525742709925 but:0.045612671991139914 the:0.03263864037983519 some:0.0262005312591867 :0.7998828989427389 +President:0.010017655011505273 beauty:0.007754342761558748 sick:0.006914029036023871 plaintiff:0.00690450666476481 :0.9684094665261472 +with:0.01844430704509146 low:0.007985976269866784 in:0.0020941118565797607 of:0.001473026832719891 :0.970002577995742 +and:0.14451950850386902 of:0.114640040946238 the:0.0982767060555575 is:0.031287621580504986 :0.6112761229138306 +the:0.1832948881606239 and:0.13907887135459288 The:0.13095882103794496 of:0.07946285296339166 :0.46720456648344666 +b:0.18266582339934812 Boston:0.09275790328168744 United:0.038551241264955904 daily:0.03764683118949256 :0.648378200864516 +if:0.1396348899867265 what:0.024244709474430425 as:0.021440171066346617 giving:0.01744172680172004 :0.7972385026707764 +a:0.966609133665814 as:0.02121976572978139 so:0.00536406302179663 very:0.0029907424139155006 :0.0038162951686925737 +ready:0.4433883763984703 asking:0.057268259708491476 right:0.056053842776116726 ing:0.01990926802234752 :0.4233802530945739 +given:0.46047397335680096 For:0.1019500501110722 with:0.0984600012400672 caught:0.0703730833009818 :0.26874289199107787 +water:0.9682462271356362 patient:0.0007138193186117393 storm:0.0003656356090520762 crowd:0.00027387514693235997 :0.030400442789767623 +railroad:0.30002091425610067 said:0.1040224616387857 commission:0.07769373274653599 coal:0.02918879840775503 :0.4890740929508225 +and:0.48071518354823795 with:0.2209696605038077 the:0.09992095973576798 nine:0.043880425925699414 :0.15451377028648697 +for:0.28983014161705595 the:0.11185772061172075 has:0.09295675876109435 had:0.08837889515485503 :0.41697648385527375 +son:0.023119104471846633 hope:0.022156147909993356 by:0.02030208375443487 ;:0.014308763181558421 :0.9201139006821667 +thousands:0.05829656621398779 lot:0.04972355945330877 face:0.03979457383587058 out:0.031925740506076716 :0.8202595599907561 +makes:0.3809944949274814 and:0.06644215462946237 call:0.03128823308910261 written:0.030413934656569105 :0.4908611826973846 +make:0.6090744501791646 their:0.008086860063989433 pay:0.00452261745327244 good:0.002868353370163762 :0.37544771893340984 +effort:0.19212857723517968 ex¬:0.024482923353354207 day:0.016270973745496735 attempt:0.014581499073555645 :0.7525360265924137 +and:0.051162367580554126 tion:0.038840219830237326 ment:0.0376019718334052 door:0.02467792263227948 :0.8477175181235238 +do:0.8012218207321166 think:0.05118282395480595 be:0.045592153103301974 remain:0.020360396918019216 :0.08164280529175633 +land:0.12965683525775487 land,:0.07928719894516634 State,:0.03014313940644666 state,:0.01582317941451848 :0.7450896469761137 +and:0.09203466574068037 is:0.07212724067223875 county:0.03927827760392757 or:0.030119711038636927 :0.7664401049445162 +of:0.8877753791239783 in:0.03761300224325616 to:0.013818791933226519 among:0.013121852087328174 :0.04767097461221084 +receive:0.000794609593451592 use:0.0006230442692129127 sell:0.0004684126110340752 of:0.0003535673928282799 :0.9977603661334731 +cut:0.2667744626529822 break:0.11578030985232236 keep:0.0958420517172147 put:0.092021507099688 :0.42958166867779274 +to:0.588128879322246 of:0.08201695662971326 running:0.06556212244525504 in:0.04927566971849602 :0.2150163718842896 +II:0.026604282659000462 White:0.01603392140535071 main:0.011573974540250479 city:0.011001464030183058 :0.9347863573652153 +those:0.2609918566615544 others:0.20607549608642792 women:0.06161288694233887 girls:0.04454397538324079 :0.4267757849264379 +made:0.07842718576614739 broken:0.07157756350902092 done:0.06953885499404816 carried:0.05974472770996947 :0.7207116680208141 +most:0.01796880434640085 the:0.013749492620308137 following:0.008254988617733794 said:0.007602019893844487 :0.9524246945217127 +attack:0.06774507297095085 order:0.04877245748555288 army:0.046597273577555935 issue:0.01760599132672593 :0.8192792046392143 +the:0.156419029660722 of:0.117950932502149 and:0.07156187833080278 to:0.07014593873683118 :0.5839222207694951 +the:0.10590894440729996 or:0.05444858767191204 a:0.03960670134446932 any:0.03876055693087288 :0.7612752096454458 +the:0.018478373544878482 The:0.009793276724783195 Any:0.0021215116222810648 is:0.0012545677044448983 :0.9683522704036125 +and:0.058768982237126594 of:0.03409922442716003 A:0.024536085178325662 .:0.023091159739505943 :0.8595045484178816 +the:0.9909333745325851 that:0.0040715500396685585 by:0.0010663464317365 a:0.00104323790281704 :0.0028854910931929963 +to:0.16160340553231198 city:0.13234960183296857 the:0.07200722898062227 through:0.048973709116094964 :0.5850660545380022 +the:0.7029933394447423 our:0.020696463769718003 and:0.01090813661107346 that:0.005666825690981118 :0.25973523448348523 +amount:0.35861636475077957 number:0.14926016069185602 cost:0.03315599442620852 value:0.03128262898033842 :0.42768485115081745 +use:0.4846899164862234 keep:0.42811082787619403 apply:0.04531259862724859 take:0.009130595724099468 :0.03275606128623426 +in:0.30669716646113326 doing:0.15285785093574528 found:0.10986749175259844 getting:0.07354834733024358 :0.35702914352027937 +of:0.313710711540639 the:0.0875441469117985 to:0.07552385862954117 his:0.07397053771538224 :0.449250745202639 +sent:0.24961877993605305 taken:0.16214852087766754 brought:0.12435995445582962 made:0.11346275436640986 :0.35040999036403997 +the:0.857376996442238 tho:0.03779829961774718 a:0.013661708612546744 tbe:0.01042998313601756 :0.08073301219145056 +and:0.11440840399275662 feet:0.02933747433288895 is:0.020515439685093347 but:0.01557483531932248 :0.8201638466699387 +the:0.45579904868463694 or:0.2990785770118426 and:0.06476637213664396 to:0.046677609254577423 :0.1336783929122991 +water,:0.012663418395007741 present,:0.011358555465296492 it:0.007786854024150062 lands:0.007489605325111181 :0.9607015667904345 +battle:0.16405419526911696 northern:0.12498219242445885 commercial:0.09230391130939226 high:0.062402334463200135 :0.5562573665338317 +done.:0.010614574136542104 made.:0.002989294531600488 to.:0.0022381093623583927 nothing:0.0004213081926174718 :0.9837367137768815 +of:0.16231056577562825 and:0.10598786540328017 the:0.07728101914131574 to:0.03369607147894386 :0.620724478200832 +even:0.9582054623204365 her:0.00029812423327229263 a:0.00028188810581407614 his:0.00023841667062706888 :0.040976108669850166 +that:0.5470835488099732 which:0.18237377947495187 will:0.02601110478149484 the:0.018686663361640685 :0.22584490357193931 +found:0.028861736379203973 possible:0.015349416599161524 more:0.011220089697948328 used:0.004929124940185194 :0.939639632383501 +in:0.3544030460240475 I:0.033985223112313036 to:0.028791385154486367 it:0.019982537284384427 :0.5628378084247688 +chance:0.5802707692098258 call:0.04503319790922118 right:0.02716396043373396 place:0.020759899629253127 :0.32677217281796594 +the:0.3444537688378369 be:0.11574966740642036 a:0.044376177959506186 his:0.04215756586555697 :0.4532628199306795 +to:0.24104048173806616 it:0.23098101528983211 that:0.1977084328236842 question:0.1313734631897849 :0.1988966069586326 +did:0.6840476478242205 knows:0.00692391372809983 thought:0.005279909719759088 to:0.004047529789737751 :0.29970099893818275 +true:0.09250197017182407 al:0.07926201476600722 and:0.05814602019749806 confidence:0.047123490456659624 :0.722966504408011 +use:0.08709340590512092 hands:0.07521293575938418 direction:0.07482607100154076 matter:0.06724167356675917 :0.695625913767195 +go:0.1624393004966926 get:0.061193899451965475 take:0.004615540590616157 struggle:0.0017853257142305917 :0.7699659337464951 +come:0.019779758414866157 -:0.016166832665672322 i:0.011398277844177514 ;:0.008637712485064617 :0.9440174185902193 +the:0.1607600004597075 to:0.028525857811934008 which:0.025624878578127782 and:0.024412199639291594 :0.7606770635109391 +the:0.7336630307473373 this:0.10342685220758006 which:0.02782725132799712 about:0.02602851453434488 :0.1090543511827406 +court:0.9447818592379364 law:0.023698619860958177 Court:0.009765672104288236 courts:0.005143326357194027 :0.016610522439623156 +to:0.15360577514896134 and:0.14985230847560452 I:0.10310391823401946 1:0.05233986162825643 :0.5410981365131583 +The:0.3431445903364228 the:0.06323911211868413 We:0.052503153005118236 It:0.051869362421405475 :0.4892437821183694 +was:0.48818594426205825 were:0.3169765634858661 is:0.1034793401109451 are:0.047281312380877925 :0.0440768397602526 +and:0.33029961738791386 that:0.11297921107849322 That:0.07355476875814325 and,:0.052670255671410086 :0.43049614710403933 +and:0.1273007665679197 weight:0.08226099673318538 the:0.07269403482071556 of:0.057023069528674565 :0.6607211323495049 +worse:0.9606592912514494 strong:0.010482817584005535 up:0.005257716419121799 dark:0.0017403701354773524 :0.021859804609945594 +the:0.27909164780376494 a:0.06846845506635385 his:0.027038460653306354 good:0.02392503246771931 :0.6014764040088557 +head:0.10086273973830427 end:0.09602889752683937 rate:0.07997510419059553 time:0.07414639666497085 :0.6489868618792899 +as:0.05353480451629961 remarkable:0.03583414513780687 and:0.029254736342516394 interested:0.028740677204858713 :0.8526356367985186 +as:0.3886782051734301 was:0.19700488080152934 it:0.09135215629902796 is:0.08656853095989558 :0.23639622676611693 +bidder:0.7450032606453182 der:0.07864549315719442 city:0.0032581549609419285 and:0.002105705730419564 :0.17098738550612583 +and:0.30271771342776577 that:0.056636734576028136 but:0.043861343837926114 and,:0.03453692101626078 :0.5622472871420193 +and:0.30831354741532135 on:0.21219653437645355 with:0.19658963323890422 ex-:0.07205087668504388 :0.21084940828427706 +have:0.41365423723635847 had:0.1922507419017722 am:0.12399007330457874 wrote:0.07130702798379027 :0.19879791957350026 +crop:0.040932625469264274 thing:0.037967398573176644 deal:0.027380612697976498 and:0.02500963685915065 :0.8687097264004318 +and:0.1518910789991123 he:0.11160492847002912 He:0.1066547608815199 who:0.0839675965653509 :0.5458816350839879 +of:0.7302073149882755 that:0.19843949390975438 to:0.012043465330069923 with:0.009164389770696264 :0.05014533600120382 +few:0.035850674996645515 very:0.029314465911689812 little:0.025984911924898733 the:0.02101213370264367 :0.8878378134641222 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +and:0.11346304788963993 for:0.08751475698589146 arrived:0.06756031756919888 Just:0.06474346796921109 :0.6667184095860585 +that:0.37288419439819714 a:0.322422724292453 A:0.17710099750010877 the:0.04236697452789612 :0.085225109281345 +this:0.9867634027934955 a:0.005035322669419975 the:0.0035887031233949682 tne:0.0009123061375374515 :0.0037002652761521024 +the:0.22507681516646824 Public:0.19811306025417108 a:0.012518690894885704 Southern:0.011137703629543081 :0.553153730054932 +and:0.07409095010219531 of:0.06100050129416862 the:0.029067447184512495 John:0.027321556830081497 :0.8085195445890421 +death.:0.07081529329125702 hand.:0.021368180195563424 life.:0.0054110454105371865 work.:0.0028756952223164523 :0.899529785880326 +which:0.7118118418688199 regard:0.0029792953728549594 fact,:0.0017867989869219262 that:0.0012413721159801952 :0.28218069165542314 +horse:0.5571812781366494 he:0.2152549483892686 I:0.16505054947203007 they:0.01203243874737589 :0.05048078525467599 +to:0.15188905807201458 consideration:0.1044807419056077 shall:0.09519363019629459 may:0.05889218672842803 :0.589544383097655 +of:0.32437185424909526 and:0.18703158788608348 in:0.12188289524630198 When:0.09913383545382201 :0.2675798271646971 +the:0.506623729236711 their:0.14732283306504135 his:0.09101111774869775 a:0.07191461434112277 :0.18312770560842706 +of:0.37974905517633945 in:0.1899089763724831 contains:0.105511788103518 was:0.1051070025148577 :0.21972317783280182 +the:0.2798061224719145 his:0.057262684408061384 be:0.03155494486551247 tho:0.023326095279564245 :0.6080501529749471 +with:0.35565340327946887 to:0.1391829912720543 by:0.13026064819921782 in:0.06014877652377851 :0.31475418072548045 +shall:0.21473257025932735 to:0.13637851293380618 and:0.09736363676418429 will:0.07968409945991532 :0.4718411805827669 +of:0.8947216550179136 ol:0.03206595634282855 to:0.02987009313446184 from:0.01765071393408128 :0.025691581570714852 +the:0.7460063042431727 tho:0.1057613714890693 tha:0.020188582981566137 of:0.012079406249286322 :0.1159643350369053 +that:0.5170266213685596 in:0.4541752059604795 In:0.017546420838499555 the:0.0070399193324509925 :0.004211832500010325 +conclusion:0.6944109108315629 fact:0.04586685631531932 Sheriff:0.028645802925471406 knowledge:0.020248320935996204 :0.21082810899165022 +Mr.:0.7889597541875089 Dr.:0.14018966207499953 Col.:0.049682338858009246 ton:0.004513922423074813 :0.016654322456407633 +way:0.03521944960109068 gentleman:0.005038604524087555 order:0.004572891899078627 train:0.003523596182777197 :0.951645457792966 +of:0.22627772139878138 and:0.2087488188820131 in:0.13805004417334976 that:0.08967488475567664 :0.337248530790179 +a:0.27247272301340625 the:0.2311095756299358 his:0.1249988237089524 of:0.059633081344299885 :0.31178579630340575 +to:0.6991646675394815 in:0.060536847288289154 for:0.05311836378082675 and:0.050493680067417744 :0.13668644132398483 +the:0.2622792999152887 a:0.1808646033345484 an:0.16550065676621656 tho:0.01940067060226127 :0.37195476938168515 +C:0.25609367913691794 W:0.1913946238980267 E:0.1888582006473524 B:0.18858736742769697 :0.17506612889000597 +even:0.9582054623204365 her:0.00029812423327229263 a:0.00028188810581407614 his:0.00023841667062706888 :0.040976108669850166 +3.:0.14988364012202043 4.:0.02080806300329324 here.:0.0043979455434861245 ing.:0.003923288423906881 :0.8209870629072934 +all.:0.0005274005551449335 them.:0.00023566843014413818 It.:0.00019475638936163162 the:6.809741388304639e-05 :0.9989740772114661 +1:0.11541208818842838 and:0.033424427323609875 one:0.028676217779936508 and,:0.023803502100935382 :0.7986837646070899 +of:0.36102809646217865 to:0.07880946036081193 in:0.0751936178627698 from:0.03125236059596473 :0.45371646471827504 +and:0.2717800190464612 away:0.20652699515672776 which:0.1133108808110465 it:0.04282482450071166 :0.3655572804850528 +of:0.1443439857210818 and:0.12492935275553398 the:0.08974281615327909 The:0.041085313486060974 :0.5998985318840442 +It:0.32336226142119295 it:0.13111438645739887 This:0.10748445087867267 There:0.040032310986292376 :0.3980065902564431 +a:0.3938481703585805 every:0.3139635381751327 per:0.1754197753491769 the:0.016865314427430028 :0.09990320168967991 +the:0.5309934501734328 street:0.3988813478244936 tho:0.010773960037786622 electric:0.005850845123456319 :0.05350039684083079 +world:0.039949258338753624 case:0.03555230579861738 city:0.029825164772473576 work:0.028552619394247046 :0.8661206516959082 +the:0.18463934499194498 their:0.13193346952293797 to:0.1102374705697067 be:0.09604455119492007 :0.47714516372049026 +the:0.03280926618110907 our:0.00935782446129879 good:0.002441433612894351 these:0.0022835135685831997 :0.9531079621761148 +a:0.2299317834829317 the:0.06197616165417482 re-:0.06133430913662945 interest:0.024919837814660346 :0.6218379079116035 +was:0.484387712462399 is:0.2115616327978291 Is:0.020413276428440163 appears:0.015394180424748959 :0.26824319788658274 +M.:0.03879196839410175 covered:0.026843540770689855 up:0.013459673145569992 upon:0.010956482422734053 :0.9099483352669043 +one:0.8638155900014695 a:0.05282141408590159 the:0.04402444210186461 ex-:0.017194256530507632 :0.022144297280256565 +of:0.43332516137084487 in:0.36811364892396436 the:0.08570512608828984 a:0.06626249629906951 :0.04659356731783118 +use:0.060365528590007704 of:0.026748068264299107 put:0.021672616203917094 for:0.020367966054244575 :0.8708458208875316 +large:0.158665997990605 city:0.011908574673590449 city,:0.009803492205228201 and:0.009678062953402905 :0.8099438721771735 +party:0.08630094827867525 public:0.055991054667272465 stream:0.05111248200554574 forces:0.04630563539764925 :0.7602898796508574 +is:0.9744023107194341 was:0.01500547657996081 has:0.004426955659961788 are:0.0029033487802462136 :0.003261908260397122 +he:0.2943689948184806 it:0.22416725074778507 there:0.19996411129956046 40:0.09198799790712622 :0.18951164522704764 +of:0.8799907738920657 to:0.08163303218934524 in:0.01600619893031717 that:0.010828022469905902 :0.011541972518365912 +hand:0.13482235934303713 daughter:0.07548632302100268 presence:0.05118277321062764 wife,:0.04335313475855314 :0.6951554096667794 +been:0.10668016045760174 not:0.09827958811640025 to:0.08793960543919542 the:0.08043262542940859 :0.626668020557394 +to:0.213477771753838 of:0.18560107405639803 in:0.13299610815693247 that:0.08793706863707385 :0.37998797739575774 +your:0.36011391266657017 and:0.24908298537520598 l:0.19537700361008903 are:0.07727917198625966 :0.11814692636187533 +the:0.25731826918781714 tho:0.11717302576820797 be:0.06775271745233172 a:0.060448713432360385 :0.4973072741592829 +the:0.5205907562901297 an:0.16686883836556862 every:0.15351664072805835 a:0.09126852122339904 :0.06775524339284422 +have:0.3222259386288609 had:0.17913835574063913 allow:0.11458667600602146 offer:0.048285020240885455 :0.3357640093835931 +country,:0.09982715674323289 and:0.09842536137307234 are:0.02697039266116883 pounds:0.02408806890644481 :0.7506890203160811 +will:0.33798244410442985 should:0.28331907180356486 to:0.19800236697821252 may:0.0725714344124926 :0.10812468270130016 +my:0.5468443540270154 the:0.13129504001824116 his:0.05270620556634857 and:0.03939415265303027 :0.22976024773536474 +and:0.10591572848967894 that:0.0358632317135467 an:0.03548409673765158 of:0.02968910239885423 :0.7930478406602687 +Judge:0.17046769818152321 result:0.07546966822707755 extent:0.0540318074473538 payment:0.030087918033355632 :0.6699429081106898 +throughout:0.37148503766817204 to:0.24945907200707687 for:0.14895321951988816 of:0.12785797704909233 :0.10224469375577065 +to:0.2872328087454358 of:0.11858174954778525 and:0.08122201644125904 or:0.028929538378904482 :0.48403388688661547 +whole:0.1857697959437161 average:0.14493148717814902 great:0.13644695781359983 same:0.11475117857950605 :0.41810058048502907 +to:0.1317574151639659 along:0.09128334303435853 and:0.06709843064621206 by:0.04336221582113318 :0.6664985953343303 +even:0.9936966343031706 like:0.00021269105383958965 the:2.4823745930439086e-05 I:5.252674868043755e-06 :0.006060598222191502 +much:0.2817227326231259 be:0.10175140374515956 I:0.02210666649433648 great:0.017931130332300132 :0.576488066805078 +of:0.07984906436074264 with:0.04854930070122497 in:0.047819408958280185 to:0.031326197328617265 :0.792456028651135 +the:0.18109235001207927 about:0.14079785733123876 over:0.08359113470352861 only:0.026119101114364576 :0.5683995568387887 +important:0.08731419381491252 probable:0.034968665022002465 prominent:0.020675308967813076 likely:0.014090244317192755 :0.8429515878780792 +had:0.627857749099845 has:0.11978958601533182 was:0.0394101305535516 have:0.02838628263827545 :0.18455625169299605 +owners:0.37945048654776076 of:0.14091793876267736 and:0.11521994578967056 offices:0.09410255832172619 :0.27030907057816506 +have:0.34727169571805305 agreed:0.08556303244257653 wanted:0.06263599261932742 want:0.06259248279645839 :0.4419367964235846 +the:0.23745421532657468 a:0.093676403390996 for:0.03087976618295453 his:0.030591424558317936 :0.6073981905411567 +of:0.22620331788841339 and:0.12004812723711568 to:0.08345023624592741 in:0.06508588239078468 :0.5052124362377588 +end:0.13196502266624918 time:0.11634325223128399 head:0.09340713771671874 office:0.0625972631617788 :0.5956873242239693 +government.:0.000242892720162396 world.:0.0001817526017828529 ago.:0.00018037116235610087 it:0.00017621061631587818 :0.9992187728993828 +and:0.14680078046638861 do:0.020954551409445153 at:0.015309630601543453 extra:0.01346493608737017 :0.8034701014352527 +of:0.05525522483248266 thousand:0.02088561562220231 story:0.01458439728387767 company,:0.011578147196115005 :0.8976966150653224 +and:0.23748501447344075 to:0.1425327400250649 of:0.08124289374038694 in:0.06132658908092276 :0.47741276268018457 +lands:0.9040615161876565 side:0.04744645468395035 virtue:0.007341770065067551 means:0.005793864051794064 :0.03535639501153147 +and:0.10009729515173092 began:0.03378126047918425 of:0.025400340601442348 is:0.024931600666942676 :0.8157895031006998 +find:0.6126923665332443 take:0.07628997293775416 see:0.07378246189088354 make:0.055183569406422335 :0.18205162923169554 +and:0.08762896249051212 of:0.04131821114281817 or:0.019085944917636297 but:0.01382186353515674 :0.8381450179138766 +the:0.22327659529075736 pose:0.12619347957489813 No.:0.1080529230522504 and:0.07732551942736153 :0.4651514826547325 +house:0.15469589582546117 treatment:0.016424925245753008 fine:0.014521687674984842 family:0.013524665496682112 :0.8008328257571188 +their:0.9791864662857291 the:0.00123077652440726 our:0.0001988062666422514 ir:0.00015876135606861366 :0.01922518956715268 +months:0.9578997621306816 weeks:0.008408269611181615 years:0.002426529965614319 the:0.0016559097059641948 :0.02960952858655837 +view:0.055611823294150674 return:0.0395541133421994 letter:0.026897951062915974 visit:0.025876158113726257 :0.8520599541870078 +the:0.17755692891123312 and:0.13859338981412017 of:0.1199787296828088 The:0.11000939989280249 :0.4538615516990353 +thing:0.6470011491090956 candidate:0.10306644585894319 country:0.04117808842188941 one:0.007804023438230123 :0.20095029317184163 +it.:0.5587461176616471 them.:0.1594033543337239 him.:0.01618687543562469 It.:0.009208643558080013 :0.2564550090109243 +and:0.16029754557038864 to:0.10776613392299711 the:0.09178384345066751 that:0.07263671076320326 :0.5675157662927436 +whenever:0.3765782954676706 if:0.2701356666951199 nothing:0.18353231508282442 it:0.012031325755886044 :0.1577223969984991 +in:0.22228774044951793 to:0.2137139158101387 over:0.16828114259153762 and:0.14432159698754338 :0.2513956041612623 +me:0.9565639217782301 him:0.02012117768754644 mo:0.002920817262304583 them:0.000832955748667294 :0.019561127523251592 +at:0.4341459822443178 At:0.38146877178713845 the:0.10667748868898519 some:0.027431888652693304 :0.050275868626865235 +about:0.9302278386902177 distant:0.00034891801252057554 north:5.16555340928479e-05 south:4.460105156594517e-05 :0.06932698671160277 +premises,:0.005061575774129832 District:0.0046139766526244064 State:0.004113277708319453 of:0.0038803716114127473 :0.9823307982535138 +next:0.18318762535029318 i:0.0800885722880809 said:0.035661211071396935 The:0.019261702593668655 :0.6818008886965604 +to:0.24430221225707982 which:0.10527017208204338 and:0.06593025235907957 can:0.05723444918507178 :0.5272629141167255 +not:0.14981316439520218 simply:0.0982067984693312 the:0.06851087001586906 to:0.04185264344673217 :0.6416165236728653 +.:0.09489802009601096 large:0.09125777005452722 few:0.052549069723324925 great:0.04755910489671163 :0.7137360352294253 +the:0.28221313726205655 of:0.24549968687185547 by:0.16815624645031066 The:0.11223912639269686 :0.19189180302308043 +is:0.5211888310705688 would:0.33622347203847014 must:0.07093455926114166 might:0.04026329104820163 :0.03138984658161771 +a:0.54945382357068 to:0.1038062075809862 the:0.08904453241348459 an:0.049012867003058604 :0.20868256943179062 +of:0.9125821238683737 to:0.03837791110332654 I:0.020152715723541898 at:0.019275743408185653 :0.009611505896572262 +first:0.14396357723917097 highest:0.09503531344375431 old:0.09323601214925496 same:0.057397349769290264 :0.6103677473985296 +the:0.5232912533880204 a:0.2838367824290303 this:0.03387069544060324 any:0.030465986617385057 :0.1285352821249609 +vs.:0.3607060021753545 and:0.051170262733423316 Mrs.:0.034610899768742556 N.:0.027629005055909216 :0.5258838302665705 +grave:0.03555095815145396 first:0.03209173382435671 sharp:0.031022189530175808 the:0.027206758694209077 :0.8741283597998044 +they:0.06964936427147271 who:0.05004714561408176 which:0.04627396033333491 They:0.045272564672265675 :0.788756965108845 +of:0.2532359986319199 the:0.19811328975045114 ol:0.18078132558158355 saw:0.04937062711149124 :0.318498758924554 +fixed:0.07183814492819876 ing:0.06966008290654145 or:0.06282215344913923 lines:0.05822845827989688 :0.7374511604362238 +in:0.1670127453457628 the:0.13643523499163349 on:0.08991204522568144 there:0.0713264159824177 :0.5353135584545047 +may:0.37992580840409845 shall:0.34736834330761623 might:0.08746886569384606 will:0.0833004368078721 :0.10193654578656726 +which:0.22344800754870717 them,:0.1308311619066303 him.:0.059731981382015284 the:0.03569615359302976 :0.5502926955696176 +of:0.6944082195526032 and:0.05715744383580234 to:0.024072885504988963 ot:0.022400615213634983 :0.20196083589297048 +form:0.01600274459306207 their:0.0061614687029263055 if:0.005548128491967767 to:0.0019928896271003984 :0.9702947685849432 +me:0.8520290123311008 Court:0.021383827024566864 or:0.012478826344347287 free:0.008199724466326974 :0.10590860983365802 +first:0.1812950015347952 small:0.12573363024926185 business:0.08545324882240322 moment:0.03740172439472492 :0.5701163949988147 +who:0.723540282516537 which:0.10822002866611859 that:0.10229432020622926 there:0.014339278874542383 :0.05160608973657274 +to:0.9998705023351577 that:4.1669109898968185e-05 and:4.041207144893471e-05 places:8.591314159496172e-06 :3.882516933494542e-05 +ing:0.6340830689546558 that:0.06529637165983843 on:0.05593559496184503 or:0.053091100603760565 :0.19159386381990004 +day:0.8986103018641343 Monday:0.014944785991265983 bond:0.011444058146425674 Tuesday:0.011437302033817043 :0.06356355196435708 +the:0.7071058769814136 without:0.08274111965553006 all:0.061445030790603095 give:0.030854411508126282 :0.11785356106432703 +whole:0.0640582325144962 entire:0.031004346867180246 first:0.02987242616800697 closing:0.022676170780298065 :0.8523888236700186 +York:0.14655000419076336 Jersey:0.03591928145078455 York,:0.0314518402771997 England:0.028096487954724414 :0.7579823861265279 +at:0.47652941014619554 to:0.29083528744812986 through:0.06000792203462443 is:0.03129160065835826 :0.14133577971269196 +stop:0.17058444168066933 make:0.1453391755204539 remedy:0.11951606291588514 favor:0.08730349447596675 :0.47725682540702485 +in:0.8508057055844128 In:0.08908240067594869 io:0.017167268871728165 the:0.015924870810602742 :0.02701975405730765 +an:0.2835071484591251 necessary:0.07344370420241204 popular:0.06794326573490815 un:0.06321332345219255 :0.5118925581513623 +of:0.988365342058494 on:0.0066352922799316535 in:0.001675858494643563 ut:0.0016391862736056817 :0.0016843208933251055 +see:0.05978162164093875 the:0.05231345342256441 be:0.036710366405417624 meet:0.03636124966428936 :0.8148333088667898 +most:0.013757328201158305 the:0.012649271979009282 and:0.010598422998205306 first:0.010529338771978002 :0.952465638049649 +for:0.23844381406587287 to:0.19435486613904576 of:0.14635744813333793 The:0.08977364417606812 :0.3310702274856752 +was:0.758079572116147 had:0.022924707013791085 seemed:0.012096558779422993 throw:0.008427598685478262 :0.1984715634051606 +from:0.8523682321529134 for:0.047064902498658634 of:0.021198950348910194 with:0.014686858183659245 :0.06468105681585855 +cases:0.05467080575193025 England:0.02364654279464417 valley:0.021752669311832798 the:0.018809373881214078 :0.8811206082603789 +he:0.6672178835460042 He:0.13700094064623242 she:0.09157554411276196 they:0.050945596329687565 :0.05326003536531387 +ward:0.052394660823358 organization:0.0031105014367372144 port:0.002663123313080782 suit:0.0023826225234785123 :0.9394490919033455 +a:0.24541796927048704 the:0.15257786333763826 not:0.07861274646635893 an:0.058711986256822876 :0.464679434668693 +the:0.5674109383428463 a:0.07357002920046916 thia:0.03104154618259691 being:0.006076575669988021 :0.32190091060409953 +the:0.2649396378638846 taken:0.25100685838840486 things:0.12208065049089217 will:0.12047479169130496 :0.2414980615655133 +the:0.0436134471867269 sum:0.038936324279552556 same:0.037807961433654835 said:0.027008871811549304 :0.8526333952885164 +secured:0.04387154862511491 selected:0.042639511107378306 used:0.03904671541948667 paid:0.03639005519098797 :0.838052169657032 +the:0.47975886449433924 any:0.13596324955988656 every:0.096566837456239 a:0.052675324123527566 :0.2350357243660076 +large:0.06759365076815897 few:0.040368491815961825 the:0.0377584267635066 great:0.03468223869325473 :0.819597191959118 +of:0.3745566943825375 to:0.11473818701841801 and:0.10771090452007516 for:0.09602146777713329 :0.306972746301836 +which:0.9190213513037856 are:0.028419087029460423 is:0.023600504756703816 arc:0.009574979983362986 :0.019384076926687213 +con¬:0.15769806572870315 con-:0.1116919405631428 to:0.08999853303765151 a:0.051213487686790245 :0.5893979729837123 +to:0.06866053937923623 ed:0.03792917724636666 up:0.016744757060644225 out:0.014628405263124778 :0.8620371210506279 +of:0.29480406836519946 about:0.17528182179114132 half:0.11318260091404049 over:0.07777223418337106 :0.33895927474624776 +paper:0.049141147059174904 and:0.02057288197351983 newspaper:0.018168370220457444 was:0.014643785651214856 :0.897473815095633 +hand.:0.0060216156890042305 life.:0.0047270477274646335 money.:0.0039900590249809164 f:0.003889448913104786 :0.9813718286454455 +of:0.08340226123151037 and:0.08263281631538957 the:0.06811509139861749 to:0.05192633003938615 :0.7139235010150965 +never:0.4052808612798178 prepared:0.05751940497289134 want:0.04427357720939215 determined:0.03777760281261264 :0.4551485537252861 +water:0.6286799523444345 wind:0.06382568564294136 fire:0.05448039588844921 light:0.05216700050604517 :0.2008469656181298 +the:0.2124290240217606 and:0.11682473126352638 I:0.07322995973700618 of:0.07320317933222482 :0.524313105645482 +train:0.13743080207302508 mill:0.07702879818902539 order:0.07423831694481788 fact:0.06304271084110115 :0.6482593719520305 +people:0.2478996848765224 enough:0.16941250806554553 man:0.14304271592197396 girls:0.12730050213749733 :0.3123445889984608 +himself,:0.08133886295652216 the:0.051726231068604904 first:0.020291657361461813 you:0.01438689466229936 :0.8322563539511117 +and:0.0725592007812559 of:0.04693038223261028 the:0.04524166501846799 at:0.019518158402758654 :0.8157505935649072 +and:0.08151289247171055 so:0.022546655737251304 then:0.013489661817099955 as:0.013128844976668483 :0.8693219449972697 +past:0.07258807270530213 day.:0.028416334294730096 war,:0.015148450927268669 war:0.008858632376431587 :0.8749885096962675 +office:0.05000091423438277 part:0.044124505304159685 tion:0.04388815839790249 ment:0.024804600574731907 :0.8371818214888233 +state.:0.1273863119115149 State.:0.11969595277725664 country.:0.08042396625630598 case.:0.07686920772071092 :0.5956245613342115 +just:0.5334577070811435 on:0.13074239961492348 back:0.04667724677458969 well:0.032944398907402 :0.25617824762194114 +John:0.21314782687973913 but:0.09469615491605589 and:0.07169472463060038 I:0.03930375947285095 :0.5811575341007537 +The:0.821654542741513 Their:0.06920365640672158 to:0.023946370866336206 A:0.023376743128415974 :0.061818686857013284 +or:0.24675113217076727 and:0.16120315215743747 about:0.07776841130767698 of:0.04924545257294707 :0.4650318517911711 +force:0.13519039722514836 him,:0.07197581184523524 tree:0.03622190592223804 water:0.019678747892675846 :0.7369331371147024 +of:0.7540584329963771 and:0.09637340135821516 at:0.08465696953762693 on:0.04319126270180146 :0.021719933405979247 +heard:0.49519965559036344 against:0.0890755726402744 with:0.05863711915265266 to:0.050223583623426084 :0.3068640689932835 +in:0.4348669094173003 the:0.4330800707852179 any:0.068758687389529 this:0.053518808766450654 :0.00977552364150212 +Henry:0.1652480749145513 John:0.11802138197381243 James:0.11632410102770015 and:0.021326311604608506 :0.5790801304793275 +the:0.2101540274364837 with:0.09502202801867786 I:0.07843372783646639 much:0.0750272508050495 :0.5413629659033226 +and:0.49604075029462447 of:0.0446882951156659 was:0.016295623191315278 at:0.015215463291617819 :0.42775986810677663 +with:0.6259194871664308 that:0.12463710439817763 to:0.060891075498044164 of:0.052130251085405144 :0.13642208185194238 +shall:9.377931223428937e-05 selling:3.3967646130024615e-05 defendant:2.1290147940089345e-05 him:2.119599582327988e-05 :0.9998297668978724 +be:0.4430956666211452 the:0.18783848982443607 a:0.08554641616582305 feel:0.05791563307367191 :0.2256037943149238 +of:0.2173837914815542 in:0.1650422870891898 and:0.10566375328079805 with:0.09723652931127112 :0.41467363883718683 +have:0.42264689899634056 had:0.32782499301149554 has:0.12460852894751685 bave:0.041748917201753284 :0.08317066184289387 +and:0.12188158136551565 of:0.06369959403560449 the:0.0562734996179404 to:0.02932596655702083 :0.7288193584239187 +of:0.4613499170703624 in:0.39292927740968175 In:0.07778727997833174 for:0.0347393262823748 :0.033194199259249366 +Mr.:0.1999607375853112 of:0.09691343136066118 and:0.06653185002617915 The:0.056076194063157114 :0.5805177869646914 +it.:0.40546629086590047 the:0.0037064836042347326 them.:0.002247568511720624 business.:0.001641559765029686 :0.5869380972531144 +causes:0.05113552061349044 degrees:0.0492222534795928 road:0.04327474489189152 commission:0.03551280754037476 :0.8208546734746506 +a:0.15416242618913595 by:0.1323177933988191 and:0.09769304643394927 the:0.06671239935546476 :0.549114334622631 +no:0.0009829343288464017 case:0.000338249749519223 name:0.0003123830065069862 past:0.0003119583360035714 :0.9980544745791238 +has:0.334331561646269 where:0.09263010925608625 on:0.053378671128947265 in:0.046984744593351745 :0.47267491337534584 +np:0.6304485652149961 up:0.22449794960076952 up.:0.009170695848594446 now:0.005572006204195282 :0.13031078313144456 +school:0.23877419917497705 new:0.10083979620963311 The:0.043762735027136616 other:0.04217053293156947 :0.5744527366566836 +Mrs.:0.10237300974792135 Miss:0.09701715894262783 and:0.05376057127914055 J.:0.02341016817857905 :0.7234390918517312 +run:0.24862046272101151 in-:0.053727068928516 mo:0.011261034168606368 begin:0.005640967161301288 :0.680750467020565 +street:0.19979011147410358 street,:0.1576942300386387 feet:0.10567665918459054 feet,:0.07279917745151708 :0.4640398218511501 +into:0.29834977547704516 to:0.22371099009520215 from:0.19037255116736748 over:0.1561840994801992 :0.131382583780186 +same:0.04678376445232526 other:0.03899655811915959 such:0.03016413179089435 public:0.011558269053288509 :0.8724972765843322 +to:0.9437087699217124 of:0.05298633651654033 may:0.0017830945029927733 which:0.000975330201537607 :0.0005464688572170872 +out:0.9647867690488916 to:0.001820809230128593 it:0.0010095851222321182 one:0.0006569799094331632 :0.031725856689314574 +mixed:0.06169762214767424 paper:0.04106266003543425 out:0.017318730213463262 fire:0.012673485207726683 :0.8672475023957017 +much:0.3257895786314101 only:0.15286033497934398 entirely:0.06369559717239591 in:0.038214586446081666 :0.41943990277076826 +the:0.46817883143851047 I:0.05359597420650237 he:0.04463189458618032 a:0.04339870724430864 :0.3901945925244981 +the:0.3208884721021418 a:0.05462525827023234 other:0.020957999287419555 to:0.018853869038995785 :0.5846744013012105 +make:0.04499957591959463 to:0.042290907349969466 all:0.03310087425633684 have:0.030824378767690425 :0.8487842637064087 +show:0.09017800944483077 steamer:0.04160339774817729 case,:0.03934646188009026 hour:0.03295179746563833 :0.7959203334612633 +that:0.9863027033375639 the:0.0037366189562610505 thnt:0.003254838642104713 certain:0.0006033416023962331 :0.006102497461674386 +the:0.23398545141360458 and:0.1556154755688502 The:0.0728557371539583 of:0.04528212171195309 :0.49226121415163376 +the:0.9565937212960561 any:0.00011198083433845467 express:0.00010096355215447999 ihe:8.075978205321231e-05 :0.04311257453539765 +The:0.5227928873842653 Every:0.4192521458794827 Its:0.036005814816256 This:0.011800867469133449 :0.01014828445086266 +It:0.05977327166145331 he:0.047926854675013675 it:0.046537828100285825 which:0.04264435816595178 :0.8031176873972953 +more:0.45683242466109475 taken:0.04113728924288336 made:0.026652305601542765 the:0.010709112004125353 :0.4646688684903535 +keep:0.17060565821328524 then:0.1047566872465728 it:0.021979629050148254 that,:0.020262752091100518 :0.6823952733988932 +State:0.9705718890248355 state:0.018032090430904636 counties:0.00024269280201865125 District:0.000220073481904517 :0.01093325426033672 +of:0.4709200756366349 in:0.1472674687144172 all:0.12116186867465106 from:0.10928520462840154 :0.15136538234589517 +a:0.9562104376405377 t:0.009575988891685169 no:0.002911113519025117 another:0.0014650975950766794 :0.02983736235367524 +I:0.3299219393825388 and:0.24984467219278453 they:0.16086793912595684 who:0.12982089247723505 :0.12954455682148489 +had:0.10417557814211753 and:0.09537483147602885 that:0.08331333845792123 but:0.05561399096988345 :0.661522260954049 +men:0.2188846128674428 man:0.04766053552604866 party:0.04280578408687399 one:0.030457103807544954 :0.6601919637120895 +the:0.2133179836466099 money:0.02615131783638123 said:0.017920807322758484 a:0.01601440082681004 :0.7265954903674404 +is:0.4339850839147746 was:0.15361821096379874 but:0.12047072197103559 of:0.11492899798209374 :0.17699698516829732 +the:0.9694119643102694 their:0.010148530289426297 these:0.007813300384712812 with:0.00413075517767049 :0.008495449837921014 +and:0.08046154842849591 Saturday:0.022558142943787714 of:0.01693523045356968 stock:0.014719221115626657 :0.86532585705852 +the:0.293757399655724 June:0.08902900912420893 March:0.03693124507298468 July:0.0341227073626653 :0.5461596387844172 +John:0.102844535742493 J.:0.06304857413353154 Richard:0.0562650952215379 Geo.:0.055552488971605085 :0.7222893059308325 +of:0.4970978222280643 and:0.12775716499246037 to:0.06970398500142898 in:0.047873458879823236 :0.25756756889822313 +set:0.3501397540486271 experience:0.1968677761876713 efforts:0.1332634712685222 arms:0.04254789903001716 :0.2771810994651623 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +on:0.024653702000217752 .:0.01511222167200072 State.:0.00641976121532328 i:0.005114478187762647 :0.9486998369246956 +the:0.5405385154386074 a:0.35733727192627673 The:0.03338051724856083 any:0.020674779188846186 :0.04806891619770879 +and:0.6345205378876959 are:0.06389875249073822 is:0.05791001827048885 the:0.02133577082867656 :0.2223349205224005 +If:0.2487095322154782 but:0.18513088055764215 if:0.13339937415490352 that:0.13253821114782136 :0.3002220019241549 +and:0.06602930476317556 is:0.049011401391239426 was:0.03457403282606901 him:0.02357796551818868 :0.8268072955013271 +a:0.3475912042438685 his:0.23907933930257919 any:0.15520542249053557 the:0.1382757496079276 :0.11984828435508908 +up:0.9079999939308938 until:0.04105518088793071 out:0.01064062213746293 till:0.010241416590337353 :0.03006278645337518 +and:0.2260583603667614 more:0.18187223909284156 All:0.16311603717546136 of:0.06533504298050147 :0.36361832038443415 +her:0.7123860521814942 land:0.008468495964684604 the:0.007198046120534158 lands:0.00652071278867242 :0.26542669294461463 +own:0.13833663173911726 set:0.06668888044529592 work.:0.05325262382166556 big:0.050011260537465164 :0.6917106034564561 +in:0.15380332889431242 about:0.13011785260840814 to:0.05142766412521789 extending:0.045570948008487384 :0.6190802063635741 +days,:0.15168430839826802 train:0.1505496087670045 years:0.11626772316565505 out:0.10320476844818335 :0.4782935912208891 +hereby:0.9809992582781086 was:0.008659755322934275 were:0.0011199783527524312 has:0.000981490146666861 :0.00823951789953767 +walked:0.08750144700866837 came:0.0786417675251896 could:0.05905071690761868 passed:0.05796532734653549 :0.7168407412119879 +her:0.36380934002394116 The:0.24116812460123946 that:0.20727231609750418 Some:0.10647901354070917 :0.0812712057366061 +the:0.4450996085636292 our:0.355885217233396 had:0.007077839100997115 were:0.006437463861068506 :0.18549987124090928 +is:0.05208209740160771 lower:0.04516697222065789 man:0.031945979574723664 home:0.02725709322595414 :0.8435478575770566 +be:0.1365705191536004 hold:0.010981420877955658 always:0.004962320161654498 become:0.0036943991373516627 :0.8437913406694378 +the:0.39167088454931026 a:0.011235581977861779 only:0.007038310714063428 e:0.002694765285973238 :0.5873604574727912 +of:0.5774948071261885 and:0.10432751627836499 that:0.05808743302892819 by:0.041693623405218344 :0.2183966201613 +any:0.0779557711617 more:0.029566160347224858 one:0.02275529282642006 two:0.01783070405672816 :0.8518920716079269 +are:0.765462181197928 were:0.1485636755532154 arc:0.0681798267046006 aro:0.012834871967985462 :0.004959444576270497 +in:0.2591230374924175 the:0.25702519952606195 a:0.0874355187025591 they:0.07256047437758285 :0.32385576990137854 +down:0.06619169787715819 out:0.05124379021320963 fat:0.027533226802306215 up:0.02132417902423266 :0.8337071060830933 +had:0.013554238479585376 first:0.010131806298045557 com-:0.009068839582492065 of:0.008651882497192474 :0.9585932331426845 +the:0.769742757563262 tba:0.12883413212228892 tho:0.058250938042786166 as:0.008892513127163805 :0.03427965914449914 +the:0.5015728236197627 our:0.38395055825528657 which:0.06107303812168638 other:0.017311884930119585 :0.036091695073144775 +laws:0.137700100085291 and:0.059761441082290735 school:0.04560507827672804 interests:0.0331362162572074 :0.723797164298483 +make:0.04035684466286492 be:0.038568429470918236 the:0.02668114739430891 of:0.025268890572175053 :0.869124687899733 +No.:0.09309315186242464 and:0.07028885511497858 a:0.0433799696942895 of:0.04044019626767506 :0.7527978270606324 +and:0.9809050581663065 ana:0.012973668243265311 aud:0.004901208393852507 we:2.0508694223570473e-05 :0.0011995565023520346 +other:0.4382712468872873 foot:0.012633334481342275 first:0.01215565551992118 a:0.007843483502958066 :0.5290962796084909 +names:0.03722725422163519 walls:0.010302933358459544 soil:0.008864132893959759 stomach:0.007840975906162586 :0.9357647036197829 +or:0.19563949599246414 of:0.10823302264286906 no:0.09980453279631185 to:0.0817930781348112 :0.5145298704335437 +the:0.3144112404479479 her:0.1266037468663453 be:0.05481297664618245 a:0.04675995779742396 :0.4574120782421004 +and:0.062943291810395 years:0.06085732895237662 feet:0.054660636817800624 thousand:0.044268734112453786 :0.7772700083069741 +of:0.36829096393222494 in:0.3204168127294952 whom:0.20091960423506616 were:0.03399579521964261 :0.07637682388357099 +the:0.1472533788836 can:0.12535142599375648 of:0.11564841506895246 in:0.012467170503378816 :0.5992796095503122 +would:0.5951050126719584 may:0.21964281569337046 will:0.09077626798593312 should:0.0710689103597246 :0.023406993289013224 +title:0.9713711009847752 tie:0.0009768111454074877 line:1.9327928855592413e-05 claim:1.2751398808089922e-05 :0.027620008542153643 +in:0.20031903243624907 to:0.15474914125021083 that:0.0956008679287741 for:0.08964536827518924 :0.4596855901095768 +money:0.40096201912491997 way:0.11287462971182675 it:0.009961050513760398 up:0.008041310203384703 :0.4681609904461082 +Monday:0.5442594863444112 day:0.3158118679250764 Wednesday:0.04592557467871886 days:0.016631909059905154 :0.0773711619918884 +the:0.26903757479434887 his:0.04518277525232135 of:0.020796348656568 Rev.:0.014616898202800276 :0.6503664030939614 +was:0.08700401447589845 have:0.08346661333776066 am:0.05599386952688634 the:0.03734135645116267 :0.7361941462082917 +fast:0.03190388354405494 day,:0.029832371072073597 day:0.029403752733467205 war,:0.025908814649485145 :0.8829511780009192 +and:0.295443032294459 return:0.1943511532395249 on:0.1421353954375442 of:0.11958344122704098 :0.24848697780143078 +may:0.4661766340334673 could:0.3362587651681689 might:0.14833520533243508 would:0.023812158025031307 :0.02541723744089728 +steps:0.47663556348113184 measures:0.03364953832667864 funds:0.022314173812592816 sum:0.016200530612363578 :0.45120019376723314 +and:0.6551343885389476 but:0.2276544445239756 or:0.029507704971338474 so:0.0158080542938898 :0.07189540767184846 +choice:0.39680043917646485 love:0.17196584098752338 own:0.04896410975104435 city:0.01204244168845532 :0.370227168396512 +delivered:0.827105621598471 executed:0.15704199564988944 allowed:0.004365643277795142 returned:0.001765696186374164 :0.009721043287470102 +which:0.8566946108348158 what:0.0797684537250331 who:0.02494798273131086 that:0.014806932695556425 :0.023782020013283642 +of:0.8651787744315552 cf:0.05728683480603432 ol:0.04934703572759728 ot:0.01070529277059129 :0.01748206226422184 +and:0.3468655318438636 or:0.33358464844895597 a:0.10370582891836282 the:0.04013606269166602 :0.17570792809715158 +the:0.45783400973197386 a:0.09912439602999026 and:0.0688993624739916 The:0.042914668413476895 :0.33122756335056736 +for:0.28427261638091506 of:0.21439729899755153 in:0.19422135311356792 during:0.08954864333617883 :0.21756008817178654 +the:0.8491024146436659 tho:0.03960700947350063 tha:0.017816482275065257 tbe:0.008072148351307375 :0.08540194525646096 +and:0.10148387094988004 of:0.08696434025448387 the:0.05365717173332362 to:0.03393106186200422 :0.7239635552003082 +W.:0.14203176230064968 J.:0.09862880196739793 C.:0.08027324910564904 T.:0.07873656761039434 :0.600329619015909 +year,:0.42938532145491315 day.:0.054622939960791504 year.:0.03597794905969146 every:0.01572530917856015 :0.46428848034604375 +simple:0.051568068704039995 small:0.00774232220572437 heart:0.004042736495974854 living:0.0024451226452137194 :0.9342017499490471 +had:0.11687791002809438 with:0.08693670073224567 use:0.0859417881201896 putting:0.0474164253778089 :0.6628271757416615 +man:0.25153587849572595 people:0.15863714798228207 candidate:0.11762773996420471 person:0.06058164379164775 :0.41161758976613955 +No:0.8194370567932592 No.:0.01919487455963565 of:0.0035490957683844784 and:0.001261320858139554 :0.15655765202058117 +forward:0.7850000852670838 on:0.07615864011468207 up:0.03654015502483178 better:0.024644202363597753 :0.0776569172298045 +owners:0.1444898041312754 family:0.07223416357331612 and:0.038683710195889294 ing:0.03315230953866645 :0.7114400125608528 +of:0.5558565742585475 in:0.18551311721568434 to:0.1244321324576076 for:0.04993792328882288 :0.08426025277933762 +more:0.22562220440624575 north,:0.09352697278370951 material:0.07483788674477422 full:0.03610228947449601 :0.5699106465907744 +lay:0.19500807374800402 back:0.17661915187112198 went:0.15740217857155242 lies:0.10882073729965071 :0.36214985850967096 +to:0.9999947033918702 but:1.958668768842538e-06 would:1.2716003810678673e-06 and:1.0978520222593296e-06 :9.68486957650217e-07 +and:0.18366239296900796 of:0.16178868053215467 from:0.08667837763133628 the:0.07569705022077718 :0.49217349864672383 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +and:0.09093490749052613 of:0.07930306879021419 the:0.06553183002459302 to:0.032356893561517566 :0.7318733001331491 +the:0.5183630498263778 ter:0.08378825499267947 their:0.0731859917781734 and:0.06643179109757957 :0.25823091230518963 +the:0.0977028229675999 a:0.08335940872476985 to:0.026177985752910717 of:0.025513627196995084 :0.7672461553577244 +the:0.1469266808423646 be:0.12757369903535465 a:0.0239155266659954 remain:0.018466041537932153 :0.6831180519183532 +and:0.12039400348174527 the:0.09100524972422755 of:0.0515848631242021 with:0.04864679311574627 :0.6883690905540789 +of:0.42024616374404755 in:0.19749752024832407 If:0.10758556935441563 to:0.07928866241946045 :0.1953820842337524 +accept:0.8412781175000419 receive:0.15811756456567413 buy:0.00022283738998462772 see:2.650597995427659e-05 :0.00035497456434514655 +of:0.7957336873348301 ot:0.15270130781523494 due:0.04106903602746117 Of:0.0059613139796985066 :0.004534654842775259 +and:0.36581252369067196 to:0.2482376145452561 at:0.1112569725441428 of:0.09544803265292984 :0.1792448565669992 +taking:0.4473750099574629 many:0.2748565909870095 all:0.027286912780737686 which:0.024072644355596036 :0.22640884191919394 +and:0.33369459480735353 instead:0.05674093068755513 set:0.03405791112587878 one:0.01583343393810201 :0.5596731294411107 +the:0.4544256194122641 their:0.07918498742444105 such:0.07293146043691155 this:0.07172097366814137 :0.3217369590582419 +the:0.9041811413903198 tbe:0.06692958595478826 bad:0.015526744283866011 fair:0.005358920389959151 :0.008003607981066784 +were:0.18243664490457218 re-:0.17120580777709543 for:0.023850680033420422 of:0.022524321472771027 :0.5999825458121409 +place,:0.04394815149217989 banks:0.012028508141687922 results:0.008881597209543379 proper:0.007777076930924249 :0.9273646662256647 +and:0.20683311224213216 At:0.1501210029937586 at:0.11694850952228394 In:0.03933592735926784 :0.4867614478825574 +date:0.25669997043512843 time:0.23698065262111123 end:0.09456636260011923 close:0.09017164322176535 :0.3215813711218757 +good:0.99016740497698 their:0.00206281629439997 no:0.0016810938181942236 the:0.0015292087338545882 :0.0045594761765711065 +of:0.9524413936480278 ot:0.010459256204525893 oi:0.008330462684281559 and:0.0065713971574179585 :0.02219749030574678 +money:0.0557016396372852 soil:0.03150194196574562 the:0.0269629396240526 native:0.018336855280825563 :0.8674966234920909 +tbe:0.47652073785763 the:0.43281960112449736 that:0.019228315117541646 an:0.014094753713837291 :0.05733659218649367 +country,:0.10553498477041587 day:0.06158104434703713 agent:0.020219060899610022 public:0.013194502853380755 :0.7994704071295563 +in:0.28006076952286224 An:0.21651226900221535 of:0.10728084461420526 and:0.10184242609809281 :0.2943036907626244 +the:0.1401183460183378 and:0.10813126152033092 of:0.08773220880660737 to:0.039831237420222286 :0.6241869462345015 +not:0.2999063949734665 only:0.11078653013924505 quite:0.0783670607112522 certainly:0.07313189807782511 :0.4378081160982111 +were:0.6139213057229308 are:0.1728230493453646 will:0.04502717728849787 took:0.044147994343114054 :0.12408047330009274 +of:0.4861525432443658 to:0.13198697125557018 in:0.12737563591832304 at:0.06402919786015998 :0.19045565172158088 +little:0.1856290898499449 ":0.15392279443139542 work:0.009193100414388648 wife,:0.007118040427417776 :0.6441369748768533 +strength:0.06259240195368368 capital:0.05429226304971603 set:0.041252398387816865 industry:0.028847474704951945 :0.8130154619038316 +them.:0.020581021374711447 water.:0.013404501480209786 be.:0.004631409857007346 buy:0.004096861486774878 :0.9572862058012964 +thai:0.44563478844232307 that:0.12334322126192897 her:0.08008789926472656 him:0.040306075085991766 :0.31062801594502965 +of:0.1111472512383926 and:0.08153140733862307 to:0.03996743346882575 the:0.02953052260441257 :0.7378233853497461 +every:0.5798336946416964 the:0.07065147036845461 his:0.03442625754000311 peculiar:0.027027895838802395 :0.2880606816110434 +The:0.4697028889244273 the:0.32236432212371435 Ihe:0.08219575231624464 Tho:0.034180955640813165 :0.09155608099480049 +8,:0.15594734121920326 to:0.11557792291247802 and:0.11364687664962285 4,:0.0308145339435535 :0.5840133252751423 +pounds:0.13878657593444108 years:0.13196369697239593 millions:0.07139278312352017 words:0.05251385001208116 :0.6053430939575617 +in:0.36311965626731535 the:0.13865361214973415 tho:0.07997382804464956 such:0.02593198074911014 :0.39232092278919084 +the:0.9031001955551295 tbe:0.026900233730713347 tho:0.0218104795512109 ihe:0.008822209581332029 :0.03936688158161418 +and:0.01167716943753078 ness:0.006211411721205919 to:0.005282354075901269 tion:0.0052707367171996675 :0.9715583280481622 +which:0.7762639482533364 that:0.1250023387418258 suit:0.06648300849285932 it:0.013195995003502398 :0.01905470950847614 +the:0.13374380470616978 and:0.11494410771386832 a:0.06378334244204051 to:0.06232675748639949 :0.6252019876515218 +form:0.14798481655730183 hands:0.1293962396780615 interest:0.09885483353167321 will:0.07035802244220715 :0.5534060877907564 +their:0.21091268506588048 having:0.17921191698516917 have:0.16118327570609872 the:0.13520108859247 :0.31349103365038145 +the:0.27369469722188916 tho:0.11359151756537107 a:0.04032288937513192 his:0.02863524983964341 :0.5437556459979647 +the:0.4943830049840619 special:0.37167471362026067 fifteen:0.11077327265942669 such:0.009311088582113063 :0.013857920154137714 +much:0.0814538326260989 greatly:0.06620690465327117 something:0.02586517221690793 t:0.017849797763119426 :0.8086242927406025 +and:0.2627168141867852 left:0.09503244705037407 here:0.09021491381863325 just:0.08155869016113915 :0.4704771347830682 +who:0.25883347999425976 that:0.07741579658827476 not:0.06532037742397105 always:0.041649709317527955 :0.5567806366759666 +a:0.3557827282239359 duty:0.07584031210328636 and:0.061133374135011645 in:0.04937291842903451 :0.4578706671087314 +said:0.10442615525076056 safe:0.07718691805598607 going:0.05698647830327727 not:0.05398466091456488 :0.7074157874754111 +of:0.10004736458880467 and:0.08930057185910635 son,:0.024751814893862256 by:0.01850873059955093 :0.7673915180586759 +of:0.31675399892894407 in:0.3163455887297428 upon:0.214325157018046 on:0.08092943676763587 :0.0716458185556313 +the:0.4435473653626849 a:0.07993962628031674 his:0.05299283599154611 their:0.030876230289663777 :0.3926439420757885 +the:0.10889205783767149 a:0.0305609131131311 before:0.019740578288194484 that:0.016570399904726342 :0.8242360508562767 +thence:0.547139740352594 and:0.09177045449098396 north:0.08936522320550574 for:0.04622077110252662 :0.22550381084838964 +his:0.5453680357913709 their:0.14942829631979107 each:0.06413014468629272 as:0.054944301687442625 :0.18612922151510278 +there:0.5097182649930032 There:0.27709665791896376 force:0.027547041993102116 and:0.004923230705041057 :0.18071480438988988 +quite:0.45036427209964885 under:0.22738172013102312 by:0.12729273344002862 to:0.10859982365483123 :0.08636145067446822 +and:0.1251614055566823 to:0.06643824729079281 of:0.051036394639460504 the:0.04753436277342941 :0.7098295897396351 +he:0.27009690233300043 the:0.2543994306267236 are:0.12328661332382045 education:0.11408388402748296 :0.2381331696889724 +large:0.7918633271928869 certain:0.11584728915307158 sufficient:0.019154351489244475 considerable:0.00952649026072225 :0.06360854190407471 +and:0.029204223931631444 purpose:0.02458913753125351 day:0.020982770207258986 out:0.016397787287303733 :0.9088260810425522 +the:0.21965210562042467 make:0.13298598516490792 mining:0.13148559298844262 such:0.04649498998271242 :0.4693813262435121 +two:0.4072775945758541 ten:0.3908682673244974 the:0.09680520457436588 three:0.03164674406030851 :0.07340218946497389 +and:0.11534133609300962 except:0.02488096159954036 but:0.021608425659737765 of:0.018092948994081395 :0.8200763276536309 +fell:0.31534398593551544 relief:0.23446889276795432 all:0.09734496403479664 office:0.07328492643981636 :0.27955723082191714 +!:0.041954280337307436 was:0.0008913193670736173 and:0.0008371490336470099 West:0.0007347793791316118 :0.9555824718828402 +we:0.3362401199467832 the:0.16862884096273686 these:0.10671555201786269 how:0.001405672637430315 :0.3870098144351869 +the:0.7086712946763019 our:0.11752476951738583 tho:0.059099806534218154 good:0.04609563077614582 :0.06860849849594837 +the:0.40004435597911026 That:0.1523211119366733 a:0.11294074352386392 that:0.10301225373229932 :0.23168153482805304 +the:0.6877056194866338 August:0.08376921348738857 tho:0.05768360855448971 May:0.04617114709737014 :0.12467041137411793 +the:0.3273189765444199 a:0.24929994755738438 his:0.07924172867720167 an:0.0442100514995903 :0.2999292957214038 +at:0.6883325504769016 about:0.09302666301272319 At:0.03808211596519962 and:0.03136479829670228 :0.1491938722484732 +bottom:0.17591934028599546 day:0.029363542209173407 time:0.01028865503456104 the:0.009264958257812778 :0.7751635042124574 +he:0.25709911603033325 default:0.25550632697328596 it:0.14412094331209266 there:0.13763278579877103 :0.20564082788551719 +than:0.47887919759694 how:0.3765772621527458 of:0.06495881401543215 to:0.021676299317210317 :0.05790842691767176 +to:0.3642387118321349 in:0.14518484069854 by:0.12585991517855435 a:0.0996543657360431 :0.26506216655472753 +at:0.9932282861675109 ut:0.005748984181464281 the:0.00037294141189981125 The:4.906036709064569e-05 :0.0006007278720344049 +the:0.35548165920688857 large:0.27641183075094444 all:0.18702012449429894 he:0.03303305962222715 :0.14805332592564086 +very:0.13161266622698004 more:0.08198543212112014 most:0.058400190349201984 peculiar:0.053369953315959784 :0.674631757986738 +the:0.17269787712066478 and:0.0978723113636919 in:0.07920428482826979 of:0.07512930711301917 :0.5750962195743544 +is:0.6222243782458894 was:0.21077307235746975 Is:0.09000187201693421 seems:0.025949708611049102 :0.051050968768657536 +as:0.21493312364289818 saw:0.1483409108205998 a:0.1389818219519737 filled:0.1151568704663433 :0.3825872731181849 +and:0.24754775083972844 the:0.19815795638490735 this:0.05358850083435994 ing:0.0462357222543075 :0.4544700696866967 +de-:0.10107866440665056 de­:0.04876767445252155 in-:0.03378268516036291 the:0.02512780180206083 :0.7912431741784042 +and:0.20277061849166222 is:0.1054510395638261 fell:0.059189502498856086 or:0.04135951994682352 :0.591229319498832 +and:0.501314689979792 or:0.49813767229893124 the:0.00039120756956997275 on:2.2672725091196174e-05 :0.00013375742661548147 +the:0.3736389879963536 each:0.2764339879301374 said:0.035782126487727973 a:0.015379347351676502 :0.2987655502341045 +It:0.13966195633864595 that:0.12962136693058843 it:0.08568450230823 There:0.05556247663566918 :0.5894696977868664 +direction:0.03716928563654774 time:0.03637025174729458 down,:0.01781439557943896 and:0.013033021929090605 :0.8956130451076282 +and:0.23848822780319848 who:0.14838821278011577 I:0.14292410052020876 We:0.13119971446941 :0.338999744427067 +any:0.1645955879127991 for:0.12690459117987127 at:0.1114664969658373 the:0.056691085730387746 :0.5403422382111046 +and:0.08300458683584003 of:0.06730059213608962 to:0.053591667718578734 the:0.0497159964556977 :0.746387156853794 +and:0.27685749931222575 as:0.13157954626240118 Then:0.09771459923021522 but:0.08629739707907694 :0.4075509581160808 +the:0.972820168132994 many:0.008240842637406948 such:0.0054171641390357815 of:0.002076413063538329 :0.011445412027025037 +this:0.1774021781024885 the:0.11337332326232992 said:0.014308322604962292 each:0.009125519371471297 :0.6857906566587478 +I:0.43615749249281477 that:0.16368605125275879 by:0.12106143961300567 of:0.12082270550897727 :0.1582723111324435 +purpose:0.020526217666798185 reason:0.01767534900349884 available:0.013796617934460942 cause:0.011519389770760642 :0.9364824256244814 +and:0.22448631731647511 was:0.14406857846620633 but:0.08120080830434888 now:0.07468830497481518 :0.4755559909381546 +ten:0.4837658805625698 five:0.21158893589057287 several:0.1223223286755823 her:0.09488527649210349 :0.0874375783791716 +composed:0.13486599252900225 due:0.07627063622551086 back:0.04057978998777576 a:0.038418317990675015 :0.7098652632670361 +are:0.46976089446513203 had:0.25786111796002803 have,:0.05780162526265755 have:0.05703344755371897 :0.15754291475846333 +own:0.06334444696431142 two:0.03319066754033126 the:0.021101467011323684 re-:0.01660677595160258 :0.8657566425324311 +be:0.9680525777914399 bo:0.014523164068923313 he:0.00896495067827087 have:0.0050254295867508516 :0.0034338778746148967 +Of:0.25196882505024265 and:0.22415358560533205 to:0.18683721303768 but:0.11726286004823129 :0.21977751625851394 +been:0.8757720660289017 greatly:0.018954685371201672 now:0.009843937817849112 not:0.0052843657735227876 :0.09014494500852482 +twice:0.01446040874305558 build:0.01140755616370825 ed:0.007005009362340208 raised:0.005890125464176182 :0.9612369002667199 +order:0.37858759439927897 regard:0.07510823675889862 the:0.05558838068909496 time:0.048818818428016 :0.4418969697247115 +love:0.6449278425990985 section:0.06946215931375721 means:0.02703192716109498 virtue:0.02700706786778147 :0.23157100305826803 +C.:0.271108598401815 J.:0.09046669727107394 and:0.03643729703961643 W.:0.024314451001882207 :0.5776729562856123 +to:0.7164849239420966 of:0.1903222021950983 and:0.023209311154725788 place:0.013430242062200986 :0.0565533206458782 +and:0.11009509090924509 I:0.08652573837615733 who:0.06572370515298234 tion:0.04343749147637446 :0.6942179740852407 +there:0.4217089635061444 he:0.2600837469651691 it:0.13125468678788893 she:0.051025323952644766 :0.13592727878815292 +necessary:0.10411180550728831 necessity:0.0315757552782342 high:0.013458259538225235 great:0.009301680223173368 :0.841552499453079 +Brown,:0.005773796868721445 Smith,:0.0026484403012426057 and:0.0012962403716517703 Johnson,:0.0010672487557153458 :0.9892142737026687 +it:0.9585087239154869 down:0.003021676808223787 directly:0.0018912132362483521 right:0.001744389812597619 :0.03483399622744334 +reasonable:0.2797952753648072 short:0.23170151261262945 certain:0.1349367631666931 this:0.11793447010812554 :0.23563197874774458 +and:0.63096319822301 In:0.1373682315354197 to:0.12618857157139382 in:0.07373154634112987 :0.03174845232904667 +the:0.3725231669833478 The:0.22895683878530437 an:0.08243485000390036 and:0.06201291419819637 :0.254072230029251 +Mrs.:0.9006323460602582 Mrs:0.03531895944277312 Mr.:0.002026244679298654 Robert:0.0001831565787084124 :0.06183929323896158 +he:0.10190790909011076 the:0.09263843412814415 then,:0.057947591954775925 that:0.04922112012386811 :0.6982849447031011 +of:0.2143647830262123 to:0.12742210114407143 in:0.12718517675146498 and:0.11988887000579905 :0.4111390690724521 +States,:0.063241835346801 States:0.06245081136808512 finally:0.0013524352361912423 also:0.000792387854351314 :0.8721625301945712 +Western:0.9468966359071896 Pennsylvania:0.0015512389311173708 Jersey:0.0014924901840157132 Third:0.001327159799553708 :0.04873247517812369 +with:0.05259139887467238 where:0.02604451192918277 and:0.02107247631184945 up:0.021022423217109464 :0.8792691896671859 +in:0.8077617098015406 In:0.07576264940625613 to:0.05975678251063936 iu:0.030849436649498116 :0.02586942163206567 +water,:0.014113033025183477 cattle:0.013991161637513896 music:0.006279905640024187 election:0.0058840120932775256 :0.9597318876040009 +own:0.05268244385550963 great:0.021825090560513325 national:0.021148516661087573 most:0.018664507733519818 :0.8856794411893696 +the:0.30111193784425555 things:0.30051050018992426 right:0.10324101316408821 of:0.05942005090295984 :0.23571649789877236 +net:0.06886654314888721 contract:0.0674650843043971 country:0.011718961182238159 city:0.009402104367814875 :0.8425473069966626 +the:0.1155501425046722 of:0.09176800197425601 M.:0.07118501755861925 J.:0.06622261238396117 :0.6552742255784914 +whose:0.16318975148830897 His:0.15666065444613886 his:0.10863779605581947 the:0.08000363942575005 :0.4915081585839827 +the:0.9929931882019344 this:0.0022468999584867345 his:0.0013581556750248145 their:0.0008310570064764334 :0.0025706991580776817 +the:0.45033738041299315 this:0.05211365250507683 Mr.:0.03243781864713856 his:0.03191180221034602 :0.43319934622444545 +and:0.05308873790069523 Jones:0.007446397807560477 Hill:0.006869494029983752 President,:0.0036295405855986825 :0.9289658296761619 +an:0.4295590891712442 their:0.1805710718035096 with:0.1105347691281141 his:0.07288946959966625 :0.2064456002974659 +sum:0.028388654964891416 city:0.016566287645967764 number:0.01634691817279001 use:0.015042598747664494 :0.9236555404686863 +fear:0.45870326670254163 see:0.16704533905728527 find:0.12807743354228085 say:0.08650190508342802 :0.15967205561446435 +to:0.9350458801942723 and:0.019397508995833878 aud:0.0036027963285677395 it:0.003138444994634685 :0.038815369486691516 +and:0.0066443923931578455 Smith,:0.00027333035575993796 Johnson,:0.00023850603291547046 Davis:0.00020089147516818545 :0.9926428797429985 +a:0.20423198164709191 the:0.16547277308710845 of:0.08819794485879487 and:0.08784859430613072 :0.4542487061008742 +and:0.1970851953677963 The:0.1290492858109699 A:0.11555332470631008 the:0.10116274880351878 :0.45714944531140494 +used:0.06988067910453401 made:0.06280913037379238 ed:0.03897198285635774 cured:0.031632252043969196 :0.7967059556213469 +and:0.11796287109818174 of:0.06067734628518845 the:0.05809092800496109 to:0.029294911726408857 :0.7339739428852597 +of:0.3845199393332609 and:0.14698443899566058 the:0.0543173512582689 actually:0.045933154900877904 :0.36824511551193173 +most:0.018318711430889326 same:0.01601800595114586 the:0.013230236607263315 of:0.009937533054673518 :0.9424955129560281 +living:0.18619050899197662 giving:0.13212141042858253 threw:0.0434745752402895 and:0.03696806724495074 :0.6012454380942005 +consideration:0.2532262353355996 day:0.1332782466121296 conditions:0.13224369553095258 ground:0.11733326141956349 :0.3639185611017548 +case:0.13732281700155305 course:0.10385704993115004 event:0.08553247487066011 hands:0.07414239208765462 :0.5991452661089822 +with:0.2689163737430485 by:0.22757786560116863 and:0.19512999316639412 from:0.160336309350407 :0.14803945813898164 +same,:0.14297461663554167 continue:0.06473833648653825 and:0.041554402286265925 public:0.034323929008775275 :0.7164087155828789 +of:0.2664177216032124 and:0.1232491112334701 the:0.047320971245956106 most:0.028809770070972383 :0.534202425846389 +it:0.6035389745256484 where:0.2395974376094579 that:0.052481249193895775 as:0.02295886784709997 :0.08142347082389793 +property:0.05219225217906887 reports:0.044480623640668335 and:0.035657321416522024 character:0.027468632752002523 :0.8402011700117384 +a:0.3985923418267409 the:0.1293604682277535 that:0.08521624790335458 many:0.023559846538423673 :0.3632710955037274 +was:0.8436422515361711 is:0.05788717414672761 Is:0.018322508162080732 has:0.012058692306519207 :0.06808937384850147 +nations:0.8183993973123627 the:0.08126452343261598 this,:0.016371278026230854 his:0.013986789749970864 :0.06997801147881959 +that:0.4135753290832896 at:0.2746522779052682 the:0.10820371469169882 to:0.08115102555472802 :0.12241765276501528 +of:0.19718977513616853 draw:0.14199254431634323 and:0.07157335500484695 the:0.04276939019554033 :0.546474935347101 +his:0.35222484152823896 Christian:0.1499618310795301 n:0.10300053821997773 first:0.05895567319749503 :0.33585711597475826 +such:0.25741219844580576 being:0.15956028173595926 having:0.12291648401348473 the:0.05714683898936022 :0.40296419681539003 +a:0.36652828893985495 the:0.33109754678106745 an:0.13382528360850415 sleep:0.05570462213973575 :0.11284425853083767 +house:0.049461347783500524 the:0.010970851091032022 stand:0.006532419540130155 ion:0.0038743637790935354 :0.9291610178062437 +the:0.39296354501728464 a:0.12379625863343065 and:0.043010367716019994 tho:0.04017914279629949 :0.4000506858369653 +of:0.1923898969156958 to:0.14319014394388835 and:0.1370815649830483 in:0.135310912569959 :0.39202748158740863 +the:0.8055152799359024 tho:0.03057676278868422 a:0.026576789232855846 his:0.026110078586680293 :0.1112210894558773 +own:0.069283702490541 the:0.010842584357437741 great:0.008861649818174746 old:0.006457929375224906 :0.9045541339586216 +well,:0.2554750046978947 and:0.05325904420490924 first:0.01534482011847854 man,:0.013887467188206095 :0.6620336637905115 +highest:0.03723521842635203 the:0.02535383598298524 great:0.02351059510773685 a:0.012345968203386175 :0.9015543822795397 +in:0.18751082478324596 at:0.1349022501973481 not:0.09593922109892884 making:0.06671229213087711 :0.5149354117896 +and:0.2984862530324154 state:0.16031662334136632 the:0.11197067835316055 in:0.08297260859890256 :0.34625383667415527 +was:0.14484054858435755 are:0.12514229355697296 very:0.06704821117384398 being:0.04856413639842404 :0.6144048102864015 +majority:0.994050395592041 free:0.0003760475383958242 Justice:0.00020476839370620729 doctor:0.00020239502436499945 :0.00516639345149207 +They:0.4687266428079007 But:0.07634689124689106 That:0.03639406873456927 And:0.012482854880328239 :0.4060495423303108 +the:0.3405041482665928 of:0.18304672239053305 with:0.13763462652129363 These:0.1165373308269295 :0.22227717199465094 +the:0.4218309889582574 are:0.1452718812607471 without:0.06453751100223755 have:0.05915376524893225 :0.30920585352982577 +all:0.2602310369415049 moral:0.24098308424662968 that:0.230642547863412 the:0.15716505676400874 :0.11097827418444477 +and:0.17452603126180738 to:0.08657649267847763 the:0.052141275996198576 of:0.04353379784428539 :0.643222402219231 +hand:0.14134836768210812 ground:0.12022355721851527 part:0.07062893219686718 rooms:0.050857036893105396 :0.616942106009404 +voice:0.00267466299160971 moved:0.0021927465694154442 port:0.0006367097201516109 turned:0.0004456973123526757 :0.9940501834064704 +of:0.6321969929855165 in:0.08507042781156933 for:0.053942422103272415 on:0.042266681709422965 :0.18652347539021877 +tion.:0.001666755178239418 life.:0.0009550272464554847 death.:0.0009226837775164524 him.:0.0008241189520987295 :0.99563141484569 +moment:0.06950045785885968 mean:0.01109352775924779 kind:0.010676398990761999 large:0.010272978998131552 :0.8984566363929989 +that:0.11066638741385955 then:0.08663309634320566 all:0.08411108230358844 in:0.0837614195181882 :0.6348280144211581 +be:0.6821242465882199 not:0.055024726227467353 give:0.04767117166734915 bo:0.04634914947365238 :0.16883070604331116 +and:0.11822503434366129 of:0.07466297692871264 the:0.053727355400477864 to:0.028947087878348713 :0.7244375454487995 +the:0.49617458154714433 of:0.048428266808398325 its:0.03481450352984451 largest:0.03413009501302831 :0.3864525531015845 +not:0.3255282860127259 equally:0.2838858363733713 were:0.1939379714784068 are:0.053487980123841504 :0.14315992601165473 +their:0.5031662783715886 at:0.35861771407400717 ut:0.04500057936653709 been:0.03039140013557084 :0.06282402805229628 +the:0.10055043650252266 tho:0.02934901443408517 prominent:0.016998327153335276 true:0.013246001053714285 :0.8398562208563427 +of:0.2864346785161634 and:0.15749246656368987 with:0.07319142354194212 to:0.045273623059269776 :0.437607808318935 +of:0.3292854190399068 and:0.09826155970545718 is:0.0791400225865393 in:0.06615806671934595 :0.4271549319487507 +of:0.5127170036481213 cases:0.11258997875330398 was:0.08966399146939079 at:0.06128996317733574 :0.22373906295184806 +but:0.2883337963170365 received:0.20936088717075335 heard:0.12291190883225467 made:0.10663689191845213 :0.2727565157615034 +he:0.493811177382652 it:0.13321932238453638 she:0.08994564454463466 ho:0.049501060365943 :0.233522795322234 +far:0.7032133361221664 long:0.2566684925561554 soon:0.019254451784584962 fat:0.005461961660336314 :0.01540175787675693 +number:0.9379672132026117 mass:0.0018919717681004538 system:0.0015970228780489756 total:0.0015823498066530287 :0.05696144234458591 +are:0.28474353060926055 is:0.25020383600262536 were:0.09950414815125923 a:0.0897307074949762 :0.2758177777418787 +11:0.17103374783306044 the:0.10747687318520871 Miss:0.05471541979494647 of:0.0523825289698379 :0.6143914302169465 +of:0.2457985036435284 to:0.21990463676583535 on:0.19684697530849798 and:0.09457631550930329 :0.24287356877283484 +of:0.24082035765645723 and:0.17131720104522122 to:0.1461494109241858 in:0.10778157497770433 :0.33393145539643126 +is:0.05152505913590552 ought:0.04487128041342137 seems:0.04146879568110262 proved:0.04127583199263572 :0.8208590327769348 +laws:0.15122172629879024 men:0.10293580033511418 rates:0.07709967725625373 and:0.03787071624724261 :0.6308720798625992 +the:0.8453026929165903 said:0.05759858939556585 after:0.028267434955117104 water:0.012576180136594426 :0.05625510259613232 +of:0.24489445154351844 through:0.15464430460090198 by:0.14033522395129927 really:0.0654708839243005 :0.3946551359799798 +in:0.2904999617355013 of:0.14622412745940153 In:0.12180958261802113 and:0.09688190646783315 :0.34458442171924286 +the:0.3527955065037974 this:0.26059623747194327 a:0.05716861729835925 any:0.038792774356274075 :0.29064686436962595 +remarkable:0.14078615488826723 few:0.09350957490975444 of:0.05449604948376872 days:0.05128968035706472 :0.659918540361145 +we:0.6305648362698327 there:0.2174364178546925 they:0.1137561665478291 you:0.00439996862374413 :0.03384261070390149 +by:0.3798721255058883 in:0.30456072747494506 In:0.27738520099786174 to:0.02099304841129849 :0.017188897610006543 +line:0.3700422573943143 side:0.3546611410160612 office:0.1786188906223763 principal:0.008445178658675247 :0.08823253230857298 +secure:0.1582340233126965 make:0.15116641806022968 take:0.14384358972823688 lay:0.0935671413049444 :0.45318882759389256 +mission:0.037848754431471975 account:0.026804586175657858 as:0.011789265079089688 This:0.011746260254960296 :0.9118111340588203 +of:0.08712501218058323 or:0.08449995345867482 the:0.056911125534409364 to:0.055265460387330025 :0.7161984484390026 +has:0.34114022105750524 have:0.3181069442958759 had:0.19933704577850314 having:0.019364552093875727 :0.12205123677423997 +It:0.2705721316918326 it:0.18867976586230756 which:0.12300618317562761 This:0.056261042389896695 :0.36148087688033564 +the:0.7235310650499875 all:0.025021258807062352 tho:0.021653483952999184 our:0.01586366042779944 :0.21393053176215143 +tell:0.34580328158249807 had:0.13975056995551793 have:0.13124146567503392 said:0.09013308547064229 :0.29307159731630783 +the:0.40296619682467305 canal:0.06700434379456305 three:0.05209819451761849 a:0.04925347990761377 :0.4286777849555315 +the:0.885851256897717 tho:0.03247687391143729 i:0.010801772673412336 same:0.010258683339825303 :0.06061141317760794 +died:0.343271242240692 who:0.11549847593919783 and:0.04831684420637968 tried:0.03168091711416324 :0.4612325204995673 +house:0.030101593766962174 weather:0.027661729533809444 day:0.023220151103549826 case:0.022351910361379165 :0.8966646152342993 +the:0.6029841869934296 this:0.08535972734748747 said:0.06200626427647031 from:0.04796491421235214 :0.20168490717026047 +that:0.3002316054649153 and:0.22586646245165046 but:0.10155766006337096 If:0.06505428237564426 :0.30728998964441906 +which:0.2771737336632224 that:0.21679992661874045 leaders:0.04560463492507293 who:0.043885047114717926 :0.4165366576782462 +I:0.0344949940596345 and:0.009548920058290257 1:0.0022278822436513244 then:0.0013739938753066937 :0.9523542097631172 +street:0.15458337561282864 and:0.05847135168368114 Street:0.05495310193474451 avenue:0.051043563343453155 :0.6809486074252927 +of:0.5431071636936399 in:0.3814624931204638 the:0.03002520282477566 his:0.010125407521453286 :0.03527973283966748 +the:0.3745642941505639 an:0.14249075531441202 under:0.10977716317198821 all:0.1050216309367049 :0.26814615642633083 +cast:0.3000416661184828 settled:0.07825184243181521 accepted:0.06620217397457669 elected:0.06615073626510252 :0.4893535812100227 +throw:0.3279092170671207 give:0.26886670552638964 drive:0.21549358038908525 store:0.05912733091514512 :0.1286031661022594 +great:0.011609051053666128 the:0.01101755416072074 general:0.010941307677874282 very:0.010598122790164624 :0.9558339643175743 +a:0.928191548370135 been:0.058813434276543425 of:0.004538697465789886 aro:0.0010284926306694429 :0.0074278272568623575 +the:0.4481284093520825 tho:0.12606303506443495 religious:0.07728024729636812 a:0.03804961330053936 :0.31047869498657515 +but:0.21177695571281013 ask:0.09257225167714085 Now:0.08386174089164351 My:0.06513188352517599 :0.5466571681932295 +ihe:0.9458507909031075 the:0.050854367948341986 this:0.0001579201345839441 a:7.333766711575556e-05 :0.0030635833468508167 +now:0.15394968869677755 is:0.0943373789013853 was:0.0771325719446008 it:0.06675969621906656 :0.6078206642381696 +as:0.2885281872164699 which,:0.12283490665671856 And:0.05144293406191262 and:0.04548241563239163 :0.49171155643250725 +never:0.15178531374732832 been:0.12498377083323112 to:0.09973432832695857 no:0.09025712986173834 :0.5332394572307437 +a:0.9410630973523506 thousand:0.0037497221427769305 m:0.0028474170226792704 e:0.0016104806840986146 :0.05072928279809468 +part:0.9812187810665184 portion:0.004621489420366039 other:0.0012277274667233933 of:0.0004298884570928915 :0.012502113589299204 +purpose:0.02131112724902441 sum:0.01998589399769892 use:0.01917446661143815 name:0.019086177633764623 :0.9204423345080739 +day:0.07903646287487154 tion:0.027671625217431144 of:0.02098138414058164 whether:0.019056293878900663 :0.8532542338882152 +the:0.31876879533476316 a:0.14186330102529376 distinguished:0.12120759861182395 four:0.11542742720369176 :0.30273287782442737 +touch:0.029099796848933848 a:0.007424718980898125 as:0.004772929398997784 all:0.004305812864762425 :0.9543967419064079 +an:0.3571506871143358 a:0.27781629775893085 the:0.1634865565419839 so:0.027618018470805573 :0.17392844011394384 +high:0.2581900478578421 same:0.1660474863520997 increased:0.14436695061458293 contract:0.09037065222715862 :0.34102486294831663 +of:0.17271636840214727 the:0.09149946610173168 tariff:0.06323005483404842 these:0.0587095997268439 :0.6138445109352286 +the:0.18623765829094774 ten:0.03678371330606357 3:0.03530000787811228 a:0.030228205124703374 :0.711450415400173 +the:0.36075790535395863 a:0.07285678698345611 their:0.04933321951065365 his:0.03833134181184775 :0.47872074634008394 +part:0.32571028400455465 end:0.20568641585231623 portion:0.0993238759314823 side:0.05149210380763949 :0.3177873204040072 +the:0.8279619149026265 The:0.05714462517420606 to:0.02843569498270261 and:0.017652962327883305 :0.06880480261258157 +all:0.26604646149815353 end:0.060915728689943195 by:0.033739028262185486 get:0.030270502326583484 :0.6090282792231345 +the:0.2628531580707762 a:0.07724178210623543 be:0.040632815679227406 take:0.03733240846163276 :0.5819398356821281 +go:0.18052343595188294 enter:0.13360793706510654 get:0.08426102579389597 come:0.0469060063232221 :0.5547015948658924 +cost:0.34835402031873525 place.:0.08284033162576422 own:0.02419034447272146 the:0.009838368621824464 :0.5347769349609546 +accept:0.12386727685639073 do:0.10246044701415574 try:0.09683875338436304 have:0.08936591111119367 :0.5874676116338968 +seems:0.9225871101239075 seemed:0.038420873633263845 appears:0.007108681917571728 is:0.002057935483472466 :0.029825398841784468 +number:0.2814460148278289 strength:0.25278105575471466 amount:0.06097269766087944 variety:0.02333919802246473 :0.38146103373411233 +in:0.17038277899562046 and:0.11301135368044564 the:0.08017853724424846 of:0.06816437049204736 :0.5682629595876382 +in:0.6792213301206355 tbat:0.20381974931348357 that:0.05781514686314683 it:0.02364573010652854 :0.03549804359620583 +the:0.665356995654301 a:0.08064761449868148 tho:0.03450202981208981 south:0.03040511140638034 :0.18908824862854737 +not:0.6588315956466371 never:0.12253614761920649 hardly:0.09044945552789423 there:0.02774008615998109 :0.10044271504628104 +with:0.6348711827819364 and:0.10704753077052129 under:0.10281878316368208 to:0.06474485457286705 :0.09051764871099312 +and:0.18851736798725605 but:0.06688753293074086 that:0.055221795658577814 as:0.051043301571925485 :0.6383300018514999 +M.:0.8195088906833249 George:0.06849256451210298 John:0.045563936623527666 A.:0.03547146402473782 :0.030963144156306566 +of:0.7649877178778295 for:0.06431465820460712 at:0.0507600563925996 which:0.0450216019436184 :0.07491596558134532 +my:0.3671303139568029 his:0.3635442569838864 the:0.07892145403569306 our:0.00710676699518794 :0.1832972080284298 +not:0.8189740044145183 for:0.03279619406502094 ,:0.009018535840684745 ol:0.008118579627279195 :0.13109268605249694 +a:0.4237856991944125 the:0.20079669692126467 considerable:0.1162253733536861 any:0.053100080196491255 :0.20609215033414546 +former:0.29620810833527217 the:0.08772139650603636 a:0.07257406994052655 and:0.06998285100582412 :0.47351357421234086 +present:0.1730604271041795 same:0.05839230647413819 previous:0.04999031422208142 last:0.02821913637791583 :0.690337815821685 +It:0.27193542931124426 man:0.1062232230171641 that:0.10106415138018805 person:0.09835215613582002 :0.4224250401555836 +and:0.11383190452772524 one:0.04278615460676249 agent:0.04173261069586514 man:0.03269937432416127 :0.7689499558454858 +but:0.25101921984558 and:0.1854861081918708 to:0.10675672919286346 not:0.09176323816708865 :0.3649747046025971 +and:0.027083923339845193 as:0.008476828072470683 if:0.00689212294827584 trade:0.005317688756705759 :0.9522294368827026 +their:0.9979284060014461 its:0.0016533299043481257 our:0.0001964946492864407 his:4.613811961645178e-05 :0.00017563132530291784 +to:0.22033560263095836 of:0.20229844777268202 in:0.19209189043481292 with:0.1837923059490016 :0.20148175321254508 +day:0.09820873721302005 good:0.05421269690485428 nnd:0.011857643761457617 road,:0.011842901371031282 :0.8238780207496367 +the:0.6856491533385874 a:0.041514101301604316 tho:0.027238305479595524 this:0.015322742562332178 :0.2302756973178805 +a:0.9999894937358412 for:4.366393640569093e-06 more:2.804570208925454e-06 the:1.819074629547184e-06 :1.5162256795953698e-06 +and:0.995166008884717 und:0.002911810240049986 aad:0.0004317598050665998 ana:0.0003636167979754702 :0.0011268042721909804 +100:0.03199406261051486 200:0.0006242569368309904 20:3.8614892303438935e-05 18:4.606695706947592e-06 :0.9673384588646438 +was:0.18571594122694154 April:0.0648347934672837 and:0.05892264838575306 the:0.03401116737255114 :0.6565154495474707 +day:0.05113589196469915 tion:0.04121006947207518 side:0.040082145748002895 corner:0.02519511271057517 :0.8423767801046478 +with:0.33449832328278223 for:0.10675842547442443 of:0.10420163655429883 that:0.07329473931701203 :0.3812468753714825 +the:0.1817269249615919 of:0.11843562407560958 and:0.1102552664081013 was:0.03657276820655259 :0.5530094163481447 +of:0.3268710910664492 in:0.058838434673757795 at:0.05487853469235702 the:0.02809148076068548 :0.5313204588067505 +of:0.6635797023464126 about:0.2593583337289317 some:0.03580339491621314 in:0.006481411496857698 :0.0347771575115848 +trust:0.0002510642356788089 corn:0.00021599045316186675 salt:0.0001487070782322215 trade:2.4143702222110764e-05 :0.999360094530705 +it:0.33057401621435223 he:0.22693811464379207 I:0.10147205806504077 she:0.06741659073130701 :0.273599220345508 +known:0.22715693721230262 been:0.10178688482665524 felt:0.07470173253673948 seen:0.057626660197745386 :0.5387277852265572 +were:0.5658402952333018 of:0.39275399376679276 and:0.0103066707143401 st:0.006625690421266264 :0.024473349864298978 +as:0.7953219558996925 so:0.1651732322096089 are:0.0017176182102673601 ns:0.0013582593203137852 :0.03642893436011759 +The:0.2868250236013903 and:0.2173455124597745 a:0.13526267219404783 A:0.11695509178528782 :0.2436116999594997 +the:0.7945464570523398 this:0.17550864651873113 that:0.008810890272716592 tho:0.006825607563303471 :0.01430839859290902 +a:0.9388615749567681 the:0.022215178740439743 some:0.021821608972386677 his:0.007649649922783418 :0.009451987407622122 +the:0.24670850102983205 a:0.046169446064174426 most:0.028428241828413997 other:0.022161910918509675 :0.6565319001590698 +the:0.37063992109676624 said:0.15545459840390055 this:0.1385138231641009 his:0.04403642662855616 :0.29135523070667624 +the:0.5017462179763122 aid:0.30741929502296844 a:0.061412343747167225 he:0.047692985637347265 :0.08172915761620486 +of:0.9653255652728825 a:0.01561520803136115 the:0.011326077860871373 tbe:0.003475229854240143 :0.004257918980644845 +of:0.2753488086558892 in:0.16497706410488072 and:0.1309253035385185 that:0.0935912590170742 :0.3351575646836375 +and:0.09322801492026718 of:0.04838108402888534 the:0.04614074670724556 The:0.04042345404099986 :0.771826700302602 +way.:0.2566121437278264 high:0.015591555069727822 time.:0.0022137094980333744 to:0.0008541747073333777 :0.724728416997079 +and:0.08834909708252096 of:0.05975291211627198 silk:0.0336820144405279 little:0.021679584616041855 :0.7965363917446374 +by:0.22179378815292403 and:0.0907235432810741 of:0.03458630703236272 make:0.02511763572035976 :0.6277787258132794 +as:0.5052372039191174 from:0.14163094695967296 of:0.10660012656710698 The:0.055108896363586235 :0.19142282619051648 +of:0.9891737595663597 ot:0.005277732023750024 Of:0.0009073925733775224 on:0.0008097146540885081 :0.0038314011824243503 +the:0.11505231206060415 a:0.04574148729148324 and:0.03550150904784128 The:0.03439345590956169 :0.7693112356905095 +hard:0.08453356775827126 and:0.05295993790909914 of:0.03912824072659032 the:0.03507937033409746 :0.7882988832719419 +or:0.7962182798531612 and:0.08836406560015185 to:0.019230155807896606 thousand:0.003215450186473493 :0.09297204855231696 +was:0.620490551853934 had:0.22510981387924092 has:0.08378947921885288 quickly:0.06695092577367302 :0.003659229274299192 +by:0.4666902080800054 for:0.005074448479000121 on:0.0016475360950824185 to:0.0014744223703969652 :0.5251133849755152 +the:0.07445506422677549 and:0.06819931430407265 of:0.054742404237353125 to:0.03450736432979837 :0.7680958529020003 +with:0.2977767192152985 un-:0.24136059186463207 the:0.2144459986078906 in:0.12204078226408581 :0.12437590804809298 +the:0.29465254261403506 a:0.11889952051146103 social:0.057717745956468156 an:0.019743839417958042 :0.5089863515000779 +One:0.06309526335064626 tion:0.05204323103914992 Some:0.04260210103089253 of:0.042349175122389934 :0.7999102294569214 +them,:0.3245085984714217 them:0.2188841965495999 it,:0.17440917168739845 Germany:0.06911873443494129 :0.21307929885663868 +naval:0.04290127982092946 government:0.01630562182723524 mail:0.013955465975432138 civil:0.008201644881194447 :0.9186359874952087 +then:0.5334797226752405 and:0.0639908291585154 out:0.023704132282861792 instead:0.01500042144921356 :0.3638248944341687 +one,:0.10503945705527243 road:0.10463699761385763 machine:0.07432540531132972 field:0.07267738495778685 :0.6433207550617533 +would:0.26827139582877735 might:0.18505536033699677 I:0.0727903554624259 to:0.04436252852746279 :0.42952035984433706 +of:0.17864625214732596 and:0.1510829833852631 a:0.1345608827421851 A:0.05300176973500792 :0.4827081119902179 +with:0.12434661784061792 a:0.0661752234000436 and:0.04176190244102944 aaid:0.022176628163287696 :0.7455396281550214 +to:0.9295038128211467 as:0.044004210219091934 below:0.0035208078106606757 the:0.002593570878885441 :0.020377598270215284 +and:0.9135101571950169 the:0.009362211509916231 while:0.008301472952823118 aud:0.00699641439069411 :0.06182974395154952 +in:0.5277629460914757 of:0.2620641548182105 with:0.08782523628609476 to:0.07478199525197697 :0.04756566755224205 +and:0.9272295456044373 or:0.07242743305026846 nor:0.00030408411201542085 a:8.63678699616202e-06 :3.03004462825892e-05 +these:0.36851310138399745 there:0.21278701140469658 they:0.19423232958296924 both:0.16171062196117647 :0.0627569356671602 +for:0.843724805912188 the:0.10495789424945852 and:0.04477606272698779 or:0.0049831509641206796 :0.0015580861472452314 +been:0.15896900810187808 given:0.09634505278848256 to:0.057288772912191054 not:0.04331855984850687 :0.6440786063489413 +study:0.8763310426137518 meet:0.028613896950607693 use:0.028605373031796454 find:0.019543020014854 :0.04690666738899003 +the:0.24311063084787177 to:0.13257294484895651 a:0.08909433412488414 and:0.05950017837705373 :0.4757219118012339 +a:0.39344896888857256 is:0.09768581562529863 and:0.08763354158302607 are:0.08075041773779029 :0.34048125616531244 +of:0.36027596679513835 in:0.23500009660255555 on:0.13104934807276206 and:0.1138205012935762 :0.15985408723596783 +Mr.:0.009990098817812168 Arthur:0.009570944273464816 of:0.009060325203964955 and:0.008240263414330616 :0.9631383682904274 +to:0.2129554870165585 over:0.189293850072181 on:0.18137686036038853 and:0.12490278771167396 :0.2914710148391981 +sides:0.18809134676334996 color:0.03125281443819362 heart:0.020880840000057597 bed:0.018574077934416247 :0.7412009208639825 +of:0.22930521950966415 and:0.14713181423179764 the:0.0663556066017113 in:0.03868673528492142 :0.5185206243719055 +hand,:0.23599842472098675 music:0.00973593266786339 railroads:0.006834235911917948 the:0.005871474453095745 :0.7415599322461364 +one:0.23467212410923433 number:0.20958627350940798 One:0.10261530803985025 some:0.06933049582707002 :0.38379579851443746 +lower:0.4404415758065964 purchase:0.2998060987989265 ter:0.05458789334943944 er:0.037704129674667276 :0.16746030237037027 +fear:0.6906171652252252 which:0.11962163198585322 us,:0.07081578317788244 ;:0.02718756477630197 :0.09175785483473718 +;:0.09766664372699947 Western:0.08285899606797295 white:0.08269866181312273 and:0.044663653477441376 :0.6921120449144634 +the:0.6011928459720116 some:0.11523126720824901 their:0.03933873367994902 many:0.008710405026617695 :0.23552674811317256 +which:0.1318378001884957 it:0.12503219918615796 from:0.07814529031173353 you:0.07377053989884705 :0.5912141704147656 +do:0.6574574864293337 deal:0.025249483691836484 go:0.010350385696037573 them:0.0062487969208581615 :0.30069384726193427 +it:0.04206839170790378 of:0.021583832805190595 to:0.01881840343582737 forms:0.017269439820716326 :0.9002599322303619 +.:0.020364039949099452 years.:0.0006859306950694893 M.:0.0006235483990652416 is.:0.00030846127725896416 :0.9780180196795069 +he:0.3538604447259194 she:0.29942417264365506 lie:0.14019363599742302 they:0.09869174986298529 :0.10782999677001733 +to:0.38767431908202543 that:0.3670956837329661 of:0.13608645141367892 or:0.058032649707654094 :0.05111089606367561 +series:0.12890371193514763 couple:0.10836869999882794 number:0.06200766287915153 lot:0.03406923308170017 :0.6666506921051728 +old:0.08383043270323831 I:0.02433895878357481 the:0.02134952899184154 in-:0.019855841625114657 :0.8506252378962306 +on:0.7586697002135783 in:0.14907522098057352 concerning:0.04248724954776694 of:0.026779608227158594 :0.022988221030922823 +time:0.8111589210515072 while:0.08235477312369227 distance:0.056600375721125785 space:0.012081477757703088 :0.037804452345971566 +made.:0.013157630041530186 himself.:0.00522137257349 there.:0.0042186968640792084 removed:0.0040070268647984025 :0.9733952736561021 +the:0.80817204132025 a:0.04330659279560803 tho:0.041035765392552846 tbe:0.014389532290198168 :0.09309606820139092 +Mr.:0.22835042806149372 er:0.021710142512155636 Colonel:0.02078935519347054 fruit:0.01948550940873148 :0.7096645648241486 +a:0.49359892922337584 the:0.42371280602827754 these:0.03837402255361985 this:0.02221977454968892 :0.02209446764503789 +very:0.00027755408454122564 o:0.00011214908694180487 reported:7.629528251333751e-05 the:2.0806027474078707e-05 :0.9995131955185297 +men.:0.0013682046408577504 and:0.0007326574842053821 world.:0.00032173269185564333 feet.:0.00016342529207260373 :0.9974139798910088 +Judge:0.6921920696197911 the:0.17235207885079118 a:0.014974718685132098 his:0.008029158324255511 :0.11245197452003013 +and:0.025817536959107483 10,:0.025076294060443854 3:0.016033123746783336 San:0.014198916503920696 :0.9188741287297446 +ho:0.5413218704277196 he:0.2618480315014475 it:0.06985749696626377 I:0.0637611504214822 :0.06321145068308683 +that:0.5679185625310786 where:0.18932217492998404 of:0.02915337445093962 them:0.018445914762738085 :0.1951599733252598 +rule:0.08288952378184293 very:0.05316782685725614 places:0.048790648636321564 conditions:0.034925593211534434 :0.7802264075130448 +within:0.21873318713103504 in:0.10310246495295462 those:0.05352706771036135 if:0.04526328018089481 :0.579374000024754 +granted:0.0022540409856358426 evidence:0.0005279411226004346 hopes:0.00027613119039089466 effects:0.00023123336669069258 :0.9967106533346822 +The:0.2828342227887125 the:0.27229964881130814 Tho:0.16676861586765698 A:0.15478495474603088 :0.12331255778629162 +brought:0.37278426197674286 has:0.14743645085982365 and:0.12989942580488748 with:0.12467416430533139 :0.2252056970532147 +perfectly:0.35974542756573086 will:0.03340299197911135 pro-:0.023983635081667468 to:0.01978905229324269 :0.5630788930802477 +have:0.6945757882258325 had:0.21694227791593831 has:0.05195221910069974 1:0.0034118827415253058 :0.033117832016003976 +the:0.06869350173428342 of:0.06308846713362506 and:0.060036875507190564 at:0.03731529787993178 :0.7708658577449691 +as:0.2639932218274115 so:0.2559790728474566 is:0.23166210547830163 very:0.04757374641093852 :0.20079185343589187 +It:0.25483944424666005 it:0.1989872980933511 there:0.09011052281518157 and:0.05469911657797952 :0.40136361826682765 +go:0.6522451714461676 take:0.18621068206265753 pay:0.04547889832282741 place:0.013596511531963118 :0.10246873663638448 +in:0.15609052489922012 intended:0.14007763751102337 been:0.12886327847371884 only:0.07777638887724428 :0.4971921702387933 +of:0.4000248223960618 that:0.25137369107624996 and:0.18186593584152785 which:0.12142241366589346 :0.04531313702026678 +most:0.024181322146928176 same:0.01686916907326619 the:0.014221266054667581 other:0.00974603562106736 :0.9349822071040705 +evening,:0.554107360833767 morning,:0.22593204867924857 of:0.15239230136451046 in:0.04038633965406036 :0.02718194946841355 +the:0.1432678940659373 a:0.0365301559418461 other:0.02284299883813718 to:0.014224985031318974 :0.7831339661227604 +who:0.13597222140895282 of:0.06708872133220915 the:0.06438990479220483 certain:0.059340290429589874 :0.6732088620370433 +and:0.23763337802952617 but:0.05389651029042417 all:0.0389822325888989 of:0.03525067166162072 :0.63423720742953 +the:0.533024598913066 and:0.25104551514064066 but:0.04954423881373511 an:0.0393184040722878 :0.1270672430602704 +the:0.036057092666574045 a:0.018766429449180975 W:0.015821492921318552 other:0.012187225840341723 :0.9171677591225847 +one:0.39162907702835315 child:0.2920422393970846 farm:0.10267818164249921 boy:0.0256209404155677 :0.18802956151649525 +the:0.15613101259592038 try:0.09865549357353726 be:0.09388024548675064 make:0.07558331476834211 :0.5757499335754497 +A:0.39047824488294763 The:0.18650070207991823 No:0.07291048891141617 when:0.07151385618881678 :0.27859670793690117 +to:0.2581159058207031 of:0.17099732067127946 and:0.1546606878451229 her:0.14348818449103098 :0.2727379011718636 +he:0.5528353670905157 they:0.16373804132459457 she:0.13396308907722945 I:0.08949720110366303 :0.05996630140399724 +the:0.24799575120220313 fine:0.06750433577485837 a:0.05273748456898416 his:0.04211980761059116 :0.5896426208433633 +happened:0.07291745112874183 confined:0.007071329369232458 well:0.0061849166052336995 far:0.006088614487601416 :0.9077376884091906 +daughter:0.046833026924879756 one:0.040083002527207964 wife:0.025103003243910137 and:0.023900239264177194 :0.8640807280398249 +based:0.25947428234469144 and:0.08501447599620165 any:0.04873699232300182 showing:0.03451402267165996 :0.5722602266644451 +his:0.09225289322019907 Its:0.05734309268335469 employed:0.05216750625392975 chains:0.03316155353809417 :0.7650749543044223 +of:0.4477324045340858 to:0.13414940768664343 in:0.09399725222673279 on:0.07270368963738509 :0.25141724591515285 +as:0.9052886263256538 ;:0.007465388975435891 and:0.002761817103572772 ns:0.0026953837192717953 :0.0817887838760656 +that:0.6718723084155606 and:0.0016538153619628329 of:0.0010972601672082248 but:0.0005517977752398967 :0.3248248182800287 +member:0.006714321279431381 ward:0.003903201047334177 to:0.0004955851258126439 of:0.00037037451636098845 :0.9885165180310608 +nearly:0.5031887464413365 to:0.05008336709409713 in:0.029806604120605294 twenty:0.027807468342123515 :0.3891138140018377 +and:0.05556056735170792 as:0.028899971954546508 it:0.025446193711233297 is:0.022526143105104635 :0.8675671238774078 +know:0.006454943312358332 hold:0.00030154770125203674 com-:1.1260257516245367e-05 who:9.858752092581863e-06 :0.9932223899767807 +of:0.2441661671372367 in:0.23517639466676696 citizens:0.08379253667253095 for:0.05665543648581969 :0.38020946503764563 +the:0.41526604394629474 to:0.11294902889076679 and:0.07196828787587471 a:0.06824869857151339 :0.3315679407155504 +the:0.43414638389833216 The:0.08461710847504339 of:0.06221240055579578 all:0.04538628831089009 :0.3736378187599386 +an:0.24344516986117892 the:0.2194360788237629 being:0.18249532095629056 this:0.09718599336969405 :0.25743743698907345 +of:0.6075862427164789 and:0.11873077436134165 also:0.08032642389659178 great:0.0735625716274617 :0.11979398739812598 +every:0.3213368154304127 a:0.10719654392404976 the:0.08028981731233145 this:0.04415548536842474 :0.4470213379647815 +to:0.11486024638455639 having:0.0843434036595972 being:0.07061306484777904 that:0.04862242168784851 :0.6815608634202189 +sides:0.35044087885183656 line:0.12262710560485196 ter:0.05646560542103492 Street:0.04625134775192629 :0.4242150623703504 +by:0.453310895065737 at:0.23698843711542486 of:0.13673469700017585 and:0.08631771100990718 :0.0866482598087552 +business:0.24435957989493912 and:0.13269571581418987 in:0.07493468461379299 ment:0.06577254433952973 :0.4822374753375483 +at:0.2598181550128302 that:0.12759395333986764 used:0.09500976734339484 as:0.07538411389513494 :0.4421940104087724 +stand:0.9119826421231568 went:0.009032665926160931 won:0.007003632685331333 drove:0.005514253092527223 :0.06646680617282347 +to:0.638913179922638 the:0.07472896091522621 a:0.05556516097351505 I:0.032600217329214316 :0.19819248085940652 +and:0.08464093296239997 asking:0.07658187177381126 the:0.044270519127639844 day.:0.016006267908667507 :0.7785004082274815 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +of:0.11734647426630032 and:0.0991172778408423 the:0.06275534890164106 to:0.028090245498320374 :0.692690653492896 +protect:0.9667575982551949 cut:0.015104279274248105 own:0.0026793455365908296 by:0.0017039354336638366 :0.013754841500302288 +and:0.016744993794664768 out:0.014389850828761713 of:0.013783259543360469 day:0.013707053778890243 :0.9413748420543228 +to:0.34520334450127077 that:0.11133217764372964 and:0.07856802808404746 will:0.04273233889004126 :0.4221641108809107 +and:0.25401204042535636 to:0.16045825466539948 for:0.03795238392507002 which:0.03785086568515246 :0.5097264552990217 +and:0.13999856607525313 days:0.11668153948045401 soon:0.06781902788750498 back:0.03556807361388234 :0.6399327929429055 +south:0.6939077560980494 one:0.1946150073470807 the:0.10327713961848138 ihe:0.005541733281374454 :0.002658363655013926 +them:0.14070110532343102 them,:0.03666985815708931 the:0.02704521905062358 up:0.015635531180782522 :0.7799482862880736 +grounds:0.10752313396332734 ground,:0.015075904100386032 truth:0.011484198085286132 word:0.007031751897374051 :0.8588850119536265 +a:0.9988048530084703 kept:0.0003306376746654755 lor:0.00023288241027160132 the:9.905113738388423e-05 :0.0005325757692087485 +two:0.021152377349577374 most:0.016453945082698807 last:0.014279920331692461 latter:0.014263962361182643 :0.933849794874849 +the:0.28026009129809115 The:0.2800512652600859 and:0.1302245117586222 of:0.10243088909868778 :0.20703324258451303 +does:0.02088409314402793 once:0.014902126188367648 is:0.008731785588418329 They:0.005752398061952447 :0.9497295970172336 +the:0.8911489265705889 his:0.0428283452507739 its:0.03154552504693671 many:0.01730220533296823 :0.017174997798732456 +the:0.07464894047818271 same:0.038118117274108465 and:0.03563403672500827 arm:0.014333367310288943 :0.8372655382124116 +of:0.9833617295215514 among:0.011313829528128457 on:0.002141767651340423 ot:0.0004564753632852386 :0.0027261979356943576 +the:0.1055511322950925 and:0.09935604725328069 of:0.0864027231492442 to:0.024528446365975634 :0.6841616509364071 +and:0.3586677347105002 an:0.062287827996820706 in:0.0166909616685228 are:0.01655047171150428 :0.5458030039126521 +before:0.7428381612967634 good:0.08054101971790777 represent:0.01230750409528922 opposite:0.004583886521374738 :0.15972942836866494 +of:0.5651443021265101 for:0.08644499322233422 and:0.07426902530655533 to:0.04777309058395097 :0.2263685887606493 +to:0.9964452909446182 who:0.0017316150331719126 and:0.00027466377527948245 will:0.00021835444570419697 :0.0013300758012262037 +total:0.0990629393755047 tax:0.08607110498097911 work,:0.06067076829147013 of:0.03317107238887336 :0.7210241149631728 +of:0.31000544499676674 along:0.11277367651427915 on:0.05410659819029704 In:0.05201356311904364 :0.4711007171796135 +the:0.09025335758216377 any:0.046820414951012225 a:0.0468016816188696 other:0.04094638120313755 :0.7751781646448169 +a:0.3369886543438697 it:0.1858657148087823 the:0.1339323477515739 an:0.0700764211121293 :0.2731368619836447 +other:0.3244139192634663 great:0.2795517714095747 such:0.03232552302751521 further:0.027426990521703228 :0.3362817957777403 +of:0.4733304357924122 in:0.10008260562815324 and:0.0965009517918939 to:0.08989176791128066 :0.24019423887626015 +three:0.7992967946282067 two:0.0690591947911607 nine:0.05117144607346649 six:0.036251824012662894 :0.04422074049450332 +seen:0.22734348811121727 heard:0.18918993941992857 kept:0.18795695510440968 told:0.048028878004267396 :0.3474807393601772 +gold:0.1867155823011459 for:0.10644861031575287 above:0.092087562797696 at:0.022932148433744068 :0.5918160961516611 +for:0.5874380565516705 in:0.19923504850573426 of:0.138524017350126 In:0.01960163133063675 :0.055201246261832294 +the:0.2858541278073535 The:0.2039131843238843 an:0.04430694106449425 or:0.03149675320407534 :0.43442899360019266 +whom:0.28179587704701803 some:0.21099404752024087 the:0.1166467680769513 which:0.09008263507195574 :0.30048067228383407 +who:0.2605504366377441 which:0.03131637001348588 land:0.030671830138957353 son:0.030100954443611626 :0.6473604087662012 +of:0.1483327389494942 is:0.14653992835632684 with:0.1463127140486191 to:0.11506034979638013 :0.44375426884917973 +ing:0.13360881289955243 from:0.078784003416254 and:0.0742284054340161 down:0.05309118974471949 :0.660287588505458 +with:0.47320305573231186 of:0.3077279515978318 that:0.16241424055844395 about:0.047079787372527264 :0.00957496473888519 +is:0.23453973382455 in:0.20036015662428408 of:0.13140107845169713 and:0.10853651671660235 :0.3251625143828664 +of:0.2810026344490549 and:0.1909700920545246 in:0.17480661196877556 for:0.1466768864730986 :0.20654377505454635 +their:0.409872421353286 the:0.11572505863090325 to:0.04644443763619615 a:0.03404548341343501 :0.3939125989661794 +and:0.020305670962322612 ing:0.012243321754586867 ly:0.008568133931262432 America:0.00850922991193016 :0.9503736434398978 +Lot:0.5055090341374324 always:0.17243831862997192 not:0.1529499979357893 only:0.06799708807242417 :0.10110556122438219 +as:0.04995703565804443 and:0.04084860134588072 it:0.03921042547738683 them:0.03564142405625557 :0.8343425134624323 +the:0.6589120289886508 tho:0.3002720830072131 tbe:0.010426998094400597 this:0.009864201091457829 :0.020524688818277608 +so:0.10386186395597913 and:0.0825108949233927 however,:0.020198686498689156 ed:0.019446561099933396 :0.7739819935220058 +to:0.4444576650127523 not:0.16860886100953085 in:0.14936456731436895 and:0.036290616510211884 :0.20127829015313592 +of:0.7935341544818683 bearing:0.05857224019246865 ot:0.05255342791917997 ing:0.017232613169861653 :0.07810756423662155 +all:0.27237121937513215 one:0.21064824736347876 two:0.12366827915764822 three:0.0972198277420529 :0.2960924263616881 +who:0.7478893027591529 and:0.025024300455995185 I:0.022358389509655716 should:0.021761075002866417 :0.18296693227232985 +the:0.7989854966739762 tho:0.08517957357793658 an:0.043679392215168374 us:0.01395109754820787 :0.05820443998471105 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +of:0.1490676578407641 and:0.07714732184207534 the:0.04081769447646204 to:0.02561771421273286 :0.7073496116279657 +which:0.80088803242524 and:0.09192505307412564 storm:0.03361730234976714 that:0.03250030984936012 :0.041069302301507044 +I:0.16014937189102343 i:0.06900088066152477 States:0.062293513151278554 -:0.024351576218471328 :0.6842046580777019 +and:0.07551028132298833 is:0.03558222318647215 latter:0.03390876887385924 are:0.02783718749180976 :0.8271615391248706 +from:0.4130408118584145 in:0.13114928780624516 of:0.007140016066412188 on:0.005600978133169426 :0.44306890613575867 +not:0.7493850406806717 to:0.20746427294795264 said,:0.006569312915670694 would:0.004464679399719927 :0.03211669405598504 +the:0.5568512512734156 a:0.0861876552201233 his:0.036567166971076114 tho:0.033507025074423165 :0.2868869014609619 +and:0.25703884005896943 so:0.0948502591281427 is:0.04344111520064829 however,:0.036996005538645536 :0.5676737800735941 +has:0.898137974562934 haa:0.026469057191748857 baa:0.02442114618537899 had:0.015727430799658503 :0.03524439126027978 +of:0.14176457332262427 and:0.08588197040080209 the:0.0333878742370222 Miss:0.0286249709098918 :0.7103406111296596 +in:0.42844932723720597 of:0.16984769049881202 by:0.12329650617080276 on:0.11633659009416425 :0.1620698859990149 +in:0.3311038643491678 at:0.18895427605409731 and:0.18712814886935208 of:0.14979164363043365 :0.14302206709694934 +the:0.35661089041482863 be:0.10116992600871302 a:0.07740643974718377 his:0.030481420837539693 :0.4343313229917347 +of:0.008278029445345746 railroad:0.0022458834314396073 the:0.0009276023393723021 that:0.000610636452151776 :0.9879378483316905 +and:0.18155907011516884 to:0.11219283770278608 of:0.09774368487024608 1:0.09115053503747475 :0.5173538722743243 +who:0.0561628864647774 It:0.04997934013171569 and:0.04417918317919039 it:0.026960606202447685 :0.8227179840218688 +the:0.03822227499362345 any:0.03768173109395915 .:0.023613064965883678 and:0.02082769786990611 :0.8796552310766278 +the:0.42417657429018407 to:0.29170548804922763 that:0.11307579641956282 this:0.0570018686104966 :0.11404027263052884 +only:0.6507391736090123 in:0.09041029091805138 of:0.07568484477416136 the:0.030626694286949935 :0.15253899641182506 +the:0.2675425566530985 of:0.15820489304521215 State:0.09477306529020428 and:0.08866590795061889 :0.390813577060866 +of:0.2877821195376376 with:0.2293471851100861 from:0.20282176892930104 upon:0.15202519790133026 :0.12802372852164506 +of:0.9487699033555855 cf:0.03467436897773985 or:0.008773653627222407 ot:0.0075627979651256535 :0.00021927607432655112 +the:0.6865034208096599 tho:0.06999771101442409 receive:0.0439512068789104 give:0.04194935658278898 :0.15759830471421665 +moving:0.2399126425562241 of:0.015855184268036747 to:0.008507453321746905 in:0.008419868096574207 :0.727304851757418 +water:0.18598241439001753 Do:0.09072202018956281 and:0.010812929840654307 suitable:0.00605449186952824 :0.7064281437102371 +a:0.36294256576266143 their:0.20095440011542692 the:0.16352678834997533 an:0.0994608580253143 :0.17311538774662202 +of:0.521298040283044 in:0.014172044482121454 years:0.007371917818293154 from:0.006744123621720225 :0.4504138737948211 +said:0.6434795064892755 latter:0.34483142978832043 No:0.00610779246316024 Washington:0.0020121370556333657 :0.003569134203610438 +of:0.05424545523543017 at:0.031455100853905606 and:0.029930215501838175 No.:0.02414317811300417 :0.860226050295822 +and:0.476927113322646 nnd:0.1580752745099598 He:0.07715790257116537 were:0.07100391428759625 :0.21683579530863256 +New:0.974465982654796 Now:0.0026270787705450585 the:0.0006811364164324533 N.:0.0001708778547159382 :0.022054924303510456 +name:0.9458032255032868 fight:0.005151385532208379 little:0.0024305551556464407 case:0.001684827240631445 :0.04493000656822697 +under:0.22399284329494373 shown:0.2041480477295598 only:0.1325309519458853 drawing:0.1249277478436208 :0.31440040918599044 +and:0.016753728108986742 he:0.013039541979369558 had:0.012101960538650786 not:0.009981194482906198 :0.9481235748900868 +was:0.03617402837006304 of:0.005496410354668036 and:0.0021893515800489854 to:0.0014613917924359372 :0.9546788179027841 +agents:0.18478100580340753 from:0.18064915463707576 women:0.09869927060938742 and:0.029528181849896175 :0.5063423871002332 +in:0.7869993654613713 of:0.19830250084821782 and:0.005426690505897123 to:0.003040226683609217 :0.006231216500904596 +recorded:0.11772560959781787 the:0.020546413436365554 that:0.01645223568560192 being:0.010112535563303267 :0.8351632057169114 +that:0.24281969666491862 which:0.1385989502297407 and:0.09257331258934626 it:0.08517089502568975 :0.4408371454903045 +was:0.3842078646053039 is:0.23767588247180504 Is:0.07622889356061567 for:0.02829215863389842 :0.273595200728377 +from:0.2141309201996307 to:0.171885925035991 for:0.11065500867252193 of:0.09737835283984522 :0.40594979325201125 +t:0.04730183891454929 turn:0.046199309391764705 ent:0.0434863882567632 tion:0.036149903226155765 :0.8268625602107671 +Mining:0.03138510333020724 to:0.0005830245456944807 in:0.00048465411113050085 for:0.0003730584409627793 :0.9671741595720049 +of:0.5360808002629965 and:0.09345043821767292 in:0.09205518815014258 on:0.0719454368433355 :0.20646813652585247 +hope:0.5401162911224482 way:0.10363957720680661 purpose:0.028336176323900966 difficulty:0.020772092103622117 :0.307135863243222 +He:0.329143566764404 he:0.21380438273028382 I:0.14538653895674064 and:0.06693551978511376 :0.2447299917634578 +the:0.44339070461823715 The:0.22626578024038943 a:0.0741705116356055 tho:0.04820345387481634 :0.20796954963095163 +from:0.47042564165219974 and:0.11462593503848231 live:0.05551424569268597 for:0.013967003383419682 :0.3454671742332122 +of:0.42347176266460856 and:0.07465471914033255 the:0.04495872651324472 The:0.018043350108870492 :0.4388714415729437 +to:0.486207188244208 of:0.10679246023677393 that:0.06989353684026481 and:0.06744324407466858 :0.26966357060408463 +the:0.4069029561280751 first:0.16520276179680693 tho:0.027028644385601697 State:0.020243527884173933 :0.38062210980534233 +a:0.780931158998377 that:0.11313083644553423 they:0.025057136236174924 who:0.02349400164581337 :0.057386866674100354 +he:0.3082693950994002 then:0.29229430735685 men:0.17559367041753027 immediately:0.12886545614918618 :0.0949771709770333 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +put:0.3200362326121529 take:0.27929774104608285 go:0.2656490818889676 be:0.0667558541191974 :0.06826109033359923 +and:0.0658607267801105 or:0.03307527107987122 made:0.02679265621887363 ed:0.015339176241273615 :0.858932169679871 +the:0.9742091830729385 tho:0.007434993244459178 thc:0.0017855272709740005 what:0.00018108946019791398 :0.01638920695143041 +place:0.2981509341207282 wife:0.06854118003259894 and:0.04873071499265479 ho:0.040650751675662386 :0.5439264191783556 +be-:0.46446880410221125 he:0.36987469478004775 be:0.0766763968610278 He:0.05132569271688028 :0.0376544115398328 +is:0.08917908217395905 not:0.04499224275763921 was:0.038252246874602984 and:0.03721604248634697 :0.7903603857074518 +of:0.0521447865716761 and:0.04122127688699764 a:0.038690652081637474 the:0.033803541220397575 :0.8341397432392912 +of:0.1980149592464165 which:0.11103093788188162 and:0.09528982504214446 He:0.08480336772120863 :0.5108609101083489 +man:0.299066543516657 lady:0.09518469494637884 woman:0.051388578055533506 man,:0.03507863861926821 :0.5192815448621626 +the:0.9482895975973218 tree:0.021187991206901523 tho:0.008704055731072287 tbe:0.004826218256519543 :0.016992137208184724 +at:0.9348760826390352 In:0.020666697365138445 in:0.01501802741713829 and:0.014923153920530653 :0.01451603865815736 +the:0.3325840860395751 be:0.06812292377456096 a:0.05357394941419236 tho:0.024901685246520065 :0.5208173555251515 +convention:0.15702439942997087 appropriation:0.11320737380503251 home:0.04233042945225419 aid:0.027649089820558796 :0.6597887074921835 +some:0.05262750096141403 any:0.042507512549935934 the:0.03715196137628267 In:0.017168530079142222 :0.8505444950332253 +of:0.4794732570077651 and:0.09923887926591457 the:0.05428129022254046 principles:0.04915806461049339 :0.3178485088932865 +and:0.3307896966183138 three:0.11077660268341127 of:0.10415744184346323 tho:0.08132759774545369 :0.37294866110935804 +so:0.2837810577004342 and:0.11243359281566954 1,:0.06824293099230001 period:0.04281200965923323 :0.492730408832363 +for:0.3008649227574917 on:0.24379012839657313 and:0.18603940546562991 in:0.11559580994627526 :0.15370973343402994 +that:0.290974055018942 He:0.1479719329179672 he:0.13722757614643646 who:0.12495441073507464 :0.29887202518157957 +the:0.102922313965157 and:0.07708849590530853 of:0.03377356290120937 they:0.026861404561446735 :0.7593542226668782 +of:0.8655993109291042 was:0.08837242539668441 ot:0.010408842258760187 in:0.007558548367402328 :0.02806087304804891 +it:0.7381666199851926 the:0.08130210574418761 a:0.06306840877410552 to:0.023998452756469044 :0.09346441274004529 +the:0.8996759672699177 tho:0.07366137930543964 tbe:0.003978602494134813 tne:0.002397789484317592 :0.020286261446190213 +terms:0.9952865424082005 facts:0.00015618533231019334 payment:5.444285934972315e-05 principles:4.462999878334374e-05 :0.004458199401356157 +true:0.10332899988016005 sufficient:0.05153320038111344 rose:0.03692985945834172 driven:0.030588704677530786 :0.7776192356028541 +the:0.2825743381130653 be:0.05942967195880807 a:0.041735324181553984 any:0.021153263386764404 :0.5951074023598081 +however,:0.19051699285473192 is:0.09079234392092589 and:0.06167670542417237 us:0.060056745727894496 :0.5969572120722755 +of:0.02761067118737523 and:0.012071722958876612 the:0.010873343162056282 .:0.009017222253785092 :0.9404270404379067 +is:0.32222067799102444 a:0.20291612244139723 in:0.11755822785818848 can:0.06140075392575958 :0.2959042177836303 +He:0.266212176192656 and:0.2114428610555216 he:0.14865650791222268 she:0.12276282729123997 :0.2509256275483597 +and:0.08923176094131896 passed:0.029738400301799948 running:0.019212360960531055 passing:0.01732339673511821 :0.8444940810612319 +Smith:0.009452080139470048 Young:0.009201308853753372 Lee:0.00839435181022315 Jones:0.007230668800239084 :0.9657215903963143 +ap-:0.672431786312917 a:0.005430667906031508 been:0.002745164211535775 already:0.0006313095248706287 :0.31876107204464527 +of:0.13608937501233342 and:0.10826872814227388 the:0.050404349371775785 The:0.04498557629217354 :0.6602519711814435 +the:0.26058699548542297 to:0.2164119365371322 and:0.10524773024922428 a:0.04526074888843209 :0.3724925888397884 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +J.:0.18217180388769127 William:0.1637784204605391 W.:0.12184447107955763 Richard:0.07607940529038057 :0.45612589928183134 +.:0.19877425469490295 H:0.18806703557299975 A:0.06609759860561301 W:0.051543771053663555 :0.4955173400728208 +with:0.2945832707000057 and:0.1914494516863119 that:0.12615582682351922 to:0.09874076693297756 :0.28907068385718565 +the:0.08053695579693404 and:0.07882461421518856 of:0.07698790309747619 to:0.03308911272338291 :0.7305614141670181 +he:0.31426559644484303 I:0.30505400598314425 they:0.17441484557929457 be:0.09645531979077458 :0.10981023220194357 +own:0.08062542130014133 horse:0.041174249165390246 ship:0.03406910613205813 term:0.032064753813319656 :0.8120664695890908 +as:0.8546139439598363 was:0.07688600723203949 is:0.022782642620177346 and:0.015573145022896362 :0.030144261165050704 +any:0.6198613438485566 they:0.10941586329346227 you:0.05226827289220847 we:0.02405151323176962 :0.19440300673400282 +time:0.2556107985787816 moment:0.23327246457963968 in:0.07298117578917256 pass:0.025851974428798902 :0.4122835866236072 +he:0.7216275267458966 she:0.03856474154852537 lie:0.027076970502116545 they:0.021267661712141707 :0.19146309949131976 +operation:0.050644269348878244 that:0.026643395298226943 officer:0.02193725088795669 advance:0.016236958335465814 :0.8845381261294722 +every:0.9548507611417274 a:0.01214858555704769 all:0.011599633664464669 the:0.010857482417078228 :0.010543537219682006 +the:0.9689836874767968 thu:0.014596534470149239 tho:0.003641434394511104 my:0.003292397323693422 :0.009485946334849376 +of:0.15702841184994654 and:0.10508220775173659 was:0.09366417277006313 are:0.06482672877214622 :0.5793984788561075 +of:0.13485919146608497 and:0.11989439861111918 the:0.10446128128544822 or:0.06780372006556881 :0.5729814085717787 +market:0.9087366697024776 having:0.0004714723526858343 was:0.0002846534742565858 and:0.00021753275492543086 :0.09028967171565451 +for:0.17999429493779392 o'clock:0.15450582936666066 on:0.076768956815578 and:0.0572516502947608 :0.5314792685852068 +in:0.8729935874363308 In:0.052061451353903214 iu:0.013201650578954796 ia:0.005317575794165877 :0.05642573483664534 +to:0.5946340010462038 and:0.14221107294775248 also:0.1369836113622226 should:0.05615690249187873 :0.07001441215194246 +said:0.983895635902883 such:0.0006100041896537711 the:0.0005659667335967012 this:5.261730757318659e-05 :0.014875775866293494 +of:0.29140622512644976 and:0.11318530521262961 to:0.11212199099258839 in:0.10672325843598139 :0.3765632202323507 +and:0.31093037039533106 side:0.10371703753021148 that:0.053899515219295875 for:0.03943888862398688 :0.4920141882311747 +N:0.024186400659446747 State:0.012370831484419982 a:0.012361235547683553 said:0.011605638209876304 :0.9394758940985735 +of:0.20431732032241057 de:0.05744158573189927 .:0.035127736863216324 and:0.03498633685372369 :0.6681270202287501 +forces:0.12629462634299077 tion:0.06301469690358794 part:0.04458420093017569 portion:0.042338789446240206 :0.7237676863770053 +the:0.7444921560854766 this:0.1497320236017602 tho:0.029534501999694932 tbe:0.011353410792420145 :0.06488790752064824 +few:0.9848590483918955 short:0.0026836278751613376 happy:0.002258888932227172 year:0.0022264079870001497 :0.007972026813715857 +and:0.04960492211130341 made:0.045863906756232996 ed:0.03290827241253186 caused:0.019488906949852995 :0.8521339917700789 +to:0.6725988280419126 by:0.21227484317062215 tn:0.02671059008476867 in:0.010817688326374685 :0.07759805037632175 +their:0.3568346169436092 the:0.22786632934335727 them:0.10465693229362967 and:0.029396617450693902 :0.28124550396870984 +and:0.10920767217201022 that:0.07359938896111977 it:0.0727089959739204 them:0.06619904673778448 :0.6782848961551652 +water:0.3272910460045278 have:0.1936340235437135 had:0.19061020963470907 has:0.14455606807234908 :0.14390865274470058 +does:0.2497315903040459 letter:0.12815049817530472 and:0.11260498796175128 not:0.08134011315985182 :0.4281728103990464 +him,:0.2499637789629106 Now:0.09886419253268089 but:0.08541468609334636 was:0.08123036599265383 :0.4845269764184083 +and:0.06003978655576669 by:0.032146523001371975 to:0.025895087620841133 lo:0.02297481707059712 :0.858943785751423 +He:0.40008749780617847 he:0.10826492510449458 lie:0.09633588972461546 which:0.09455894219969023 :0.3007527451650213 +the:0.6815020873108519 a:0.1441903190863851 in:0.07610757363324289 not:0.034730992776573204 :0.0634690271929469 +of:0.12139633223662363 to:0.05745433603502868 in:0.051523891804741574 by:0.0485396916455721 :0.7210857482780342 +same:0.03231948539748177 public:0.020881876881183255 whole:0.020270174494205186 entire:0.014592811405991885 :0.9119356518211378 +tions:0.058596935781613665 tion:0.030507108832623614 trip:0.02290200053233644 ing:0.02289519482876483 :0.8650987600246615 +and:0.5467218223454287 so:0.15777378114657567 besides:0.058128344051440226 the:0.04144438855234414 :0.19593166390421132 +quiet:0.009461419954910365 dull:0.008284192548751993 and:0.0074766486294976535 John:0.005363277829075037 :0.9694144610377652 +to:0.1695229624468192 in:0.1445234342955356 of:0.13631157932561935 and:0.11810231536335296 :0.43153970856867296 +the:0.6129007000626729 larger:0.17331457960268504 a:0.061909289417940994 our:0.03189549064164777 :0.1199799402750534 +he:0.4432181352725235 they:0.2689948925802014 lie:0.08934774366663743 she:0.07146612494648263 :0.12697310353415484 +perfect:0.31474871249204933 active:0.0429760674123001 prominent:0.014229462581649858 famous:0.013694735408112309 :0.6143510221058882 +the:0.4097359581669495 of:0.21394055182364316 The:0.043621923865067615 and:0.03242563556434666 :0.3002759305799931 +as:0.9991385792173143 of:0.0002586537375187881 with:0.00012561973995418456 in:3.171273216774581e-05 :0.0004454345730449508 +danger:0.0020151548332461547 crops:0.0005064051494037092 body.:0.0005023931708540954 country.:0.00043361696743076 :0.9965424298790653 +school:0.07499605577899454 present:0.07285491502555147 time:0.046185743405908655 government:0.04596605167143175 :0.7599972341181137 +the:0.8079321730345379 in:0.0728484448903471 tho:0.04705287278927792 with:0.02828510707091007 :0.04388140221492711 +the:0.16276949647169642 to:0.09164808578889057 I:0.07579249836441565 that:0.07366413818795399 :0.5961257811870433 +the:0.21512151476063118 call:0.08885265090531212 bo:0.08467168015148369 be:0.05917288927873396 :0.5521812649038391 +it:0.8242352076703837 It:0.11038067676665667 one:0.022259020992952554 Christ:0.020257063164347156 :0.022868031405659902 +own:0.5332668763804503 heart:0.005421670825888521 power:0.005266548776742816 family:0.004279264570228707 :0.4517656394466897 +and:0.08647292656512363 con-:0.08009184414473197 the:0.07378678071309544 to:0.04269147340661106 :0.7169569751704379 +night.:0.043436534723365186 year.:0.031163895515094325 week:0.014513602913196425 House,:0.014241808651030266 :0.8966441581973139 +miles:0.6040724310031009 feet:0.1957039457406421 inches:0.16323319841205994 mile:0.0033553777777107687 :0.03363504706648631 +I:0.5093837945627127 now,:0.3076950217922369 1:0.15031454366584548 and:0.004827325246144216 :0.02777931473306044 +city:0.10969817732441327 County:0.05810712810293013 City:0.056060748373094785 county:0.05072602697425202 :0.7254079192253098 +milk:0.04187629293527763 energy:0.017297130113775986 powerful:0.017029466619932647 greater:0.01541106718787438 :0.9083860431431394 +largely:0.006988350939225812 .:0.005045862726251776 entirely:0.004234357549727739 not:0.004084730493735141 :0.9796466982910594 +R:0.7555690374732251 I:0.18066135550987084 M:0.005220941994006395 A:0.0029472046076813286 :0.055601460415216256 +company:0.042243752343198104 work:0.010931440776775016 Chinese:0.008587212467863896 return:0.0056766912142756235 :0.9325609031978873 +rock:0.411850230324516 stone:0.10321887121859821 extent:0.051292505450866006 tree:0.04457322010454561 :0.38906517290147413 +and:0.2554840864554742 No.:0.1788700004817753 of:0.09630394289040754 was:0.09464215766323839 :0.37469981250910467 +Ohio:0.32042005685631697 said:0.3071267237082732 the:0.11101377984012062 aid:0.09883501721267134 :0.1626044223826178 +and:0.09407881888842033 the:0.07501851862740312 party:0.06963442763525236 a:0.06918975664634085 :0.6920784782025833 +pressed:0.0011236807712993332 press:0.0008517628470961161 port:0.0006677748953975742 the:0.0004954884745959216 :0.996861293011611 +the:0.4272623406882533 a:0.05454503629775911 he:0.05434168241470731 Mr.:0.04295008801949627 :0.420900852579784 +lower:0.05817727730685279 trade:0.03567844082183503 head:0.02361435231762862 own:0.02198342723315194 :0.8605465023205318 +the:0.83922399556902 leading:0.0031733697770130937 tho:0.002205289933319598 several:0.0010107189724088872 :0.15438662574823844 +know:0.19070962197164304 take:0.0856838039506218 tell:0.07805158665306487 do:0.068837723682744 :0.5767172637419263 +and:0.09093490749052613 of:0.07930306879021419 the:0.06553183002459302 to:0.032356893561517566 :0.7318733001331491 +,:0.47824984387347896 before,:0.02002918743325511 it,:0.009608347410472593 ;:0.009447863092685652 :0.4826647581901079 +test:0.4247506055059263 be:0.17082796038520007 bo:0.10468181254193416 of:0.02793039105640301 :0.27180923051053646 +though:0.08262128117613729 would:0.056348415954273624 If:0.020816144639533275 shall:0.017900633458102073 :0.8223135247719536 +the:0.43380908439017374 a:0.12566570879720337 his:0.04784032595337668 tho:0.04631682441176138 :0.34636805644748503 +feet:0.11618292454196708 chains:0.03725626439356932 and:0.022713558300028643 it:0.015103205117643322 :0.8087440476467914 +75:0.04587478598504644 1:0.03472576864953544 100:0.027506806772626735 many:0.02544181360888608 :0.8664508249839054 +through:0.08516435190764261 citizens:0.0797410357637598 hundreds:0.07462481114109051 born:0.05105849999530647 :0.7094113011922006 +in:0.2529580043037088 had:0.20204515993908334 and:0.1631612732188097 with:0.09521306242203884 :0.2866225001163593 +that:0.3565273594274287 if:0.15238932275667977 and:0.12209145231257497 but:0.1044605542437276 :0.2645313112595889 +on:0.23126417568657742 of:0.10812469055078802 was:0.10051948176182993 ex-:0.05913800480488477 :0.5009536471959198 +and:0.1589021898682146 but:0.09196296075074731 1:0.03248678173287058 yet:0.025961355431226917 :0.6906867122169407 +the:0.5387293670100066 The:0.07759301137500227 a:0.07286728330154693 and:0.06456792119774758 :0.24624241711569672 +the:0.7472358243497259 said:0.13193076946344084 tho:0.06858489000497381 First:0.01952439986289836 :0.032724116318961154 +of:0.4033663788233874 to:0.15689482710810554 in:0.1554923827172523 and:0.09009749072951283 :0.1941489206217419 +quite:0.4058421148036762 that,:0.07709900363973257 in:0.07198300499785827 than:0.06932891936372833 :0.3757469571950045 +in:0.23953961743009453 and:0.2218062478618183 of:0.17894676116145253 to:0.10495603114053481 :0.2547513424060998 +a:0.9267757953331189 the:0.033802768238574296 much:0.017581404370418476 in:0.012532813596422446 :0.009307218461465927 +can:0.250492963337 cannot:0.21662291753267404 do:0.21209323583017767 don't:0.20262348652468634 :0.11816739677546186 +I:0.48831856758632575 my:0.1266809414097154 1:0.04894328903037014 to:0.0286778584359886 :0.3073793435376001 +of:0.44133513936905133 in:0.22477107484985634 to:0.08434959075452539 and:0.07461281727910861 :0.17493137774745826 +sight:0.7077781665559643 hold:0.1111342171997566 one:0.005329029481226063 up:0.0022707345289120838 :0.173487852234141 +two:0.7834989160677458 several:0.08325995390758403 large:0.005562492865303466 twenty:0.0029004107109948407 :0.12477822644837196 +stand:0.018516399506857347 made:0.013893844969878765 placed:0.009569487423122698 paid:0.008752689956415406 :0.9492675781437259 +She:0.2941601952120128 she:0.2266267007271363 who:0.2019396697819181 lie:0.14811510953815504 :0.1291583247407777 +the:0.4093536630808195 The:0.36310561820400244 a:0.035281526087026616 and:0.029633231069665054 :0.16262596155848658 +taking:0.7885125358469454 proper:0.0692542572532654 not:0.0435159380345413 as:0.023105094817842918 :0.07561217404740513 +the:0.8352433241148539 tho:0.027590771327742975 those:0.017197422899418294 tbe:0.01542484520740049 :0.10454363645058445 +dull:0.004810433798058391 very:0.0033554241197401107 good:0.002728260342886743 has:0.002002706043626297 :0.9871031756956883 +land:0.16117096075443754 water,:0.13712938471586375 n:0.11930771417085559 water:0.09565218645650327 :0.48673975390233987 +had:0.6377085198151179 was:0.056890218722542206 bad:0.012679850749457156 and:0.009180458130341197 :0.28354095258254153 +blood:0.2885727257778313 friend:0.008295273611163551 corn:0.007463714852071058 father:0.007116399578928284 :0.688551886180006 +the:0.19042437778825377 them,:0.13536063464474424 this:0.11404930576669621 all:0.09596071554744454 :0.46420496625286123 +turn:0.12510603511951235 the:0.039036836699044015 ;:0.016356737150871926 his:0.010207932219866165 :0.8092924588107057 +the:0.2685810401581728 his:0.2540358679590492 a:0.19673820313883855 her,:0.08969985234160344 :0.19094503640233598 +friends:0.39669784660518076 people:0.04908017061904449 troops:0.016994156587880126 army:0.015180301491699511 :0.5220475246961952 +large:0.18097023787952252 in:0.11476501839843829 sufficient:0.07950270029941063 great:0.07786253704641548 :0.546899506376213 +and:0.00048524483175164083 to:0.0004735962516557485 ground.:0.0004164740911509773 in:0.00039599490308302946 :0.9982286899223586 +the:0.3481230661114696 an:0.24205126493718385 this:0.17803547072293707 that:0.1537790874982897 :0.0780111107301198 +1.:0.20616310709233193 4.:0.004645244886224257 1,:0.004275673793267761 4,:0.0037536564625090317 :0.781162317765667 +the:0.3675696638544399 left:0.33558006816247865 brought:0.18706342977538182 sent:0.06657699933531441 :0.043209838872385276 +de-:0.1565571945523835 or:0.06727250185296489 the:0.0525588507658754 than:0.041272509401261114 :0.6823389434275151 +of:0.7127531913350904 and:0.06292283799678154 to:0.04489740445026199 in:0.03564919009750564 :0.14377737612036057 +come:0.7478195301898646 was:0.10328884857273146 fell:0.027757673473271453 if:0.021506894154232865 :0.09962705360989953 +public:0.4907811532719259 and:0.1508477415477232 to:0.11401840327931327 of:0.0709106421257698 :0.1734420597752678 +o:0.41670132805003807 of:0.16764508346495496 e:0.10962342310170303 D:0.0968333748300813 :0.2091967905532227 +to:0.35106014641626115 of:0.18518963909189265 in:0.14001410446122792 by:0.11349334283957555 :0.21024276719104268 +kinds:0.5141385364893751 points:0.09304670727725589 acts:0.054091354595611076 articles:0.03107708401035077 :0.3076463176274072 +place:0.20663399537904398 measure:0.17736915183835716 bill:0.1346453382853881 position:0.058901436696032185 :0.42245007780117855 +the:0.7487203700839447 tbe:0.03361148169967789 their:0.02263475943982728 tho:0.020489867014803265 :0.1745435217617468 +now:0.036255907800040406 this,:0.03408182401777593 Now:0.014708568774640572 the:0.012752765891239514 :0.9022009335163036 +or:0.007960718834577959 show:0.007506245865205579 do:0.00735695038686363 be:0.006635713384176447 :0.9705403715291764 +of:0.6976039472431514 where:0.23021647388038533 and:0.023659097062832365 we:0.021649366936249165 :0.026871114877381648 +be:0.687425730937525 receive:0.11832373750865996 bo:0.07369344983027572 re-:0.05130020523735384 :0.06925687648618539 +that:0.41576649748170774 the:0.15265467261297574 to:0.14330672281531304 he:0.14151218187914988 :0.14675992521085368 +the:0.9324445752047036 this:0.02553431453627115 tho:0.009809953730172068 tbe:0.005924091337593986 :0.026287065191259253 +to:0.5641411534942167 its:0.14065142187485521 this:0.11300576916870658 his:0.06874797171115565 :0.11345368375106597 +of:0.4694224722790914 when:0.40024456433803546 ot:0.07475311741769176 before:0.04961244692498428 :0.005967399040197025 +the:0.4271880315851432 America:0.10080342150389283 our:0.09562073034459402 his:0.06532111405644433 :0.31106670250992563 +H:0.5651570653587328 to:0.04520824526114644 Block:0.027432882907242852 the:0.01632708365584853 :0.34587472281702947 +fire:0.044882722638694666 been:0.041058302087240976 living:0.03165848695748796 line:0.031202124117124246 :0.851198364199452 +not:0.6469494518562685 to:0.18907860777803515 which:0.04895972494167454 will:0.044702116099305356 :0.07031009932471653 +United:0.4574226210350218 American:0.41201064796869863 Southern:0.020351002242953064 Northern:0.008707123417532768 :0.10150860533579373 +could:0.3233961323603372 cannot:0.3096793435849267 will:0.18987980054949197 to:0.09031466079861365 :0.08673006270663043 +the:0.5116886501772334 and:0.15300922982997375 The:0.07521981215635698 ful:0.07233393031167905 :0.1877483775247568 +trouble:0.08892253603236074 suffering:0.063008568025692 as:0.0630022099396841 work:0.05676342722035864 :0.7283032587819047 +of:0.1631328346498735 and:0.12438115486909082 in:0.09969246696770824 to:0.0941704302896193 :0.5186231132237082 +all:0.2620227154806834 in:0.14678763159431704 of:0.11025178964648948 that:0.030597516400688946 :0.450340346877821 +far:0.36825113911867113 really:0.086613277340321 not:0.08400747637330205 now:0.06121035874978005 :0.39991774841792577 +street.:0.012255834768808675 street:0.0005289801387713661 st:0.0004942088719630897 and:0.0004067488430284375 :0.9863142273774286 +going:0.003659325847087928 again.:0.003216096681266266 powerful:0.002458080728591382 death.:0.002239977764713783 :0.9884265189783407 +of:0.1540942849444105 .:0.1252378782390664 over:0.0888275753447332 him:0.06300796814124654 :0.5688322933305435 +the:0.9501516388804397 tho:0.019464733741689243 tbe:0.011220227784336083 ihe:0.005575696106232575 :0.013587703487302432 +the:0.4441578088758563 a:0.06432571958844854 his:0.03311636922705682 tho:0.030841067739251698 :0.4275590345693865 +was:0.9582439605364427 to:0.020994255151759615 took:0.011550134854584787 not:0.003662115519138416 :0.005549533938074507 +general:0.06746613132512268 Democratic:0.009372161161826513 Federal:0.007731595288377629 Republican:0.0049076036969670665 :0.9105225085277061 +was:0.19985281470313782 in:0.16804449019467743 to:0.07462688292759938 for:0.02179060272566003 :0.5356852094489253 +they:0.6620980405354394 we:0.08470572127239566 him:0.08050130971293493 you:0.04589853737397377 :0.12679639110525628 +N:0.12903567482458678 .:0.017350024920099506 THE:0.009598414515964833 of:0.004307725818027284 :0.8397081599213215 +with:0.18394615647780727 and:0.18392123476555247 to:0.17467513017072242 as:0.10721308673691937 :0.3502443918489985 +the:0.377337089381863 such:0.10138451253776014 Indian:0.08174411262048824 new:0.08040098336708802 :0.35913330209280064 +to:0.4384052126665514 into:0.21417978001423257 of:0.2104452158009547 have:0.11168386084914186 :0.025285930669119362 +north:0.05467833756412193 west:0.04672987341487857 south:0.023445201033150877 center:0.01665189966355183 :0.8584946883242968 +less:0.9972930399119271 more:0.0001365665089926959 moro:3.8250046394759475e-05 other:1.9908932160362e-05 :0.0025122346005252445 +a:0.6301460206588491 the:0.3180448859735205 their:0.018562879991786296 her:0.008005480107781909 :0.025240733268062192 +of:0.5676115035851326 and:0.15490967443080547 until:0.08593987731151487 to:0.049735279595585186 :0.141803665076962 +under:0.9999998657179615 the:4.581244917424907e-08 there:2.7168849983962813e-08 it:2.384560995222747e-08 :3.745512943621178e-08 +the:0.30354018051971815 no:0.20975704354188252 a:0.1409399310031133 to:0.1174379687964981 :0.228324876138788 +to:0.11433302790388669 reached:0.11377308545033443 of:0.10797789288905152 in:0.105706121573744 :0.5582098721829833 +meet:0.9412838386374346 see:0.026990530601906534 which:0.008307213956165576 bid:0.0060360338949122854 :0.0173823829095811 +the:0.3487208204102933 his:0.08051482959095477 a:0.04461931696304872 their:0.032939991748339656 :0.4932050412873637 +two:0.8443791567392358 Southern:0.04103542857900613 of:0.01960826155759415 the:0.0070314109929437325 :0.08794574213122022 +and:0.09635643868702441 of:0.06896302768006593 the:0.045165968138637845 to:0.025320864920667097 :0.7641937005736047 +be:0.1399319890845179 make:0.07167816705627122 form:0.045398356800992606 have:0.04372825360418377 :0.6992632334540345 +of:0.8833122247987184 when:0.03919282165224541 from:0.01339915596464967 gave:0.003404928279518484 :0.06069086930486803 +to:0.3825374358396655 and:0.16934814165382972 as:0.15354625711456157 than:0.10920533297609492 :0.18536283241584825 +house,:0.5004468002521943 road:0.16364096730112201 east:0.03193425575817677 bodies:0.011326528420484261 :0.29265144826802275 +that:0.10978955260393752 I:0.09300191045616306 not:0.09160103991739314 been:0.07665702921257103 :0.6289504678099352 +sure:0.17195726196737657 always:0.07616922894343207 based:0.06746770495663332 put:0.05360053840180141 :0.6308052657307567 +the:0.12385273846187524 and:0.10190313064350215 of:0.07157794461416037 to:0.05438881266281613 :0.6482773736176461 +the:0.5143586183929145 his:0.06241113118288076 their:0.051512148282892786 a:0.04475278979146909 :0.32696531234984266 +put:0.4893289832292606 forced:0.10601962555932666 made:0.09893968314791472 thrown:0.07935660233737994 :0.2263551057261182 +It:0.4292370235858799 it:0.15053292443105845 part:0.12424088445188582 which:0.036082065783474164 :0.2599071017477016 +who:0.4239125238478632 friends:0.1720842641654851 There:0.06711517183865519 members:0.06054220973443848 :0.2763458304135581 +of:0.41140542655937057 to:0.29458294132079244 for:0.16833268701835533 from:0.03175719997114079 :0.09392174513034088 +thereon:0.28808654138648043 upon:0.17627039493920135 in:0.15890421024776047 lands:0.12372971694954425 :0.25300913647701345 +it:0.22214698476920008 I:0.12190188342334694 they:0.11383185717520485 he:0.09667357248591363 :0.44544570214633444 +and:0.16006784156085616 1:0.06764308858519931 that:0.06323635493287848 but:0.062301309346230675 :0.6467514055748356 +and:0.04664228118609516 place.:0.017466416164666387 but:0.012160614429214267 body.:0.01160811719842183 :0.9121225710216024 +it:0.23147136086272302 a:0.2265801846076503 the:0.2210904725202907 some:0.07339930298291533 :0.24745867902642066 +head:0.019663721970776076 month:0.017080037678310334 an-:0.016245030507554072 cent:0.013858459521984532 :0.9331527503213751 +young:0.16275207769039415 old:0.08341623063152549 country,:0.051195996445767146 business:0.048840214330131505 :0.6537954809021815 +was:0.19967102081913224 is:0.1033193577414413 pleasure:0.09139498371741324 on:0.08907409199084539 :0.5165405457311677 +of:0.5170640821710867 or:0.18684582857154758 in:0.08330338708456649 for:0.053061359359148734 :0.15972534281365058 +to:0.5518696240381726 and:0.22603643443038818 will:0.04562551148166609 can:0.037270614319535746 :0.13919781573023743 +and:0.008874748422488234 in:0.008294638320839086 street:0.00791033581578422 hundred:0.005665028053520108 :0.9692552493873683 +the:0.6154556616567053 tho:0.11306405701267198 be:0.11128271380200792 tbe:0.04695443798863956 :0.1132431295399752 +of:0.902988740065177 to:0.03231912973125268 from:0.023071010210255954 and:0.02016814583628472 :0.02145297415702952 +of:0.13701893276928284 and:0.07494349662832862 as:0.02269869947067708 cash:0.018567621477105885 :0.7467712496546056 +you:0.0762810917583012 go:0.06905388988185153 gone:0.06873609780954268 extending:0.06463267196511985 :0.7212962485851848 +the:0.5783506377431921 tho:0.22813615678052893 his:0.07203045694287728 your:0.07098501416299036 :0.05049773437041133 +the:0.6368439255301496 these:0.07325226349633047 tho:0.04713566399652294 in:0.01890528825650195 :0.2238628587204951 +idea:0.35164183056064224 necessity:0.2610748573303844 use:0.06182985046247702 right:0.056590171855024796 :0.26886328979147156 +which:0.1404990604287385 a:0.13097393335588475 all:0.08290234382145162 in:0.0660046409990412 :0.5796200213948839 +elected:0.5285669966857349 not:0.2013019966661887 also:0.12783217953413237 uot:0.06537856941705827 :0.07692025769688575 +a:0.19664627838465293 the:0.180969469820123 in:0.1775928919505538 and:0.091207978145768 :0.3535833816989023 +and:0.2538714853094937 the:0.111894263521124 Mr.:0.08944807119346444 that:0.05808792124294683 :0.486698258732971 +?:0.00995419092664086 well.:0.0025785468690665315 In:0.0015390388631097325 much:0.0004014475590463729 :0.9855267757821363 +by:0.5476549386893458 in:0.22792646082018533 of:0.08102721581496505 under:0.07600453977365765 :0.0673868449018462 +part:0.11358423656485406 means:0.07934192752826995 matter:0.07044146901900289 man:0.05546549725308087 :0.6811668696347923 +the:0.049764074168859945 a:0.030784038570330866 other:0.024479454172642707 ton:0.01705544350578908 :0.8779169895823774 +that:0.8645630539312747 that,:0.041739816630382655 if:0.01441095442729148 who:0.0064613317032674675 :0.07282484330778356 +not:0.22092828546482388 that:0.19510698689276798 it:0.19080431885478794 in:0.08854710381047055 :0.30461330497714967 +answer:0.12809505072598074 as:0.036692761663396425 attention:0.034190173359680436 and:0.031303527513603 :0.7697184867373392 +executed:0.013600009218387882 mortgage:0.010731180035634304 note:0.010716818090859708 should:0.010237425881523267 :0.9547145667735947 +in:0.7857232974653893 and:0.08171213863325714 of:0.07383507271369709 may:0.025835244614271727 :0.03289424657338475 +It:0.34769398893851905 That:0.08770148493941328 Christ:0.0793880926830867 There:0.07692807401943537 :0.4082883594195456 +for:0.26634779839839173 were:0.12100469171316358 with:0.08202216939020665 in:0.06316209347463327 :0.46746324702360487 +he:0.8633030403127426 I:0.07276184863032753 lie:0.03416170658767226 she:0.017270211726460184 :0.012503192742797471 +and:0.5767508507904993 that:0.1540998565553118 as:0.029982303881555313 to:0.026786727377883266 :0.2123802613947503 +page:0.2592128304572994 lots:0.06584819050169652 at:0.054351247020130104 of:0.042085186528979 :0.5785025454918948 +fact:0.022338178408559894 following:0.01905438810856862 answer:0.01771736418618399 result:0.017630525764542947 :0.9232595435321446 +and:0.18953630324058748 today:0.14442461084255453 but:0.1283987369823067 As:0.08617455090658747 :0.45146579802796377 +the:0.20744151181865578 and:0.1374052452284052 to:0.12262571394623711 it:0.057938568370986016 :0.47458896063571593 +from:0.9475551545114432 by:0.030643928977523088 of:0.0032059945399937357 and:0.0005841173317347942 :0.01801080463930512 +will:0.46980815306414775 would:0.18550433367832955 should:0.1212835898299322 can:0.10116518534654431 :0.1222387380810462 +conditions:0.9996483163733343 circumstances:0.000165255798311617 terms:9.457162640933674e-05 far:5.8640115176653734e-06 :8.599219042709548e-05 +into:0.39882700216955175 on:0.19101570908216475 to:0.17367927532400076 Into:0.12747463603578538 :0.1090033773884973 +and:0.11000286261730967 of:0.07499099007880668 the:0.06333255948745972 or:0.0338389662527576 :0.7178346215636664 +the:0.3253232834760902 a:0.058533228724330866 be:0.05298635791819935 tho:0.022128591316213368 :0.5410285385651662 +turned:0.10461977567050264 due:0.0745147866469252 said:0.04933892865462078 going:0.033698007668115385 :0.737828501359836 +the:0.8918270174540015 our:0.039067290898558905 tbo:0.01908058880870208 tbe:0.016369362234349157 :0.03365574060438831 +for:0.5346474487178137 followed:0.3455578487002152 and:0.024295626561162985 by:0.008266575593920703 :0.08723250042688745 +J:0.2180151150811587 on:0.19056887817157256 and:0.08467363275754411 the:0.03931841208345138 :0.4674239619062732 +and:0.08055793317475733 pain:0.041463718654026926 that:0.02739465506909804 but:0.022111639093223143 :0.8284720540088946 +But:0.04468151181383182 If:0.028708648302376905 Then:0.019206891531199106 When:0.005453853698025675 :0.9019490946545669 +the:0.8932844935980798 The:0.01714182454761605 tho:0.01201580194104717 tbe:0.0072379561817694895 :0.0703199237314874 +of:0.6419495905318561 and:0.1095692863398325 to:0.04114801411137196 that:0.03838659927760813 :0.16894650973933145 +the:0.8453157708144104 my:0.11138810030667431 that:0.017318523540645562 his:0.0133421771631404 :0.012635428175129262 +Brown:0.03177660531522477 White:0.03158235497572878 Smith:0.012891469784965734 Brown,:0.012292590523927059 :0.9114569794001537 +the:0.19841540956587211 is:0.1664731388174144 they:0.16203958369860041 it:0.15082103177375028 :0.3222508361443628 +feet:0.8632388257397374 foot:0.031595320282854326 feet;:0.008180902089679058 feet,:0.0036706389697722 :0.09331431291795693 +ent:0.24083762682571888 to:0.09101578781215501 He:0.0867027099190682 who:0.07642401560031009 :0.5050198598427478 +and:0.11593781593047714 the:0.09038735550169233 it:0.077286589640143 Dr.:0.06031616900418729 :0.6560720699235003 +young:0.11148882642805666 Spanish:0.04484103521462889 American:0.03746769132521881 great:0.02167289789672271 :0.784529549135373 +the:0.3935446655105209 your:0.21429407607336112 their:0.14377966290999686 no:0.13389263984053193 :0.11448895566558924 +and:0.4860238092967049 or:0.23681234796442455 including:0.1703254352816581 with:0.05461943371004929 :0.05221897374716311 +a:0.1834779336182249 the:0.15281913982682147 still:0.09492845701996823 an:0.07499819817169492 :0.4937762713632903 +and:0.044454332449255764 but:0.015377282342800445 .:0.014688496208410737 etc.:0.012570511882023397 :0.9129093771175096 +expressed:0.11998648758063987 United:0.07706014430461851 I:0.06984932340303777 college:0.029067971981081936 :0.7040360727306219 +for:0.2854077822358913 as:0.27987488422131135 like:0.10903637836370361 out:0.08504968360242912 :0.24063127157666464 +character:0.22400671768019403 mind:0.07136657314697109 W:0.010580814061859992 name:0.008061949582318303 :0.6859839455286566 +United:0.04928997840448549 late:0.048730338906798114 strange:0.04121637820731939 great:0.03793440010472646 :0.8228289043766704 +tain:0.030235424861663404 tract:0.00018056322975080617 end:0.00011587741264398025 and:4.384197532349478e-05 :0.9694242925206183 +old:0.08152036845323814 excellent:0.0682833210796691 easy:0.05579637892805037 important:0.04083054275975639 :0.753569388779286 +for:0.9904867527133882 to:0.00026878445716349716 not:0.00020093040191175986 at:0.00010160420977014857 :0.00894192821776659 +one:0.08991222529857923 all:0.07912822603812103 rather:0.0706516954359899 worthy:0.05937556713406734 :0.7009322860932425 +The:0.13718886102959776 This:0.0432289312745706 or:0.041026147823432446 President:0.029840443220707894 :0.7487156166516914 +railroad:0.10846467485201627 commercial:0.09312528279302008 railway:0.07242951578248694 Christian:0.05929732001776976 :0.6666832065547069 +or:0.3046315194391421 of:0.11217208066311087 knowing:0.10573084090222828 to:0.08478190708427175 :0.39268365191124716 +satisfaction:0.09041354555418767 so:0.08449560155790566 facts:0.057799691786178144 see:0.044381958575388014 :0.7229092025263405 +the:0.1273937892143245 of:0.12585302495296588 and:0.11423862119395145 The:0.09543605755411912 :0.537078507084639 +he:0.3573040793411004 the:0.12882113000126655 not:0.10845913053405949 they:0.07762548792382651 :0.32779017219974693 +of:0.2394163145838325 and:0.10323160820139018 the:0.06478497999292251 May:0.04620603498953689 :0.546361062232318 +;:0.0006243123588323856 them:0.0005693014318498744 able:0.00039540026577110544 and:0.0003031723286144815 :0.9981078136149322 +thousand:0.9999882167400682 times:3.969313457339467e-07 young:2.347874972205203e-07 good:2.1559064363493123e-07 :1.09359504453241e-05 +carried:0.1799686899651139 cut:0.040539930062013785 and:0.026788014322682623 from:0.026739883094265858 :0.7259634825559239 +still:0.3646213882095139 was:0.29502993893044316 is:0.10016280091835494 in:0.07862276269769067 :0.16156310924399733 +not:0.5520575802329926 almost:0.09439764951544663 now:0.054658510947974755 thus:0.05125175626893542 :0.24763450303465068 +Co.:0.18003978540790616 of:0.030805936248020777 was:0.03025902969385821 is:0.02334093058930662 :0.7355543180609082 +the:0.011649476288660834 said:0.008957894651396353 of:0.00776475566271792 to:0.006747269826890393 :0.9648806035703346 +with:0.13900270247096036 and:0.10436407808904609 the:0.0977868465014694 The:0.08830812600207444 :0.5705382469364498 +in-:0.5758606980517059 of:0.013353627437012489 and:0.011785365974306823 since:0.00867905451476265 :0.3903212540222123 +The:0.2554793937970818 Mr.:0.08613850570515082 and:0.07588350857805612 the:0.0752827354247992 :0.5072158564949121 +with:0.35155817763207836 of:0.20538129425284893 in:0.12139592169177374 that:0.1174143166800698 :0.2042502897432291 +such:0.5107061531818804 their:0.281076383601298 that:0.11184738950092518 the:0.04039127359485616 :0.055978800121040284 +and:0.08416142758141013 work:0.05526371062199404 manner:0.03669753037573194 found:0.0321255383348525 :0.7917517930860115 +the:0.2534650921799869 -:0.09052028923432254 years:0.06380111655794615 a:0.04418157395626065 :0.5480319280714838 +United:0.04978253776234275 old:0.03684156739054085 other:0.028548321905778766 present:0.0268154630316945 :0.858012109909643 +great:0.14631628706745994 better:0.09275790968107402 little:0.04362472984760001 large:0.02580612728953279 :0.6914949461143333 +the:0.5443900888827172 his:0.08147187320986686 some:0.04842791825949411 tho:0.03987604423981203 :0.28583407540810973 +this:0.26563549933396263 day:0.18006215759773742 Sunday:0.13410039012679992 Monday:0.09850165377130131 :0.3217002991701988 +people:0.21185636995478013 President:0.14442351594250155 Government:0.0950683232924578 government:0.08908927448836722 :0.45956251632189316 +other:0.5716377439488758 more:0.12859274861559108 similar:0.047391180985206706 of:0.04704098520442944 :0.20533734124589692 +of:0.48640853172483284 and:0.07328737567371464 man:0.06848621165295721 for:0.043284112670416805 :0.32853376827807834 +the:0.6589454294218658 tbe:0.3262856840492489 tho:0.006375390538564886 The:0.00390249090307739 :0.0044910050872430515 +successful:0.17780564864153223 practical:0.12377841620942522 young:0.10184763811865077 poor:0.08259594249150891 :0.5139723545388828 +of:0.09627443072024927 o'clock:0.05080681728973188 a.:0.034776945329995354 A.:0.025454368718770697 :0.7926874379412528 +the:0.42171328460926466 tho:0.03368506364811366 this:0.017693079143028884 said:0.001260218093981709 :0.5256483545056112 +party.:0.04000973954167077 home:0.007992046698000365 county.:0.0020672082532204343 individual:0.0013323841236515606 :0.9485986213834569 +of:0.2143647830262123 to:0.12742210114407143 in:0.12718517675146498 and:0.11988887000579905 :0.4111390690724521 +section:0.46250270851764946 Tuesday:0.027082224891988308 floor:0.024308375986355105 story:0.022913757514984492 :0.46319293308902254 +Western:0.03245529557262537 was:0.025445229463599867 the:0.021856911388026014 should:0.02109182857369408 :0.8991507350020548 +and:0.9726845199013398 where:0.010939365217483002 as:0.0038800290531186355 aud:0.003030168879850916 :0.009465916948207849 +the:0.2719106073881352 his:0.14951114291507075 and:0.0873318683518814 a:0.07512972399987328 :0.41611665734503933 +May:0.2632837071519801 September:0.22707381512605684 December:0.2183748348329343 August:0.13777276207424108 :0.15349488081478782 +in:0.2114228125072586 10:0.11594175836100391 to:0.10835431516093333 8:0.06619911514101535 :0.4980819988297889 +the:0.8648688777458089 a:0.02930757236307217 his:0.023999302104158893 my:0.01504824363884873 :0.06677600414811145 +and:0.05336833280328884 ing:0.04206330478252693 is:0.03989243686237174 was:0.03680077399629902 :0.8278751515555135 +but:0.18416885596299706 however,:0.12888139418157804 therefore,:0.07385413536523786 in:0.03055331102625281 :0.5825423034639344 +of:0.10509774373758554 and:0.07168241043433993 the:0.03269452588740161 Mrs.:0.027731395902818427 :0.7627939240378545 +J:0.21552565752738195 W.:0.14333247279423497 the:0.11503311115140147 John:0.02524804046780034 :0.5008607180591813 +States,:0.9147442382015922 States:0.05184879254069914 States.:0.0008511653552128329 states:0.0003383417666352124 :0.03221746213586069 +of:0.15178519831532622 the:0.14825763629112193 and:0.1424568967534549 to:0.115014684508251 :0.442485584131846 +a:0.019237347632842274 were:0.009601979556157911 be:0.009240466343575417 was:0.008331156970209364 :0.9535890494972152 +they:0.32236889566275845 we:0.24112354339487743 men:0.12325069462992373 you:0.07600535603679788 :0.2372515102756425 +and:0.2706353346704106 to:0.15327864069669014 for:0.09904145659203338 in:0.04335396056850782 :0.43369060747235805 +constitution:0.07981524115218311 administration:0.037035642802603415 Constitution:0.027151223924770342 government,:0.02078755866944586 :0.8352103334509974 +times:0.76511703434382 nations:0.018924772862299547 construction:0.009199261228608846 times,:0.00446884487688535 :0.2022900866883863 +appeal:0.0701702249705758 a:0.0661961001118029 political:0.0384854483123062 r:0.03222437661703434 :0.7929238499882808 +come:0.003361951538000155 be:0.00043722633425420974 go:0.00036470997141451464 got:0.0003074373721105233 :0.9955286747842207 +he:0.9865807871090345 that:0.007195800231087387 she:0.0019426154698019683 lie:0.0010117854712311178 :0.003269011718845079 +say,:0.29339636015522247 be:0.19001604933861735 the:0.16844620760120138 leave:0.04425973543628436 :0.3038816474686744 +the:0.21600229660879328 of:0.11704651848747975 his:0.05819103076304573 her:0.03406127406069683 :0.5746988800799844 +call:0.00019976906868702002 statement:0.00010743186045811822 decree:7.483697244379689e-05 notice:6.374070610763773e-05 :0.9995542213923032 +authority:0.6237482935896674 Notice:0.02651217666071963 he:0.018506882183001633 It:0.01315763696130253 :0.31807501060530885 +his:0.6601164270215982 her:0.23850898101931145 tho:0.025485274388990207 their:0.01564280046625996 :0.06024651710384022 +and:0.13350029095892701 to:0.09828948905399262 of:0.05057165067641479 the:0.05035826842468447 :0.6672803008859811 +there:0.018215673367272076 deeds:0.008348854257840968 else:0.006820149870625401 world:0.005950504707661752 :0.9606648177965997 +difficulty:0.9256244031033736 and:0.014306906931336977 me,:0.008095618937951136 him:0.0035183433025610107 :0.04845472772477752 +powers:0.14205347681454286 duties:0.019899950666937435 interests:0.013598536635485232 Lake:0.009408850633802751 :0.8150391852492317 +to:0.9773275566509729 would:0.004227974986829577 lo:0.0021502736899864394 and:0.0010577263996296004 :0.015236468272581532 +the:0.12602872834756546 a:0.03044398450410131 of:0.021861525894825415 other:0.016394597951990653 :0.8052711633015173 +a:0.7089015352879295 in:0.10175622984104704 pretty:0.0684003094336145 such:0.051835839052194084 :0.0691060863852148 +4:0.041828388268550516 1:0.03782861771074098 3:0.036132626735969633 at:0.016577616157143326 :0.8676327511275956 +the:0.7291570095682159 a:0.20347548140317182 thc:0.06368619392121383 tho:0.0016115877492262733 :0.002069727358172146 +avenue:0.15223167306155794 America:0.13550144233751382 America,:0.07201151849438583 Dakota:0.03991959471650442 :0.600335771390038 +the:0.8202230776140311 it:0.09786396821376121 every:0.02405312869602603 a:0.01890459660085727 :0.03895522887532435 +are:0.5519270810822127 had:0.11479623462775101 year:0.11188214189333033 was:0.11164012445742562 :0.10975441793928048 +Germany:0.1687261764462481 large:0.009415348195606523 occasion:0.005458552850601343 West:0.002856426792636791 :0.8135434957149071 +for:0.3744594155023388 ing:0.21294821578205936 of:0.125839700358658 in:0.10557099506555238 :0.18118167329139132 +the:0.6892518547415994 a:0.11072154188105499 which:0.05155417804333081 tho:0.037251774751366554 :0.11122065058264818 +at:0.5201636430089716 about:0.11553456339463501 from:0.06467517787830111 by:0.035773424893195696 :0.2638531908248966 +can:0.2991432524691774 to:0.22675061861151602 and:0.09660482425452352 was:0.088280977860455 :0.28922032680432813 +delivered:0.8471290135554203 sold:0.02965032079704209 returned:0.0257790975824888 executed:0.021132569489309153 :0.07630899857573968 +Miss:0.22234776859458047 and:0.06492922881098948 Mrs.:0.0482746851605163 of:0.04065839922493857 :0.6237899182089751 +can:0.36037675279276254 have:0.19775927578226218 the:0.1633758550050963 were:0.12703792248495044 :0.15145019393492848 +ar-:0.12543539578829963 the:0.030023132882518774 er:0.022926858099292347 t:0.021545675935551994 :0.8000689372943373 +and:0.4821315444575173 of:0.27304924780592355 they:0.11542330001668338 the:0.07748329513190368 :0.05191261258797194 +ed:0.022742304896420207 to:0.018434576020971486 up:0.014591822447841098 and:0.014057561764097854 :0.9301737348706693 +country.:0.02076050685483863 work.:0.006951091404089528 people.:0.00358213506158534 county.:0.002687301943637781 :0.9660189647358487 +engaged:0.4731301995582534 had:0.07307109581636638 determined:0.07106501682640934 refused:0.06716673055035742 :0.31556695724861344 +the:0.028944831155033976 great:0.022647229231075053 first:0.014699434577545023 whole:0.012366005652853543 :0.9213424993834927 +you:0.8145226181498345 they:0.16136485668508058 we:0.01760286135141521 I:0.0024614935626295713 :0.004048170251040117 +cents:0.9990564764355054 of:1.9733672988545455e-05 is:1.3256078156544733e-05 for:1.1422087836524263e-05 :0.000899111725513003 +the:0.17423908610220756 of:0.13509964139776248 and:0.03915575518414367 to:0.03345356616737809 :0.6180519511485082 +from:0.7785315074987842 of:0.2051540599033958 ol:0.0067273935202717475 on:0.005210790807329956 :0.004376248270218167 +and:0.00022702215899572645 Davis:0.00020681979147552142 He:3.97697680219764e-05 Brown:3.726992888357756e-05 :0.9994891183526231 +real:0.7148793880259698 the:0.10622457832817572 said:0.06309228947496345 an:0.02691743497777405 :0.08888630919311703 +its:0.38576203384989394 a:0.08433172547126194 the:0.054476909808418204 some:0.043085990687752276 :0.43234334018267356 +the:0.613537874879663 a:0.20330808472252843 his:0.08842545124120377 one:0.03887712320506305 :0.05585146595154176 +small:0.2413962537773724 hundred:0.1112075839440305 of:0.03245427052621513 and:0.00865416422216702 :0.6062877275302151 +do:0.8264828187137682 did:0.08484576555581476 would:0.026649832181925 should:0.02229312997869757 :0.03972845356979448 +the:0.4199871558153085 a:0.06633790861916414 tbe:0.033264712957084656 tho:0.027445395324315995 :0.45296482728412674 +It:0.16833099439355886 it:0.09581620822478983 there:0.08981825506450827 There:0.07858305835997738 :0.5674514839571658 +St.:0.8246533809770805 of:0.03204218414255939 and:0.004200668011912931 W.:0.0030982230738809133 :0.1360055437945661 +are:0.8772744408256138 is:0.07297270473321907 will:0.007862696421509904 also:0.006382349714472799 :0.035507808305184546 +prominent:0.024376269283937668 foreign:0.018404133238074917 public:0.017842734637569115 distinguished:0.017288876768333336 :0.922087986072085 +and:0.4468752471907386 value:0.06776885323844134 But:0.06160137278787553 perhaps:0.036470721623253724 :0.3872838051596909 +true:0.3817573799532168 possible:0.16567251805109975 said:0.14079565495610136 evident:0.09223682729478343 :0.21953761974479852 +situation:0.09772390723928426 race:0.08868407539337929 State,:0.07613762007196863 government,:0.062146328973221296 :0.6753080683221466 +people.:0.05472752936681644 argument:0.042956489813165286 government.:0.02890936506964739 city.:0.022642331368723997 :0.8507642843816469 +and:1.362008591696517e-05 western:7.833875896223377e-06 of:6.168376229348356e-06 Western:4.688858058244562e-06 :0.9999676888038993 +cost:0.3107171396717847 rate:0.08435059343067262 distance:0.07882413491652275 salary:0.0629008618302323 :0.46320727015078766 +they:0.7877027966648659 she:0.14598058447903156 thoy:0.008025967865742634 he:0.007712112749523729 :0.050578538240836385 +advantages:0.5574552614173202 there:0.1316011477822726 is:0.03209967715912106 and:0.028735691383777615 :0.2501082222575086 +labor:0.03187675001432955 the:0.02381622769506776 every:0.01216664011632938 it:0.004837347826155842 :0.9273030343481174 +the:0.7630928713811487 its:0.20074435228549542 an:0.009421318604414934 her:0.008464419677337269 :0.01827703805160364 +ex:0.48028089885626374 early:0.007841157439630804 in-:0.006687051676506783 the:0.006381645105746952 :0.4988092469218517 +reported:0.0003469101530732537 in:0.00022564094866819192 known:0.00022506242273455688 being:0.000221049409688973 :0.9989813370658349 +asked:0.03856794972962402 had:0.03201468003092144 was:0.03140368678104548 and:0.025746656163743775 :0.8722670272946653 +made:0.24607820523521834 took:0.19885950532173047 drew:0.09676454741063274 gave:0.08359363096882363 :0.3747041110635948 +us:0.1671929113613527 it,:0.14908799022606695 even:0.13023607507232257 them,:0.10072801577243845 :0.4527550075678193 +no:0.17389907141071942 the:0.13497207152037266 a:0.09604283397328667 from:0.01698295022372436 :0.5781030728718969 +and:0.12381352384814871 is:0.10592973132552332 the:0.09679690959048533 an:0.09595834181852819 :0.5775014934173144 +results:0.09186825789215426 people:0.027147256837627386 Indians:0.025648119372485987 facts:0.011495426248780177 :0.8438409396489522 +street:0.9776960183473317 Central:0.0006619757096779399 county:0.00040462604208245454 the:0.0002711124639672707 :0.02096626743694066 +he:0.8011495115114147 it:0.09560507637324935 she:0.022872886240732682 I:0.019827332404373413 :0.060545193470229894 +the:0.1633142615778142 a:0.11772260378931937 let:0.1108120754692712 not:0.05229938481859716 :0.5558516743449982 +and:0.07579699001383335 II:0.03122286270375794 being:0.02621769904126055 received:0.01745350545319825 :0.8493089427879499 +a:0.4790806700610157 some:0.2397282387947568 the:0.14600340008752885 up:0.11880670497866576 :0.016380986078032823 +that:0.6235215500476623 ::0.024808793326506366 if:0.023174595211897405 the:0.020689605316349842 :0.30780545609758425 +good:0.06668909826173272 to:0.06441213610908406 ing:0.03197321075648837 up:0.03166225783261475 :0.8052632970400804 +in:0.6020866887676274 at:0.1995938881026241 of:0.0937769994371259 In:0.06570324913910153 :0.038839174553521004 +tion:0.027933182778462937 and:0.027373948678783223 out:0.016349833823604474 county:0.01621891500990222 :0.9121241197092469 +the:0.2914038884147655 a:0.03845438598988941 Mr.:0.030901380171435462 that:0.02510828083608247 :0.6141320645878271 +together:0.31987842612907913 thence:0.19531380836308587 and:0.05145842247339134 ment,:0.0231748412950861 :0.4101745017393575 +old:0.12665289471497385 open:0.09266403433432016 evil:0.05198266964140337 absolutely:0.03959916271323051 :0.689101238596072 +notes:0.44340121968995394 there:0.13991436716306316 line:0.13370236320704923 note:0.12714841254621898 :0.1558336373937148 +of:0.013872882934553816 .:0.012290467819893847 tion.:0.010890899036776666 and:0.008145283704817274 :0.9548004665039584 +the:0.43015320575279703 a:0.07897894452691565 years,:0.0643859548019868 it:0.033948564259625356 :0.3925333306586752 +and:0.14636083154093824 -:0.03462111661236757 the:0.01671005743547403 o:0.013702030225140301 :0.78860596418608 +care:0.009624386469373181 ;:0.004459143690597361 one:0.004317557744483305 all:0.0035314370177860262 :0.9780674750777602 +been:0.8266880336026091 the:0.013797652300838275 a:0.012206563825379052 be:0.009685408202147186 :0.13762234206902643 +of:0.3570199986110939 and:0.12812000811720678 is:0.10135382010716469 to:0.07708012777186414 :0.3364260453926704 +of:0.15334538774028025 and:0.12455756188640614 After:0.11263347445404509 after:0.04705061316031003 :0.5624129627589584 +the:0.7471299364913181 his:0.09207214321147777 bis:0.062158934754749054 a:0.051644369982713205 :0.04699461555974197 +what:0.18589852869423806 it:0.15714016631913397 It:0.10411306929213457 who:0.08350651492376884 :0.46934172077072456 +and:0.3967603510401876 Brown,:0.0029547224608517672 of:0.0008007830421090276 ot:0.0007761774293932492 :0.5987079660274585 +raise:0.12646206445089359 make:0.12494989669567061 defeat:0.09420235755570547 secure:0.058491836103913196 :0.5958938451938169 +of:0.3963608611577319 of.:0.3051117723610216 to:0.15272503298021248 the:0.021530312746424057 :0.12427202075461014 +he:0.15485785931374596 and:0.12161803357069388 who:0.1152286842090307 He:0.11360773156833845 :0.49468769133819096 +is:0.3725338160819232 was:0.35408507409372725 Is:0.17025768224012403 ls:0.08425890302410098 :0.018864524560124562 +and:0.41067115219772127 not:0.13265700441609088 for:0.1052673784025943 now:0.10349234725878134 :0.24791211772481214 +as:0.09610741666698285 and:0.06992289020470265 that:0.042204263388504276 their:0.0332627586995133 :0.7585026710402971 +the:0.22823745507838658 and:0.18095680140024348 to:0.08634123952255168 any:0.04217684650308853 :0.4622876574957297 +had:0.9404411258526757 have:0.031191872101054723 bave:0.012111655583781787 were:0.005685318834957569 :0.010570027627530423 +and:0.1483014692380672 James:0.047227429110180894 Thomas:0.046293816428670656 King:0.020392323671492886 :0.7377849615515886 +alone:0.9217830382072867 was:0.07670066795688534 again:0.0002966160506168067 and:0.00018591232172625405 :0.0010337654634848263 +tract:0.003501361332113091 White:0.001270778074980086 test:0.0008723534722958884 2:0.0008262848365095744 :0.9935292222841013 +south:0.35475284914265426 north:0.3425173370010078 N.:0.12126677907377933 S.:0.11395024475830846 :0.06751279002425023 +thence:0.37678981071752216 and:0.14623484894108402 followed:0.04572536875003821 and,:0.03196020236997184 :0.3992897692213838 +the:0.602621659926347 this:0.07480412902103832 her:0.06386675946140043 that:0.04177403307425124 :0.21693341851696313 +of:0.9404639435666379 to:0.028691945922158534 and:0.003968384785897643 for:0.0019978728840901626 :0.024877852841215752 +Grant:0.014043126260653425 Wilson:0.0006691995171362055 Brown:0.0004596585417264636 the:0.00038412201145893903 :0.984443893669025 +it:0.2135408987393993 he:0.07782830072572607 there:0.03053086783140003 action:0.005639921680372756 :0.6724600110231017 +of:0.3786907524235986 tion:0.1332041074516176 construction:0.08251757298207207 management:0.0708997938033321 :0.33468777333937955 +and:0.10608826850116872 for:0.045024065793940714 then:0.02989140541522157 as:0.02731302501863555 :0.7916832352710335 +Mr.:0.6110487115530107 John:0.26301546848047586 Dr.:0.03241439164265793 S.:0.0077698883419975925 :0.08575153998185796 +i:0.040487725188177545 render:0.007195512909573475 face:0.006693380567810787 he:0.006298221285677838 :0.9393251600487602 +.:0.6912042976577571 the:0.01770551060531426 W:0.005424766372455389 of:0.004020276916392259 :0.281645148448081 +been:0.3770730969134609 said:0.038961335828166 done:0.033120650993422 issued:0.029554556753389218 :0.521290359511562 +seven:0.17970695031471104 two:0.09798583252181753 sixty:0.02923373203639441 the:0.008602890655456634 :0.6844705944716202 +County,:0.5202455531699451 the:0.12778540217953005 county,:0.11856419922938014 county.:0.11297897004623592 :0.12042587537490877 +and:0.41233259181269016 time:0.07962547272533259 time,:0.048236183433691335 which:0.03440920184156392 :0.425396550186722 +young:0.16293966387264577 dead:0.10713820402392393 wounded:0.08999075780407592 poor:0.037969708570954476 :0.6019616657283999 +trying:0.03985411556274642 hopes:0.024589874984503567 means:0.005242757223659003 efforts:0.004631621984532753 :0.9256816302445582 +S.:0.30067089115987206 .:0.20476309693801814 of:0.035080686483702446 the:0.03079027278903417 :0.4286950526293734 +and:0.15567112103846906 the:0.11963303122141583 The:0.07519971963760902 of:0.043986372540108835 :0.6055097555623974 +ago.:0.29908123363092365 wife:0.03856653397498956 intention:0.028402055271913373 race:0.013076748758787518 :0.6208734283633859 +is:0.6758058733745038 means:0.21989753309224827 was:0.038635149042040066 Is:0.015891682334300064 :0.04976976215690784 +the:0.20305143344083926 other:0.044817584544666396 a:0.04044785105912792 his:0.0342941132702008 :0.6773890176851656 +friends:0.8449102308152049 school:0.026767976329881427 com:0.004320382053643471 special:0.0043191056638842715 :0.1196823051373858 +of:0.010471852295429187 the:0.008977242354765946 The:0.006563485643218534 and:0.0034076863033730247 :0.9705797334032135 +miles:0.1837197439877706 .:0.08112410532637068 j:0.06515866320310103 it:0.030106737721488346 :0.6398907497612695 +and:0.5002336587388272 the:0.05936151453294428 1:0.05387389652966074 No:0.05011572314693007 :0.3364152070516376 +was:0.28914026390536685 were:0.128771192606852 ha:0.1013854974515776 is:0.09917849930543489 :0.3815245467307686 +and:0.13961280297049994 of:0.11662357714805258 the:0.10721467171787462 to:0.04880248118984896 :0.5877464669737239 +of:0.6717055848757572 was:0.046589779182844474 put:0.028794663688012947 o'clock:0.02413782783279186 :0.22877214442059368 +of:0.8645024284863796 ol:0.113219763098878 and:0.007780071038885509 to:0.005879247293853285 :0.008618490082003716 +to:0.9999162358913272 in:2.4614185113462558e-05 and:1.297366043284814e-05 of:8.906816434460774e-06 :3.72694466920255e-05 +not:0.1582826399951127 see:0.14953589679097803 make:0.12044616043941814 get:0.1153407240713052 :0.4563945787031858 +as:0.09042641582612175 asked:0.043874250899268705 ready:0.02736749139604933 not:0.02410408622632035 :0.8142277556522399 +in:0.6805279878108841 In:0.15570696941799667 first:0.05052428532430907 ia:0.03439353509872823 :0.07884722234808193 +was:0.5390282302078335 is:0.10697289834953738 kept:0.09619420547384597 the:0.030080550316928686 :0.22772411565185427 +of:0.12159149063153973 and:0.11121675987288995 the:0.0741931566270291 to:0.05075230149733571 :0.6422462913712056 +water:0.10492894992746475 and:0.02076674726776118 government:0.012090175183331643 or:0.009261105349205661 :0.8529530222722367 +heretofore:0.04948227453049431 again:0.00029627892943370613 therefore:0.00025484376994373885 was:1.533461831561473e-06 :0.9499650693082966 +the:0.18982438567156412 third:0.048868072701809394 distinguished:0.04873777945002936 only:0.04610069177823515 :0.6664690703983621 +time:0.9295326435348471 months:0.02640826734780633 days:0.011322180007671899 weeks:0.00897356086392427 :0.023763348245750417 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +and:0.11556555391417059 the:0.11269968558730756 of:0.06430744996854518 to:0.05850310368693831 :0.6489242068430382 +make:0.04035684466286492 be:0.038568429470918236 the:0.02668114739430891 of:0.025268890572175053 :0.869124687899733 +Missouri:0.3431573196657636 the:0.24676226800635617 this:0.07920718887665588 be:0.07026959533135257 :0.26060362811987176 +their:0.9979284060014461 its:0.0016533299043481257 our:0.0001964946492864407 his:4.613811961645178e-05 :0.00017563132530291784 +the:0.6143966477892934 The:0.1536263757147777 in:0.09874085619158564 In:0.03252965166528174 :0.10070646863906159 +by:0.3116961524382187 in:0.2489547260086334 to:0.21228288226991796 on:0.12178076794557387 :0.10528547133765617 +of:0.8696101356724399 by:0.0281127806484461 his:0.013411182802271134 the:0.00949800588818273 :0.07936789498866005 +along:0.3513662895072265 with:0.2619799306613895 to:0.13929815204512036 of:0.11075476367888565 :0.13660086410737796 +the:0.2766571669194052 a:0.04290759786002524 to:0.0274014284170877 so:0.02585491098232182 :0.6271788958211602 +the:0.49641644690791786 this:0.04300712335821237 tha:0.012340295286195974 tho:0.007937511239536786 :0.44029862320813706 +and:0.19867972639358958 the:0.06864007891188892 as:0.05844877899767829 of:0.04287652461657788 :0.6313548910802653 +the:0.9810071406888053 a:0.003813223865983397 closed:0.0017054638455419283 and:0.0009713526580540445 :0.012502818941615451 +the:0.3202943077359616 tho:0.09058398164020495 be:0.06813906768418243 a:0.05945952135392287 :0.46152312158572806 +old:0.03475793030648342 able:0.030263033559870554 officer:0.007234129357766737 agent:0.006146813189148882 :0.9215980935867305 +are:0.5125442218619074 was:0.12421297812505318 be:0.057896146259052685 were:0.05318181291804487 :0.25216484083594193 +and:0.1769805466379811 of:0.07247755032686114 the:0.04030572268037055 to:0.027873186718537637 :0.6823629936362496 +private:0.3863764444153972 re¬:0.13280123922705275 the:0.042111418934372265 leave:0.03666492933325013 :0.4020459680899276 +rights:0.04022242331917663 friends:0.017291956409697634 lives:0.01540093988361778 duties:0.01334423135240841 :0.9137404490350997 +not:0.07256942266674898 suddenly:0.0535009893722714 greatly:0.03381536068899376 being:0.033486692203936616 :0.8066275350680492 +called:0.1693435491717316 calls:0.14495972288628683 did:0.13223165403874002 is:0.08530620597309777 :0.46815886793014383 +of:0.8148666953999144 to:0.02720292239426062 due:0.0166244174848771 ot:0.01518842416689498 :0.126117540554053 +March:0.28756793795613717 April:0.24281596304818448 May:0.17555832573425686 June:0.1735992178454574 :0.12045855541596426 +of:0.4372760409142551 and:0.13975456220225357 for:0.10385597777835225 The:0.0758613597637716 :0.2432520593413675 +Central:0.053594491560377204 Pacific:0.03515622980974104 and:0.030867853358431757 Union:0.0077984143179219935 :0.8725830109535279 +in:0.79423142700354 for:0.15283021108859263 of:0.03820834717461333 sufficient:0.004130117838710696 :0.010599896894543407 +and:0.38332962029302897 but:0.10015233511319808 But:0.04834317271764935 it:0.031307803415487806 :0.4368670684606357 +a:0.08885846465943878 with:0.043192482908675965 the:0.026249653150789767 f:0.01677002111901554 :0.8249293781620801 +to:0.16213915928558295 action:0.11096043658442187 great:0.058530170926093944 was:0.053607375674045395 :0.6147628575298559 +of:0.08141599295878238 ments:0.06516068453395714 and:0.03496823517094091 to:0.032440196560239325 :0.7860148907760802 +was:0.6940190200522285 is:0.10703469159713194 served:0.0343092614957456 stood:0.030760805413863106 :0.13387622144103092 +their:0.7765077121412084 her:0.11858055277764376 its:0.003872845415230604 the:0.0032519391778337787 :0.09778695048808347 +N.:0.42359112244253844 S.:0.2330985393744891 south:0.09195317345927059 8.:0.0850738444329195 :0.1662833202907824 +not:0.3584997499166433 long:0.17231524123016106 never:0.16871344413638228 recently:0.05897938903848969 :0.24149217567832354 +one:0.980517427789659 two:0.008555521920628655 ono:0.004049438615324243 street:0.0010742952384496518 :0.00580331643593853 +a:0.9672930769724085 the:0.024264861698418915 are:0.005883107573438501 of:0.00139183153771759 :0.0011671222180163687 +that:0.2175483508674122 and:0.14506364084979706 as:0.07866852264144263 when:0.068003145800039 :0.49071633984130913 +fish:0.058910590955718586 small:0.04412517246046324 little:0.03756833931565934 good:0.034605612376403694 :0.824790284891755 +a:0.9953461777658247 the:0.0008354902985972921 tho:0.0004174690771635156 very:0.0002815916093925679 :0.0031192712490219687 +ot:0.21724457127310712 and:0.06299458626550003 is:0.05386009302224796 of:0.04884549863487248 :0.6170552508042725 +was:0.9567684290495954 waa:0.0011595944026439608 Is:0.0010007937539715614 had:0.0009280978945290113 :0.04014308489925993 +most:0.2319629729588365 best:0.03354665794157961 greatest:0.014140065941886198 great:0.012850362816891127 :0.7074999403408065 +that:0.6740867050265367 the:0.059083517432432085 in:0.01715273932113152 for:0.013563796342858647 :0.23611324187704122 +and:0.12566737157771574 of:0.09477859371777181 the:0.08682970271784578 to:0.043649188275429796 :0.649075143711237 +it:0.3387918581769121 they:0.25713737494564876 and:0.21186970961849091 you:0.10096520806637063 :0.09123584919257764 +and:0.48685400152558633 in:0.08669154754701375 rather:0.05034420515734632 be,:0.044232271782000274 :0.33187797398805347 +for:0.3192646648208038 of:0.16090577379338367 against:0.12626367365107255 to:0.1206007235454724 :0.27296516418926753 +a:0.2686264877379444 the:0.20556002328455222 The:0.06288870965683623 this:0.05703965763993208 :0.40588512168073515 +into:0.24990502603820067 of:0.1886741467949817 At:0.17927715952483703 for:0.1482485782655022 :0.2338950893764784 +are:0.48526021807228137 aro:0.17775729173413177 is:0.0857153104983061 were:0.05800719641611691 :0.19325998327916385 +even:0.011906505752022623 her:0.009304259688697478 person:0.005669969124201229 court:0.005643321406021731 :0.967475944029057 +and:0.17496145338687835 the:0.04877897540736326 or:0.02778228199332996 air:0.020586458818893604 :0.7278908303935349 +foreign:0.0431683282970744 citizen:0.0039809018271136035 to:0.003091161632016448 friends:0.002664564547843199 :0.9470950436959524 +west:0.35637659508873903 occasion:0.01547683724372714 time:0.01390557554034106 country:0.013393857810836097 :0.6008471343163567 +done:0.12732803561957567 reached:0.08617394262245312 accomplished:0.0780242322130401 obtained:0.05747008813566404 :0.6510037014092671 +the:0.4328876161583069 his:0.40232565801679937 her:0.05119870818623081 my:0.02990364679816011 :0.08368437084050291 +quarter:0.3683814633202547 of:0.10955681984881345 the:0.06191560096756755 and:0.04895113181080308 :0.4111949840525613 +from:0.8795527823489371 is:0.03246714217796158 was:0.015355918446100972 are:0.01409205018408929 :0.0585321068429112 +and:0.3917874295183562 of:0.25314001019078053 Young:0.04648521128369968 when:0.04042441775566517 :0.2681629312514984 +into:0.9426846529143794 Into:0.0398187488068782 against:0.00042104931814425345 among:0.000297823317774321 :0.01677772564282398 +me:0.3071678934073639 look:0.06114697593533742 sell:0.058731175871274605 walk:0.04948666618960664 :0.5234672885964173 +change:0.10049159631213049 yield:0.03427201898693547 there:0.03041512450290476 friend:0.015358115518774336 :0.8194631446792551 +a:0.17006666192599193 his:0.0748064070882804 the:0.0689539369665126 as:0.06282969361502588 :0.6233433004041893 +a:0.42836373528804617 the:0.11849169339423643 white:0.02848598380961316 his:0.01235821150963983 :0.41230037599846453 +given:0.13779041227845723 obtained:0.05357059439593494 increased:0.05275007330999778 declared:0.048119168684511666 :0.7077697513310983 +men:0.16542697039273446 force:0.10932104311482657 French:0.05638223084135849 of:0.05400061673151219 :0.6148691389195682 +written:0.02793499103725597 grown:0.02424448837866307 been:0.0033423804953720162 an:0.0031284461751620836 :0.941349693913547 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +which:0.16287256811919748 space:0.14487808952304437 It:0.1283438190536238 room:0.1141145004936106 :0.4497910228105237 +his:0.6895497413789686 the:0.1099597049909108 had:0.05797419694187951 a:0.048704341585819017 :0.09381201510242207 +was:0.3189509545346564 returned:0.2967877087998256 is:0.11889247972867864 are:0.04729644929812735 :0.2180724076387121 +street:0.547828646029146 street,:0.061230678088711556 and:0.02244497532104682 line:0.02127879700354561 :0.3472169035575501 +the:0.904209750265042 tho:0.03481804096734246 The:0.007796465691395617 and:0.005615694239326756 :0.047560048836893104 +and:0.17995230796275444 or:0.09301040003793425 of:0.05686150972014429 a:0.05482981783631689 :0.6153459644428501 +present:0.41229163788473083 the:0.3022913533168962 being:0.05989841880260916 tiie:0.021208132723383954 :0.2043104572723798 +into:0.2549708433127955 at:0.0592296656599316 of:0.05109695061861053 in:0.01829007062806736 :0.6164124697805948 +been:0.9325292696813398 not:0.003266720918767514 again:0.003248214550483379 ever:0.001642618684869152 :0.05931317616454013 +course:0.0854583649960846 discharge:0.05473972255997231 hands:0.03805059843967006 event:0.03491911137725539 :0.7868322026270176 +big:0.19839143033684647 two:0.11008278152962725 kind:0.04227039159369732 sweet:0.01777675465725333 :0.6314786418825757 +also:0.043482071508030865 to:0.029140812465580743 the:0.02319476113352195 was:0.017345859206549213 :0.8868364956863173 +other:0.0512764618997588 more:0.045367289998715046 one:0.043817199011354065 such:0.027380285995461613 :0.8321587630947106 +and:0.10708448685551392 to:0.10425764748446989 the:0.06165759118512244 that:0.03493521137072067 :0.692065063104173 +These:0.966001339994629 The:0.014584161138771782 Such:0.011628992911445644 and:0.0047358186104195345 :0.003049687344734075 +that:0.9437799778476268 at:0.03315367848280577 by:0.015482431028061043 all:0.004969071423233191 :0.0026148412182733054 +Why:0.2557233211475468 and:0.25447860703635805 How:0.1106437981097829 there:0.06744792240788232 :0.31170635129842994 +lor:0.21932986848642935 and:0.14428590651567227 d:0.11814294498221305 to:0.0246047526925563 :0.49363652732312896 +common:0.30838154095286563 of:0.037144983187664744 and:0.03337827406400305 2:0.02723931627944841 :0.5938558855160182 +came:0.8875586383905385 went:0.044786872999806625 started:0.019416363695659532 turned:0.01429759945145777 :0.033940525462537556 +at:0.26533832539640567 to:0.23020997582044617 on:0.2266706126130267 from:0.09201777162883816 :0.18576331454128336 +to:0.2725039202321155 and:0.09640094876745983 by:0.08053347721765979 the:0.07867619037012609 :0.4718854634126388 +subject:0.21728014343354318 basis:0.13536717889155905 support:0.0626356366069369 top:0.03835592607523472 :0.5463611149927261 +a:0.2184619170946144 the:0.19748510570708588 and:0.0476461630634098 of:0.03855185861555955 :0.4978549555193304 +the:0.4817280097190643 that:0.0726598559615093 a:0.055335231332243204 his:0.05482788958740477 :0.33544901339977834 +have:0.4110326158787628 than:0.1264179281509858 they:0.03485059065456655 was:0.03197212169200295 :0.39572674362368193 +every:0.3843331350448861 tho:0.2162738979719074 either:0.1930690660301629 each:0.11768310837561193 :0.08864079257743171 +all:0.36080949653151195 just:0.09301086987860802 you:0.0683969334953397 worth:0.02239353900002207 :0.4553891610945181 +bo:0.5799482968999247 be:0.38521622514367 he:0.013924857787216676 get:0.0007048217599432369 :0.02020579840924532 +besides:0.23513259113574073 of:0.2063008268184399 to:0.1327032732682541 than:0.11530760572624783 :0.31055570305131736 +the:0.33864520516781693 for:0.06848422582057066 of:0.040801631917975256 The:0.0385862928624026 :0.5134826442312346 +had:0.5876464472909275 has:0.3528851258111449 bad:0.016723514590541496 lias:0.009365388225200125 :0.033379524082185814 +of:0.08413014471954747 and:0.07236203189916392 in:0.042795028281126746 to:0.023051675900425363 :0.7776611191997365 +J:0.4495271878735432 C:0.2616601048707511 W:0.1085369829868694 E:0.10152674727191237 :0.07874897699692403 +to:0.8184556247889523 of:0.056146400710090354 in:0.032827396055688705 on:0.029034672786788264 :0.06353590565848041 +to:0.7828329883910164 the:0.05178540954193141 that:0.03869170693722403 at:0.03683641920694119 :0.089853475922887 +health:0.0882656910931056 and:0.05964316608824726 would:0.02981602341118885 morning:0.009159094896074468 :0.8131160245113837 +thing:0.16577682206622069 way:0.10991422569957142 medicine:0.09942866548705077 men:0.04084565895906654 :0.5840346277880905 +public:0.049967286333293705 highest:0.01724222280712357 said:0.01719916478807914 great:0.013041023788321063 :0.9025503022831824 +I:0.028683468491676727 the:0.024681782088957577 near:0.012961274076300707 track:0.01266287926469068 :0.9210105960783744 +had:0.48756655673077387 has:0.18216738077898134 having:0.0880466902633921 have:0.05354653830494003 :0.18867283392191256 +a:0.372018220043896 his:0.2897984771096247 the:0.14079496591097868 another:0.10927447467800984 :0.08811386225749078 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +Such:0.24586888333418974 the:0.03566868515451671 night:0.031094096528222634 such:0.027437907984234094 :0.6599304269988367 +be:0.5664574580074457 show:0.07670225724498975 prove:0.040763594687878095 he:0.03705245166278172 :0.27902423839690466 +though:0.5000049614515861 but:0.1393279257606953 and:0.07681681571036465 than:0.059910612804183076 :0.2239396842731709 +and:0.542804336321679 or:0.15566629238226598 &:0.12604519483938043 of:0.07548634585106083 :0.09999783060561372 +those:0.46732967150529003 the:0.11208196235637709 that:0.02510414380781705 Mr.:0.004716526008166761 :0.3907676963223491 +found:0.35758697588928806 issued:0.19262036501609317 bought:0.08461155185379127 made:0.0672379705580826 :0.29794313668274497 +of:0.03443434798868477 and:0.011979186446739079 to:0.009379440110717887 one.:0.009352057936444719 :0.9348549675174136 +provided:0.305672595748122 aforesaid,:0.06507377315360459 if:0.06244772918635073 a:0.05119040398172952 :0.5156154979301931 +the:0.29536670187008596 a:0.04936269863575518 1:0.023722876180387348 2:0.020438151498325216 :0.6111095718154462 +the:0.8924257803371747 tho:0.029393444790841064 tbe:0.018346726238552005 making:0.013479122681226209 :0.04635492595220589 +sure:0.1314274080266781 present:0.04993450934751035 of:0.018898366823208158 required:0.007242442641279049 :0.7924972731613242 +the:0.6819152232194121 tho:0.2895039939513474 tha:0.01330620077551951 tbe:0.004501450504853377 :0.010773131548867559 +and:0.394617488165214 out:0.12279225184648461 lines:0.11912317043567357 progress:0.040869029758960874 :0.32259805979366696 +to:0.3335327994455865 and:0.1932676477525567 with:0.19183178079654586 a:0.09471171004292987 :0.1866560619623811 +that:0.05672642356566194 nation:0.0542014907062718 which,:0.0513405166736616 and:0.04975962513081088 :0.7879719439235937 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +has:0.4231957250321093 I:0.3709607848218628 ever,:0.04264561404090302 the:0.03937085273377292 :0.12382702337135196 +he:0.42906082917393873 ho:0.1581350010336437 I:0.10992482498005646 she:0.05541415162322081 :0.24746519318914012 +the:0.3253232834760902 a:0.058533228724330866 be:0.05298635791819935 tho:0.022128591316213368 :0.5410285385651662 +world:0.07362338234048113 world,:0.0704671209322544 laws:0.06837109634750757 land:0.05988014422669601 :0.7276582561530608 +and:0.15364222150300888 the:0.10788874074047346 of:0.04999823054838414 to:0.03623410320544695 :0.6522367040026866 +the:0.7179601182091933 his:0.19056758017956868 such:0.03379992528982753 tie:0.010389074862395771 :0.04728330145901471 +east:0.12582907517408884 west:0.09040737811302484 00:0.06630785893617061 E.:0.06109851806633613 :0.6563571697103797 +was:0.45424383038187005 had:0.19770430832654973 she:0.05486785711831874 is:0.042421783559641275 :0.25076222061362025 +Dakota:0.07341233517742689 Dakota,:0.06977258980870005 Carolina:0.06399984420334422 and:0.019256139798308654 :0.7735590910122202 +to:0.42273101159384685 of:0.17721884667120852 and:0.11143052858956591 for:0.07744334647861184 :0.21117626666676698 +years,:0.4429344007971701 days.:0.02422547981826485 years.:0.02308031439172483 men.:0.02156473129688592 :0.48819507369595444 +and:0.14831326329887723 the:0.09738584580946767 of:0.06698239655689363 to:0.06235877095099875 :0.6249597233837626 +and:0.1300302062914961 to:0.09104923800186543 which:0.08767349260710862 the:0.08189813792002212 :0.6093489251795079 +and:0.2068684103335074 had:0.07522338175060782 lias:0.07257799880833624 has:0.0368379638968396 :0.608492245210709 +like:0.6086503723534328 to:0.17468787124511828 of:0.1178388768992514 in:0.03566410813006231 :0.06315877137213509 +battle:0.16405419526911696 northern:0.12498219242445885 commercial:0.09230391130939226 high:0.062402334463200135 :0.5562573665338317 +the:0.11738331592395851 and:0.09709334051503485 a:0.04801028466233807 The:0.04582360183055922 :0.6916894570681092 +the:0.4322904926757153 these:0.19913914737023314 those:0.13974737249387476 certain:0.11570251136487358 :0.11312047609530308 +the:0.13646479866003078 that:0.03247153055460323 to:0.027831962398781985 and:0.02671361658532176 :0.7765180918012622 +the:0.3334522476525614 pre-:0.0529993853351115 a:0.052103637491684444 was:0.04920047526945181 :0.5122442542511909 +or:0.09210525733919178 and:0.06592627607246596 of:0.05545483656483288 the:0.05545472433229863 :0.7310589056912107 +section:0.2855589830733561 county:0.22946097207115776 department:0.15818240262600894 part:0.1481423288936999 :0.17865531333577722 +be:0.8302833223152047 bo:0.03804149134262057 he:0.020858020617762332 lie:0.005640149916930442 :0.10517701580748202 +the:0.4752366298465785 a:0.19790300601956623 tho:0.06605836153543782 our:0.04308713582259667 :0.21771486677582064 +for:0.6844264078901932 to:0.07848001753938762 For:0.0443655154685787 of:0.04208230695650251 :0.1506457521453379 +the:0.9818196569514077 tho:0.009182086457042929 tbe:0.0048301267416343795 tne:0.0019601400783089756 :0.002207989771605964 +put:0.22654569836873584 position:0.11041779294991036 value:0.037004441748170906 ment:0.02357948510121868 :0.6024525818319642 +;:0.0406697487198308 to:0.01955666653084171 ,:0.017449450539615368 for:0.017419969204259884 :0.9049041650054523 +out:0.1467499178344667 supply:0.10104767008886592 when:0.07804733285233675 eggs:0.05204428373114316 :0.6221107954931875 +of:0.62191385259152 to:0.1575340033541291 &:0.08193544069198831 has:0.07573310614201437 :0.0628835972203483 +of:0.9578838633939918 ot:0.017542026845173447 or:0.013473468531889505 ol:0.002343839325092513 :0.008756801903852668 +by:0.7475507148093392 in:0.07023251593697104 without:0.05216765220415085 than:0.048769677202539656 :0.08127943984699912 +which:0.14790207893251164 It:0.08813081999289947 and:0.08372906575320731 it:0.0738351577439122 :0.6064028775774694 +of:0.23450026205035482 tive:0.12007809913750307 French:0.051517479925782886 or:0.04505983083499969 :0.5488443280513594 +and:0.25799877089628587 with:0.13368785465137106 at:0.07836306794537312 in:0.07376188491457401 :0.4561884215923959 +and:0.6433158888126704 by:0.2091778644830242 across:0.04081573622710233 in:0.021103526280532612 :0.08558698419667052 +the:0.8499467864115416 tho:0.08950952836122437 tbe:0.029233070951807695 he:0.02073442816565138 :0.010576186109775036 +the:0.1055511322950925 and:0.09935604725328069 of:0.0864027231492442 to:0.024528446365975634 :0.6841616509364071 +D.:0.9549928784495557 J.:0.00844810860388298 B.:0.007450384594976995 R.:0.006258106411263627 :0.022850521940320598 +soil:0.5340544414785062 land:0.3293495662561325 hair:0.02597733008891054 ground:0.01952415566314302 :0.09109450651330767 +it:0.4737178846886174 as:0.2130840561560395 and:0.07544231412558941 It:0.0707364486321644 :0.16701929639758928 +interest:0.10652136789194828 him:0.09246065473927906 them:0.033825424849954384 the:0.031238194618714063 :0.7359543579001043 +the:0.23414438790475606 be:0.0718839495931744 his:0.05877733471610901 con-:0.042986426584378845 :0.5922079012015815 +the:0.10192946476022338 of:0.09647030421090577 and:0.09412005678807764 or:0.0886775197430062 :0.6188026544977868 +a:0.151488654308861 not:0.09517796677443591 the:0.079967615392828 hereby:0.07005021408363153 :0.6033155494402437 +and:0.09900221977218966 the:0.06654132064762094 of:0.06263119688648702 to:0.037345227279931205 :0.7344800354137712 +can:0.8726994672379198 would:0.048905632084648896 could:0.046076173482903875 will:0.016733199486442866 :0.01558552770808465 +lying:0.5737056142233541 sitting:0.12162523269020234 standing:0.08624563730255372 a:0.06823885078082195 :0.15018466500306776 +with:0.13603586181243557 being:0.08352135278862532 and:0.06501103860345829 of:0.04652654537799256 :0.6689052014174881 +and:0.04223074527111646 him:0.030891719602491204 not:0.030705820494072666 as:0.02833479359966825 :0.8678369210326515 +near:0.03651573185300243 him:0.0180878765536323 room:0.007509852506918128 room,:0.003673541332865906 :0.9342129977535815 +stock:0.889937505321317 license:0.03214326242992743 sum:0.01141164412146739 money:0.010214086018370747 :0.0562935021089174 +day:0.585069628325299 side:0.029758710029080735 line:0.019139678239156403 tion:0.013035181614737603 :0.35299680179172616 +he:0.11534814641328908 the:0.10181952441942249 to:0.06772868829463982 of:0.060596277887161515 :0.6545073629854871 +In:0.35901371690156886 all:0.16227874001861015 in:0.15998599419669315 of:0.01871948696646954 :0.30000206191665835 +the:0.2856647210618337 not:0.17041766188944119 their:0.12704092598365618 a:0.08189873777326218 :0.3349779532918068 +corner:0.3571517104614045 quarter:0.2534050234427542 side:0.11447879842826705 half:0.04153053415755682 :0.23343393351001748 +the:0.3135745953953391 their:0.25704512214924574 this:0.16219651221125087 said:0.11339618533945871 :0.1537875849047056 +ac-:0.007088882338990999 consider:0.0011626801624382724 a:0.0006367129966296688 in-:0.0005160618891527303 :0.9905956626127884 +hat:0.03015035405452912 more:0.027130830449985665 control:0.023439355848200966 address:0.019904687585317278 :0.8993747720619669 +the:0.18215639424289717 and:0.143637576985857 of:0.12455887946003046 his:0.06318539772660581 :0.48646175158460964 +at:0.9777402986856699 nt:0.00558892491743859 it:0.0027686228965718962 the:0.0016423874343905389 :0.012259766065929078 +approved:0.28243722601547916 fixed:0.1317278002467602 appointed:0.104867389069806 determined:0.08699534397755188 :0.3939722406904028 +which:0.8065264727350661 and:0.10737312564591397 put:0.037009429666488694 but:0.024665942337822308 :0.024425029614708996 +know:0.19471012903992332 say:0.1795228978489614 forget:0.11769555661487208 believe:0.10007879092861523 :0.407992625567628 +of:0.12456498703133821 and:0.10713238080537739 the:0.07099297814884539 to:0.030493822568101295 :0.6668158314463375 +I:0.410709633379223 they:0.27233447261995175 we:0.15151105873948223 1:0.026467082779530526 :0.1389777524818124 +at:0.2595764680598753 and:0.08953572221606804 of:0.03266943905542466 that:0.026903796908871146 :0.5913145737597609 +it:0.10001516625280225 of:0.030670421685839673 li:0.030337655091221535 to:0.029923275144419705 :0.8090534818257168 +for:0.4727667676196619 of:0.16337533431784554 from:0.08932323955685428 was:0.08452852555548747 :0.19000613295015073 +-:0.05811657618172252 inter-:0.013665855633449206 lie:0.013610438680467019 one:0.007378283821614107 :0.9072288456827472 +an:0.10362022502396237 and:0.1031957610785395 a:0.0756980625574667 if:0.07193910476890483 :0.6455468465711266 +and:0.8988396941425876 the:0.014711882274864288 as:0.009719699182178023 in:0.006438587153342055 :0.07029013724702793 +of:0.0004360205079178698 continued:0.0003347897318245054 taken:0.0003180780079895401 or:0.00015467236484888164 :0.9987564393874192 +and:0.16007085743389116 the:0.07326376423870379 of:0.07325294756143819 to:0.03647895687866941 :0.6569334738872975 +mile:0.10690861617491752 was:0.08326097706701932 man:0.0703089475874133 block:0.033759804376010706 :0.7057616547946391 +be:0.05347485664286159 size:0.04114044948167356 same:0.03768946417509008 rule:0.03388097213766946 :0.8338142575627051 +bills:0.08235104988002676 hands:0.030716667774055885 stock:0.020670534843119613 goods:0.013286511588431152 :0.8529752359143665 +disease:0.5408908213966135 thereon:0.02865800070144424 interesting:0.006512356456420772 thoroughly:0.006391013205801901 :0.41754780823971965 +estate,:0.5365866595190522 tional:0.15936503012007655 whether:0.08173418223630047 was:0.052207874653085067 :0.1701062534714857 +come:0.1578326033472061 result:0.1522946117212321 be:0.02830498940395171 have:0.023367709863632846 :0.6382000856639772 +In:0.37156091814823594 in:0.2459657612601669 of:0.12969017959180462 on:0.09679868938532792 :0.15598445161446467 +the:0.04114113554877979 February:0.0246258196527292 Washington:0.012772351545533304 April:0.011667999440440401 :0.9097926938125172 +I:0.13891851911393233 the:0.08958368050761255 command:0.01694567960318465 Red:0.004405839765657749 :0.7501462810096127 +sitting:0.4617075463490512 coming:0.05912746504645852 again:0.0471132869556417 out:0.04244042214260551 :0.389611279506243 +together:0.31073256640564967 cash,:0.04349232107130007 you:0.020031335479454584 and:0.019141605844143234 :0.6066021711994525 +ment,:0.10432470575669352 ::0.08027155188261441 California,:0.02969094923023662 them,:0.022669648102367428 :0.7630431450280879 +day:0.1656567405537312 goods:0.05143558466939291 they:0.04065103905509554 world:0.030076128604795683 :0.7121805071169847 +once:0.9357061209356093 all:0.025723197012381033 a:0.011595257971361194 least:0.00863316356277038 :0.018342260517878087 +made:0.0750321809684624 given:0.05648662244677942 added:0.05153803372423919 sent:0.04982914187248321 :0.7671140209880358 +south:0.1971044572300202 to:0.14690785147374222 and:0.13280544557566243 a:0.1228703229306163 :0.40031192278995886 +It:0.7715586920797747 He:0.08153605190037871 The:0.06006573193905484 They:0.032670595961950676 :0.054168928118841005 +the:0.5638540856773548 I:0.1580046965118596 a:0.1437130650018711 some:0.058760404521574786 :0.07566774828733966 +go:0.2304701557982276 stand:0.14375487568187256 get:0.10555207453879664 do:0.04550397316536643 :0.4747189208157367 +train:0.24093003395062912 movement:0.19489030692360712 morning:0.042893235466551424 new:0.03770407903479512 :0.48358234462441724 +from:0.6078082801479952 to:0.09146071478124901 when:0.08561814752390826 into:0.07265385967606472 :0.1424589978707829 +come:0.3171761744632674 been:0.16643779756339017 proved:0.06912202063164263 little:0.037958141909749984 :0.40930586543195 +there:0.16595948901485724 will:0.12286337016167362 many:0.04115018295028333 at:0.0397771764070814 :0.6302497814661044 +rest:0.13116994716266822 relations:0.11392873495984004 liberty:0.07181005580769965 flag:0.06844992942879803 :0.614641332640994 +any:0.21254047306217558 place:0.053599672547422 act:0.04904499571026663 county:0.04278366292680915 :0.6420311957533266 +regular:0.4311721938093559 the:0.28953295881864 free:0.12974024704602047 a:0.08599766156951685 :0.06355693875646684 +of:0.4198096573375222 in:0.09346057916341552 In:0.041058888807380976 for:0.038610067041612336 :0.407060807650069 +of:0.4460837082740915 that:0.18143764857692699 to:0.10203709814461963 for:0.09635833681955673 :0.1740832081848051 +few:0.07448108165532029 pretty:0.07143272339119247 to:0.07079891710522769 now:0.0230559473471897 :0.7602313305010697 +in:0.32805028316144286 he:0.28554605759535684 be:0.18443317489861083 which:0.043936553685629515 :0.15803393065895985 +the:0.11210333041558794 to:0.08123919004609409 then:0.02498411093195445 that:0.02149030116117674 :0.7601830674451868 +all:0.7504125153215652 by:0.19887002386466818 nil:0.019756191300722488 j:0.015889688783068595 :0.015071580729975753 +st:0.7909926350896087 at:0.18135003010969805 on:0.027482314068829398 of:6.767633963169811e-05 :0.00010734439223218187 +made:0.029860849536165995 set:0.012067662838966415 sent:0.009544117207794547 provided:0.009379089184925317 :0.9391482812321478 +good:0.08210636842813869 little:0.07224340864764592 right:0.06776909819126459 large:0.050229265617900004 :0.7276518591150509 +with:0.872481364700859 to:0.04144222021011651 and:0.009959319140815376 of:0.009110300548322165 :0.06700679539988695 +more:0.2171247709561702 later:0.13878223418686567 longer:0.056228226242970074 after:0.033455472535792355 :0.5544092960782017 +daily:0.0854905350641438 any:0.045221384527379 City:0.029407060403370364 a:0.026497698432919596 :0.8133833215721872 +of:0.21897133285910575 and:0.08153608025835725 the:0.03758174415858845 to:0.020879632458538164 :0.6410312102654104 +the:0.5240882436478902 and:0.09840797187877717 a:0.09300819458959693 his:0.03854684563791631 :0.24594874424581942 +and:0.4506476027348543 would:0.24254279603432163 of:0.16727737026560052 to:0.06170709172444268 :0.07782513924078086 +every:0.42209568938540015 any:0.2979887736385084 the:0.11946976527309006 this:0.09778181420506499 :0.06266395749793627 +and:0.7678262762521936 by:0.18454224122328383 aud:0.027621874968274437 or:0.009246387958515394 :0.010763219597732654 +-:0.09778287784458906 ern:0.06182621044255205 ':0.00944362996435756 in-:0.006708455701658073 :0.8242388260468434 +the:0.21424176816010967 and:0.14263624309645082 a:0.07738905878340652 of:0.06605434621315241 :0.49967858374688057 +no:0.6291797911037095 will:0.2681267068345746 not:0.004883897265159887 o:0.00428156338189366 :0.09352804141466237 +of:0.4488129181296638 and:0.16728396097443426 to:0.14019127769116485 at:0.05902095551105049 :0.18469088769368652 +D.:0.015951447014669665 will:0.0118170117654303 to:0.011446035886115832 A.:0.006655143623252615 :0.9541303617105316 +bo:0.09675125784412993 A:0.08953394570087139 or:0.08837285017976193 a:0.07560097137203227 :0.6497409749032045 +whole:0.13496087561295655 Indian:0.09896432682397346 present:0.06492412018230145 measure:0.05390294302941969 :0.6472477343513486 +with:0.21269607040932545 in:0.07932083412159993 and:0.06227514937148528 for:0.04507175200556975 :0.6006361940920194 +method:0.07876342764452347 system:0.06229788574548465 variety:0.05202325838308882 description:0.04046367964569938 :0.7664517485812036 +Lord:0.22738664709744075 an:0.08797722428410411 of:0.06975954466106711 He:0.045500155480108634 :0.5693764284772794 +No.:0.5574474023669534 of:0.170161493052238 No:0.04492052665347969 on:0.01642381389641949 :0.21104676403090938 +in:0.15959717046491653 and:0.06819646125949592 the:0.050991293969067146 on:0.04649961276667386 :0.6747154615398465 +the:0.7612190290224409 a:0.05150094583449543 tho:0.042099785628583394 tbe:0.01679031313235289 :0.1283899263821275 +In:0.13375547708477598 of:0.029935575154332754 and:0.024860281645262824 the:0.019677112643811195 :0.7917715534718172 +all:0.26715379384987176 it:0.22534139732929537 he:0.18033392245615004 she:0.1304083750974165 :0.19676251126726632 +of:0.5908298154198197 and:0.1098363040200938 in:0.08271499356434744 that:0.043685648743993735 :0.17293323825174534 +she:0.4435264338693469 He:0.26655405098024787 has:0.17855739014098682 and:0.042973681556315306 :0.0683884434531032 +was:0.8178032007833264 of:0.1487708593569286 and:0.011717486653024937 their:0.011473730446219866 :0.010234722760500284 +tiie:0.008954712922452002 almost:0.006750522719408961 may:0.006521606149057058 men,:0.005183009254248659 :0.9725901489548332 +aro:0.8627013253934941 are:0.06974805973143135 were:0.029524579273234625 arc:0.0010925085087935373 :0.03693352709304644 +one:0.1082205796754298 and:0.08237061479417594 Miss:0.0773995810168547 The:0.053943815007043115 :0.6780654095064964 +of:0.655903520249263 in:0.1777867189786434 In:0.06750427928252252 and:0.03361661729170775 :0.0651888641978634 +of:0.10127005525738143 and:0.06466665543900219 the:0.03239265221550773 .:0.027794172166198863 :0.7738764649219096 +were:0.1121898677329824 The:0.09927203448184815 as:0.06012594622017667 with:0.059141378616595255 :0.6692707729483975 +from:0.4669650977748398 and:0.06827113734518239 to:0.044193036016290106 with:0.03733994872668243 :0.3832307801370052 +and:0.0687907721671406 him:0.03191527882973965 them:0.031528379332442194 it:0.02395501568386476 :0.8438105539868128 +have:0.5783079193797044 only:0.2764919406600625 having:0.03967404054482442 of:0.027702555113296997 :0.07782354430211175 +the:0.4478439715337088 a:0.2591399934356558 an:0.07655090050307442 in:0.06547656973138904 :0.150988564796172 +pair:0.1628217647487058 lot:0.14935791647027066 price:0.009655630366456626 set:0.007399813315678535 :0.6707648750988884 +It:0.31258947994071123 it:0.14059997765508342 there:0.10631467797775201 he:0.059230600711837354 :0.38126526371461605 +same,:0.1312293230882087 sale,:0.022361661203299077 track:0.02202913305765877 farmer:0.009804431189411402 :0.8145754514614222 +for:0.9702405456403127 under:0.014604763492973166 to:0.009823066665977131 by:0.002877290490267188 :0.0024543337104697997 +I:0.47034821989995557 could:0.30118818777438394 who:0.15575259148041262 would:0.05582215340226917 :0.01688884744297869 +block:0.1134365383946443 the:0.051523374651650175 line:0.04678091969916262 tho:0.018253048690603218 :0.7700061185639396 +faithful:0.25022710866244025 true:0.21477865879406385 one:0.06155650118214866 real:0.039748083821253034 :0.43368964754009415 +the:0.10251940337502057 of:0.07473214444615747 and:0.07286816187603298 to:0.06060556254580642 :0.6892747277569826 +field:0.08607867886215739 demand:0.013737484739495518 belief:0.005055687364628382 man:0.003878213486320564 :0.8912499355473982 +high:0.07453344098405176 few:0.05586288478109767 dozen:0.053237492244692354 foot:0.044755449681993735 :0.7716107323081645 +from:0.6553504732184892 to:0.06366358054592872 every:0.02136627185109333 ta:0.002944863074557253 :0.2566748113099314 +and:0.08520777819921228 of:0.05114912143712104 aged:0.04776717864588972 the:0.04211780688254673 :0.7737581148352302 +being:0.5619922158103523 are:0.03158939914882378 wood:0.014878901065290218 not:0.008956876422323392 :0.3825826075532103 +day:0.5217125996337991 week:0.34673346139660344 year:0.11062662941621264 two:0.007217031057528578 :0.013710278495856102 +and:0.12600961067939617 of:0.0470149906214958 to:0.0311008619657211 Mrs.:0.02520154538966671 :0.7706729913437201 +of:0.6515411123290828 by:0.04957265080392831 than:0.04892718334546815 until:0.041869668938133535 :0.20808938458338713 +saved:0.207787509024775 during:0.0410824415800209 that:0.026720839981142587 when:0.025041273051374418 :0.6993679363626872 +Chicago:0.11394701328030954 in:0.0942301795731631 Carolina:0.03636831728337412 the:0.02639582945791179 :0.7290586604052414 +at:0.13128820578344264 No.:0.04186621301863714 and:0.028513106852491008 No:0.022574034419571662 :0.7757584399258574 +of:0.22315215387655946 in:0.09606063444391666 for:0.0628714415688805 not:0.05459650302098908 :0.5633192670896543 +of:0.8578921009699928 as:0.06377980961919523 so:0.008965496895182222 on:0.0052532394235600645 :0.06410935309206969 +and:0.22254705894881313 by:0.18280239048786312 profit:0.13122952964084603 of:0.11974094048588975 :0.34368008043658793 +much:0.38987175466853186 only:0.06392599066162098 and:0.021948092024306174 medicine:0.016122270393908164 :0.5081318922516329 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +of:0.20969313553853175 with:0.199624439831703 to:0.10428149686286918 in:0.09929833061373383 :0.38710259715316225 +have:0.684026812741362 had:0.22450356861461743 never:0.036816964419463714 be:0.0265685329739139 :0.028084121250642913 +followed:0.09732212298703805 and:0.09256092067958765 nnd:0.08593600715969457 accompanied:0.02784400163773076 :0.6963369475359488 +of:0.5714271690365084 in:0.1518451369527818 to:0.047918606652625095 that:0.045777097998874486 :0.18303198935921047 +of:0.0431055041781892 position:0.03514296773380442 with:0.019554227589307638 estate:0.01474815515897103 :0.8874491453397277 +and:0.2090119246594918 which:0.04576642183184325 the:0.0410660471408663 to:0.03608117513509721 :0.6680744312327015 +part:0.3060150329824408 top:0.03757339739791363 side:0.03577512004099103 night:0.024372464012149028 :0.5962639855665054 +the:0.9728215451498351 tho:0.023881332079554864 a:0.0020363045267526446 tbe:0.0005906473644495926 :0.000670170879407726 +day:0.9967458975299537 go:0.0014923429107201213 days:0.0004475267008112809 then:0.00021512203026966827 :0.001099110828245268 +the:0.5090938051329914 those:0.249630949786069 all:0.05654662840525651 tho:0.027448947619863672 :0.15727966905581944 +tion:0.08019831045810766 day:0.04825298618632834 ing:0.022265602883604328 ment:0.020943312606414983 :0.8283397878655447 +answer:0.8358686607719404 and:0.07673871156306583 then,:0.04133190120382838 will:0.01392193096934195 :0.03213879549182326 +Washington,:0.026199678976122992 Washington:0.007243656935533671 Mexico:0.005658885836368837 Virginia:0.0038968562175932535 :0.9570009220343814 +very:0.17479551661065706 small:0.10228541702320817 low:0.07417105741214539 fair:0.06656880301234729 :0.5821792059416422 +increasing:0.08226187991253191 upon:0.07067117727026109 increased:0.06900628853552808 of:0.06377666018782008 :0.7142839940938587 +make:0.22988294446960783 how:0.12338019983579444 tell:0.024196583344666844 which:0.012660937410127089 :0.6098793349398038 +In:0.3822420352608229 the:0.3205713673743599 a:0.2034228151804083 in:0.04370623868737448 :0.05005754349703454 +not:0.7541502466860868 were:0.028896122029146026 is:0.023140087248549938 and:0.016245700103802628 :0.17756784393241473 +fact:0.050088717409329506 wonderful:0.04044483964105647 con-:0.02014012186748754 great:0.016527929982350184 :0.8727983910997762 +pressed:0.2826162452850651 the:0.13910398383587766 a:0.13258633589192462 in:0.059984479134038524 :0.3857089558530941 +two:0.3805826886925153 after:0.3564931261004792 three:0.11622719484495757 several:0.06367027983529296 :0.0830267105267549 +is:0.18899847805803058 are:0.16329195277584915 was:0.12432937827738365 being:0.11265619996910273 :0.410723990919634 +is:0.6672147462118535 was:0.29077205901711767 the:0.03346810794776375 be:0.003910141070861991 :0.004634945752403034 +King:0.007063515916060754 Smith:0.001827085606834424 H:0.0015014745669857282 Johnson:0.0014683822282146955 :0.9881395416819043 +person:0.3441319451320248 son:0.03557095855604191 on,:0.013036020310287515 r:0.012970447488040592 :0.5942906285136051 +the:0.48091084210447754 a:0.26830407805562917 his:0.0753248861300787 this:0.043692776795726924 :0.13176741691408758 +California:0.038899545392857206 school:0.026549281386190227 new:0.024056184291183603 United:0.017781473079475484 :0.8927135158502936 +a:0.26351676054933004 the:0.13339186732781932 in:0.05463028517231078 an:0.04971784966754906 :0.49874323728299075 +changed:0.36120553788483645 lost:0.25778471521025503 left:0.12497902232618535 paid:0.06537899498892547 :0.19065172958979756 +he:0.20382286619497822 I:0.05580578227326375 the:0.005588635874969408 time:0.004327601938133174 :0.7304551137186556 +to:0.20310982321370638 and:0.14773039740007343 from:0.11314337356065413 cannot:0.08410897185802041 :0.4519074339675455 +cent,:0.0012324285223445559 for:0.00021144847525035964 and:0.00018990103321767226 cent:0.00015665277939452832 :0.9982095691897928 +was:0.2964967986824844 of:0.12357600183696868 is:0.06961418783344772 and:0.068246729469913 :0.4420662821771862 +for:0.24572954721121928 of:0.20883062410143824 to:0.1937500102312973 and:0.1856753148637796 :0.16601450359226547 +the:0.673505058486897 his:0.06824369045128771 their:0.0648370130703747 this:0.036873791472485505 :0.15654044651895513 +the:0.25734465436270704 Miss:0.05783421823728846 Mrs.:0.04130245583369815 Mr.:0.03330768697160059 :0.6102109845947058 +to:0.6559639006977074 and:0.1317933448076549 It:0.03771786351202624 would:0.027926887122155696 :0.14659800386045568 +adopted:0.9028840127666916 brought:0.04901537904678128 been:0.004508223645705788 not:0.0023596728867538988 :0.04123271165406729 +the:0.10188829562534236 and:0.03992560979389459 came:0.031159103291601722 its:0.023759150006916294 :0.8032678412822453 +nothing:0.20384891506650474 something:0.017531111308579553 little:0.010457405963637364 one:0.000661625179857451 :0.7675009424814209 +the:0.03708560357792184 dry:0.032636223442245815 build:0.02755543405594289 to:0.002711431132611725 :0.9000113077912777 +selling:0.8578804638204415 their:0.03678112647666739 finished:0.01829112498825815 the:0.016343888824261698 :0.07070339589037135 +and:0.17533289421528778 as:0.11154398702950497 but:0.0965802118300547 that:0.0808832382735748 :0.5356596686515777 +on:0.31822626452634434 in:0.22377486520671547 and:0.1315763387731235 from:0.10087791080829188 :0.22554462068552472 +the:0.7344093952579356 his:0.05806878046787216 any:0.029284427644347532 a:0.02273950764160122 :0.15549788898824343 +the:0.18717180276938417 their:0.1326118129286087 a:0.1324257448960566 tbe:0.11044794972795438 :0.4373426896779961 +men:0.11632391239735997 men,:0.06855739290082175 States,:0.027884926409378022 States:0.025403923575202415 :0.7618298447172379 +he:0.4202021291314459 I:0.1357465774389822 and:0.10050298418248992 He:0.08434202756655272 :0.2592062816805292 +of:0.057685006337410756 the:0.056654975483647035 through:0.054916512998562914 fact:0.03256354942188866 :0.7981799557584907 +and:0.10539859507159448 as:0.04211117645078865 up:0.02210174311415103 or:0.01390227199575521 :0.8164862133677104 +wise:0.2911566732398792 way:0.2484365588287426 order:0.07097094289443887 State:0.05176412925414976 :0.3376716957827895 +or:0.13527212342977496 country:0.09194435278245482 and:0.0755497985728288 of:0.06702907301074335 :0.6302046522041981 +and:0.06895268080943266 morning.:0.06132662194334518 1:0.054915313810209525 in:0.04449987303686561 :0.770305510400147 +But:0.17244267515144504 If:0.09791552516085661 That:0.09765298831358916 Then:0.0673651126136995 :0.5646236987604099 +food:0.05315833681211118 physical:0.022421537587421048 made:0.02006870481246651 county,:0.0189271918172191 :0.8854242289707822 +the:0.06768767528551085 come:0.03917402422072361 every:0.008124480192656183 make:0.007928953727261306 :0.8770848665738479 +I:0.4777529905637979 you:0.23783309571031655 don't:0.10860486270155914 they:0.040140683473267935 :0.1356683675510586 +care:0.18579321692628736 him:0.14992135044467733 occasion:0.14149787244160586 you:0.10532279844503642 :0.417464761742393 +will:0.5749834706374608 should:0.19293189928409052 cannot:0.12376213836112146 would:0.09954397256138113 :0.008778519155946041 +and:0.03187212464677113 camp:0.018705536500100494 dis-:0.017112080445345547 school:0.013451225513213112 :0.9188590328945697 +aged:0.48417300745370623 for:0.1590103106690208 of:0.06883427324162192 at:0.01607112960425001 :0.27191127903140094 +with:0.7196423464504939 With:0.21058860872039523 by:0.029781301151315047 of:0.022570275171860055 :0.017417468505935594 +of:0.44855821982375044 and:0.32592148511506447 In:0.08619744836909742 about:0.07353149802808022 :0.06579134866400736 +went:0.9684031687244481 will:0.006203161155374062 issued:0.005515871913197608 was:0.003198581251887038 :0.016679216955093015 +the:0.18226117035124748 and:0.12874042717524828 with:0.10039464650479875 of:0.09744427703657553 :0.4911594789321299 +of:0.17499268974205093 and:0.11074053723915683 in:0.09477707445749414 In:0.048964936713632015 :0.5705247618476661 +he:0.6199631493912823 she:0.15883864688867008 I:0.11410237302973675 you:0.029088364815359088 :0.07800746587495168 +the:0.41608722605898063 a:0.04533028972435146 an:0.018042462205775153 tho:0.01770151900392496 :0.5028385030069678 +is:0.12772626003599685 man:0.11475217574082366 other:0.06383593298305514 are:0.063100869530124 :0.6305847617100003 +the:0.14483129238685988 appear:0.10003957951997292 her:0.056762170690504904 hia:0.05317335515163568 :0.6451936022510267 +evening,:0.2936590201778785 condition:0.18773887696797215 statement:0.1675804405648054 season:0.09088295629015072 :0.26013870599919336 +day:0.020471896589878115 part:0.018872194414835237 of:0.018487461747099466 way:0.01814957132775715 :0.92401887592043 +said:0.9766920329907007 which:0.003543246823148625 the:0.0028164522300017487 with:0.001575381988282774 :0.01537288596786619 +college:0.1502200535450728 Congress:0.08263442373733874 office:0.05767954521826338 by:0.03441179419865033 :0.6750541833006748 +to:0.16380986046492388 and:0.13598818182170244 the:0.082172225392549 a:0.07034224625685946 :0.5476874860639652 +will:0.24833509217187213 minutes:0.06138743427187509 years:0.05767856276632871 the:0.012372422493300424 :0.6202264882966236 +began:0.26104181953931 him,:0.12478455342610605 time,:0.016692478719038645 them,:0.012460785636208995 :0.5850203626793362 +the:0.5198058536739643 tho:0.21982446457607024 a:0.08938031359836789 that:0.045924143525066546 :0.12506522462653108 +the:0.20045514775684267 sale:0.18163829362774309 was:0.10927782956024516 have:0.09652861235799914 :0.4121001166971699 +would:0.3443631254989665 we:0.17468328731804733 who:0.15731202425835544 They:0.11212700623368065 :0.21151455669095 +the:0.12318160739478254 goes:0.11493954968172367 go:0.11157297337504277 kept:0.10307236511649982 :0.5472335044319512 +with:0.2733107743945836 such:0.22503004422118736 was:0.16610475546501155 out:0.1451249094542865 :0.1904295164649311 +and:0.2989288573373978 of:0.1246048028619962 fund:0.0603621684860404 to:0.03814397569688634 :0.4779601956176791 +and:0.08632478493934763 to:0.05305991358976316 of:0.05280510280385213 the:0.0523273351263329 :0.7554828635407042 +in:0.2521339418037054 and:0.23120266777409035 for:0.20506988882146476 with:0.14849781075775875 :0.16309569084298073 +ing:0.014469541770357442 printed:0.010199595228814503 street:0.0073076305896580445 of:0.0066630973745193224 :0.9613601350366507 +on:0.6255464619146198 to:0.19798359905190618 and:0.09133918838606285 upon:0.048969074829969025 :0.03616167581744204 +and:0.26663346599753673 in:0.15781196949840778 for:0.11040712349852409 with:0.10993358757355948 :0.3552138534319721 +and:0.9297426083926131 if:0.03359047267740418 but:0.012838868538330796 when:0.012562749504289834 :0.011265300887361829 +to:0.6139041739663773 of:0.2598017598989829 and:0.06332462727827456 ail:0.03858852121000691 :0.024380917646358396 +and:0.46413222861939446 practical:0.18434526876333154 of:0.05022937918160392 a:0.045677588207664044 :0.2556155352280059 +reference:0.14654527309720375 wife:0.07953033455005455 mother:0.07053501493088808 right:0.0628627013836765 :0.640526676038177 +It:0.14364054939372264 it:0.07711852285067615 which:0.055571275058944755 who:0.055003501015240326 :0.6686661516814161 +is:0.2264295242803023 difficult:0.11578443525770686 hard:0.08116715793452561 far:0.06628680971775845 :0.5103320728097066 +the:0.4759374485357946 At:0.039891664576838244 tho:0.024213492088358345 his:0.023119136313968155 :0.4368382584850405 +all:0.25927960058038174 all.:0.06746574954798637 the:0.058695323283796876 and:0.024081798185870824 :0.5904775284019641 +the:0.5922327929243271 this:0.11652923118403581 a:0.017376230384522337 ol:0.010831626166604179 :0.26303011934051057 +0:0.047065861779658096 J:0.04448043434888333 -:0.034445376453699515 at:0.030918822388026367 :0.8430895050297327 +the:0.5814664971466268 other:0.13758708702846453 short:0.07017603562166556 raising:0.035781306308865786 :0.17498907389437734 +remains:0.1252555321878693 They:0.09898693515316444 and:0.07767794115756141 steps:0.07713843741827253 :0.6209411540831322 +other:0.8418463706187622 right:0.045407774297227116 real:0.03845977296505707 such:0.028499011135268752 :0.04578707098368483 +and:0.31872864141125207 by:0.2082052399601451 while:0.15471750416494884 or:0.08946248305658121 :0.22888613140707295 +much:0.15383162798515232 good:0.034723144684896706 little:0.02986133700855136 largely:0.02749256583905571 :0.7540913244823438 +had:0.7280759096269417 and:0.0714147475296685 were:0.04498577344877549 of:0.041493398365253384 :0.11403017102936096 +mission:0.024532662545129712 vice:0.02123554892563562 dress:0.01315603585157101 according:0.0009467953428364094 :0.9401289573348273 +toward:0.8132105926062356 with:0.07937209932931807 to:0.019212014017138877 for:0.013744468843046254 :0.07446082520426116 +sort:0.07077961552118897 matter:0.0662648145561504 source:0.03258649558167647 man:0.029419085143623767 :0.8009499891973604 +money.:0.04933376286810606 .:0.010021241140925917 away.:0.006635862296763198 himself.:0.006373808197082535 :0.9276353254971222 +to:0.2500287821525532 the:0.14525983533420686 at:0.13495024627711386 and:0.042108530242715665 :0.42765260599341043 +there:0.14938576392172434 who:0.11776049594786872 I:0.07659787280446806 we:0.07594590571423426 :0.5803099616117046 +the:0.7853978542429398 this:0.11835799215770684 tho:0.014644144507692006 a:0.010996013845482733 :0.0706039952461785 +have:0.3763846362188301 with:0.16689150354481658 if:0.034098018774423464 than:0.03243889047569438 :0.3901869509862355 +people:0.3399664870535046 country:0.02880592027030297 public:0.019615559875024977 board:0.014762501442792834 :0.5968495313583747 +and:0.11030644258401408 I:0.06819712538347522 the:0.06375334107379543 by:0.04239333929265753 :0.7153497516660576 +be:0.24836899960002135 seem:0.07762949067293674 think:0.06730941748161409 see:0.01624728012138564 :0.5904448121240423 +the:0.9931805552674804 tbe:0.005458775479379576 regular:0.00013952431787574908 Washington,:6.75407481570903e-05 :0.0011536041871072092 +country:0.06160559354689299 play:0.036942718358228516 machine:0.0311621830763541 course:0.01894621932445982 :0.8513432856940645 +water:0.735718139655542 and:0.0610162481439712 the:0.014980300858819703 of:0.010188184605561021 :0.17809712673610623 +Sir:0.5571536736580929 to:0.06363153044029046 and:0.034565552650124905 of:0.031515213344479695 :0.3131340299070121 +to:0.9047628505363141 the:0.05029227261406388 of:0.0003849536903766699 with:0.00011875631219399713 :0.044441166847051225 +o'clock,:0.020002755878204378 that:0.017603326296652743 years,:0.01303205113244229 ,:0.012202291930230806 :0.9371595747624698 +had:0.39060854619255014 seen:0.2627770803628475 got:0.10549613856348065 always:0.0285495157546349 :0.2125687191264869 +inches:0.13664180999901487 and:0.12068648806075735 years:0.028340173018212893 days:0.017472159101463453 :0.6968593698205515 +and:0.23715085537697553 of:0.14804899707349717 I:0.04676928943798377 the:0.04233289554001121 :0.5256979625715323 +have:0.09740681563217865 attempt:0.056347114020191554 serve:0.05166887760841494 be:0.04925653185567663 :0.7453206608835382 +the:0.8458315533538613 an:0.0954070431490101 tho:0.013257472343753088 aa:0.002927059389678811 :0.04257687176369682 +if:0.11666459462332446 we:0.10895423677124705 as:0.09689405293682937 -:0.09383578163641679 :0.5836513340321823 +to:0.23855764328740087 of:0.22127111003681366 beyond:0.07705318240116805 with:0.0713582911248834 :0.39175977314973426 +the:0.32448738580888115 have:0.09221265759002312 any:0.06850377607219081 a:0.06692921098397346 :0.44786696954493144 +proof:0.10955965373794185 life:0.09081138720966625 be:0.06695845499514229 year:0.06033781755978171 :0.6723326864974678 +J.:0.10724151173553771 George:0.03541351267122804 were:0.02186714544719534 F.:0.004968507994201894 :0.8305093221518371 +John:0.05488749802680105 and:0.019987176081157677 of:0.018786494337916456 J:0.018627017783414808 :0.8877118137707101 +and:0.21872008568602846 to:0.1589433010297432 the:0.08271598160851511 in:0.05411367465487491 :0.4855069570208384 +back:0.8341271372653967 east:0.06885892405250506 down:0.009757412224865234 thence:0.009654551511987007 :0.07760197494524607 +where:0.2532149883425484 to:0.2115328410183365 and:0.17319583103347364 until:0.09778867025366628 :0.264267669351975 +and:0.07407736459659635 lies:0.020398712284566134 view:0.015511437034455936 was:0.014884592977588486 :0.8751278931067932 +yesterday:0.27676183045579456 the:0.20790697893440904 their:0.1800580608379536 after:0.10958962589761034 :0.22568350387423242 +and:0.14755739488081826 to:0.1148718152449095 the:0.07544729136191103 or:0.05186754574058555 :0.6102559527717757 +natural:0.9939106298812157 the:0.0010014045548671058 sad:0.0006139606865576381 a:0.0005210101706290144 :0.003952994706730637 +it.:0.009827216579497536 t:0.009678927268800321 J:0.009500344689186195 war.:0.0021457845887310665 :0.968847726873785 +of:0.01802297331424965 and:0.01582004924607713 Rev.:0.0062694217314105925 girl.:0.004676374867541467 :0.9552111808407212 +eyes:0.08749098072881377 representatives:0.07674541471201043 friend:0.04897868972581071 property:0.03758459568065678 :0.7492003191527083 +John:0.42279029399746276 William:0.19756154319499822 A:0.02774770183303677 now:0.01376205119217037 :0.33813840978233195 +In:0.6297134251834527 to:0.1951480557896093 in:0.11843553484706754 of:0.03408421106106386 :0.02261877311880665 +of:0.9651661647629924 a:0.01605129878797851 but:0.005641988582816276 our:0.002906515849490553 :0.010234032016722249 +on:0.5674140044963882 to:0.21601267099163265 for:0.08283962699444883 from:0.07292439644811492 :0.060809301069415324 +found:0.09920892501208615 made:0.08248380020920494 placed:0.061768097872718676 held:0.052214759475287614 :0.7043244174307027 +in:0.21962196343944398 of:0.2186881701296311 to:0.2055497792273274 with:0.08878151910572073 :0.2673585680978767 +have:0.18460996176894962 has:0.13851347192084515 had:0.0861231996801439 and:0.01816716191733972 :0.5725862047127217 +all:0.698420105491066 all,:0.23488777359942534 of:0.029514534345853067 which:0.008554962384151358 :0.02862262417950433 +that:0.6257321592398729 western:0.3624886723741703 every:0.010756766290718183 the:0.0004603619546615307 :0.0005620401405768852 +and:0.10476076804561187 of:0.07212528508346212 the:0.0662800060191598 do.:0.03431070635546961 :0.7225232344962966 +be:0.08351771205559175 of:0.03584396451118152 world,:0.026919538349732722 on:0.01591066510399415 :0.8378081199794999 +and:0.7303025502857206 of:0.02449099930958198 aud:0.018144625823064198 the:0.013271417924466004 :0.21379040665716725 +to:0.2011703486640173 of:0.13610580288141208 in:0.13545596317213618 and:0.13203724375141768 :0.3952306415310167 +be:0.11024680597244704 only:0.010203463978084911 new:0.009317984644856035 various:0.006144838765503698 :0.8640869066391084 +feet.:0.7336209360934641 men.:0.0057670176855244 men:0.0012056649916694021 days.:0.0008482559759092843 :0.2585581252534328 +spot:0.1755525590560294 of:0.01093112411383267 One:0.00980360778098201 and:0.008197689430647654 :0.7955150196185083 +of:0.262929333951296 in:0.07481495615463093 the:0.07462480542052237 hundred:0.04200312254333708 :0.5456277819302136 +is:0.4952053177744708 was:0.14059727210786505 Is:0.044716989510569675 H:0.005317098557720959 :0.31416332204937364 +people:0.03574089796187304 or:0.020525550983761662 of:0.01814968162617017 dinner:0.01647908278301312 :0.9091047866451821 +facts:0.04780873831675311 men:0.018150589268724662 before:0.011963248591511445 persons:0.011312228339090218 :0.9107651954839205 +spring:0.08858654843186971 one.:0.00906315545953062 and:0.005177957761934388 land.:0.0014623163846241292 :0.8957100219620412 +say:0.13329870891967385 realize:0.13172220417331817 here:0.12472874996949672 charge:0.10638015973081598 :0.5038701772066954 +two:0.1298650107866179 interest:0.11635065540485519 death:0.07448267421967975 wife:0.06499858605104111 :0.614303073537806 +last,:0.07127530768344267 present:0.046795803662326996 the:0.023350712341166684 noon:0.022568735079666218 :0.8360094412333975 +of:0.18488428331681273 with:0.07229460114212555 to:0.05876800930142397 less:0.029939920991120243 :0.6541131852485172 +where:0.7515646249715912 in:0.09702440043757418 white:0.0677060490754017 for:0.05001026081468908 :0.03369466470074376 +was:0.9840154856704786 had:0.005658242530519552 is:0.001791564302918912 to:0.0010129238100853501 :0.007521783685997588 +The:0.40933422746949144 and:0.3787311724578921 to:0.09041922862019974 by:0.06836078131128477 :0.05315459014113195 +does:0.9549322690395669 did:0.024361993185253693 will:0.006501034555515103 would:0.004388442997596489 :0.009816260222067856 +carried:0.03547453582311058 set:0.02886252401354836 laid:0.028299823594726378 clear:0.025922136794211924 :0.8814409797744026 +a:0.15532240071639922 ate:0.1301941873993519 of:0.06088432501793773 now:0.054547156110842085 :0.5990519307554691 +which:0.029171504348506083 that:0.0020217474681999007 life,:0.0011973362620371442 the:0.0010400050529569926 :0.9665694068682998 +to:0.15183521185136561 We:0.10006323125786996 of:0.06442285288097126 that:0.06407885100004095 :0.6195998530097522 +much:0.7980216020377956 about:0.09928391217876566 nearly:0.014442909793970483 just:0.008406201774785061 :0.07984537421468323 +first:0.11431324704159804 country,:0.012759747395301562 ;:0.007640730172131568 hard:0.00748936400141035 :0.8577969113895585 +house:0.11613043235527666 yard:0.09176228575627575 army:0.08206758598435164 box:0.07919672504625809 :0.6308429708578378 +and:0.058364907121784215 I:0.04360505060563185 He:0.020912137019341102 he:0.017867776828007376 :0.8592501284252354 +j:0.24071908614849735 of:0.17673051644189425 this:0.15079921634077173 the:0.13379762735226278 :0.2979535537165739 +has:0.7476398851814539 had:0.15738774118170154 and:0.06582673513228274 have:0.020916050904591966 :0.008229587599969859 +to:0.2338169500561649 and:0.2096774879876971 for:0.14152666885687404 without:0.13879146528301112 :0.27618742781625283 +to:0.22841737123549807 the:0.17985992903190273 in:0.10367535031004885 a:0.10129677291083596 :0.38675057651171435 +a:0.5043922863004743 the:0.07771496524673809 tbe:0.07397177978703016 any:0.009213593404128433 :0.334707375261629 +of:0.38849953039609497 and:0.11054142706030343 in:0.07896140952079511 on:0.06052844872874697 :0.3614691842940594 +to:0.5670119015663889 of:0.13485530348272093 on:0.11138671964651198 at:0.08384220273943407 :0.10290387256494413 +and:0.2757997236912879 in:0.24243613650962034 tbat:0.16322645685569737 at:0.06900373060957124 :0.2495339523338231 +result:0.9344143290511419 part:0.0304059230760021 feature:0.007308312299171287 proof:0.003989308923267781 :0.02388212665041692 +the:0.5096985290725966 as:0.17267008410436088 with:0.15330433060627385 upon:0.11352267548668167 :0.05080438073008696 +other:0.22728610088674336 right:0.17460529050957802 one:0.16776645375907925 mountain:0.1038837295219332 :0.32645842532266606 +and:0.16856906980893047 the:0.13646536833305645 of:0.0847587601852263 acre:0.04151163979517701 :0.5686951618776099 +it:0.1540244511205981 and:0.013469353954853117 that:0.005885299425439166 as:0.0031440095871262614 :0.8234768859119833 +bad:0.4030750904496525 the:0.22803952148452974 a:0.13639541353354723 this:0.03080570497523921 :0.20168426955703128 +There:0.037799230196230674 year:0.03221183090093525 State:0.021151323829915615 world:0.01901037642993108 :0.8898272386429874 +press:0.028795672039500588 position:0.0020668985436017233 port:0.0007763182189962083 age:0.0007502176389705148 :0.967610893558931 +and:0.07894343531712138 but:0.03101754090220392 and,:0.013025362724595105 for:0.009553516593073717 :0.8674601444630058 +J.:0.41322282583628883 C.:0.3339546089268523 Rev.:0.1067713502844283 Dr.:0.042971809712043264 :0.10307940524038722 +mixed:0.6457561349138866 on,:0.014268113572172662 even:0.013836838549283467 than:0.011938522047286572 :0.31420039091737073 +the:0.40865784729201077 The:0.2232131794380702 of:0.10108264321934612 and:0.0465074651831584 :0.22053886486741453 +is:0.3929419658777863 be:0.18258789572290363 was:0.11499476951256841 us:0.0678430869812095 :0.24163228190553224 +John:0.15117207778887856 of:0.08285031449021832 J:0.07191337225066624 T:0.0496949911770235 :0.6443692442932135 +the:0.7762080560362541 tho:0.17132520704761983 this:0.014598393269401932 hard:0.006784819649690963 :0.031083523997033142 +The:0.7848495402177732 A:0.11855844608435807 My:0.0479517292181141 This:0.020334264941351217 :0.028306019538403414 +by:0.3148718154752168 in:0.22079572901856817 with:0.15485403793722072 to:0.14991052862301538 :0.15956788894597895 +of:0.9223235452314386 ot:0.008568170847912554 and:0.004776346556933409 ol:0.0038423840991986054 :0.060489553264516834 +lines:0.7448387433479814 days:0.12989678025459003 parts:0.011228895091170882 men:0.008431674425409909 :0.105603906880848 +feet,:0.005590603095282771 mile:0.0028681411621076214 and:0.002422196062270647 feet:0.0023627757936656568 :0.9867562838866734 +road:0.3951790666220751 way:0.21431008863100748 ground:0.12246384854262758 right:0.01155030044248023 :0.2564966957618096 +of:0.4938635096321931 to:0.0926360234690982 their:0.08912947220260717 had:0.08656118451093203 :0.23780981018516953 +and:0.5279939549407117 were:0.23011115868421203 are:0.13727455247520487 have:0.05658319022496606 :0.048037143674905414 +for:0.5092525557752321 on:0.4900992314056726 additional:0.0006013211343926625 tor:1.146433551044498e-05 :3.542734919213479e-05 +the:0.05562702876637401 of:0.05127608773907322 and:0.04721719775255418 or:0.039241577532355 :0.8066381082096435 +been:0.27023027677494577 shown:0.05167211589210278 it:0.05000443827197031 either:0.04844511341989586 :0.5796480556410852 +it:0.6864027464867593 me:0.13129236872743325 in:0.06376558161013446 relief:0.036671809382977746 :0.08186749379269528 +and:0.11670011559620325 the:0.09638535498284014 to:0.08833929830204416 in:0.08013228173126473 :0.6184429493876475 +of:0.09085474805591952 which:0.06251133604297288 In:0.05189143902378645 in:0.017328312411776896 :0.7774141644655442 +as:0.34498589298008603 and:0.11618294925955483 railroad:0.05683482997306668 two:0.04029138371109077 :0.44170494407620176 +was:0.5642620926882592 is:0.3714037863474955 Is:0.035780780438401 seems:0.01790896402463309 :0.010644376501211162 +the:0.36056948804495415 The:0.15014102279546176 our:0.0590441530141985 or:0.03188265997495103 :0.3983626761704344 +in:0.9455383608793044 of:0.02855489891959716 In:0.019430083429337976 on:0.0035189118947034437 :0.002957744877057031 +arms:0.3712534480011093 minds:0.24524944703821497 mouth:0.04010938350308621 air:0.011193927289554428 :0.3321937941680349 +the:0.40773081986391413 more:0.08978326480327634 a:0.08857938635256657 his:0.052800694920107756 :0.3611058340601352 +been:0.43632185884199726 no:0.09489588012017898 a:0.07516603915342297 the:0.04522590573815227 :0.34839031614624855 +are:0.6295270567515519 is:0.14375343965493936 were:0.11251696417826645 ia:0.09436164289069807 :0.019840896524544512 +thing:0.09218243961949561 kind:0.08384906671806408 out:0.033073122784239954 force:0.025847355124186427 :0.765048015754014 +The:0.8792168310775585 This:0.01997126094172776 Tho:0.0095185211637429 Tbe:0.006531176628668091 :0.08476221018830274 +50:0.5649285808868896 the:0.20440716079037202 tho:0.020970703526894854 60:0.020335773894266152 :0.18935778090157745 +and:0.08447983609446474 the:0.04836704577269279 of:0.047796424499209775 to:0.03637726583886342 :0.7829794277947693 +of:0.5552580991978237 and:0.10749474489467385 In:0.050432678627904064 in:0.05007589307556474 :0.23673858420403357 +for:0.6573389594684438 to:0.20173710903896117 in:0.04622243206636476 on:0.03258618774550139 :0.06211531168072897 +law:0.9830805165857097 law,:0.00697131016989714 not:0.001017433088526225 night,:0.0004869430427787418 :0.008443797113088236 +said:0.6714642559384745 this:0.13692906496620122 the:0.05672020920574147 tho:0.010304141770376182 :0.12458232811920654 +in:0.43542059853669024 In:0.27974927729802923 of:0.117301587980025 as:0.03498855021908624 :0.13253998596616923 +of:0.19045370051280383 and:0.08665361868659376 is:0.06128635290597132 were:0.0362060735670115 :0.6254002543276196 +I,:0.024515884487753273 for:0.014130143307119487 1,:0.00891970249846993 years,:0.004186847674734014 :0.9482474220319232 +Such:0.3983918171466627 of:0.29494758900349427 and:0.08341748607959669 to:0.045645961490459255 :0.17759714627978695 +der:0.6228334364783746 .:0.2426258717309299 by:0.03572086827376652 father:0.0023590486797374255 :0.0964607748371914 +and:0.0028618699211578726 I:0.0023606970144361816 away.:0.0019815573952943846 it.:0.001737506090739651 :0.9910583695783721 +wife:0.3076884335103316 horse:0.1700204033877282 brother:0.15310346383462048 friend:0.12294869119316217 :0.24623900807415755 +things:0.03883173742501047 will:0.03385504140948032 may:0.022767012571521476 to:0.019376446259152812 :0.8851697623348349 +To:0.44449025397610836 but:0.05668438477117807 call:0.035919488522848944 ..:0.025521813754855176 :0.43738405897500926 +the:0.5284602476302173 Baltimore:0.18582439729823785 tho:0.10345695244376814 Jackson:0.008848786448308174 :0.1734096161794686 +can:0.3319864589821298 should:0.29655929554752075 to:0.22197299801268763 must:0.06920313160384724 :0.08027811585381453 +and:0.015690917213371312 war:0.008265525013949409 war,:0.0022050704342789886 the:0.0017781619968479942 :0.9720603253415523 +rise:0.06776322506207062 life,:0.052857735395772036 come:0.052237621373186834 go:0.050770819711195264 :0.7763705984577752 +at:0.13780983081415624 No.:0.11953596409006724 A:0.05028198599074993 and:0.01775418284764715 :0.6746180362573795 +and:0.12269137119416705 the:0.07249941259178691 of:0.05931827688759182 are:0.045799553150521984 :0.6996913861759323 +Indian:0.04813039694545048 City:0.036175963825188166 said:0.032397481537486915 Railroad:0.002508469927573007 :0.8807876877643014 +of:0.9858925710717862 and:0.005989694625217629 toward:0.005182759678296095 to:0.000845640064300951 :0.002089334560399167 +that:0.32682998137099106 the:0.1965296206535689 what:0.16404091795524572 remarkable:0.12693761750637197 :0.1856618625138224 +come:0.9420176335307484 came:0.028579683839342628 taken:0.011200903354372387 make:0.00819510359560617 :0.010006675679930462 +the:0.746498957000442 tho:0.04969191202846484 tbe:0.024217025534598025 our:0.0204101231226584 :0.1591819823138366 +it:0.7998775033596377 It:0.1122427574214675 this:0.04537526463548927 there:0.01619371891711259 :0.02631075566629298 +the:0.9703639901138376 last:0.01758967430102983 next:0.007719810848801889 one:0.00043154177505752057 :0.0038949829612730685 +children,:0.010553381617102968 walls:0.009541578663776636 horses:0.005566072619254317 way,:0.004722353246041062 :0.969616613853825 +evening:0.19067017169878303 act:0.16970206806670537 time:0.15508253585106715 morning:0.06220922784941637 :0.42233599653402804 +see:0.39956253965193217 give:0.24239769413914009 from:0.004018012329228154 kill:0.0029316425462724465 :0.35109011133342716 +prices:0.432549980087347 of:0.10562690124624877 some:0.07263764853431948 one:0.05777349536142867 :0.33141197477065615 +think:0.04560951167642963 than:0.001431389439599009 like:0.0008433134182546983 of:0.00032468311244770206 :0.9517911023532689 +of:0.7484570894883268 are:0.0379093063014733 for:0.037144870422783645 was:0.022131620885596122 :0.15435711290182025 +the:0.6288010796553273 this:0.1330957411873022 a:0.04159781409648372 such:0.03630890822083372 :0.1601964568400529 +of:0.1748782595984947 and:0.12908769456317465 in:0.10825515720504675 In:0.07103025305717471 :0.516748635576109 +was:0.18192633725093801 had:0.11674260970001783 drew:0.09753390833593348 said:0.0737073816028305 :0.5300897631102802 +Miss:0.17239518211347848 of:0.12294804200883463 and:0.1064503477820957 the:0.07932747731007803 :0.5188789507855132 +most:0.49423967820638837 ways:0.1375691370323299 though:0.06407888941045951 bo:0.018906520741724612 :0.2852057746090976 +best:0.044937856005125724 way:0.029762950357830227 body.:0.024975042415635446 place.:0.021539383575825043 :0.8787847676455837 +with:0.4653652949942696 for:0.31801295109888517 also:0.06053011736693179 to:0.05936828644052634 :0.0967233500993871 +and:0.2094587789460803 but:0.14544371291919758 that:0.11136593863925529 But:0.05983108675362289 :0.4739004827418441 +a:0.23305707469807668 took:0.2178635763702175 no:0.21389868838074266 one:0.09138785055118395 :0.2437928099997792 +the:0.5184435239146548 cotton:0.14339795252003554 The:0.12072622071907928 this:0.04476831370622934 :0.1726639891400012 +will:0.7012077087362625 and:0.20939697164401502 to:0.061393619045872046 would:0.012396200846024767 :0.015605499727825675 +as:0.3998010271155399 and:0.2615947137885308 so:0.07884023414646113 of:0.07105691069260008 :0.18870711425686817 +the:0.26869162156430615 of:0.0703572857017866 to:0.06576794800266987 and:0.04159092676996387 :0.5535922179612734 +the:0.19042230551231895 to:0.12132072983483543 a:0.07981421001910104 his:0.06849307712121055 :0.5399496775125341 +and:0.1511361795076343 of:0.07855701717532214 the:0.06155167053337367 to:0.06022801441707845 :0.6485271183665913 +no:0.6065595807664949 this:0.273169877619162 a:0.03895047461834797 the:0.02039270802761116 :0.06092735896838415 +kind:0.1722630196729012 office:0.08092992955990626 place:0.07870958681926567 Court:0.05843193963743647 :0.6096655243104903 +an:0.9578842162309277 n:0.013104813731172648 nn:0.011892675727463749 is:0.004722978015327498 :0.012395316295108531 +giving:0.8115305941169207 published:0.09681428822980154 gave:0.08511673414458962 presented:0.003673498569627325 :0.0028648849390607795 +to:0.9237415180811949 much:0.03505521463648905 and:0.0034445012047901674 the:0.0024671651592747526 :0.035291600918251134 +n:0.6415765315709064 a:0.3284987992124104 the:0.013862229884807828 as:0.008811258158771729 :0.007251181173103625 +of:0.20556898271804494 the:0.1839106937069934 and:0.14975440929556647 The:0.056178564287422815 :0.40458734999197254 +quarter:0.35121994425286074 half:0.049082320214086685 corner:0.03475261813454591 line:0.033142864047555 :0.5318022533509518 +the:0.9463006665883597 a:0.02293430917352824 many:0.0041571882742419365 one:0.002523892449322647 :0.024083943514547478 +sixty:0.08197288515699963 car:0.07999873345633976 top:0.06017914302869899 man:0.0303777191563447 :0.7474715192016169 +He:0.03610001957990956 he:0.035071851952853506 man:0.010589497114712175 dent:0.008890533035456413 :0.9093480983170684 +and:0.5845510240144118 The:0.2649035577706312 A:0.037922481269286865 the:0.013214419683377929 :0.09940851726229208 +the:0.10438281883355564 J.:0.0792712558362702 T.:0.06444036468306397 win:0.06233527633799075 :0.6895702843091197 +ty:0.05732836991663551 try:0.046082830632585135 against:0.014944801780835341 that:0.01362370778231331 :0.8680202898876308 +is:0.20467030994237245 was:0.187014245947801 and:0.12558120667308206 had:0.1040781398567251 :0.37865609758001934 +who:0.16313909377623143 which:0.1557759754762822 and:0.13757568049029278 It:0.12059216474078298 :0.4229170855164108 +cash:0.057441077484323734 for:0.0353898467700234 steamer:0.01671010885673957 cash,:0.01463828716297645 :0.8758206797259368 +up:0.19430928945026357 in:0.057194516458207056 down:0.0446066819349627 busy:0.02389410063069138 :0.6799954115258752 +up:0.2962497216433616 forth:0.26000796308353047 out:0.19706757269167036 down:0.12949390998554547 :0.11718083259589207 +thence:0.8423479741605021 feet;:0.02623786360564248 feet.:0.013858585820516047 ;:0.011520582990472174 :0.10603499342286715 +the:0.3258511636876573 of:0.10625534587992588 in:0.09175138213071383 for:0.09101706246361616 :0.3851250458380867 +and:0.06673242680722319 but:0.04128261979071049 or:0.036231535934856535 ful:0.029674524770032986 :0.8260788926971769 +a:0.2484040660351921 is:0.1855927938522968 the:0.12948667661262497 pretty:0.1113315699462217 :0.32518489355366437 +and:0.24177104494846957 to:0.08955738284429597 of:0.07351268408570309 by:0.06142854180591556 :0.5337303463156158 +time.:0.03562432739245284 I:0.006133525099045558 the:0.00607573135456597 cities:0.004698089156338743 :0.9474683269975968 +the:0.8987610631894294 a:0.021815379719151776 our:0.014269936085585695 tho:0.012349588123266506 :0.052804032882566666 +and:0.2941042387469481 clear:0.21940023388791896 to:0.08560942450883087 are:0.07637344362441205 :0.32451265923188993 +The:0.15505989748953097 the:0.1319209126965441 of:0.09349409344274559 and:0.066407097005125 :0.5531179993660543 +letter:0.37434717986463595 state,:0.015087316595055297 If:0.014225476850382373 movement:0.013571253803843938 :0.5827687728860825 +own:0.05371414550040721 ment:0.02167687127976416 avenue:0.01922004591323367 n:0.015831799882548334 :0.8895571374240466 +of:0.9036496652342181 s:0.03305768601973067 how:0.010504724375236432 ot:0.009722476551334562 :0.0430654478194801 +to:0.2079385148254585 a:0.1288291732312054 the:0.12069605629901223 in:0.06323952742108703 :0.47929672822323693 +of:0.1976904889020377 to:0.15507671445204496 Among:0.1302664659775766 which:0.08702186168220563 :0.42994446898613503 +giving:0.33542112022678905 and:0.06320774455422708 young:0.02897218923605714 or:0.015491056029949053 :0.5569078899529777 +most:0.5200928158327306 ways:0.1263572739845814 though:0.07551790940963865 ready:0.019189468403386003 :0.2588425323696633 +life:0.6016178028155882 in:0.07832904656614345 by:0.06793334603133003 morning,:0.023940915061999978 :0.22817888952493842 +the:0.4248207397294299 The:0.09146459010264325 in:0.05418253537894579 of:0.048334289654578894 :0.38119784513440214 +no:0.516481018268196 more:0.11988164344932964 a:0.10689973382094291 that:0.03420994183214167 :0.22252766262938972 +as:0.8806977163895593 too:0.08190605458792488 them:0.019569319695881295 so:0.017429050652985 :0.00039785867364937414 +so:0.8076545017648159 as:0.03254640929549871 the:0.022671377378137916 too:0.02196275838334719 :0.11516495317820012 +the:0.4952449208205785 a:0.15526409648138864 said:0.08663822016839282 tho:0.05421688484675579 :0.20863587768288416 +posed:0.08338720156632463 pany:0.046127702093007206 -:0.03912975889470702 mission:0.019867235979572254 :0.8114881014663891 +a:0.27440526832041995 evening:0.1904061688697078 the:0.11799077377179629 This:0.05289689777684213 :0.36430089126123383 +of:0.2904588406818541 to:0.12655369918934475 at:0.1255167915612521 and:0.09896893471323948 :0.35850173385430956 +to:0.3014043438980554 and:0.1895645789746961 by:0.10690824158729724 that:0.06352906544523647 :0.3385937700947147 +of:0.5198021127374532 the:0.10801355295670775 and:0.08617537042207281 an:0.07975032020678181 :0.20625864367698435 +and:0.5001821170310604 to:0.20737253607361048 or:0.1749841254047004 of:0.06697088428810914 :0.050490337202519726 +her:0.33079002472716623 a:0.31219059245929465 the:0.18470007435311647 his:0.08396931655100981 :0.0883499919094128 +and:0.12828878631875876 of:0.09461207755172396 the:0.07956244623815784 to:0.04154843791716244 :0.6559882519741971 +day,:0.19649918561600116 way:0.05515200138542999 hand:0.05478459633512259 of:0.0441606645279364 :0.6494035521355098 +police:0.08607164845429459 women:0.0808887271221082 way,:0.0538875136715961 first,:0.0162245526274919 :0.7629275581245093 +the:0.15970816628932688 and:0.1240588011037894 to:0.09589717656212424 a:0.05878319182988302 :0.5615526642148766 +of:0.45041105084626454 to:0.15426602653124635 must:0.12468231121702474 arm:0.04473114175095806 :0.22590946965450634 +States:0.70235522068758 of:0.1570748932148629 States.:0.005307736844581599 the:0.0022362934679504218 :0.133025855785025 +is:0.6030741870289568 was:0.3840939640476639 Is:0.010123536024431643 no:0.0016583102500060906 :0.001050002648941816 +and:0.3806898581812063 for:0.04921105756068454 But:0.048499507672988884 but:0.04751230152012009 :0.47408727506500026 +under:0.9995564637394428 no:0.00017739985321976485 on:6.950613792151386e-05 quick:6.426584164555967e-05 :0.00013236442777025408 +the:0.730831038174624 tho:0.10258722094351888 ho:0.06954292288211757 he:0.0481380612238432 :0.048900756775896406 +weeks:0.4106720497881003 still:0.19037824917941182 will:0.07583569701062262 days:0.07112204042876014 :0.25199196359310516 +100:0.06640866556190167 of:0.060433354129639814 ten:0.034778702250755 ol:0.03066863438229541 :0.807710643675408 +and:0.1948612916413987 the:0.11419854278378559 to:0.05342142185590054 of:0.04752002700109291 :0.5899987167178222 +consideration:0.04793220680228411 majority:0.0464186990575078 use:0.04618742020205868 people:0.03182355055428465 :0.8276381233838648 +on:0.3179302460977199 against:0.26252462103763746 for:0.24735054379631957 of:0.10179429059947441 :0.07040029846884867 +the:0.6467157236837459 that:0.11429961568722166 on:0.09493343189509493 tho:0.056034649313363154 :0.08801657942057438 +equal:0.028089117526642404 perfect:0.012313581528120114 near:0.008588397825387733 thorough:0.004863887906048924 :0.9461450152138008 +the:0.5765045515130742 his:0.06455235309497559 both:0.0437677974222765 their:0.04202193454999117 :0.2731533634196826 +to:0.3610991631657935 of:0.20112231610513046 above:0.14417950584283082 from:0.139982311799124 :0.15361670308712136 +and:0.22416326040025683 the:0.20943897556887936 of:0.1909156975006604 for:0.10272594602863068 :0.2727561205015728 +ex-:0.46738857086644453 sup-:0.37117627747677967 without:0.04805235862014483 ad-:0.015160380962455143 :0.09822241207417592 +color:0.0049537687899737295 life:0.0015042004571662662 rights:0.001477840437173716 thoroughly:0.001056296830260872 :0.9910078934854256 +the:0.46065439464480284 her:0.14448082397701595 a:0.0896767530943768 his:0.03860745678998021 :0.266580571493824 +or:0.9399002449862072 and:0.006768051598536152 to:0.005689574577596262 sad:0.005597244275513042 :0.04204488456214715 +the:0.726711702514948 last:0.11133810439880633 a:0.055436317191661914 that:0.03561966810494102 :0.07089420778964278 +great:0.6499355961231966 the:0.20527326335568 a:0.06545331269094784 in:0.046274742838466804 :0.03306308499170846 +J.:0.2394878798771099 C.:0.0733510097238385 and:0.020231561375123604 B.:0.018838873855865558 :0.6480906751680624 +this:0.38656319180159504 the:0.2838213478861448 which:0.07093796286653406 public:0.06938243688408352 :0.18929506056164241 +to:0.37496691185592274 into:0.22003426003073043 in:0.17838668816334413 from:0.1120566356306384 :0.11455550431936433 +The:0.1293218388199215 the:0.11915427551241008 Christian:0.02037942837331659 thu:0.016057912506327265 :0.7150865447880245 +I:0.5680760220180662 and:0.01040298407266105 of:0.009986913455511889 be­:0.008629628980503441 :0.4029044514732575 +the:0.17589269238717356 and:0.12346289112305717 season:0.07116420292444736 to:0.0600503501808667 :0.5694298633844553 +the:0.3935826678456197 and:0.13527886363143254 The:0.13181947310519085 a:0.033956650132949656 :0.30536234528480716 +payment:0.04210527582695103 truth:0.03478684742068867 value:0.03276007540088395 price:0.031768082585273555 :0.8585797187662026 +too,:0.46788106607400265 it:0.09069099902855925 It:0.046436863110497655 she:0.03627568265515748 :0.3587153891317829 +place:0.14434758305249568 country:0.10324080465450913 i:0.056733514604377665 not:0.041363398012229054 :0.6543146996763883 +and:0.04254145301371384 as:0.03291936692679171 desire:0.028704317760734444 is:0.02854289370558531 :0.8672919685931747 +or:0.3960820990651796 act,:0.19015040253694815 and:0.044847144129510505 ever:0.03898526607859289 :0.32993508818976897 +and:0.18104873253658585 which:0.14843705544502558 to:0.08477365674429256 of:0.07360559667637818 :0.512134958597718 +long,:0.01696157227379507 know:0.011748192342050559 of:0.01165068906928038 the:0.008691913025876618 :0.9509476332889975 +of:0.4158779174683273 to:0.23255299246764333 by:0.13906915206587486 have:0.11660863828490786 :0.0958912997132467 +the:0.16377839817090606 and:0.13218268933865515 of:0.13208275804521707 The:0.09131059601100891 :0.48064555843421264 +in:0.4027112413977949 average:0.10333241708311802 and:0.038805351060731505 safety:0.03264809933876761 :0.4225028911195879 +own:0.06443284297398222 general:0.02584208464554852 old:0.020840523207456736 favor:0.019031164999285494 :0.869853384173727 +in:0.5428036097277401 of:0.08730248844621012 to:0.053847369025686584 and:0.0364286250164071 :0.2796179077839559 +J.:0.12214997944869319 A.:0.12168330743505812 C.:0.08105071423893348 W.:0.0739300425560246 :0.6011859563212907 +spring:0.09471003478154102 case:0.07844738655292147 city:0.04288908577035321 days:0.03677928626710603 :0.7471742066280783 +of:0.21727578431593783 in:0.14606939294964094 and:0.126220341828123 to:0.11359343952413198 :0.3968410413821663 +U:0.1831113606934893 is:0.14942542099227352 was:0.10422971829612045 oi:0.07059724548449407 :0.4926362545336228 +the:0.959479872836744 tho:0.012117956065381625 tbe:0.007829629060105278 a:0.007366769538099831 :0.013205772499669364 +the:0.6574377906503469 a:0.07450341773770038 this:0.034563964728755336 its:0.027773372134273663 :0.20572145474892375 +they:0.06815955257280268 who:0.060665757114960514 There:0.05940110126082324 and:0.05723193044693369 :0.7545416586044797 +to:0.5836756889641675 and:0.15948862339659997 the:0.07116447462963851 into:0.06568734219108127 :0.11998387081851265 +and:0.38961701192264436 others:0.1027217915582135 they:0.06950679653887615 who:0.06291281361596195 :0.3752415863643039 +to:0.994133537183349 us:0.00297571578525021 you:5.0508313499870654e-05 not:3.0297941174120923e-05 :0.0028099407767267375 +the:0.23135434862178936 and:0.12341521485624865 down:0.11527086321343633 to:0.08553237976384818 :0.4444271935446774 +and:0.4042109912262306 was:0.18544805901762093 who:0.13135667280009097 has:0.12984658137485983 :0.14913769558119763 +been:0.09531610442615306 of:0.07670320093113728 to:0.07292396818155657 and:0.06321482618087348 :0.6918419002802795 +in:0.4467107607585168 and:0.14228713472933158 of:0.07706530993855651 the:0.057551424760735624 :0.2763853698128595 +had:0.4030336703467907 nearly:0.23835630348849526 have:0.2222984671672051 almost:0.06202394364670926 :0.0742876153507996 +7:0.04244059240991884 1.:0.035419709092510195 4.:0.01088849586765128 3.:0.009058897142956832 :0.9021923054869629 +until:0.9847938622617166 till:0.00977480171776832 on:0.0025527971804529368 to:0.001661987572443159 :0.0012165512676189736 +county:0.05844635429635721 proposed:0.04843216715101444 the:0.046682717693060975 coast:0.031270238771664474 :0.8151685220879029 +reasons:0.19824387173004632 best:0.05380428795059401 time:0.03385522953014294 grounds:0.019200517822619022 :0.6948960929665977 +not:0.26901793543089997 be:0.17798745341904235 keep:0.02658518760610219 remain:0.0064400715749531575 :0.5199693519690024 +be:0.4597167629487012 he:0.04464123142729674 bo:0.025798049989987092 the:0.023822493151002166 :0.4460214624830128 +and:0.13175284213861638 surface:0.13089727057061373 below:0.07964563553643442 line:0.07532106292217333 :0.5823831888321622 +and:0.21086859826470825 of:0.1918770680677561 to:0.15561669065544909 in:0.10743855116998902 :0.3341990918420976 +of:0.11353648123076344 and:0.0975750839194231 Tho:0.09009260797657975 tho:0.08949371478101446 :0.6093021120922192 +and:0.3191076899770163 running:0.015553544696773806 street,:0.015229258064163791 feet;:0.013986630330325305 :0.6361228769317208 +record:0.13914900910517528 result:0.07195418866899989 report:0.06788710208943974 fall:0.06292513637067502 :0.65808456376571 +of:0.4883223171918405 with:0.15569009648510934 in:0.10089437126206977 almost:0.09296454141156983 :0.1621286736494106 +of:0.11081087733167895 and:0.0886674445775581 door:0.04177050093373137 the:0.04040082748756497 :0.7183503496694665 +duty:0.9996181616658374 honor:2.0198651920148746e-05 mind:1.2342087646608456e-05 purpose:1.0964483492138804e-05 :0.00033833311110362496 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +for:0.48508219676857056 a:0.17368762493111148 of:0.09120995705226409 during:0.0796273725959843 :0.17039284865206947 +to:0.3717910334405378 the:0.16398854616552472 for:0.10821880184900916 Mr.:0.06385233101994446 :0.2921492875249836 +of:0.6193598581202246 that:0.10946081295397106 and:0.044692850846875486 was:0.040302806890979564 :0.18618367118794912 +or:0.7984086472809085 and:0.026936013835466555 who:0.017287750880662294 selected:0.010432439648090548 :0.14693514835487229 +those:0.23337732152897384 men:0.04294276817036823 all:0.039705607965474475 people:0.02576784892365225 :0.6582064534115314 +ought:0.11268700095617841 can:0.0998085400407633 want:0.07183141961817088 are:0.057990110121239266 :0.6576829292636481 +fact:0.2755156551888415 with:0.026375009098656116 that:0.024024016604444427 of:0.020285764467982963 :0.653799554640075 +be:0.9917044896061216 one:0.00043083790798681014 which:0.0003998918797143447 been:0.000210975212113882 :0.00725380539406349 +in:0.22855935493297985 of:0.15492745120513624 a:0.13095796424121564 and:0.10489091839253147 :0.3806643112281367 +Is:0.4366663322611189 is:0.2954114774077006 was:0.22311563864830017 are:0.02854521417699314 :0.016261337505887118 +party:0.351732492348799 principles:0.05370491402287093 will:0.030963277955388106 National:0.029470178006809383 :0.5341291376661326 +other:0.8399596441276678 common:0.021859455980498047 young:0.016792160208871074 one:0.009497985897739598 :0.11189075378522334 +Mr.:0.15193301564040582 and:0.05861261215257098 the:0.04326306932392846 The:0.04132876859781412 :0.7048625342852807 +Board:0.09817130675441084 sale:0.0883265475952634 county:0.04875524400731422 use:0.0421869975349322 :0.7225599041080792 +the:0.20193109024053932 a:0.040691511326059575 to:0.027779587587307825 in:0.019860606539074965 :0.7097372043070184 +when:0.19384131066635743 and:0.06628284695879977 that:0.060253989912621375 where:0.05231635765236563 :0.6273054948098558 +we:0.32041469215080437 the:0.07995320483386012 sugar:0.03602708224752226 earnest:0.03488697435287648 :0.5287180464149369 +on:0.2353972960298649 n:0.21108665688928235 from:0.11068145997040832 and:0.06784310944007164 :0.37499147767037283 +to:0.6462424639825309 in:0.14942776746209382 throughout:0.08684377075790511 In:0.06264420696413626 :0.054841790833333987 +and:0.10898066894127544 the:0.06884083455012524 of:0.06699604152744741 old:0.057238584041723155 :0.6979438709394288 +usual:0.18728887199582947 natural:0.07315511940048641 great:0.056665781404668575 advantages:0.05611989222577771 :0.6267703349732379 +When:0.31993850411750985 But:0.2550177403879336 that:0.10796275897556198 and:0.07986714292171246 :0.23721385359728206 +of:0.12220131484137527 and:0.11024571793804214 the:0.06712863181113438 to:0.0413503426876643 :0.6590739927217839 +West:0.22179118672269263 East:0.20789815844531984 North:0.19079020043731787 on:0.10269428515227955 :0.27682616924239 +hay:0.0968637564228534 Lord:0.045977188485419394 water:0.03888163888747866 law,:0.03108723415067414 :0.7871901820535744 +-:0.42964930299105936 even:0.09435912566532699 ate:0.03541647775079898 it:0.032898482093004604 :0.4076766114998101 +was:0.8750820671285763 she:0.03165652825313802 he:0.029163715197517703 is:0.02616581600041462 :0.03793187342035325 +voted:0.00921450096810251 signed:0.005381654493900737 scribed:0.0012158856317409513 light:0.0010048207862886091 :0.9831831381199672 +and:0.6937531379743741 only:0.07463639297917589 or:0.07083652733646227 about:0.034608646076964386 :0.12616529563302342 +sold:0.6127603409539897 responsible:0.06698826791378167 used:0.060419324234044516 working:0.06012563669464055 :0.19970643020354348 +taken:0.26458121410403374 held:0.231535495313199 made:0.09204253156956965 written:0.08994348822760169 :0.32189727078559616 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +.:0.4326070850730015 ,:0.26140066139044427 and:0.12864728319767318 also,:0.020656099985789947 :0.15668887035309104 +He:0.028500717649875204 County,:0.024068451929368132 of:0.015296878556050867 every:0.014003159505460197 :0.9181307923592458 +cause:0.06322434855273343 children:0.02971537415978976 feeling:0.02378098240971702 place:0.02347038030143197 :0.8598089145763278 +light:0.03994260372846186 mass:0.03879004256738323 largest:0.02569949605396182 part:0.02282275415122786 :0.8727451034989651 +It:0.26467195181914455 This:0.08588993840739657 which:0.07746199861815846 there:0.041802054526387133 :0.5301740566289134 +the:0.7423453032207811 an:0.08156344583791825 The:0.048105061014124366 no:0.034775891343738936 :0.09321029858343752 +the:0.9222685078483288 by:0.020102264042785593 tbe:0.00325659844497416 said:0.002079391958673332 :0.05229323770523816 +to:0.9907138597181178 lo:0.0003006861242156307 not:4.396817105554186e-05 thoroughly:2.89613579603042e-05 :0.008912524628650565 +the:0.660943564825158 corporation:0.06852115893718855 any:0.059855109825849136 a:0.051062408897132316 :0.15961775751467203 +of:0.37706789230263693 C.:0.11115297908395 at:0.08572831635375135 in:0.06724812072907063 :0.35880269153059124 +to:0.4809963025967488 and:0.12467986763630676 the:0.07428709969889905 will:0.06412257750177093 :0.2559141525662743 +clean:0.13988942536033133 clear:0.07524496190662715 stomach:0.03612743946832948 off:0.03182356939919944 :0.7169146038655128 +the:0.4372530491516602 a:0.11903243326922691 this:0.05276030295411924 our:0.05133359477118011 :0.3396206198538135 +and:0.11942178082182076 of:0.08696767778853808 with:0.08419763980432492 Not:0.08297979701391385 :0.6264331045714024 +the:0.7625006100326998 be:0.06081836732217704 his:0.030177812742852764 my:0.017667302512371964 :0.12883590738989872 +If:0.1994254988445214 As:0.1813563887074486 But:0.04697112678732769 Here:0.020035373936609067 :0.552211611724093 +mortgage:0.2378363372342357 mortgage,:0.2035218668557094 debt:0.07070442149601387 lands:0.02499027049979929 :0.4629471039142418 +and:0.19475672716634612 who:0.11898338740698391 he:0.08269475980877893 has:0.05412958595775688 :0.549435539660134 +measure:0.16296629599926163 bill,:0.08634782167390917 action:0.011840414301580709 discussion:0.011810016465335305 :0.7270354515599132 +of:0.39292465221026895 The:0.0713745611021707 was:0.06387445128335896 whom:0.05605355248686755 :0.41577278291733377 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +sale:0.14797049862375236 home:0.012118487886231493 escape:0.00414327128478694 attack:0.0037693384232149758 :0.8319984037820142 +London:0.07390666145868276 Virginia:0.04990765704663989 Mexico:0.0487730392426791 Chicago:0.04689914318457868 :0.7805134990674195 +in:0.32819703196636085 of:0.24448919541427988 to:0.22217664898058745 throughout:0.1053268391112937 :0.09981028452747814 +of:0.6875071773812502 by:0.2775648975556556 the:0.019639407153548054 and:0.004695939319456999 :0.01059257859008907 +of:0.16915056469674064 in:0.06950240459906723 at:0.0505631922084438 and:0.047427740477262226 :0.6633560980184862 +the:0.4858948908289789 a:0.14455025704297103 and:0.027452852157806778 his:0.019146026889643362 :0.32295597308059987 +by:0.46304414701717533 to:0.07944390614450085 for:0.05655111577862868 upon:0.05478729600655343 :0.34617353505314186 +W.:0.024571962504061552 and:0.013788518864043541 E.:0.01229452092675117 H.:0.010629749161932508 :0.9387152485432112 +said:0.06346352571018535 stated:0.05833394279554389 says:0.04182846088887736 found:0.015274224992274226 :0.821099845613119 +a:0.25683736099491156 the:0.2127199235431849 six:0.08159817662822778 two:0.05576305978532468 :0.3930814790483511 +it:0.5543218940001271 ami:0.06264886355819885 which:0.05900544247386659 provision:0.04199237483117771 :0.2820314251366299 +change:0.34185368183593323 question:0.14582255775415404 effect:0.016421897772727418 measure:0.009084717943992902 :0.4868171446931924 +had:0.5198889402066501 tried:0.19864914892059507 want:0.07162769586799089 was:0.06340746763892208 :0.14642674736584177 +the:0.7155436926848023 a:0.07215180532248014 tho:0.03452088160255086 this:0.021571687365178303 :0.15621193302498837 +of:0.36349408915716946 and:0.12366639773951396 the:0.055291173663123507 to:0.041004938131678666 :0.41654340130851436 +the:0.757611358313467 The:0.15660856464597267 in:0.01336060990692856 tho:0.008576403101935961 :0.06384306403169576 +to:0.42559672698578555 the:0.3022054550816766 a:0.08973777899643728 my:0.023209052586211303 :0.1592509863498891 +of:0.6087865880545957 in:0.14700112492740006 upon:0.11729138766341185 with:0.08556430072754351 :0.04135659862704904 +of:0.6371543688127311 the:0.11922355608307467 by:0.06649039204141327 a:0.05448933394153937 :0.12264234912124138 +called:0.15007817766690248 come:0.01973624386398936 to-:0.01950507086946463 labor:0.016249074063987456 :0.7944314335356562 +the:0.3205211454728587 tho:0.2290935208035902 this:0.06849219719387693 an:0.05027440662262708 :0.3316187299070471 +The:0.11639001611501558 and:0.11430171930681596 the:0.10009736470348139 of:0.0709178295639265 :0.5982930703107607 +the:0.3919627287265256 to:0.2741209697389896 and:0.026397624306552455 a:0.01971312252494391 :0.28780555470298846 +State:0.16568855211899183 City:0.019686553288665132 the:0.01766560848073244 state:0.012548799749865941 :0.7844104863617446 +four:0.04904657233063972 house:0.017900849741792412 mill:0.013683097809314291 owners:0.011266225954523021 :0.9081032541637305 +of:0.11786032230830368 line,:0.08072561768002334 twenty:0.053244633261879865 nine:0.030171782190578568 :0.7179976445592144 +tax:0.042184757663665466 con¬:0.0231204791994881 previous:0.020745045927689137 cotton:0.014422543385311374 :0.8995271738238461 +the:0.4080625753540966 The:0.30028575101256755 a:0.0890665105114714 One:0.06535437730550506 :0.13723078581635928 +said:0.17055158285126362 the:0.11265222355214717 a:0.04370616941407717 Section:0.027842679532987455 :0.6452473446495246 +must:0.09985263971534883 water:0.07932550256090186 Washington:0.05062368718730473 will:0.04317550111045072 :0.7270226694259939 +for:0.24676922136881463 in:0.20426073281203305 of:0.18884312472675374 at:0.1368188066429865 :0.22330811444941226 +the:0.3958332112030112 a:0.11233480454417433 .:0.056821348554557664 3:0.052589872086888 :0.3824207636113687 +the:0.9884687728869581 their:0.006326540886218565 he:0.0012645677790742813 to:0.001160488577895719 :0.002779629869853282 +off:0.12697813976505445 coal:0.0628370579370555 Is:0.03972188006666444 out:0.03208517810573745 :0.7383777441254882 +like:0.21560089466143156 with:0.16324501209898537 in:0.1247096470737347 have:0.11695407938625917 :0.3794903667795892 +men:0.46852596660269846 members:0.04227020067587245 troops:0.016165379905159424 agents:0.00919395771531549 :0.46384449510095427 +the:0.9576206409800208 said:0.025388750901399703 a:0.00863672815661014 to:0.0023541248688684745 :0.0059997550931008186 +of:0.07795401584899785 and:0.05490952564754081 the:0.0384430878812481 a:0.02365297333526329 :0.8050403972869501 +crop:0.8940727371921248 and:0.04026323687673402 supply:0.020987357375703945 as:0.006841967717296503 :0.03783470083814075 +both:0.5388807692727631 several:0.3022718038401578 one:0.08004497560096914 some:0.06540354772759478 :0.013398903558515309 +as:0.9762752256537118 aa:0.0025973588415147126 be:0.0023231628703206703 all:0.0021603932460750146 :0.016643859388377723 +and:0.18337715959719822 to:0.09452154278439553 the:0.05346981746293577 or:0.03909127462029021 :0.6295402055351802 +the:0.6433250033025961 said:0.12322200623879676 this:0.061072071825715266 each:0.00960185497277173 :0.16277906366012013 +know,:0.7505722185674988 doubt:0.1269814445208174 say:0.02097416271722898 see:0.014732299890949874 :0.08673987430350497 +A.:0.28126777829404354 R.:0.14386584821028853 II.:0.11768114988244892 H.:0.10661269975613062 :0.3505725238570885 +parts:0.0949197412540267 and:0.09341398607941974 of:0.0377909811043495 shall:0.030016261130513328 :0.7438590304316907 +will:0.2477955644612093 would:0.18283562603830675 to:0.11540779276611585 may:0.06856719098171848 :0.3853938257526497 +highest:0.05048279349520085 same:0.017227475011961327 best:0.015220387421704227 public:0.01351291087386642 :0.9035564331972671 +way.:0.5674592099098981 here.:0.02694722375844723 it.:0.006412490506334241 him.:0.005050594924030453 :0.39413048090128994 +any:0.9665489252169803 no:0.004256105569505977 this:0.0020286113088972425 its:0.00040900003926440083 :0.026757357865351848 +to:0.9713905966078586 by:0.007183308534224155 well:0.005244119911947768 all:0.004768898696294466 :0.011413076249674994 +the:0.468354713313513 any:0.3767734195894202 their:0.041831808086019474 our:0.008723676419774997 :0.10431638259127224 +high:0.1757419030638411 and:0.12007977944353941 man,:0.06890631081263637 man.:0.06478570031410427 :0.5704863063658788 +be:0.19397647409703486 and:0.10344873183374524 was:0.10048009305645336 is:0.07036682814569904 :0.5317278728670675 +by:0.22066970243699838 to:0.17219718420893154 and:0.12128610196590076 for:0.07882057634015108 :0.4070264350480181 +of:0.9270626935335209 ot:0.0671613885736892 in:0.00554527614920436 and:9.552322602727841e-05 :0.0001351185175581843 +the:0.5213679664568985 tho:0.17246825842046495 our:0.0795374925345681 actual:0.06364062289282642 :0.162985659695242 +at:0.9460928828367089 a:0.01691949035465553 nt:0.00985854828135144 ut:0.008802550619468372 :0.018326527907815613 +has:0.43370176042221514 had:0.25516408799875057 was:0.08119458032032571 having:0.05996839047207187 :0.1699711807866367 +days:0.37613809947917826 years:0.19728821283977194 months:0.17362908908668226 hours:0.13417456625469346 :0.1187700323396739 +L.:0.05107264501067709 L:0.03264798135422365 &:0.02109641607487537 W.:0.016927082867501213 :0.8782558746927228 +that:0.1568503324209669 and:0.15577097288293987 high:0.13530406137471518 higher:0.0587844183900612 :0.49329021493131675 +July:0.43459660416107654 the:0.08244723001562812 or:0.07630795485460094 a:0.037438191955300675 :0.36921001901339373 +still:0.7441547647400539 and:0.03693773112579408 who:0.02760163677357865 He:0.027593266127122096 :0.16371260123345116 +to:0.599634546318942 shall:0.21442470590700569 will:0.08797063343308248 and:0.014627368095565786 :0.08334274624540412 +the:0.8225285408359316 tho:0.040320664625934595 its:0.02125362366279569 his:0.018532740076904537 :0.09736443079843363 +and:0.15816911018657218 the:0.07108945809781907 of:0.06100411210059972 or:0.060335309408781956 :0.6494020102062272 +secret:0.7197081855318963 I:0.06753931289596331 for:0.04032648132064468 civil:0.01517506421726104 :0.15725095603423478 +and:0.11918868986031735 but:0.0825798471530854 connected:0.048427474146484135 connection:0.019257316945442214 :0.7305466718946708 +and:0.3899525321822321 although:0.09439342453526385 but:0.05648102259788924 in:0.03484068706292645 :0.4243323336216883 +lot:0.7773784936822793 and:0.05905444403500759 aud:0.032518567438353914 avenue:0.018402365314574138 :0.11264612952978516 +the:0.7604588181362525 its:0.07719231801028888 tbe:0.04056449342729709 personal:0.021052598383654163 :0.1007317720425072 +she:0.572209763650985 it:0.22577825870535156 I:0.07705194955305288 It:0.03921135836288144 :0.08574866972772921 +the:0.1560412992992315 all:0.04700365810593837 the.:0.024660772705241706 ihe:0.021972107975055697 :0.7503221619145327 +die:0.044923568331937995 house.:0.03942041454696846 own:0.018767744769403648 side,:0.017512837384617265 :0.8793754349670727 +a:0.2673442434397915 the:0.14667310566030903 of:0.11126339874348003 A:0.07682867370892513 :0.39789057844749415 +her:0.08141224731348158 sixty:0.04945374529311574 100:0.049094649140312294 10:0.03512138957681284 :0.7849179686762775 +the:0.201864500506508 South:0.14750691376715414 West:0.10657522154712619 said:0.06626561189177364 :0.477787752287438 +also:0.5326256548981433 the:0.12731670039742599 had:0.08410084548027896 any:0.07292673301692197 :0.1830300662072298 +The:0.7315750666305603 tha:0.029058643359359745 the:0.026367382371643034 entire:0.012782296782916348 :0.20021661085552075 +but:0.17389077499491212 It:0.12795743524181777 she:0.11922556830803017 and:0.10783360110588565 :0.47109262034935434 +a:0.9861252917012129 the:0.005975229532676909 excellent:0.00017663020668840746 this:9.015716938980018e-05 :0.0076326913900322665 +of:0.5811190896865098 and:0.18929142710732105 when:0.06872480501745382 aud:0.04103781907467871 :0.11982685911403657 +a:0.9524295404097665 as:0.04153080646775515 other:0.0009866222052205059 the:0.0003496157203787202 :0.004703415196879107 +sold:0.17812234124440451 sell:0.176087352616906 as:0.016306589351285993 apply:0.011687185215657727 :0.6177965315717459 +be-:0.856522277476395 be¬:0.12353323004126851 be­:0.013304423177754378 himself:0.0007103474424913862 :0.005929721862090801 +and:0.34258562564513867 to:0.07432355432812979 in:0.06497264797076564 of:0.04705158098385995 :0.471066591072106 +more:0.6203067557955556 less:0.2056689758670535 rather:0.02883296733025815 other:0.013354236425370716 :0.1318370645817621 +at-:0.28718138253973724 be:0.24869781201591556 ever:0.14581814284016645 bo:0.03502959522088112 :0.2832730673832997 +and:0.10850522153372179 are:0.0844307946264879 is:0.06113209920544942 was:0.055282151805665744 :0.6906497328286751 +more:0.7345026568460771 up:0.04383540323645578 even:0.018979081813380115 on:0.016888568607687476 :0.1857942894963996 +to:0.5725545641053069 in:0.10375392583332532 of:0.09561200836062908 from:0.06896773930755981 :0.15911176239317892 +age:0.15981594312407843 the:0.048350119565819034 age,:0.025172134094629928 a:0.024092546631405653 :0.742569256584067 +No.:0.0836066203915168 No:0.06315100973076054 and:0.03883938054976092 of:0.03835945396474272 :0.7760435353632191 +avoid:0.16190636262392602 make:0.12225291849790063 the:0.11435732197270493 remove:0.07734575938507182 :0.5241376375203965 +little:0.7372633881873331 work.:0.015718475461063905 our:0.009228782166800373 a:0.008546973044701046 :0.2292423811401016 +provided:0.925276791071036 t:0.023394824202964095 and:0.003220462231670532 estimated:0.0011342859683234694 :0.046973636526006016 +no:0.6767226868402458 No:0.22058053951883128 the:0.008424295642283787 i:0.0023558784791350724 :0.09191659951950387 +the:0.7162530660729738 a:0.12015044144086276 tho:0.022822337063538388 be:0.017437447706648127 :0.12333670771597709 +knew:0.23274652629789527 said:0.13813879089539796 thought:0.09603405118515454 hoped:0.07132665532395707 :0.4617539762975951 +Virginia:0.2571688264934048 South:0.1760139475276134 the:0.11511826589260499 Europe:0.012099368556910125 :0.4395995915294667 +the:0.4880938660786003 be:0.07033848625738949 this:0.06634660469708667 The:0.02796427904713127 :0.3472567639197924 +States:0.7308098896914993 States,:0.03930272918397989 States.:0.022652900459126536 and:0.016589112831357958 :0.19064536783403624 +when:0.34569953192619846 if:0.19609391227135964 for:0.18711080188911983 to:0.09789789141809664 :0.17319786249522562 +single:0.08782722028499264 small:0.025402915500833338 particular:0.01038111803776168 fallen:0.008595025132580335 :0.8677937210438319 +to:0.49743763017128984 near:0.21394498531090772 of:0.012456064440354965 that:0.009559276389433555 :0.26660204368801377 +at:0.5734672609757879 upon:0.23729586645718165 to:0.12796475571380805 over:0.04210540160407553 :0.019166715249146954 +!:0.006188127361995395 the:0.0020679459739068127 alone:0.000962508806035489 day.:0.0007573242108657372 :0.9900240936471966 +the:0.4513029841254562 our:0.080096841072453 a:0.056981460997928356 his:0.03817665086551317 :0.3734420629386494 +born:0.3255618335079539 as:0.09990979476471495 is:0.05882124095821893 instead:0.047151380861471796 :0.4685557499076404 +of:0.28371398393092445 each:0.07341429251419931 in:0.07201297802558751 building,:0.04393458690035898 :0.5269241586289298 +the:0.13636249232853145 a:0.036394262883105405 that:0.017586131570520025 in:0.01599919790743204 :0.7936579153104111 +is:0.4098466769453498 was:0.2419796637719585 and:0.23317404035438433 as:0.05995552217833262 :0.05504409674997477 +and:0.08896333992903445 near:0.05572431903795645 to:0.04751420417473405 lo:0.04296095207965714 :0.764837184778618 +the:0.6919788616628191 with:0.12251265568751611 to:0.05022276912226984 The:0.033528084852835066 :0.10175762867456001 +of:0.2501652871522137 and:0.12662420958718715 the:0.06359291848620474 to:0.039834810285123715 :0.5197827744892707 +a:0.32651470604797966 the:0.19097795029285353 closing:0.12568308824235064 with:0.11608806405690013 :0.2407361913599162 +which:0.9444482423338677 and:0.008815692071919696 She:0.0070830014516560765 who:0.006221643761797507 :0.033431420380758976 +of:0.6724847866058845 presented:0.10748638609568037 and:0.0942834223149968 was:0.0690902676509947 :0.05665513733244381 +to:0.728768128598045 the:0.07697855424018868 of:0.02248814920075063 into:0.00797902075869664 :0.16378614720231907 +and:0.2867834025795483 of:0.22897092317036036 in:0.14395886953508477 for:0.10495576129699284 :0.23533104341801378 +you.:0.38392200890450484 you:0.059311575056641 us:0.03306109987127101 the:0.029687216465714535 :0.49401809970186855 +ment,:0.17068573381863078 work,:0.08533023980949553 of:0.06897037437189066 at:0.05161332137438799 :0.6234003306255951 +city:0.007488784039454353 city,:0.0037591215407253324 country,:0.0030403106234421643 morning,:0.0023463714410805136 :0.9833654123552976 +River:0.11373223545985588 and:0.10608088932683958 banks:0.035729335584593215 while:0.029682272093031252 :0.7147752675356802 +fell:0.2318973634494869 went:0.09386719254541405 fail:0.05716929422864861 came:0.03983725623179516 :0.5772288935446552 +members:0.18633416983212087 out:0.1618102203652949 months:0.035656177429820045 miles:0.031177160555335273 :0.5850222718174289 +was:0.3881742165539536 is:0.24824247922548393 are:0.12432092352164768 were:0.08677494707257769 :0.15248743362633713 +as:0.500853508904875 at:0.14508295686316072 in:0.10583936232919115 In:0.05053141410230398 :0.19769275780046905 +years:0.14419694533919342 persons:0.057650116731598276 men:0.04925484797876155 times,:0.023487229085926275 :0.7254108608645207 +that:0.28977095254043217 until:0.03211731504328389 in:0.013369117858454543 it:0.006091412898440261 :0.658651201659389 +The:0.2423200760013477 been:0.11380964802156764 and:0.10708938281157622 was:0.07979448867151785 :0.4569864044939906 +city,:0.8572112728205037 hope:0.030825506290595977 mean:0.012407857697723844 Mr.:0.006281998846280294 :0.09327336434489625 +as:0.5052372039191174 from:0.14163094695967296 of:0.10660012656710698 The:0.055108896363586235 :0.19142282619051648 +per:0.2777693007022672 price:0.19422941102051447 to:0.12441563767243746 about:0.10810169648930049 :0.2954839541154804 +thence:0.13211899013218525 the:0.11663885098737428 and:0.09329705649273214 foot:0.056052414090561754 :0.6018926882971465 +or:0.7069953303622243 my:0.09048267345548557 and:0.03041090273434063 of:0.027489202586025295 :0.14462189086192417 +at:0.46702510298938466 from:0.35780040616530384 and:0.07760004647007904 to:0.04158368795591067 :0.05599075641932173 +is:0.43268933598563636 made:0.24521801249677797 gave:0.1328516474254252 furnished:0.11520375866318187 :0.07403724542897859 +to:0.48044410363009893 was:0.2260503010525204 shall:0.06616820538278699 also:0.04280176264493683 :0.18453562728965683 +of:0.30914570109993 in:0.2569982953179781 to:0.18728882964606947 for:0.07785947748550444 :0.16870769645051797 +He:0.47320531863369725 This:0.1169995099454814 he:0.08329866687541787 It:0.0727718129330762 :0.2537246916123273 +is:0.004457177526286425 and:0.004022387883758642 evidently:0.0018996825968177243 II.:0.0008831264955716017 :0.9887376254975658 +very:0.13038289778392734 hereby:0.12921039020786337 largely:0.11499723947186156 tho:0.08837239600709028 :0.5370370765292576 +other:0.7783317811881074 The:0.07288905343363983 ordinary:0.07129270418702233 new:0.01976908920526947 :0.05771737198596126 +by:0.22736928668304318 D.:0.20437527027777094 and:0.14254584065530582 of:0.10101228431575354 :0.32469731806812635 +who:0.2707277686486198 and:0.23623234561946585 it:0.13235337147934542 power:0.11653957823169134 :0.24414693602087764 +tions:0.21509004000943946 ter:0.1637375038646361 as:0.09126021097348241 and:0.0698457331973711 :0.46006651195507087 +week,:0.02186309013691976 state,:0.021487204857656237 year,:0.01661119400353118 time,:0.012144555445318107 :0.9278939555565747 +been:0.8957040388902661 it:0.066689839395175 work:0.014680366049617062 suit:0.007210372696394849 :0.01571538296854718 +to:0.2413642094260883 in:0.1525130601610366 have:0.09781592002246953 can:0.09300739860466743 :0.41529941178573815 +it:0.35713373387637987 he:0.07610941815231718 as:0.054507631851444 Christ:0.041555662217945565 :0.47069355390191336 +to:0.5979839838879604 will:0.14811037777297384 should:0.07340359326463801 shall:0.06217894974710544 :0.11832309532732234 +on:0.4050220782692421 to:0.3717375790951412 for:0.08576261648020568 in:0.04044854174795981 :0.09702918440745117 +have:0.17951102501845786 will:0.1713235155927317 had:0.10499799038954273 are:0.09557441348566022 :0.44859305551360756 +of:0.3106697309908156 or:0.3058899839864023 must:0.21231719568957746 as:0.08719998420394222 :0.08392310512926249 +was:0.4606848970831841 the:0.141061314020155 not:0.11950505022316438 a:0.1131699197868545 :0.16557881888664192 +one:0.8421552710871081 the:0.08013565791385133 tho:0.06131108746703466 ono:0.006216637972111001 :0.010181345559895152 +sufficient:0.25108556628508644 vast:0.14704233628927033 great:0.10534494742986947 more:0.0902184349302214 :0.40630871506555244 +and:0.02804943163058395 State:0.01830653178287055 out:0.014848143733160828 day:0.01236898582797652 :0.926426907025408 +the:0.5174925142485525 last:0.05522085731157725 Its:0.032063622286795324 her:0.02933156017388291 :0.36589144597919204 +the:0.0029474112726061365 and:0.0012976793938079601 order:0.0008670733330475655 a:0.00045125979786116274 :0.9944365762026771 +which:0.02538098613108422 mills:0.015556154540003222 crop:0.014573086988556229 buildings:0.014518222362059189 :0.9299715499782971 +is:0.15486652100934847 can:0.10406439034267681 No.:0.07517276143597064 of:0.052304391553077194 :0.613591935658927 +any:0.9563603760907027 every:0.029323958984162176 all:0.005495892156418188 no:0.0018208900984908643 :0.006998882670226047 +and:0.998112070208273 of:0.000533657595187679 the:0.00031815777731171967 is:0.00025056763725525143 :0.0007855467819723293 +bread:0.18397423367126126 money:0.12152605453730067 other:0.09439489077562638 morning:0.0731515605575598 :0.526953260458252 +and:0.17089522590249553 my:0.12169588434254333 I:0.11667762260472465 that:0.09255827246693427 :0.4981729946833022 +and:0.13509545525560884 houses:0.03877456597999953 now:0.03636985726729183 matter:0.03365881866921891 :0.7561013028278808 +the:0.44534850747916144 his:0.05675588464442947 my:0.04671966158132736 that:0.03221355311601267 :0.4189623931790689 +gives:0.5300756322672854 knows:0.0297564157760726 reach:0.028689722949554998 saw:0.01575895990397694 :0.39571926910310995 +deg.:0.7207089461001297 G.:0.010399545028222965 13:0.007837339743594289 of:0.0038095270841607227 :0.25724464204389236 +has:0.3300989481996999 is:0.2177996358622708 will:0.16150275486538287 was:0.12690848607587144 :0.16369017499677502 +party,:0.15269151126264957 party:0.08278675060586646 national:0.04493474079446654 can:0.04243465879026036 :0.677152338546757 +the:0.25680514163776197 other:0.0998069449522399 these:0.055643121141709426 prominent:0.05346768548413202 :0.5342771067841567 +for:0.18016687480458127 and:0.043212231944138334 of:0.030419658046773646 to:0.024241483361775878 :0.721959751842731 +.:0.1350411593306888 as:0.04224185759271332 from:0.030204004235140754 —:0.01656230057286943 :0.7759506782685877 +other:0.18632429436242282 opposite:0.15038652867774652 left:0.08606845255919082 American:0.08485737023749909 :0.4923633541631407 +were:0.9173285382967225 one:0.014014324039956328 by:0.01147748537987572 and:0.004587366705212917 :0.05259228557823256 +its:0.3902324727530085 the:0.29661094215529804 this:0.09541694698860856 his:0.08283813860432643 :0.13490149949875868 +*:0.05224641873442529 make:0.01638510115497455 on:0.007608136537855788 he:0.004209446009429864 :0.9195508975633144 +know:0.4930209984606794 believe:0.43037905407688354 save:0.014243485776280552 do:0.01085037702349139 :0.05150608466266514 +the:0.10215943064697752 of:0.08683082532997013 and:0.07353399275901475 extra:0.07222605699360701 :0.6652496942704305 +same:0.04267057293573906 young:0.03946497182069363 July:0.03885425368367038 question:0.0387729018897476 :0.8402372996701492 +mile:0.08197827619382037 step:0.07720861942722407 blow:0.047369704327845034 letter:0.041761310824959375 :0.7516820892261512 +the:0.27901330948404085 this:0.12763283094906927 down:0.08423517953782453 next:0.06169408260395695 :0.4474245974251082 +and:0.12353084502865497 of:0.06674592527686776 the:0.06595759142475333 The:0.02814479634875338 :0.7156208419209706 +it:0.7820913170400782 It:0.2161805768385162 him:0.0007037598578936287 business:0.00023850947807378686 :0.0007858367854382515 +a:0.28339403315268036 come:0.18989509767319132 the:0.17632198951962924 to:0.17265062995289368 :0.17773824970160532 +but:0.08110015167510774 that:0.03869258175772379 in:0.013163343512597795 on.:0.011803067952463404 :0.8552408551021071 +claimed:0.3971363902680585 said:0.37921719599586035 determined:0.08837328665693697 likely:0.03446280333573668 :0.10081032374340762 +thence:0.2624856384150442 and:0.08601320979545413 the:0.06578038347635042 street:0.058996552898269695 :0.5267242154148816 +allow:0.9999158563168544 get:2.8683919892659363e-05 require:1.720664464074735e-05 have:1.5342127790585717e-05 :2.2910990821554776e-05 +is:0.5317774212545738 was:0.32626617217245224 be:0.05997880425261765 Is:0.01866502236259471 :0.06331257995776159 +story:0.054259039641996056 clothes:0.038777941990436895 claims:0.03311332325490381 and:0.02845496995943226 :0.845394725153231 +will:0.24747835930561246 can:0.18463385958769643 credit:0.1096778049586819 was:0.08587476372123733 :0.3723352124267719 +time:0.06817379543205114 same:0.04278927504414747 present:0.02786658361511536 hour:0.019242390259368806 :0.8419279556493172 +letter:0.4252907646830709 land:0.010857483861016884 man:0.007866694146346154 office:0.006552964089553967 :0.5494320932200121 +because:0.179059901296819 there:0.09588490378172757 not:0.07971165720182222 he:0.01847533964309019 :0.626868198076541 +to:0.12820551915288037 and:0.09794308467563119 of:0.06818995033512765 was:0.03826548605138416 :0.6673959597849767 +the:0.7252076536158673 this:0.09494007157830169 considerable:0.06261022617704166 his:0.06068702503370418 :0.056555023595085185 +powerful:0.8268482932978876 small:0.01976017969287694 large:0.01520155657658998 this:0.01270322644014838 :0.1254867439924969 +a:0.8559366555579629 his:0.03774472948569838 her:0.01245371954225802 their:0.010321394516514723 :0.08354350089756604 +Johnson,:0.011274530412426039 M.:0.009474121971395291 T.:0.009444020349482026 F.:0.00911592601699083 :0.9606914012497058 +was:0.35279441804949224 we:0.14886809525423955 they:0.11770467889955195 are:0.09956545639070997 :0.2810673514060063 +the:0.4935132624987 a:0.0688886931570183 his:0.026820475927490126 this:0.024878110178222296 :0.38589945823856947 +at:0.3145969607803447 Mexican:0.07420803079005847 e:0.06829585547307786 State:0.023269752139655854 :0.519629400816863 +and:0.00041992807876139586 force:0.0003867611676812666 department:0.00020949614670873228 com-:0.0001696739749632059 :0.9988141406318853 +vice:0.016676187097292943 dress:0.007584988931148772 dressed:0.0013556940966809937 mission:0.0007966461977134576 :0.9735864836771639 +St.:0.05084886940350853 I.:0.0356146947016392 and:0.024647707346663866 W.:0.015240731956891565 :0.8736479965912968 +now:0.34159408148382586 committee:0.3393936762877779 of:0.12565065218634236 and:0.11408829723869536 :0.07927329280335853 +all:0.09606428404840524 and:0.0797757506330408 placed:0.028037348225774097 nil:0.028003133745315455 :0.7681194833474644 +was:0.41781682721223173 or:0.2163154687773871 and:0.15798883550358855 of:0.12166899884297391 :0.08620986966381859 +the:0.4056313028249388 front:0.04083890486582079 America,:0.019752788334221758 Congress,:0.019371645631975926 :0.5144053583430427 +for:0.7405761167278789 to:0.2525308991056626 by:0.005760235629351149 on:0.0002808252402070368 :0.0008519232969002121 +nor:0.6557104269153854 or:0.05710131994916393 the:0.04345446511701705 their:0.02144521313594253 :0.2222885748824911 +new:0.04926414352451024 great:0.03983139187008981 large:0.026698601404778203 few:0.024901916113688107 :0.8593039470869336 +he:0.06555496644563036 to:0.04697150687150478 tho:0.04654004128401797 and:0.013370190649760048 :0.8275632947490869 +his:0.07334856176978723 the:0.06935172444754562 six:0.045540582523163925 her:0.03816011801947484 :0.7735990132400283 +with:0.030471384858849627 of:0.011178723277697788 there.:0.010561056431822717 feet.:0.008586794713020054 :0.9392020407186099 +a:0.4936853163987037 another:0.15934633313247668 the:0.12783904029434848 one:0.08860987554024984 :0.13051943463422125 +the:0.11892078300573093 finding:0.04204415799132441 living:0.040407450886189966 my:0.021011335310212775 :0.7776162728065419 +to:0.20078653650622463 in:0.15156440298304405 and:0.10667601701710241 at:0.0656814282380455 :0.47529161525558344 +and:0.23008606685238936 is:0.13373697245981522 was:0.12287030223967707 were:0.08260554972227047 :0.43070110872584794 +She:0.21010346522747944 she:0.19424931614492397 It:0.14630299971672936 and:0.12523512011837024 :0.32410909879249694 +the:0.14088693490637816 of:0.13453515173084174 and:0.07804504695281739 Mr.:0.06962681991514852 :0.5769060464948143 +a:0.20195563124975655 ,:0.16943812620846707 on:0.1642942156041034 improvement:0.14112797135137484 :0.32318405558629826 +of:0.38131403413587556 the:0.22162348668118273 true:0.08015465998059709 both:0.07364874503773465 :0.24325907416461012 +is:0.13197609284030343 seemed:0.05808429798824436 ot:0.02908449580002972 and:0.02874323992404508 :0.7521118734473776 +all:0.22339436984290426 comes:0.22097010177412377 Is:0.19093824705557466 in:0.10703026295604537 :0.257667018371352 +to:0.4147045508627487 the:0.21766279250354728 from:0.10750201156022766 for:0.07651662078778522 :0.183614024285691 +in:0.18289350959476697 to:0.17698948512355325 the:0.043094133430414384 upon:0.018410053165402257 :0.5786128186858633 +the:0.2361191660260051 and:0.09767071524529866 a:0.0827111702462278 to:0.03569869179770232 :0.5478002566847661 +that:0.4660433398108818 the:0.198393979055941 a:0.08627949674495737 Mr.:0.06822016647692021 :0.18106301791129958 +many:0.8799468023919659 much:0.044325141373752486 well:0.02994283296542691 good:0.009934780913489228 :0.03585044235536551 +as:0.9567932893164316 that:0.015563993047823223 ns:0.009439829539951745 as-:0.00913549687362734 :0.009067391222166054 +the:0.7973010863267693 this:0.03185911471334593 that:0.01433132627114429 tne:0.009462665515408331 :0.14704580717333215 +J:0.3149810507711701 G:0.21268584669285961 B:0.10842120881908711 H:0.1081600243856159 :0.25575186933126726 +was:0.04147750691049591 fixed:0.03206089416662667 even:0.029188318384994107 the:0.021762517244986235 :0.8755107632928969 +west:0.5406130940288846 south:0.20708139019161034 ly:0.05314057679515324 along:0.0410206461940404 :0.15814429279031134 +The:0.40269157841550474 dressed:0.3799677225118568 the:0.11231497471938107 a:0.05642472575386276 :0.048600998599394686 +our:0.41054315805783864 the:0.36090173817375526 that:0.013890354331798202 tho:0.006623117879164456 :0.20804163155744337 +only:0.30956555494072285 from:0.17586767512833798 at:0.15709478444548022 of:0.1529981151294155 :0.20447387035604353 +with:0.8823790395364582 and:0.04351910509312006 including:0.03419376570987696 but:0.018925991535496428 :0.020982098125048195 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +A:0.9530221824136311 a:0.013266336459207995 the:0.0061741674995876095 The:0.004823170774776992 :0.02271414285279629 +and:0.17264085482726932 that:0.1701812495037659 when:0.08897383779244362 which:0.08658211287981372 :0.4816219449967075 +payable:0.7029435193953214 owing:0.29008477624979395 due:0.0024901238913173688 interest:0.00021513974556918922 :0.004266440717998058 +as:0.5052372039191174 from:0.14163094695967296 of:0.10660012656710698 The:0.055108896363586235 :0.19142282619051648 +do:0.2678090294087354 say:0.14735790064759546 fight:0.13875121186442188 use:0.1196752905670844 :0.3264065675121629 +the:0.021119939739255054 Rev.:0.0011505550677862009 a:0.0008217049586412662 Mr.:0.0008108858930425455 :0.976096914341275 +the:0.516562662314791 his:0.06848015878876094 a:0.06632297991198695 their:0.06463607622103608 :0.28399812276342495 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +their:0.5141915074976972 the:0.3036186639652428 100:0.038583389512548395 our:0.02966558807749867 :0.11394085094701316 +be:0.07706900732943378 and:0.034677464238473586 the:0.015643115390827998 We:0.013132920003585572 :0.8594774930376792 +green:0.0888315073018033 an:0.02933236266306767 London:0.02167050359355223 and:0.018518556090818886 :0.8416470703507578 +the:0.39029354715224607 been:0.24504797974955 announced:0.11666136652117624 a:0.04288998480844504 :0.2051071217685827 +prevent:0.292299706984777 bring:0.09054429838654184 reach:0.06923368064059755 pay:0.030302994521929194 :0.5176193194661545 +account:0.04763245433926499 legislature:0.03336383745742669 family,:0.02435475076587409 window:0.002475679128682095 :0.8921732783087521 +sun:0.07863497052627111 girls:0.05782133272298324 state:0.05769153823273049 Republicans:0.05379708400795963 :0.7520550745100557 +to:0.9880026887318646 the:0.004606168741921486 largely:0.001904258589731716 of:0.0008318784664570334 :0.0046550054700251345 +months:0.9844236588718617 years:0.009339399611502852 weeks:0.0011056525614107841 the:0.0005710159437120426 :0.004560273011512611 +of:0.18980765186830628 the:0.12276473856796791 The:0.10225200619148117 for:0.060864729945728384 :0.5243108734265164 +of:0.9673294951147321 on:0.01918555441676992 in:0.009502945806544295 and:0.0017589080904518541 :0.002223096571501787 +in:0.33601002673084773 of:0.20808853027715976 by:0.1438623829211221 to:0.11628037683960106 :0.19575868323126924 +shall:0.23734089640372039 would:0.21949481493661088 must:0.2127698776489032 should:0.1894717028784993 :0.14092270813226618 +if:0.26859877818083766 I:0.24584228169119585 aa:0.15565868478304687 on:0.10588371512629392 :0.22401654021862552 +that:0.29194864499827544 by:0.2859140457542036 to:0.19090544277654992 in:0.1542509262646038 :0.07698094020636731 +heart:0.08367831931132749 horse:0.026088925232216786 race:0.02564719399954387 population:0.02529175127612804 :0.8392938101807839 +ou:0.4339237985429931 last:0.2877757583583706 on:0.029980722588609454 prices:0.01281874950266385 :0.23550097100736292 +of:0.21415703704397857 meet:0.10529235682538987 in:0.04919956684416951 and:0.04500912716316007 :0.586341912123302 +long:0.999423774376626 hard:6.126699255623613e-05 the:2.47389553380246e-05 low:2.0183030300598913e-05 :0.0004700366451793833 +back:0.08078752013251062 proper:0.0467912353626774 same:0.03392573566551571 up:0.031515377682115674 :0.8069801311571807 +und:0.013670860386422443 that:0.007422435335956389 night,:0.004932273309724582 and:0.004438566874604086 :0.9695358640932925 +and:0.7865377245030927 thence:0.023038607784134888 came:0.010562407870296496 was:0.006625665891402977 :0.17323559395107302 +was:0.4208463713561344 were:0.22167596260425246 is:0.1211312079568683 recently:0.0567033771709454 :0.1796430809117993 +his:0.8262399278152793 many:0.09954399575399399 no:0.05360577815311233 old:0.010434231392716604 :0.010176066884897708 +construction:0.31481001660934654 government,:0.07202835740656435 license:0.04960613706477673 men:0.04192730431337061 :0.5216281846059416 +last:0.20108187454733484 kinds:0.08277277822953255 men:0.024677252322577947 that:0.008424174180762365 :0.6830439207197923 +one:0.38934697948325997 health:0.18170933957801436 place:0.12242465752707456 peace:0.04151359457558231 :0.2650054288360688 +they:0.21508077282359644 the:0.18843414555170543 to:0.13958223587043098 by:0.12633396892506119 :0.33056887682920605 +for:0.27457256017195564 Tbe:0.24347807116144177 the:0.04510504165673665 and:0.03524047661098079 :0.4016038503988852 +the:0.1989150807258152 a:0.16386149007308426 that:0.05584442212030583 whom:0.05236835032531553 :0.5290106567554792 +Washington:0.46531989274293983 Lee:0.10934301501993238 Central:0.07677485590515208 said:0.01177836250704873 :0.33678387382492697 +the:0.6070118323855109 an:0.09499842472255648 those:0.01972382926344866 these:0.015198234019604644 :0.26306767960887933 +made:0.0841648327385215 subject:0.08263362999530062 given:0.07803854985921246 submitted:0.07228746428350537 :0.6828755231234602 +at:0.28759411886058445 and:0.18382253838157 At:0.0555860356926113 10:0.02260879003318494 :0.45038851703204924 +of:0.8047118468866752 in:0.06763558731473435 to:0.05369908803870604 is:0.047558640803884535 :0.02639483695599989 +chance:0.2854507006709123 if:0.22057647163072439 has:0.16630035386387793 all:0.09041304820266871 :0.23725942563181676 +of:0.22299067197469874 and:0.10108013998145556 the:0.059046847288799345 The:0.02923049122609008 :0.5876518495289563 +as:0.949824984773788 aa:0.026517326128147205 than:0.013705387165202988 is:0.0021495275899996546 :0.007802774342862256 +a:0.6252623521263586 the:0.19558256745934818 our:0.035024932088316564 their:0.03460000169949893 :0.10953014662647764 +only:0.9984565653609605 it:0.0003645243065074891 and:2.438296507956862e-05 as:2.1295982879804433e-05 :0.0011332313845725573 +few:0.8063870803327647 six:0.03541467968452555 five:0.024434135399857646 three:0.009977293711306791 :0.1237868108715453 +the:0.5085239278702555 this:0.3384257172829956 tho:0.049590524521983155 that:0.04277750441326892 :0.060682325911497 +of:0.021104813230093063 in:5.248914755909926e-05 iu:1.4625497958467803e-05 at:9.816845587350525e-06 :0.9788182552788021 +has:0.4544888214047709 have:0.2208566618672363 first:0.1772807393626224 had:0.09119543274151147 :0.05617834462385891 +law:0.06435494690200294 North:0.05636156612167475 people:0.04107233975634548 event:0.031240895446953028 :0.8069702517730238 +west:0.07105051281197199 this:0.06137371698561584 one:0.0486083769934219 opposite:0.027764408629595904 :0.7912029845793943 +sell:0.039053068411954404 receive:0.025917991585585828 establish:0.024967163979159053 California:0.02374537293004688 :0.8863164030932539 +and:0.16009283762919171 part:0.07022926728587568 hands:0.035814219154381974 work:0.0267070990855672 :0.7071565768449833 +the:0.539466225722073 a:0.0776689629649502 and:0.06996817159651306 from:0.05849389763294098 :0.2544027420835227 +in:0.12177577940824454 to:0.05518503245440757 was:0.040811300196042316 remarkable:0.03382172275270511 :0.7484061651886004 +The:0.11242602588531805 ":0.1042559578957523 It:0.012297358801024314 He:0.011674644086048054 :0.7593460133318574 +the:0.23830154415682495 The:0.1997138892514441 We:0.09325683411304297 tho:0.09065016449825035 :0.37807756798043757 +and:0.5145439333064796 if:0.17043153202903885 as:0.10445653329144934 that:0.0559690598090898 :0.15459894156394238 +the:0.5330383105299692 that:0.13681706764829915 further:0.12956176943047118 a:0.11306446211093651 :0.08751839028032386 +and:0.25926684747667333 years:0.14370292673309049 of:0.08498389282325404 times:0.08049580118890623 :0.431550531778076 +door:0.1571359873987561 time:0.05953977466800691 executive:0.01975917893897321 moment:0.007601621867857498 :0.7559634371264063 +seen:0.26502219292894563 been:0.25300898280816997 given:0.1603367194755765 used:0.12943764490583756 :0.1921944598814703 +and:0.12365933028608213 or:0.053831600422668394 of:0.04594888564197004 the:0.02067767080966552 :0.7558825128396139 +and:0.6227790907917585 of:0.03242316610216242 the:0.019257100888546756 aud:0.013144225403329534 :0.31239641681420266 +but:0.2284971501013925 and:0.19394273740295906 that:0.1644305192484854 But:0.14172647528290058 :0.2714031179642624 +the:0.024007132785798562 said:0.01932311849578772 this:0.011531234114194036 Lake:0.008196379048106077 :0.9369421355561136 +der:0.9964224091922351 worthy:0.00017779858800776076 let:6.910970857298897e-05 in:4.7806793057363475e-05 :0.003282875718126763 +was:0.596555656615967 has:0.14627658767956744 is:0.06852363748083355 are:0.04379373428035639 :0.1448503839432756 +the:0.40060607111694196 de:0.17250507372194634 this:0.07951929911889298 its:0.07552474478821823 :0.27184481125400045 +lost:0.2605553441608771 with:0.21616599864015726 and:0.11141401465463865 in:0.09381699668809189 :0.3180476458562351 +the:0.5672243526437649 this:0.06988975490526474 one:0.02967427345542051 tho:0.023004023648275872 :0.31020759534727405 +of:0.9612968485196387 ot:0.014821340424610524 oi:0.006643158095565064 30:0.004768702241204111 :0.012469950718981444 +the:0.03208700490582436 other:0.026238223355027412 great:0.01986782564378633 re-:0.015675543055865444 :0.9061314030394964 +they:0.16272138957335971 be:0.09169132338235148 he:0.07947850874583932 we:0.05657441016587044 :0.6095343681325791 +of:0.2386942516383363 the:0.0868595489028993 business:0.07935921425967513 military:0.037337057969670184 :0.557749927229419 +two:0.05186438216281327 had:0.04789254237691923 men.:0.037144709643685804 men:0.03379651454707324 :0.8293018512695084 +and:0.19988372665978357 of:0.1590801291694245 lot:0.0462327456396341 the:0.04307397478729867 :0.5517294237438592 +But:0.037435240454684646 of:0.01544086609869075 This:0.013694668646854861 tion:0.012319663681324058 :0.9211095611184458 +a:0.3024871320637676 the:0.2486361977440044 can:0.24308015146784182 The:0.08583595030872841 :0.11996056841565764 +means:0.06882263519212835 property:0.05696338678284352 head:0.05290307613475954 subject:0.044289222354706156 :0.7770216795355624 +hands:0.8132619821242206 possession:0.15991795634129724 not:0.005118618778994354 property:0.0003113715765876854 :0.021390071178900003 +that:0.9656091450097394 As:0.012389756984565138 by:0.001366208868989224 that,:0.0012334941053298778 :0.019401395031376365 +water.:0.08636872661044288 water:0.0032157587101645244 years.:0.0006875135652436024 water,:0.0003031724927262461 :0.9094248286214228 +by:0.7549188563293072 in:0.09100177310805913 np:0.06430072175563485 for:0.045592897686937486 :0.0441857511200613 +as:0.9011051172617504 As:0.0312982215509733 and:0.017414508487917077 a:0.006165824124711932 :0.04401632857464731 +the:0.5253903814835514 his:0.1498316545674398 tho:0.06718269545925092 tbe:0.05302981904531988 :0.20456544944443805 +business.:0.04947404609524722 location:0.004682796136206814 have:0.004448772854501088 will,:0.004260566334533266 :0.9371338185795115 +of:0.22156517989278657 the:0.11126192397315803 and:0.0797561451608481 in:0.040570261594016645 :0.5468464893791909 +of:0.2274599921012928 the:0.09738922211702418 that:0.07487740240975788 and:0.07143277329209319 :0.528840610079832 +the:0.3253232834760902 a:0.058533228724330866 be:0.05298635791819935 tho:0.022128591316213368 :0.5410285385651662 +the:0.30590646038338526 a:0.09586845957617897 their:0.0903043253462712 for:0.04837015558992879 :0.4595505991042359 +the:0.3331147873480591 and:0.05165685392556286 Mr.:0.05083881993607381 to:0.03783303361204384 :0.5265565051782604 +along:0.18745761847609121 on:0.12354889866945558 in:0.10484490894906486 e:0.09564150139130323 :0.48850707251408537 +ward:0.00934900349970829 produced:0.00622444969566926 upon:0.005334669412182508 formed:0.0037166835093423198 :0.9753751938830978 +and:0.22444410074529564 which:0.15387668793383297 that:0.1385483393385092 when:0.133323009532897 :0.3498078624494652 +political:0.2714383821603916 or:0.029444062309823563 to:0.011004708785308 in-:0.008283722349422725 :0.6798291243950542 +New:0.944048524481859 Now:0.009854498664964984 No:0.00019705792888075684 new:0.00014363492816166898 :0.0457562839961335 +west:0.1595354734179198 the:0.02522585836794592 new:0.012446194268363889 car:0.012341439809997126 :0.7904510341357732 +so:0.4425632205924225 and:0.21736210585861176 la:0.10847270931471249 with:0.03893247568011991 :0.19266948855413346 +street:0.01813159082637695 ter:0.01739970772321972 and:0.016586643655363817 tion,:0.015098148593913792 :0.9327839092011256 +pay:0.6634580228172366 go:0.1097616668311848 drop:0.08484450210594802 get:0.04128642045277342 :0.10064938779285718 +extending:0.012771557521145113 organization:0.004431557233153746 peace:0.0037788887666180687 works:0.003445440089622075 :0.9755725563894608 +home,:0.1561013653010622 room:0.1419866332960288 home:0.1023031897534342 house:0.03907580907840103 :0.5605330025710737 +have:0.9109579428020949 afford:0.015095162673053029 walk:0.013307139444788429 need:0.01191456784673509 :0.048725187233328644 +and:0.3306564511136479 or:0.15545946342569686 in:0.08175736662026606 to:0.04927790880514146 :0.3828488100352477 +Indian:0.18439256114227742 mountain:0.06893067135128467 land:0.057571600071336014 said:0.019077111339977332 :0.6700280560951247 +to:0.35966772113430867 over:0.1722032469757963 into:0.171442452526761 toward:0.13952198881461905 :0.1571645905485149 +money:0.04841128933996588 military:0.03101415740527678 day.:0.0024173731650005592 court:0.002371731225862687 :0.915785448863894 +woman:0.8567791811228825 women:7.977868150518563e-05 rank:9.78076982229038e-07 officers:9.702028234132543e-07 :0.14313909191580657 +had:0.612415806345704 has:0.12335167256797537 and:0.06278487630767551 He:0.022135575042191557 :0.1793120697364533 +of:0.18214640799998677 and:0.14726309735542453 to:0.09162026354077046 the:0.039135346477859365 :0.5398348846259587 +the:0.8017841136825296 an:0.05132285300691968 tho:0.04056078406174112 our:0.037864080916907905 :0.06846816833190184 +thence:0.3427881941033657 e:0.10687006920727099 the:0.03154469260904818 of:0.01304937015593871 :0.5057476739243765 +the:0.5042600010609982 his:0.10274135274947777 any:0.051656319574054 it.:0.03008713641024264 :0.31125519020522735 +he:0.2996937412689545 they:0.2819845829595391 I:0.16956228928021347 you:0.138308046470931 :0.11045134002036197 +out:0.03698809749093609 and:0.03488376661392231 tion:0.029897585545138636 of:0.025025392437437063 :0.8732051579125658 +St.:0.09115007865718475 take:0.06599276790567896 Co.:0.036165725090230826 the:0.007551480273721501 :0.7991399480731839 +to:0.76528795261012 and:0.10444489130352698 they:0.08972427329916045 a:0.01028776959593211 :0.03025511319126029 +the:0.7405951285069895 a:0.11579419243665062 an:0.04232298912635593 recover:0.009222836756684458 :0.09206485317331953 +interested:0.02575884084591152 so:0.02417429243607432 than:0.009305911746565214 steady:0.006661119465837945 :0.934099835505611 +says::0.1238304007888981 had:0.10364873048213878 and:0.0519528183668014 said,:0.04226487363447099 :0.6783031767276907 +number:0.0437203399821846 sort:0.015101951974681081 piece:0.012348776266874962 matter:0.012215591805048989 :0.9166133399712102 +American:0.9512340869139543 whole:0.002402838741508278 Southern:0.0009951712112231433 colored:0.0007866954700257451 :0.04458120766328865 +the:0.17273410994498942 and:0.13012630367547123 The:0.10951672208487157 of:0.08254714618663343 :0.5050757181080342 +of:0.13313003642585094 at:0.13146204872649794 ground:0.11988777315955138 lines:0.036476294213216416 :0.5790438474748832 +W:0.0909556248128882 J:0.07761205940102135 M:0.06475645887257046 E:0.05861084407652892 :0.708065012836991 +saw:0.27707310771290106 certainly:0.2151009075355176 when:0.2041574328052089 at:0.13725058756761188 :0.16641796437876044 +w:0.16203026664759032 and:0.06446263970231676 of:0.04450805558981359 the:0.025346271739190185 :0.703652766321089 +the:0.5070538066729343 a:0.08757440093913944 to:0.06051535000785464 and:0.046801143382883596 :0.29805529899718797 +and:0.09501177504502976 of:0.08726347219968113 in:0.06587125514861024 tion,:0.05528768129393953 :0.6965658163127394 +list:0.6458251989443933 end:0.02877201773815675 line:0.019651398743384268 hours:0.015613395126971383 :0.2901379894470941 +the:0.4073647361292504 she:0.12576201766305128 he:0.12114144129732148 a:0.07315119480960805 :0.2725806101007687 +latter:0.17335646275269187 most:0.06162834407535623 true:0.05825816727510819 whole:0.040204296505977066 :0.6665527293908666 +in:0.5980325860769107 of:0.2414816506760954 In:0.09618591750437154 to:0.019991922326313735 :0.04430792341630866 +of:0.09141656540839319 by:0.05592508267744539 and:0.05237942870742445 in:0.044253889077138106 :0.756025034129599 +the:0.9827331430857006 this:0.00803528590722966 tho:0.0024886169671064816 tbe:0.00246585974122042 :0.004277094298742847 +at:0.6343974765566267 to:0.09839748281943614 At:0.0896402931814439 of:0.07447571920791295 :0.1030890282345804 +be:0.8840931755646282 he:0.035791401973777386 bo:0.01989935774707118 secure:0.00982726632163283 :0.05038879839289047 +and:0.16454725833656458 as:0.06479241362111653 or:0.030812618552073363 tion:0.025573924741244574 :0.7142737847490007 +over:0.11978966534210803 and:0.07519569211988884 parallel:0.040395397171480434 feet:0.032282256645090004 :0.7323369887214327 +of:0.13708996420916036 and:0.12164755503538492 or:0.05403232911672367 the:0.05265585575271178 :0.6345742958860191 +it:0.32906430549928734 he:0.24093443726066366 she:0.14442158313658646 they:0.11157208836216916 :0.1740075857412934 +of:0.40833544259178484 and:0.1008438810866474 in:0.06329555540835126 deep:0.060279982350510755 :0.3672451385627058 +of:0.5204299390609183 some:0.0796161243496982 containing:0.06796587984262886 to:0.06415184825186908 :0.26783620849488554 +day,:0.03133193704003092 most:0.022869698117738185 old:0.015638951019059696 the:0.014369057869400915 :0.9157903559537703 +is:0.47833289602825363 was:0.2823145332306079 Is:0.08092140268834275 has:0.027894055026365144 :0.1305371130264306 +its:0.3792930461310186 and:0.21066160284339586 on:0.0899882085351803 to:0.08416588466190109 :0.2358912578285043 +have:0.36206612949344735 be:0.045712253700483 from:0.027940404517455608 take:0.027342048208255556 :0.5369391640803585 +on:0.5541125011079077 upon:0.31362857075438444 its:0.029283061419889355 a:0.01533178841152657 :0.08764407830629184 +the:0.8237200800832248 an:0.0529356897534686 their:0.03785969504911454 this:0.014909905357027345 :0.07057462975716464 +and:0.269670183085212 to:0.13034541890740442 girl.:0.08699163741582694 boy.:0.05930527021104695 :0.45368749038050965 +they:0.20171278987450406 you:0.15378201664981506 he:0.13160993787740913 it:0.013013000328827616 :0.4998822552694442 +blood:0.09669209602051282 committee:0.018495858278674275 position:0.015843200839702545 President,:0.012930994083657386 :0.856037850777453 +the:0.5877711748053558 a:0.028923058454182003 this:0.027577366723494708 to:0.022823283386751443 :0.3329051166302161 +made:0.482979324962494 prove:0.06215821938134549 proved:0.0354662776813807 shown:0.021334992664570097 :0.3980611853102098 +I:0.29303592778554005 of:0.1635877446514923 before:0.10028665225815403 was:0.09728346858325444 :0.34580620672155915 +situation:0.4197162332900418 Is:0.12552517867207247 was:0.0937745217165348 is:0.0931356221638953 :0.26784844415745573 +end:0.13196502266624918 time:0.11634325223128399 head:0.09340713771671874 office:0.0625972631617788 :0.5956873242239693 +will:0.6281355669834614 of:0.13509669933962343 d:0.04774526188574759 shall:0.042876516213782835 :0.14614595557738483 +to:0.37351238762381106 him:0.07145327159803212 by:0.05662594822505682 her:0.0534607447385625 :0.4449476478145376 +hands:0.6668211099533771 habit:0.03460099556627222 possession:0.02866980036435636 management:0.017191836433726484 :0.25271625768226796 +of:0.09470273082768106 the:0.07728511979342884 The:0.05596987356030078 tho:0.05186348339458239 :0.7201787924240068 +be:0.7137836070004755 he:0.05635406080651471 bo:0.04964029928990181 is:0.027670689196606865 :0.1525513437065011 +the:0.9948374670863805 a:0.0009055693986348423 tho:0.0006667880624496347 whose:0.00046222963571789725 :0.00312794581681705 +ground:0.13269393674583452 end:0.07849818613948024 east:0.018639036326378113 plant:0.01753759153640029 :0.7526312492519068 +as:0.02236555234809437 the:0.014611875435403645 Judge:0.012826834050729177 Mr.:0.010381294929537327 :0.9398144432362353 +and:0.21762163601542067 so:0.13675557643375585 the:0.1207425297165225 ally:0.08441311840310525 :0.4404671394311957 +be:0.7262090293272426 bo:0.08566822627997346 not:0.05899436772124376 prove:0.04727662544466704 :0.08185175122687297 +north,:0.3700886032721491 north:0.13044889369191803 of:0.11088419853667517 south:0.02808484462564037 :0.3604934598736174 +of:0.8699853123706461 with:0.10075345573215079 re-:0.011342225264701243 is:0.00665330997934062 :0.01126569665316128 +mining:0.6949090786037212 the:0.03237926909729075 to:0.0153208837048489 of:0.010771861554017586 :0.24661890704012157 +over:0.11767546970162922 the:0.02638400824397165 in­:0.02100922722541695 any:0.015898122522521804 :0.8190331723064604 +is:0.5324500780992507 were:0.1178074757806921 was:0.031756623773329225 of:0.02896177364676247 :0.28902404869996556 +that:0.12894216112727905 as:0.11181941977218939 in:0.07330176579643324 so:0.05705102176910903 :0.6288856315349893 +to:0.4107331590614547 will:0.19425775665548672 may:0.12818796709562244 would:0.11799517459350863 :0.1488259425939276 +sales:0.102870474635754 reports:0.01905322660006228 questions:0.008099296331627369 two:0.005535263107501 :0.8644417393250553 +and:0.18052404197623645 or:0.1367286701400405 steel:0.12341175061613506 to:0.10414803588505978 :0.45518750138252817 +of:0.2401492925614265 in:0.2382362500160049 and:0.10198670863898951 to:0.09076467934840579 :0.3288630694351732 +in:0.2978035315590319 of:0.2877034030211721 with:0.2064950680619264 as:0.11492336006356726 :0.09307463729430232 +and:0.07561553895020237 is:0.06753449704927603 church:0.05633781073944384 w:0.04940490694674205 :0.7511072463143357 +and:0.10508361087352641 the:0.09532911749571336 of:0.07311971823228967 to:0.04218461133924155 :0.6842829420592291 +feet:0.41284051439952124 and:0.044097218678970096 the:0.03978504475949871 of:0.02585026457446364 :0.4774269575875463 +will:0.5163112757873521 may:0.2610812166913281 shall:0.1751439727335557 should:0.029473711720251403 :0.017989823067512452 +there:0.360731203567712 that:0.1140829593617187 It:0.07000377189045577 it:0.06340045226093877 :0.39178161291917474 +all:0.13557023318743391 of:0.10567542592574977 the:0.07490272346633634 which:0.053707364676750656 :0.6301442527437293 +only:0.6845656667041984 Dr.:0.17407157196445047 the:0.07004386361380338 a:0.013633009037382945 :0.05768588868016474 +and:0.67755926326878 to-day:0.021502028940747084 subject:0.006014377543628238 the:0.005936957744881482 :0.28898737250196327 +to:0.08908998728219597 of:0.018320051727278706 seeing:0.010380420666876751 in:0.009728831684225095 :0.8724807086394234 +fact:0.1724322501932266 belief:0.02340073183800877 idea:0.022448588294499996 French:0.019321527333124356 :0.7623969023411402 +almost:0.2684461692802624 having:0.0510431256287945 not:0.04655215498707918 already:0.04488526324573199 :0.5890732868581319 +tion:0.05100517112694074 day:0.038832929216810766 line:0.03407937157096537 ments:0.021715789384075684 :0.8543667387012076 +strength:0.08450403109909357 extent:0.08164669689102877 best:0.057573671403810256 woman:0.042811231771163354 :0.7334643688349041 +This:0.07947985139552838 And:0.029526270538596737 and:0.014899989501831357 is:0.006791300032807766 :0.8693025885312359 +the:0.044391614559187595 and:0.029819812954174112 to:0.028479986720496703 of:0.01810051130947537 :0.8792080744566663 +of:0.17115089690677004 and:0.1250308577916451 on:0.08465114276598305 but:0.08425913979807478 :0.5349079627375269 +that:0.1891479246693663 your:0.0713580942158511 the:0.07000527593752542 it.:0.058362967318469114 :0.611125737858788 +and:0.20303962797026312 that:0.1228120177596975 when:0.11111772746323861 as:0.11031711456729987 :0.45271351223950085 +and:0.08599810291211765 of:0.07918074779180148 the:0.05530834507038659 in:0.05167451650253188 :0.7278382877231625 +officer:0.8986650137199984 person:0.00871717125883307 dollars:0.006659441373050635 property:0.004545428286469682 :0.08141294536164834 +and:0.18015080871186276 to:0.16278592719874183 in:0.10487563417127925 the:0.08681631166042773 :0.46537131825768835 +to:0.3329998155587189 will:0.21406669535578424 may:0.09286713610062691 should:0.07386307283487849 :0.2862032801499915 +of:0.3251064964282666 In:0.1848978261188352 in:0.10635411990846037 to:0.1018379859329611 :0.28180357161147657 +B:0.7822135636650709 ..:0.03973328928156165 J.:0.015034850497423388 Mr.:0.009409332840765651 :0.15360896371517835 +the:0.933976794038355 a:0.009697930006417589 tho:0.004167659398881137 their:0.003727155999156697 :0.04843046055718966 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +the:0.2350973301536228 and:0.0930332509194886 to:0.07421260927243098 pre-:0.060845648441354774 :0.5368111612131028 +a:0.6480705350161746 the:0.2178707129076528 one:0.06903493397840384 n:0.04070450111321253 :0.024319316984556156 +tion:0.026582486816905882 ber:0.02309474382408122 number:0.020867359060033813 copy:0.017105401975410526 :0.9123500083235686 +came:0.08418662094038237 ordered:0.07403962014883202 suffered:0.06868002888733278 went:0.05032934475331198 :0.7227643852701409 +and:0.21097617790372108 he:0.15929591064807155 is:0.10742808315677214 are:0.08708159754163064 :0.4352182307498046 +of:0.29106529718083496 and:0.17870664001188136 in:0.10617074195104018 to:0.08992963183704251 :0.33412768901920104 +the:0.1761740861485711 that:0.17457284898286068 all:0.15825066074856894 in:0.09351754489655874 :0.3974848592234404 +the:0.23971078898450404 d:0.15469031872628342 expenses:0.08556834277446373 a:0.035204095541280844 :0.4848264539734681 +of:0.6538156065315395 and:0.08907052209480129 in:0.051031346338149174 to:0.035867956626535795 :0.17021456840897425 +said:0.10740308047412868 com­:0.08471756333994161 the:0.08041866521705889 great:0.04407389494776116 :0.6833867960211096 +say:0.4614205309631239 show:0.05832256893697434 said:0.053408796493412604 hope:0.0490188828417495 :0.37782922076473957 +in:0.26195402921441424 at:0.23802016741455437 to:0.13148772321423458 from:0.12826502258910988 :0.2402730575676871 +charges:0.09553011323402852 issue:0.06320503408508142 people:0.056533257173735585 remains:0.036100988707324234 :0.7486306067998303 +or:0.9980443958440756 no:0.0004356952731157524 of:0.0001930092220027474 to:0.00010215741158286216 :0.0012247422492230008 +by:0.9894093753916793 the:0.004910245209857797 to:0.002571524719883349 tho:0.0009047340457738276 :0.0022041206328059625 +that:0.3871044340626489 at:0.13159209619492748 whether:0.07435421185865834 it:0.04343917232532817 :0.3635100855584372 +I:0.04079809133913714 and:0.03049906945183448 1:0.023097870599724728 Davis:0.009751234378642006 :0.8958537342306615 +addition:0.6566146198871262 order:0.173174813796775 answer:0.07379806561404682 regard:0.03348105930678271 :0.0629314413952692 +a:0.2777902099870391 the:0.20352903143077483 that:0.2026769755642467 The:0.0792912942367855 :0.23671248878115395 +and:0.190061482241107 was:0.08577518058844796 but:0.0621911149396431 who:0.05706175122903779 :0.6049104710017642 +two:0.2870597024701876 the:0.2536166158431176 their:0.12644349676169184 four:0.10225813855751123 :0.23062204636749165 +I:0.2234163964663379 who:0.14497486711962487 which:0.11482067214450566 could:0.07704340846930124 :0.43974465580023037 +it:0.45287121438476247 It:0.22936172128758991 a:0.09833733877550967 being:0.09170004058905003 :0.12772968496308795 +of:0.14319290197345214 and:0.0855873120403789 in:0.043925025618234 among:0.03956768450757005 :0.687727075860365 +and:0.7843699423113484 fifty:0.04324783797375705 dollars:0.028226279471816124 thousand:0.011090635608153166 :0.1330653046349251 +elected:0.13328567080700604 right:0.034226173138395814 killed:0.03335132910074672 more:0.02567062012574766 :0.7734662068281037 +to:0.07410363910207479 that:0.035196194163590294 any:0.003908740707304019 little:0.00359606199472099 :0.8831953640323097 +to:0.3612666595497007 will:0.16731883554899912 would:0.14473199479624058 should:0.09503951939708999 :0.2316429907079696 +on:0.23961346422806684 at:0.21913388738216852 to:0.2008111554666705 of:0.11421315073170633 :0.2262283421913879 +year,:0.0570962270471506 part:0.009194247284132925 e:0.0070063351788725225 ground:0.004935993579055621 :0.9217671969107882 +the:0.2722978527517635 a:0.08884276619011976 great:0.06902745380850657 peculiar:0.0645707206390346 :0.5052612066105757 +changes:0.2563206179765514 and:0.07605931527596738 tion:0.033410081559901376 but:0.020303793869769084 :0.6139061913178108 +and:0.3417040515808554 to:0.23795844571283023 with:0.148285035011456 when:0.0887090526833692 :0.18334341501148912 +said:0.039180663977729124 the:0.01795511205256853 old:0.016530897044362128 present:0.01456741177036813 :0.9117659151549723 +great:0.15315030605056 original:0.1213390592074274 field:0.04320844735726075 information:0.034020513616374405 :0.6482816737683774 +;:0.31892467802421604 to:0.010557563646205302 by:0.008879281610405134 cost:0.00859836041144543 :0.6530401163077282 +the:0.4670064054435525 which:0.11433263380959756 them:0.050532107566693824 said:0.03801826901606401 :0.3301105841640921 +the:0.07945004518182489 Government:0.055912760605748936 law,:0.029709322627876643 it,:0.025255972925531795 :0.8096718986590178 +great:0.03527514781134599 large:0.03504552481980117 good:0.03463547291725257 few:0.03028065607524329 :0.8647631983763571 +business.:0.30705280347463615 Rev.:0.12343144738085865 which:0.08319926146895497 the:0.0692549012825427 :0.41706158639300756 +the:0.5103208032326222 his:0.04431579008385185 a:0.03883728180890599 Mr.:0.03311220275796215 :0.37341392211665764 +in:0.5608712759761777 with:0.12022202598547801 a:0.08967355219326877 at:0.08846079756193242 :0.14077234828314317 +a:0.21742680747447582 was:0.10746529311738062 didn't:0.08506381909451631 the:0.07528694458299669 :0.5147571357306306 +I:0.22535990650260287 as:0.027518633922016048 i:0.016807593798714344 though:0.011053784599753742 :0.7192600811769131 +the:0.2959136897460215 and:0.14563237389882977 of:0.07634802336556659 The:0.07196313702427713 :0.410142775965305 +no:0.7497048339865675 any:0.09075284555303693 be:0.0794759188728607 a:0.038273221742046344 :0.041793179845488575 +old:0.0681516508729474 low:0.013747166543878317 ad-:0.009856543803611907 of:0.009831128097674184 :0.8984135106818883 +of:0.7363717703302076 in:0.07024979680234765 to:0.04689009327387182 on:0.03910525040135795 :0.10738308919221487 +They:0.26929318993333284 ho:0.24060765758567237 to:0.15863949559600063 in:0.13499366600812926 :0.19646599087686484 +to:0.3958252127753476 will:0.13465236717094775 should:0.12438012884659151 can:0.11567926536946588 :0.22946302583764713 +pieces:0.6817225434701122 this:0.11228618102906321 the:0.09552918126413525 which:0.016207335919035427 :0.09425475831765401 +time:0.9755229277992494 end:0.0028461406124262543 home:0.001602834451251151 day:0.0012624405066824387 :0.018765656630390783 +A:0.14057112281011908 P:0.11190628726165829 E.:0.0947231343569267 J:0.0932683618825224 :0.5595310936887737 +floor:0.31781796763578457 right:0.02763937505135908 head,:0.014847873844671492 train:0.008522275577560072 :0.6311725078906248 +one:0.10962896410049569 many:0.10201196655185901 some:0.08944393931185056 most:0.06440162220911846 :0.6345135078266763 +efforts:0.05605676516078575 changes:0.018884580190274797 powers:0.01785534905914374 friends:0.014897624443341544 :0.8923056811464543 +and:0.10707543197567586 enough:0.08686055347394118 as:0.08384160667815135 you:0.08288040558996511 :0.6393420022822665 +the:0.4621427546567523 a:0.05203163675158253 his:0.03579224585468573 Van:0.030940469426963803 :0.4190928933100157 +of:0.44039717050663996 In:0.4131469994224588 and:0.026085418957073583 in:0.010213975592766633 :0.11015643552106091 +and:0.14890583145049555 to:0.09914907801220088 by:0.0699255634863057 in:0.06698217954787701 :0.6150373475031209 +was:0.4121377836658058 is:0.23651717758734667 and:0.2091852916732688 are:0.08361770394680348 :0.058542043126775134 +the:0.5429140747331352 their:0.06736673639817845 a:0.023861804038720798 help:0.015585097332056432 :0.3502722874979092 +much:0.009012669326588573 true,:0.007244833851289258 high:0.006885836995238484 well:0.0064130591209741235 :0.9704436007059094 +door:0.6179474704935389 great:0.09758614760500312 small:0.04541295491267685 strong:0.020548027491131434 :0.2185053994976495 +is:0.9940986834585638 be:0.00396750611326534 and:0.0006800174698287372 of:0.00010642364391268394 :0.0011473693144295471 +the:0.2719822335619911 no:0.07035078497100193 a:0.041364977381009985 that:0.03540387949145307 :0.5808981245945439 +a:0.2772665155000601 the:0.1730149548378252 his:0.07964373214627347 an:0.04388740927520337 :0.42618738824063784 +and:0.20849640465470487 of:0.16918062296132866 the:0.051372066920307755 The:0.031992646658260515 :0.5389582588053983 +are:0.1480359718060039 were:0.06778924314741186 have:0.06426159304432728 of:0.039998241253503874 :0.6799149507487531 +had:0.15636565370913894 was:0.14219314288360171 must:0.11099542210311628 will:0.10741722089847845 :0.4830285604056647 +not:0.8959403367831779 then,:0.04199945379529944 could:0.04020921489464203 only:0.008131841406561096 :0.013719153120319781 +represented:0.07952715968583501 enough:0.06764883749553983 as:0.03423387858111411 dressed:0.029961776226951276 :0.7886283480105598 +the:0.23329929670162242 and:0.0883327118928159 a:0.07416394698552128 to:0.06849264614088842 :0.5357113982791519 +Mr.:0.33269848901971927 of:0.1796622514249764 Dr.:0.06009910604976893 the:0.049713072091503406 :0.37782708141403193 +the:0.5309455444025445 a:0.32954001025597995 before:0.032093001014225374 an:0.016925159875581287 :0.09049628445166871 +of:0.5627524325389929 the:0.26249430310138017 Just:0.042985011976716586 ot:0.025688222694919372 :0.10608002968799088 +of:0.18291420173769676 better:0.16199554032807878 and:0.06590097625693306 the:0.04372606266170874 :0.5454632190155827 +to:0.4590101084747795 from:0.45285850442339165 by:0.0036628190250044233 as:0.003055578002842814 :0.08141299007398159 +made:0.43060146928362875 printed:0.29650190174432794 needed:0.12611227439124026 used:0.05503633992713008 :0.09174801465367295 +a:0.16687364153599638 no:0.061647093654278284 better:0.05541961253305149 much:0.052842080676658326 :0.6632175716000156 +to:0.8290639041292165 of:0.10584221837266787 nor:0.01501231450803036 and:0.013630712983346038 :0.03645085000673918 +the:0.17991782129133257 of:0.09391605543630158 Mr.:0.0480491077919112 be:0.045729331316091436 :0.6323876841643632 +said:0.039279102498472794 highest:0.021759639743158 the:0.01654974770314999 most:0.011518041635279173 :0.91089346841994 +described:0.3881395115991013 de-:0.17970492053082288 de¬:0.03328635244335629 such:0.022846200245469378 :0.37602301518125014 +murder:0.0038710812293307724 of:0.00018501570230648132 own:0.00017537861961034875 features:0.00014921571686860277 :0.9956193087318836 +that:0.9542261422892765 after:0.00517093350391567 hat:0.003191857665041856 was:0.002837737703839212 :0.034573328837926784 +was:0.6617283347962722 seems:0.24203139763032067 appeared:0.05102893787078155 due:0.0061828164562318785 :0.039028513246393615 +on:0.1648247894845128 a:0.13126586667675258 keep:0.07993063951047683 cover:0.045068509528073314 :0.5789101948001846 +from:0.4483663462364068 of:0.24031619118438777 in:0.11202792457617321 to:0.07782253417575838 :0.12146700382727385 +in:0.7669297191583287 of:0.1557971877551083 to:0.027657186120500644 side:0.021713933462892947 :0.02790197350316927 +an:0.14227725873858088 and:0.06767742009606248 tho:0.05990062781818768 of:0.05420329246622547 :0.6759414008809436 +and:0.14769169270697974 of:0.10984635567856824 ous:0.09840414515871256 in:0.04242932323016009 :0.6016284832255794 +to:0.3605387108939656 will:0.24091157064824043 should:0.11259838501435107 can:0.08714160757677132 :0.19880972586667162 +of:0.08429807238864089 few:0.04774276332227717 day:0.036304774175319444 term:0.036302505452905566 :0.7953518846608569 +and:0.3824244079831214 of:0.17202382788663467 to:0.15081597753953255 among:0.051676460486074854 :0.24305932610463657 +it:0.5267969119579101 there:0.1474777270330677 wheat:0.05854255970558179 he:0.058352966906504426 :0.20882983439693598 +acre:0.20780793583159496 day:0.07856190320854206 cent:0.04743873598612736 as:0.017050192294679484 :0.6491412326790562 +own:0.23655684718807812 the:0.02162019126047284 an:0.014799683274316121 poor:0.01306318411966888 :0.713960094157464 +but:0.6379224839313805 simply:0.20451560042865638 not:0.021792159646876943 features:0.01899021419109955 :0.11677954180198652 +thc:0.38577718607680744 the:0.07815686251051879 tho:0.04661727109209816 his:0.03167404683733896 :0.45777463348323655 +or:0.09477648010558896 is:0.0392906814973209 based:0.018721842324703884 party:0.017858321856171675 :0.8293526742162145 +and:0.6839019593410361 including:0.18445036267275922 although:0.06968258280478436 in:0.03581444100910008 :0.026150654172320216 +and:0.1837660304091109 to:0.11820843456094118 of:0.0811342977373296 in:0.048525200613875275 :0.5683660366787431 +you:0.2765774058031562 are:0.2222352611193721 is:0.18966442184434817 they:0.13785271554291284 :0.17367019569021047 +same:0.2936383163266064 sale:0.05106158165767809 grade:0.0272569004315053 other:0.02264322895211766 :0.6053999726320926 +made.:0.003039239561529175 offered:0.0011923998889601859 done.:0.0011423101716481346 completed:0.000989492594423123 :0.9936365577834394 +hard:0.17633455372181306 and:0.14286388810254388 sugar:0.08009628086621354 to:0.07820309771995605 :0.5225021795894735 +the:0.4957733417933657 this:0.09022692059655571 its:0.058704539445148037 their:0.05301237053651143 :0.3022828276284193 +put:0.1867698819499922 been:0.11855334761078931 shot:0.05591926781654355 to:0.040720485184119685 :0.5980370174385553 +will:0.8153853777491182 are:0.11750534649723095 would:0.030300639648882965 were:0.021113509836777178 :0.015695126267990522 +since:0.9964026801632739 of:0.0011523863087918491 ot:0.0009224796849617937 in:0.0007599934952243058 :0.0007624603477482013 +are:0.3315001456475288 is:0.2794583286437303 be:0.1251382884454476 ami:0.06185754039465186 :0.20204569686864152 +and:0.8173830558246675 however,:0.06135269567923219 just:0.053983848119872724 as:0.03864661943628808 :0.028633780939939638 +a:0.4875064854824402 A:0.3722244067427787 the:0.05357969087175008 of:0.015642504906710066 :0.0710469119963208 +own:0.050947826499034427 the:0.019699719481370843 re-:0.009895512993015446 respective:0.008632395733108027 :0.9108245452934712 +pounds:0.5043080882458383 How:0.03254173318548441 capacity:0.02061099111687024 quantity:0.007177947309521467 :0.4353612401422856 +same:0.043623197881687635 other:0.026257964226395793 consent:0.021899724815921683 to:0.01650013674321934 :0.8917189763327755 +the:0.9911653216589577 tho:0.004788185324359374 tbe:0.0012993142348103814 this:0.0012008925279739738 :0.0015462862538984875 +report:0.061495502480779896 petition:0.043834586601440295 case:0.02295922551686312 bill:0.01640627921285459 :0.855304406188062 +the:0.8984776640290095 a:0.024133773702790465 this:0.014778287713581494 Kansas:0.014663926977787626 :0.047946347576830764 +a:0.37839501678534065 of:0.3399690177541798 the:0.1253569160071062 some:0.06391621003343728 :0.09236283941993596 +the:0.26566576699793565 put:0.13533835032139896 be:0.08770469608046078 bow:0.06110153058590914 :0.45018965601429556 +of:0.3437930198082633 in:0.14348800460010147 to:0.13185136545593976 and:0.11233736862238566 :0.26853024151330973 +the:0.30096947866033885 a:0.04229145137343192 other:0.03319340520243095 tho:0.01854050301902429 :0.605005161744774 +no:0.3301438202791988 a:0.32365096363314355 any:0.11992964999254506 me:0.11608327231529807 :0.11019229377981443 +extend:0.28414042904935166 make:0.21065756809406472 hold:0.019912400709609954 follow:0.018571506367359138 :0.4667180957796146 +and:0.36845900264533465 had:0.18956020227505016 also:0.07204201300065165 was:0.03123406591409558 :0.338704716164868 +kept:0.1688996777017761 they:0.060635720780723774 that:0.0463510071484607 the:0.03239493099559426 :0.6917186633734451 +,:0.0119555691191535 Mr:0.005534592112829923 and:0.0024334046684356503 .:0.0024015237665399067 :0.9776749103330411 +like:0.4842003377662211 nervous:0.2140749254777902 hard:0.0844733764854754 than:0.05408491248014643 :0.16316644779036688 +of:0.9884816414017532 ot:0.0025984025692139152 from:0.002226666345252858 for:0.0014060142261266937 :0.0052872754576533555 +go:0.01891055332524839 covered:0.00853871382588345 extend:0.006000148162402679 all:0.004775950082516292 :0.9617746346039491 +during:0.7743630810910764 in:0.06633393470804003 of:0.03337118599904461 power:0.023251967268860443 :0.10267983093297854 +the:0.2586162945386391 Another:0.2322355168468317 This:0.10527349362058509 a:0.07022301488770336 :0.33365168010624074 +the:0.15640032279800287 a:0.08795646311017777 do:0.06012406537061314 Mr.:0.054529250490873246 :0.6409898982303329 +his:0.2777226232349532 be:0.21788092819774946 in:0.04700849262553114 under:0.007362960251485077 :0.4500249956902811 +to:0.9752768536460822 would:0.014156511902652777 will:0.003498081027829843 so:0.0034377929133411703 :0.0036307605100940332 +of:0.6593114720630383 the:0.10932311915147178 and:0.057147756820271844 as:0.025109683344560377 :0.14910796862065778 +was:0.26117613534970546 suddenly:0.24071152789528683 is:0.16656312038210028 has:0.12796042336994945 :0.20358879300295796 +education:0.0833182017375333 same:0.031648631979436154 •:0.029000082227325474 said:0.015777009815227044 :0.8402560742404782 +10:0.16439251767422558 ten:0.13275298998377522 fifteen:0.09593907999535499 20:0.09259870540661529 :0.514316706940029 +and:0.9209671998547914 aid:0.03467527026814662 west:0.005845514105131405 East:0.0053178674690813185 :0.03319414830284925 +hundred:0.6274401726309461 *:0.0012719363845095498 14:0.0011814929488097453 the:0.000893018580889274 :0.36921337945484545 +mere:0.16345492136225173 small:0.09410003206509153 wise:0.06808627423217242 patient:0.06734829302210354 :0.6070104793183807 +of:0.15918314219792298 or:0.08380379918676732 the:0.07547958274196327 course,:0.057103343842786765 :0.6244301320305596 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +fine:0.5748606837834002 sum:0.2858468522205219 fee:0.10383043584165072 tax:0.026493481570231854 :0.008968546584195198 +the:0.7675862590643294 a:0.013895836811455701 tho:0.012461144453740363 his:0.0094080738078979 :0.19664868586257647 +out.:0.05848187134091033 of:0.016737242637336665 hand.:0.008336387473183236 however,:0.007258077980907273 :0.9091864205676624 +three:0.15894519841512003 12:0.06173148861447174 four:0.06117884487423058 six:0.046136685106183725 :0.6720077829899938 +and:0.10566674498491371 of:0.09805545298940059 the:0.07843804222578304 to:0.03303503028089453 :0.6848047295190082 +James:0.656919694900668 Mrs.:0.08152259711968243 and:0.06876643935534095 Dr.:0.05694325565544924 :0.13584801296885957 +the:0.06531764163128181 a:0.03448851379005146 .:0.022380536490253115 of:0.019061246849301647 :0.8587520612391117 +and:0.15214697899937316 which:0.14454042573485765 it:0.08323672666723231 they:0.06681198614054919 :0.5532638824579879 +one:0.9160131229163835 cured:0.07328809323773562 because:0.0005328411512016526 cut:0.00037602102230111477 :0.009789921672378061 +and:0.43500952319963 ing:0.12731155932479749 that:0.11366734705867988 in:0.06825582669525619 :0.25575574372163645 +them:0.40286483297405645 money:0.1775470104261453 it:0.09310955493851963 grain:0.02928469315438297 :0.29719390850689564 +to:0.4656736715512203 will:0.31612255461379346 shall:0.1541583923091203 should:0.02117293621920513 :0.04287244530666078 +and:0.17129112330523039 to:0.1478857593678367 we:0.051354086422236406 of:0.042468522430004055 :0.5870005084746924 +less:0.22778617232241916 good:0.06383333904194846 the:0.05550512884348892 directed:0.04901796998126563 :0.6038573898108779 +their:0.5752381986145271 our:0.1329092047730457 his:0.08726081729062617 its:0.0750799560956696 :0.12951182322613136 +a:0.4406606120734982 the:0.21751751645127557 and:0.07152081218491037 A:0.0303209965729664 :0.23998006271734948 +that:0.01050002570299256 and:0.010120989034067775 the:0.009086167158354969 of:0.006575546854373315 :0.9637172712502113 +the:0.4038908040595959 of:0.1925252921573046 from:0.10450029678013273 he:0.08845933330023859 :0.21062427370272824 +most:0.018318711430889326 same:0.01601800595114586 the:0.013230236607263315 of:0.009937533054673518 :0.9424955129560281 +total:0.4883482264832514 body:0.07196115363177447 city:0.07067052880094157 State:0.03357389437201348 :0.33544619671201903 +be:0.24871489518258205 get:0.17427950765398303 find:0.06788534889722478 help:0.05561070700549371 :0.4535095412607164 +of:0.27781346212494556 and:0.08094554922650149 the:0.043051794131268944 to:0.02868503539843816 :0.5695041591188458 +been:0.490569322086813 a:0.0939234667529024 the:0.0714265652634501 their:0.03661283742677299 :0.3074678084700615 +the:0.8927793259514989 those:0.03142531864952898 his:0.01672770605875461 Democratic:0.011083422624710305 :0.04798422671550721 +against:0.7471706737151312 by:0.04954863784229596 to:0.034131417670615595 in:0.02631449354168751 :0.1428347772302696 +His:0.3029548417970754 his:0.18211639029268853 my:0.1424021686852292 the:0.08412405784619 :0.2884025413788168 +center:0.5449098399763965 air:0.032036715748438055 door:0.014922645484944756 floor:0.014764549416045668 :0.3933662493741751 +end:0.11557519624436757 head:0.0801632870530906 foot:0.059811984031632986 bottom:0.04927682939837742 :0.6951727032725314 +all:0.1705174426262013 getting:0.1015735843271914 of:0.03228351575366439 this,:0.02462418739788062 :0.6710012698950623 +owners:0.24095973277074154 children:0.03933064774515705 education:0.009457594449330715 lives:0.005695070791528706 :0.7045569542432419 +and:0.45418422739138253 running:0.13323000130222956 for:0.09127303945373101 by:0.032225346668365046 :0.28908738518429195 +the:0.4754675694810352 a:0.06444417871208577 tho:0.03590145088439825 their:0.023823541386371615 :0.40036325953610913 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +they:0.475579532817647 to:0.33253244225939993 have:0.09434780384471476 we:0.05494576681276843 :0.04259445426546998 +case:0.18087188197670148 search:0.12056928680408838 favor:0.08871990538017199 charge:0.08670998127203158 :0.5231289445670066 +and:0.08616605736863807 the:0.05603803458353433 at:0.05079535958883555 of:0.048143100983420804 :0.7588574474755714 +the:0.5391692533207887 tho:0.05484006400262654 June:0.04517967725385653 a:0.03163270747819491 :0.3291782979445333 +all:0.7332823362661333 the:0.03095404468777955 of:0.0163051189416781 making:0.011707897339482734 :0.20775060276492646 +and:0.2835052719674033 nothing:0.1348469749535401 are:0.10412167723852742 Not:0.10169564967844251 :0.3758304261620867 +spoke:0.13376693202887568 and:0.052599373305361574 sight:0.03921542526806534 of:0.030879088460557313 :0.7435391809371401 +;:0.029032223467768587 nature:0.021486951470567884 of:0.012090612127466349 them,:0.01142953445142059 :0.9259606784827767 +the:0.3643747014646785 a:0.10256570668432183 his:0.028845640308593042 tho:0.020412592785458098 :0.48380135875694846 +of:0.2590224797101692 and:0.16896920270878907 by:0.16268993355555997 in:0.14519121971413415 :0.2641271643113475 +sitting:0.007957027161812888 and:0.005898536444515813 all:0.005413473561146822 stand:0.005272401461223582 :0.9754585613713008 +fought:0.4227976033732913 and:0.20464482418825772 was:0.06826331259241906 reached:0.054863542448901355 :0.24943071739713052 +country:0.03292733593256184 fish:0.02612861359790987 letter:0.02115262234610191 bottle:0.02015145557208557 :0.8996399725513408 +of:0.2094970175371999 and:0.11151664095921565 the:0.07373757599717239 was:0.06883567248823728 :0.5364130930181749 +a:0.22593109233768005 the:0.10382063742061474 every:0.0274178465216301 these:0.02607099889361243 :0.6167594248264624 +that:0.411528405523076 which:0.1558737939349751 when:0.07626813361329143 and:0.06611398191496085 :0.2902156850136965 +front:0.0367262587255337 bonds:0.025203730500669323 children:0.02424810138398621 stocks:0.0180510780258157 :0.895770831363995 +native:0.39007830090810586 stock:0.15177354077205202 ball:0.07043094506054177 number:0.024142288015414026 :0.3635749252438863 +and:0.09093490749052613 of:0.07930306879021419 the:0.06553183002459302 to:0.032356893561517566 :0.7318733001331491 +of:0.7696462934878271 to:0.16496060592337322 and:0.004518831926475035 life:0.003843638962539802 :0.05703062969978462 +year:0.9945446065994867 years:0.0006825752480880678 months:5.8175138838142864e-05 days:1.6819228357486704e-05 :0.004697823785229606 +a:0.6772646362440575 the:0.08770019631153715 to:0.03292757409188515 n:0.01396776124365985 :0.18813983210886023 +the:0.22024618971155008 a:0.08353875754241633 their:0.030848232137605593 other:0.026054780080632403 :0.6393120405277956 +the:0.2822629540441108 The:0.16096897536317428 at:0.08465223496296974 ing:0.06882428753526537 :0.40329154809447976 +good:0.0320788441212876 big:0.011451627038126591 on:0.005333672881295179 general:0.002302929665925926 :0.9488329262933649 +hi:0.027449461793127954 interest,:0.0009671986511687531 life,:0.0009658070413703099 wife,:0.000758577832033007 :0.9698589546822999 +individual:0.10632591702375832 gold:0.018642506658327396 owner:0.009471735841727147 patient:0.007593601705831551 :0.8579662387703557 +the:0.6519951422320028 his:0.09440817644151178 tho:0.08375033354967933 bis:0.06532932474435364 :0.1045170230324524 +glass:0.018550246883982883 up:0.013701945785037787 was:0.012774274660081486 were:0.012384047314561187 :0.9425894853563367 +the:0.7755676878081286 Republican:0.08897967473861254 this:0.06002968407774464 its:0.025280875350931955 :0.05014207802458249 +went:0.23127784715169816 said:0.14991867834081649 began:0.09053814968214449 attempted:0.08481530090382594 :0.44345002392151484 +us:0.038994091518879725 the:0.0352080371181727 them:0.011523879021875008 our:0.00638719233134208 :0.9078868000097305 +at:0.6880453752467114 after:0.25120347649854696 nt:0.010434781145546494 about:0.007579898175581864 :0.04273646893361332 +the:0.002443244733357567 turned:0.00203149544298486 port:0.0005944489741652935 of:0.0004593253405264969 :0.9944714855089657 +to:0.7925041378553015 let:0.009500507371824295 would:0.009488321840932214 and:0.00808027850850801 :0.18042675442343406 +country:0.03386292031265526 people:0.028288871629983947 State:0.026818354776716277 Union:0.02533484250572235 :0.8856950107749221 +many:0.1737634574208619 one:0.1667774513959945 some:0.12192331283348914 most:0.10800600116952386 :0.4295297771801306 +of:0.1831972515442356 other:0.1332957584001388 hundred:0.04063187557136847 thousand:0.040503894564385814 :0.6023712199198712 +E.:0.2850547619774518 W.:0.26016517654960536 H.:0.059493813543264974 S.:0.04755399846680334 :0.34773224946287457 +in:0.13975610109088576 made:0.09489759284646547 make:0.0796484383435703 gave:0.060208014597187935 :0.6254898531218906 +Mexico:0.04850784863668336 Columbia,:0.018248584699339654 the:0.012025762837509486 New:0.011060918125474106 :0.9101568857009934 +not:0.3542980567337939 certainly:0.2881424730933105 under:0.1383549749384626 in:0.07979549935112384 :0.13940899588330918 +is:0.10615367528637436 that:0.08879131930455315 feature:0.0874094297545488 virtue:0.05956965147673051 :0.6580759241777931 +for:0.3826673663773981 have:0.23330494264593052 has:0.16689903848399001 the:0.08641671136856581 :0.13071194112411566 +more:0.28262763267597607 the:0.23359628813607852 very:0.12962177436594607 an:0.06160004944661298 :0.2925542553753864 +ask:0.40947519196204285 death,:0.21311271579063834 to:0.16543776664630885 tell:0.08040259252626705 :0.13157173307474293 +and:0.2212633913536005 A:0.056753163744431546 I:0.05321208248081816 Will:0.04293877844117016 :0.6258325839799797 +away.:0.5533672261292225 from:0.04746853490752657 of:0.028040152278932213 off.:0.014754900180483081 :0.35636918650383564 +engaged:0.3222366608754762 the:0.128140706962517 a:0.127155633758053 n:0.10897104880941753 :0.3134959495945363 +would:0.2863375324474138 will:0.27247039426049574 could:0.11959149752768809 was:0.07024616407393325 :0.2513544116904691 +to:0.008624925628673114 by:0.002663964731842527 the:0.0019669666095597604 in:0.0019575184865514134 :0.9847866245433732 +and:0.8330327967072206 at:0.014664530573965329 No.:0.009778381160301813 to:0.006128735596366572 :0.13639555596214575 +to:0.2524487062946132 between:0.1924827754384785 in:0.14836668306405365 how:0.129866599970469 :0.2768352352323856 +to:0.779975414803898 the:0.03441205702779697 both:0.025199100150806873 and:0.019118885302244024 :0.14129454271525418 +them:0.05572483149760085 and:0.0431194103072137 material:0.027999856485580718 hands:0.013614923719157773 :0.8595409779904472 +that:0.6875842111002813 the:0.141403833334014 tbe:0.05885808816876742 which:0.015338290141753643 :0.09681557725518355 +the:0.5223749438572243 a:0.31948569224741274 tho:0.03102357446055747 his:0.01031879587975621 :0.11679699355504931 +some:0.6166297580372788 the:0.21745698577537423 6:0.023993415213273764 3:0.023657336556283205 :0.11826250441779008 +the:0.4354292408337264 tho:0.10521639035842127 about:0.08359152027958956 this:0.05498879307933413 :0.32077405544892856 +and:0.15534466326111787 the:0.09912877118109877 of:0.09825229771395418 to:0.04886583585094782 :0.5984084319928813 +the:0.3056271390947446 his:0.09989881582219275 private:0.057827044136724216 Mr:0.04346161444760502 :0.4931853864987334 +hold:0.2583098730306937 lead:0.0256985427434928 go:0.025199466323052713 point:0.021452392300062066 :0.6693397256026988 +of:0.22847479610699414 and:0.15678382268568786 in:0.06958083306210093 to:0.06253490277802655 :0.4826256453671905 +also:0.3677896910548126 not:0.272045725828959 still:0.09126793887715202 ever:0.03213243359038295 :0.23676421064869357 +his:0.28400657676147567 that:0.1573276076321354 such:0.028432703427570347 the:0.019889663573819275 :0.5103434486049994 +upon:0.6126546920881487 on:0.26852114825728046 from:0.038678193919587635 of:0.031924007583615285 :0.048221958151368004 +a:0.43939180185214843 the:0.20167759887637887 to:0.05934423444338659 an:0.04700135540202498 :0.2525850094260611 +and:0.9102606599026656 he:0.016221052250049498 He:0.016210510871682276 aud:0.012340819641169155 :0.04496695733443357 +the:0.2567327122508822 we:0.17223656209233756 he:0.16832129455294645 I:0.16632645554660025 :0.23638297555723356 +lines:0.315127299211903 army:0.1149279267911725 character:0.06558675064063073 value:0.059514872675913086 :0.4448431506803806 +my:0.2195540605520655 Our:0.15490144023049432 the:0.10695736728177856 for:0.07897640095542909 :0.4396107309802325 +be:0.9030685525114727 ba:0.022021741838072453 bo:0.020805135495350263 he:0.018464235070032663 :0.03564033508507177 +is:0.5427599348480401 was:0.21928151692637968 Is:0.003731214940553913 with:0.0026852608551899064 :0.23154207242983657 +not:0.7204640177385864 saving:0.08914351953271771 or:0.013008497456399254 a:0.006225039901428969 :0.17115892537086738 +of:0.45679500961033337 to:0.2012410666698758 by:0.09104180052002477 the:0.07658021264685372 :0.17434191055291232 +and:0.04093979065190118 shall:0.03790547846257258 will:0.023294085663702817 of:0.01965457982277161 :0.8782060653990518 +single:0.13599683383992262 treasury:0.06888198882263724 heat:0.06682208299805165 best:0.061771752525077064 :0.6665273418143114 +and:0.11498570499485883 him:0.06572867409695307 the:0.06322883653034189 yet:0.033268070900995844 :0.7227887134768503 +to:0.6241696530887569 can:0.3600067120252197 in:0.010551015055420792 with:0.0028331453846145126 :0.0024394744459881107 +to:0.8008864661655708 of:0.1589791211241954 in:0.025207782168494095 and:0.008071687698487592 :0.006854942843252048 +general:0.059676645429040165 physical:0.04020977495085638 kind:0.03954413959794097 mental:0.03794634936183368 :0.8226230906603288 +is:0.535390020912 was:0.20837712673252937 becomes:0.09402152994026615 went:0.045068120320217585 :0.11714320209498685 +of:0.8412228841170206 not:0.06878635025920626 equally:0.04367480484653865 such:0.017035455562596717 :0.029280505214637844 +an:0.8771778669178705 the:0.06696220495383705 no:0.01943047381872176 every:0.015166511509191903 :0.021262942800378853 +which:0.46685856524170904 and:0.3015216665658758 had:0.11159615880818101 has:0.03202809420862878 :0.08799551517560537 +way:0.015854497908554695 presence:0.011599486212734317 work:0.01110124454915552 plenty:0.010268463154885674 :0.9511763081746697 +and:0.1205438870753216 to:0.10118661986540442 the:0.09778438826044152 of:0.07989250166596626 :0.6005926031328662 +and:0.10094840446858501 of:0.0876335385807389 the:0.06875060507470307 to:0.03414396202385114 :0.7085234898521218 +Do:0.11911062206826713 Will:0.03555047271488012 did:0.03206656134579108 If:0.028915822824128905 :0.784356521046933 +charged:0.9705660707492261 to:0.007482832179260443 spent:0.0023628080477735903 usually:0.0006357875808852485 :0.0189525014428548 +is:0.3612874200751373 had:0.20300163001726715 are:0.17212733558469645 have:0.12500019510932558 :0.13858341921357342 +supreme:0.056448575989312175 to:0.05156898421021291 great:0.04268162001406196 of:0.03524143890372187 :0.814059380882691 +and:0.0002953800636913967 government.:0.00019126497307407985 of:0.0001202556157344575 that:0.00011494694689447846 :0.9992781524006057 +to:0.20174641992794926 what:0.1199733244314755 which:0.1140141073238376 as:0.034252324685608106 :0.5300138236311296 +to:0.036399102914852474 of:0.025143478391671116 taxes:0.01328631098554092 in:0.010553063685279194 :0.9146180440226565 +out:0.0715027944715446 one:0.050517777209799185 and:0.04276737619300313 affairs:0.028858983402314495 :0.8063530687233387 +be:0.8781153705774598 bo:0.0281795373669538 too:0.012609501211327838 he:0.008106784388631707 :0.07298880645562676 +and:0.12549229698728637 citizens:0.02692299937590103 ties:0.024504953777361206 that:0.018255696594959098 :0.8048240532644924 +to:0.16923735679374355 school:0.1624653069044916 sense:0.05358172303088311 and:0.03728620500113996 :0.5774294082697417 +sure:0.16754694580413407 whole:0.10686708671960732 little:0.07306929810240305 good:0.07064689193154707 :0.5818697774423084 +a:0.1764006433071826 the:0.10248667029827438 not:0.09036859458587242 now:0.07040036270704282 :0.5603437291016277 +believe:0.8646581848246765 send:0.009702732702874603 know:0.0055398435230690326 find:0.002104800009029454 :0.11799443894035046 +with:0.2707240087676576 of:0.22323496432986512 to:0.15432824019666402 for:0.1518828895937982 :0.1998298971120151 +of:0.6252320398031382 that:0.1733650447341808 to:0.05333674647925478 is:0.012785680977049005 :0.13528048800637707 +in:0.47464769462431133 In:0.20016943847981153 of:0.11022016364763626 iu:0.10113259177390627 :0.11383011147433451 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +h:0.24601108197252505 dress:0.18628027514223952 they:0.058768706577390376 it:0.050364762073744955 :0.4585751742341001 +mo:0.237163004500244 left:0.048360302048584644 there:0.046149989572127764 lay:0.03727396189903769 :0.6310527419800059 +The:0.4465834115394234 the:0.32869535299394376 Tbe:0.049128763532671274 with:0.016662617486278102 :0.15892985444768343 +where:0.0670545570300297 and:0.06465962427647524 yesterday:0.043438465820338876 land,:0.043420838329358405 :0.7814265145437976 +and:0.3732335635997805 he:0.12717145973863764 be:0.08271342663732982 were:0.058080686417186625 :0.3588008636070655 +to:0.45223633469497077 such:0.0998691335621348 the:0.08544184600877898 longer:0.06703307714844566 :0.2954196085856699 +returned:0.3465696222787978 seized:0.14974807827602002 it:0.018742361257014766 her:0.018347867559653636 :0.4665920706285138 +wonderful:0.10922730379790428 old:0.09606824011457836 home:0.03599163686470538 own:0.02949050248495753 :0.7292223167378545 +the:0.026662516777729448 balance:0.016247358412196503 most:0.0143413588755259 to:0.012145225775147981 :0.9306035401594003 +after:0.5543826998452703 to:0.05921521580585798 and:0.028063886305635548 the:0.018663406767367077 :0.3396747912758689 +who:0.1435644475165677 burned:0.02879830957083631 informed:0.00786478649070917 States:0.007843732593509931 :0.8119287238283769 +and:0.08995174863041372 also:0.026298452560540374 it.:0.014813413074048012 day.:0.012608019341591966 :0.856328366393406 +along:0.39576708398191435 with:0.36691601229994425 on:0.1326461799217622 leaving:0.054884944885936746 :0.04978577891044243 +but:0.2762624655551173 on:0.25621383992569147 and:0.21054254181697526 from:0.0825928206803882 :0.1743883320218278 +direction:0.21670969944343274 middle:0.060168273816504775 name:0.05131077682046744 presence:0.04467999717998159 :0.6271312527396135 +and:0.10351271844963511 ly:0.08459587364867317 directly:0.024496535792932532 are:0.02114829270220968 :0.7662465794065494 +his:0.3750110189389504 a:0.34711478086309144 the:0.09631367341156662 on:0.06076819303813426 :0.1207923337482574 +the:0.7353865120678742 a:0.0868993402361358 his:0.03492514749125848 tho:0.033006115956657485 :0.10978288424807418 +said:0.02551661926779035 public:0.018472343561924114 same:0.016407448297783893 the:0.012450528908386368 :0.9271530599641152 +and:0.6836572399915333 of:0.09420808378682378 to:0.06459621575338446 or:0.04942712025086943 :0.10811134021738902 +W.:0.11120705670347333 H.:0.021649189684042527 and:0.01741365830935806 S.:0.016866990628820695 :0.8328631046743054 +or:0.027158428800565834 and:0.01602711842854932 Johnson,:0.007016582859791241 Smith,:0.004348184279506197 :0.9454496856315875 +the:0.6346323151878763 a:0.131357527391188 any:0.12729156575911793 our:0.061534448179476266 :0.0451841434823414 +the:0.04049785284479879 power:0.03963370143195196 located:0.03301686316281668 others:0.03270688633829802 :0.8541446962221346 +and:0.10828820357875554 providing:0.06590116052087147 funds:0.027835456083546217 or:0.017672907038942625 :0.7803022727778841 +upon:0.24965459707516993 house.:0.1961703796294022 of:0.012275711996652176 in:0.007412280655300481 :0.5344870306434752 +of:0.2830301519582638 and:0.10301172442819506 the:0.05056903437937206 to:0.027973426120581676 :0.5354156631135875 +a:0.30755855291688833 no:0.2995455479705254 to:0.04623935184960728 in:0.04216626849212594 :0.304490278770853 +township:0.9484186321921925 Township:0.019139396739221486 square:0.016039900434897704 number:0.010497715119512311 :0.005904355514176036 +brought:0.19848211254019327 entitled:0.0898463998556053 changed:0.07614792128165593 used:0.058601515327244724 :0.5769220509953007 +the:0.266495491340687 she:0.20494672458243235 he:0.06670259271743952 a:0.042192345538965996 :0.41966284582047525 +road:0.19059675367715082 with:0.08586474294209424 grounds:0.06805939340921704 of:0.017111492565556316 :0.6383676174059818 +of:0.38131403413587556 the:0.22162348668118273 true:0.08015465998059709 both:0.07364874503773465 :0.24325907416461012 +use:0.018634230744231997 time:0.016842314483812636 efforts:0.012582336774225817 good:0.012554915090409131 :0.9393862029073204 +hundred:0.9188862394840506 dollar:0.031397117475543156 thousand:0.001633743256572557 dollars:0.0011195830104892006 :0.04696331677334447 +hope:0.043274795873204736 plans:0.02350952500456951 kinds:0.02066867318951984 the:0.013617410624006647 :0.8989295953086992 +on:0.266753564559325 1:0.11263978756816251 is:0.0976784262132242 all:0.04710178306029573 :0.4758264385989927 +medicine:0.15048728714486068 some:0.12955794035423007 of:0.06617494722283403 claims:0.04597310114588477 :0.6078067241321905 +the:0.08720633886433436 boy.:0.047263446487426315 girl.:0.04158241908820955 lot:0.04084849657551974 :0.78309929898451 +between:0.12586963166694098 tbe:0.07508972725609915 the:0.056302470395122324 these:0.04025597852676134 :0.7024821921550761 +principles:0.0375368254070209 office:0.03551392011650041 convention:0.028204376398164588 House,:0.021742875032738772 :0.8770020030455753 +opposite:0.37458500025315933 east:0.23451312323045032 south:0.1411778977752752 west:0.11641513196181678 :0.13330884677929833 +a:0.258244160545195 some:0.17182963454358957 his:0.12866968888382602 the:0.09243793500833421 :0.3488185810190553 +of:0.3147234402392413 and:0.09715758569713057 the:0.04791153344499961 was:0.046817686164483764 :0.49338975445414474 +the:0.7517018909357404 see:0.01853888579280123 a:0.011686921869451514 make:0.007242736285873659 :0.21082956511613307 +and:0.11099940636384913 to:0.10911103177322073 the:0.06333430113693 of:0.04785390947612336 :0.6687013512498768 +the:0.7617318799652419 a:0.056524935272705815 tho:0.0316708165336196 tbe:0.016238441006957347 :0.1338339272214752 +no:0.9995918305631751 such:0.00018024928677796157 the:6.6245770784795e-05 every:5.296552613725018e-05 :0.00010870885312488943 +was:0.1861231941522153 has:0.13622373915070882 would:0.10586879360621634 is:0.09998283371736309 :0.4718014393734965 +many:0.2361510543906872 far:0.11238991795132935 to:0.07799367996668129 the:0.060156653645590155 :0.513308694045712 +As:0.10447802502282448 road:0.02957627151949704 equal:0.012772265584313321 and:0.00954903019689009 :0.8436244076764752 +the:0.6243853519348579 said:0.09699199293355161 with:0.047090465328527426 a:0.039482658319093984 :0.19204953148396917 +the:0.011922154112681877 The:0.001644403051426066 and:0.0014289580356874438 of:0.0010595516251577968 :0.9839449331750467 +would:0.7212166865357458 will:0.1880966683579902 always:0.026849317915483076 should:0.019646998563651562 :0.044190328627129426 +and:0.44260732228758143 simple:0.12008575587562843 rich:0.017068217136096152 plant:0.006750723174952767 :0.4134879815257414 +the:0.4854211713947381 tho:0.1634297749551256 them:0.11651387130768251 those:0.08345843695034863 :0.15117674539210516 +and:0.12547085206883857 to:0.062190050245139294 of:0.05623668176908935 in:0.05591593830994703 :0.7001864776069857 +without:0.2664587455831412 and:0.22671990977564083 out:0.2236347636683453 to:0.1009364944174981 :0.18225008655537456 +20:0.4072123444718751 fifteen:0.2635021891109933 three:0.10868490950067512 10:0.07945026200505147 :0.14115029491140513 +the:0.2637845589474507 This:0.032429683091031815 We:0.03235149002627091 The:0.023453454282722986 :0.6479808136525236 +home:0.170138204039485 running:0.087782123871712 street:0.05667601312126925 character:0.03224880968811045 :0.6531548492794235 +States:0.8221795090203518 States,:0.0003019580751015122 State:0.00023360039382541028 the:0.00015747732619025089 :0.1771274551845311 +and:0.14120783617908714 to:0.06968413476720567 the:0.04011134413314759 of:0.03948124666777239 :0.7095154382527871 +not,:0.11976125981767312 com¬:0.09393996904662966 a:0.08715198033837367 to:0.06596502060524236 :0.6331817701920811 +just:0.24922520566906728 and:0.16441699313228678 but:0.049267524542082046 news:0.026047442857151243 :0.5110428337994126 +of:0.4262577212059928 and:0.11140317788500388 for:0.10443899353794209 in:0.06429343241024724 :0.293606674960814 +and:0.19725479062084536 of:0.05764320861889465 the:0.056912303790073566 The:0.048323292017815836 :0.6398664049523707 +an-:0.03532524842768158 action:0.019781583553617862 easy:0.017797576877867535 old:0.012206929990214237 :0.9148886611506188 +an:0.7519844176111371 An:0.08272284254424597 one:0.05170603170879637 the:0.047974958337825946 :0.06561174979799451 +about:0.42842435347221647 only:0.2715633503501277 south:0.07188409152920974 containing:0.07075772700775579 :0.15737047764069034 +ments:0.06896286491539785 send:0.0669269271934207 bounded:0.056035360231607045 record:0.028445395533735447 :0.779629452125839 +on:0.32404886147713147 of:0.12155718916032514 in:0.07946895694629778 have:0.07893855148275507 :0.39598644093349056 +and:0.12280780076169216 of:0.1087500703958101 to:0.08595999764289196 the:0.043176955140744946 :0.6393051760588608 +the:0.31566852955692554 very:0.2626961357564195 at:0.06232906564642538 of:0.028285325866525723 :0.33102094317370395 +land.:0.15482637058502843 and:0.02971032228271122 but:0.025737640168071264 i:0.021414521853229607 :0.7683111451109594 +the:0.355986897065926 by:0.1885045113988037 to:0.1735276165323675 of:0.1470174193283794 :0.13496355567452337 +with:0.3338425580131881 of:0.10959063017176181 along:0.100351448351739 ot:0.022781414194738857 :0.43343394926857226 +the:0.6219757475010579 a:0.08749142139535568 every:0.04145842747877003 ing:0.030632824249897418 :0.21844157937491882 +member:0.20316368013195255 ber:0.19374324454634856 tion:0.06162805213666615 meeting:0.05260473009355708 :0.48886029309147566 +;:0.022827313683792018 and:0.014528644609969794 me,:0.010983929217282648 me:0.009306026021617043 :0.9423540864673386 +he:0.3436528472504422 it:0.25952460152729573 1:0.0844395729177153 bad:0.04970607763819947 :0.26267690066634736 +the:0.22792869473908373 and:0.10378263589025756 a:0.053883125799059316 to:0.03584689615791205 :0.5785586474136873 +were:0.28432048519564806 are:0.22437388178027678 have:0.20341216107191612 went:0.07440932335288622 :0.21348414859927287 +over:0.11441280975638744 exceed:0.06266731026138558 to:0.01741185603488129 expect:0.015470753457979138 :0.7900372704893664 +the:0.43004207793828436 tho:0.062191529410873345 of:0.04923628531797496 human:0.04505008511636538 :0.41348002221650193 +the:0.6376570594930547 a:0.05682308848193862 his:0.056800285942215895 tho:0.052922137351168415 :0.19579742873162226 +are:0.32453522678939584 were:0.2656295541805981 is:0.2592892585195801 was:0.08909638999988327 :0.06144957051054267 +of:0.26545976449962244 The:0.13103860770892645 and:0.12972501263043085 the:0.05821135864446949 :0.41556525651655085 +of:0.39875306634339536 in:0.3120676209712208 In:0.0989129407909524 to:0.05627185594658579 :0.13399451594784567 +is:0.1285755793109088 and:0.07000427671685616 are:0.03470707573465977 was:0.02685619572881873 :0.7398568725087565 +and:0.04859051722340291 attorney:0.02931068444160417 movement:0.02670762251922254 that:0.024436177809482214 :0.8709549980062882 +ice:0.3851372038978365 bank:0.30245983008025157 the:0.18249328666434517 those:0.019248595824234372 :0.11066108353333226 +fair:0.7380724298032695 justice:0.07773690231786762 known:0.07032104304854746 good:0.024092004878402205 :0.08977761995191323 +and:0.12693051723342574 purpose:0.03586307146783656 purposes:0.028212700060784704 that:0.02079682292853466 :0.7881968883094181 +to:0.8237685775447363 and:0.033631148985858846 forms:0.028990724207558938 will:0.025396952815979486 :0.08821259644586635 +the:0.09938581833775932 of:0.08939520432472953 and:0.06151921529946179 was:0.05830938333472107 :0.6913903787033284 +been:0.5735558735187279 be:0.3338463751753962 are:0.01529335368207577 is:0.010130760803157154 :0.06717363682064295 +conclusion:0.5099925715018605 opening:0.02300667517213763 same:0.019383593048200545 appointed:0.014206634099520598 :0.4334105261782808 +and:0.14591922673275504 the:0.08769631399340815 The:0.07289916753062743 of:0.07081196976310601 :0.6226733219801035 +them.:0.010441272218308555 ground.:0.007675986906791233 T.:0.0036584821195018015 from:0.0033685464001980154 :0.9748557123552004 +a:0.12639843788936025 He:0.06705443975888789 conditions:0.01819560248163833 or:0.013058021535606649 :0.775293498334507 +to:0.44776572775763973 by:0.32525402833112105 bv:0.16180290544870232 the:0.048881121098059255 :0.01629621736447767 +of:0.15836214801449755 and:0.04925972222123078 to:0.03518709486506118 at:0.03398019734612353 :0.7232108375530871 +and:0.17754654338779274 as:0.16606676173189458 that:0.08222926145180312 but:0.06441183548376486 :0.5097455979447448 +returned:0.053765570598819014 on:0.03810527434473509 in:0.029073388915521192 passed:0.02895352540411864 :0.8501022407368061 +loss:0.42230543387193137 standard:0.04563973119047892 great:0.040298156494957826 death,:0.00839261887461508 :0.4833640595680169 +The:0.5169301585850318 the:0.060284685635905375 tho:0.018064568186795978 Tho:0.01340711291653881 :0.3913134746757281 +the:0.5472165304025375 said:0.06421112292230487 all:0.05552180526761645 his:0.048079826814040084 :0.28497071459350104 +people:0.0512302044881325 plaintiff:0.0477961914114668 parties:0.04670852062236152 latter:0.03756633851467781 :0.8166987449633615 +to:0.37962573580814296 for:0.1875228560659026 from:0.1866951182137733 if:0.08591066576047952 :0.16024562415170168 +the:0.36992118167718857 tho:0.13468751186759637 a:0.0789285098713432 his:0.03781238816663604 :0.3786504084172358 +of:0.024448729451901952 formed:0.004076003068868276 state:0.0010200257733821902 trust:0.0005580906234317479 :0.9698971510824159 +came:0.08472312897717901 went:0.07389584194304152 had:0.07300476744236725 was:0.04789741176671987 :0.7204788498706923 +the:0.021633084244657624 health:0.010483089785670429 him:0.007092533849777473 make:0.006436692413661384 :0.954354599706233 +year,:0.0019179986201421475 of:0.00186362732436179 way,:0.0012432954647704185 way.:0.0008067860295749721 :0.9941682925611508 +the:0.4499907106884834 pleasant:0.1344169435081305 satisfactory:0.09977736683136773 their:0.08585480772038898 :0.22996017125162943 +the:0.310820723493554 a:0.19758652686407685 Mr.:0.0716357922610257 an:0.045458583095532475 :0.374498374285811 +notice:0.9807458593409055 land:5.6474868934109075e-05 plat:5.544022282128662e-05 third:2.532484191376472e-05 :0.019116900725425226 +the:0.8503027731949495 tho:0.04955080719234234 a:0.04884391498106884 tbe:0.011278118293328481 :0.040024386338311034 +the:0.35515172824411384 be:0.0813281059291242 a:0.044320869600724185 his:0.02926403246289196 :0.4899352637631459 +that:0.7612527332336428 of:0.22276409950039455 in:0.005248115668796712 and:0.0032371308259758684 :0.007497920771189861 +which:0.3377904570032403 what:0.18592270615761497 me,:0.06676609354984146 but:0.04504261846082551 :0.36447812482847775 +to:0.10070528577325095 the:0.0632584878222129 a:0.05699780778610584 and:0.05452066140504148 :0.7245177572133886 +and:0.04081481682184538 died:0.025310271465858347 published:0.022518517678881782 held:0.02091676622252317 :0.8904396278108911 +A:0.9980277532331656 and:0.0011966341447887004 One:0.00025721619006473164 a:5.5053701834142306e-05 :0.0004633427301467014 +and:0.12366781866198134 Lake:0.08682413697537837 of:0.0768979408988624 the:0.06326424022520616 :0.6493458632385718 +costs:0.801396775766028 interest:0.1785873118243181 de-:0.005610333742826007 the:0.001240050799758567 :0.013165527867069272 +and:0.14856623817556217 found:0.11908491469868837 that:0.11001987348745951 work:0.040293805457428354 :0.5820351681808618 +this:0.23429879627968567 of:0.18988542623848814 that:0.1551130112986193 the:0.14609397629289944 :0.27460878989030746 +and:0.9289567049847552 debt:0.051475973674593445 amount:0.003272128593522426 ami:0.003184664483019218 :0.013110528264109718 +the:0.11719153574490429 and:0.09305648218892579 of:0.08604718274569562 a:0.0687629451337911 :0.6349418541866831 +effort:0.3645092349924616 man:0.10197096805520708 desire:0.09040011544659586 blow:0.051215933341180894 :0.3919037481645546 +cent.:0.3801535929034966 100:0.03637144471141698 cent:0.013793681908122033 day:0.010628112485453402 :0.5590531679915111 +and:0.03741150104768193 the:0.03164258961470736 was:0.016799290101132274 a:0.013289322031529969 :0.9008572972049486 +National:0.9383108163357544 State:0.05500355931637582 tional:0.0001476466160945734 the:2.339362022109042e-06 :0.006535638369753152 +the:0.15153357136486964 to:0.10510197678748957 and:0.0753271472829111 of:0.07382715436111306 :0.5942101502036166 +name:0.06917313197833741 death:0.06204309365757455 presence:0.04994479507716054 hand:0.03929404628682547 :0.7795449330001021 +of:0.3329768892211661 a:0.12592730618992234 and:0.05759066666359085 the:0.044350084136637845 :0.4391550537886828 +the:0.39367971698055204 said:0.13435560232525845 a:0.09966942067552254 tbe:0.06660302464393725 :0.3056922353747297 +18:0.8890338906358023 6:0.035350000323645075 3:0.028815504970340067 4:0.025192118998245992 :0.02160848507196648 +do:0.47206758131543897 hear:0.14163200311414384 help:0.11390377969525982 stop:0.11375627726020433 :0.15864035861495301 +great:0.08423728319983201 damage:0.04809431408053309 diseases:0.01338292535925683 it,:0.010735049880811217 :0.843550427479567 +that:0.7581862078974142 o:0.19440056727127641 of:0.019803499543062836 to:0.016311721164153872 :0.011298004124092693 +a:0.18815550466791225 worth:0.08488866518116467 knew:0.08162408229465815 to:0.060395648729829075 :0.5849360991264358 +He:0.1435726093763983 and:0.11293201420821151 he:0.07914326996107965 who:0.07365370341517224 :0.5906984030391385 +and:0.18076712397799605 of:0.160302962172762 to:0.06540584251340026 the:0.06078838750750754 :0.5327356838283342 +may:0.6211926120006265 would:0.21258259343286703 will:0.09482928149341403 should:0.0523411047509452 :0.01905440832214738 +of:0.15853239207213377 called:0.12148380547089462 gave:0.10289865957703673 struck:0.0930671795340222 :0.5240179633459126 +themselves:0.8500325121548249 this,:0.0648274643434977 business:0.02309156947461412 so,:0.018675551441099694 :0.04337290258596344 +short:0.08895961989333863 new:0.042719197606392485 the:0.021546959713915417 great:0.02020693437957229 :0.8265672884067811 +in:0.11180692185535203 on:0.08189588379473435 as:0.06274384625570756 upon:0.045525620492506864 :0.6980277276016992 +one:0.06064782453574598 out:0.05039362449944344 some:0.03403998923878629 the:0.033429059830270585 :0.8214895018957536 +part:0.19800236305584404 manner:0.08763655495353279 portion:0.07361824256047045 schools:0.052790496296424176 :0.5879523431337285 +is:0.698356892633599 Is:0.21349976267416232 was:0.052987713399582796 are:0.009519923416869792 :0.025635707875785965 +the:0.4265203159808482 his:0.04913969221938033 a:0.041619626124371915 tho:0.026296778924630247 :0.45642358675076916 +be:0.9987083303182948 in:0.0004250567667852525 bo:0.0001868145505766852 not:8.637268198359012e-05 :0.0005934256823596237 +the:0.44780716294890277 a:0.1887826638891506 an:0.03735507349395602 tho:0.02396652358316076 :0.30208857608482975 +death:0.01771717468772455 open:0.01354503012593525 water,:0.011276928278267548 stone:0.0100364676825174 :0.9474243992255553 +occasion:0.43942883129049215 attempt:0.018021809763579203 article:0.013426170786805774 opportunity:0.012324036831575184 :0.5167991513275477 +light:0.0051272953661022904 scribed:0.003639182793234368 lay:0.0005810230724724956 sign:0.000347392694362379 :0.9903051060738285 +and:0.15150974664124414 the:0.11550102504524154 of:0.07470655051706371 The:0.0728106161396126 :0.5854720616568381 +marked:0.5061919257443754 stated:0.06547228639543401 only:0.05961941092714673 arranged:0.02555431893599238 :0.3431620579970515 +fact:0.5694936756086884 cause:0.4013781546836679 country:0.007516300258632785 man:0.0012513288767876333 :0.020360540572223498 +one:0.6268604151000197 the:0.24121941372483355 his:0.06167025647329635 their:0.04277703967994731 :0.02747287502190324 +the:0.1018493804419866 to:0.07773601423227428 a:0.07361763934296556 of:0.04443453259808074 :0.7023624333846927 +more:0.0724895766854711 small:0.032404391128276595 few:0.02993127877604784 personal:0.026472806702380492 :0.8387019467078239 +go:0.35813331246187335 be:0.28844569086579724 live:0.041592866572505556 get:0.021956040153251696 :0.2898720899465721 +know:0.30916557123670196 those:0.08815150704678076 see:0.08770244844528961 say:0.07922983362061795 :0.4357506396506096 +people.:0.6581320998396207 government.:0.0015476817895428718 society:8.925596025467518e-05 way.:7.630201580003241e-05 :0.34015466039478176 +other:0.9475667411233201 political:0.011638062241599073 ordinary:0.0035649207013049547 possible:0.0033067046012318453 :0.03392357133254392 +It:0.2201492835166472 This:0.12517462617473737 which:0.09428624568330678 it:0.07677177819218421 :0.4836180664331244 +of:0.9207261864617454 for:0.041836206010093205 on:0.02047736923690086 and:0.007270397802740943 :0.009689840488519511 +is:0.6589615897662093 was:0.2639299165681273 seems:0.0444254977656624 not:0.01562073266776411 :0.017062263232236894 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +and:0.00849991431536391 thereon:0.008346801207200456 farmer:0.00600708716762304 the:0.005333790546709398 :0.9718124067631032 +she:0.10152524248284274 wife:0.0713324048542906 What:0.06703551423712988 as:0.06365619505019182 :0.6964506433755451 +to:0.2565683960250611 should:0.19398409685871615 control:0.12165449119670586 object:0.03497691575952611 :0.39281610015999063 +of:0.23237071587054184 in:0.1318637684212816 the:0.09886075655827965 thing:0.0753329574296751 :0.46157180172022166 +satisfaction:0.08151823783233303 official:0.024641438289278193 of:0.012666013011955727 railroad:0.008304918186447043 :0.8728693926799861 +&:0.7172252102108808 A:0.007778783750905042 Co.:0.0028728729829505333 of:0.0014535511443340178 :0.27066958191092977 +waa:0.1026606801727493 them,:0.020412631718966734 him:0.017824305153423346 in:0.01426611836136361 :0.8448362645934969 +property:0.2852090110250167 State:0.0809349292172502 land:0.06499092870733209 state:0.04929695186952053 :0.5195681791808804 +that:0.29361472274124917 of:0.08290363073298287 so:0.08183129764341483 if:0.07518357332415516 :0.46646677555819777 +States.:0.6716153082573706 men.:0.02287819656173936 people.:0.01347711353256873 ment.:0.00279035674566032 :0.28923902490266096 +could:0.8689655679243272 know:0.05499443607896829 do:0.030580417419242834 was:0.020825674900845158 :0.024633903676616574 +and:0.06461991892268454 was:0.01496649666058677 is:0.013618826885641911 or:0.01052705592863977 :0.8962677016024471 +had:0.572434657600177 has:0.27764043274557165 have:0.09507597411809934 was:0.028309615251337676 :0.026539320284814313 +she:0.8002305175711683 the:0.060420051862224086 a:0.03264185308165162 I:0.016139738911008537 :0.09056783857394762 +entitled:0.2075975214498186 liable:0.12873689987129314 subject:0.12515435331482858 allowed:0.08781167103478624 :0.4506995543292733 +San:0.4547935378190821 healthy:0.12474220354009075 long:0.08372123859531835 newspaper:0.05323801692592133 :0.2835050031195876 +In:0.20955309664467797 lu:0.17134638897415477 lie:0.04082826606873127 1:0.018178478550451693 :0.5600937697619843 +to:0.5578063842264084 To:0.0265651982687139 and:0.025834315508048888 any:0.014575613207128715 :0.37521848878970004 +States:0.7553387247899847 States,:0.10205974854364676 States.:0.008952618944536505 states:0.006347243030768395 :0.1273016646910638 +window:0.5385983980901048 air:0.12067037131245821 streets:0.10493915082525875 mountain:0.09951275824613603 :0.13627932152604205 +.:0.0029735969252734275 on:0.0027972532319056618 bodies:0.002272345953573931 men.:0.0009127815505573232 :0.9910440223386897 +a:0.11081489652030342 good:0.09850800101067785 the:0.04644167579621478 work:0.027738955246031368 :0.7164964714267725 +business,:0.010622618343402352 benefit:0.01022007021771026 life:0.008090370187190624 interests:0.0077688337185559475 :0.9632981075331408 +when:0.1955010065911404 and:0.012048586849720736 as:0.011709138265860187 but:0.009089959886186681 :0.7716513084070921 +to:0.17554154323819668 such:0.16853485926698297 by:0.05535030089172278 that:0.04766428894317918 :0.5529090076599185 +to:0.9671001455054269 not:0.027967268550884557 tu:0.000655682554887484 lo:0.0003626884726346185 :0.003914214916166362 +the:0.10130883841803064 to:0.0587505965133668 and:0.057612015974908594 of:0.04378573474912784 :0.7385428143445661 +After:0.5775374034998574 mouth:0.0951436691194185 and:0.07710222263231091 for:0.06725402786405808 :0.18296267688435522 +for:0.24610857028546587 For:0.18712088573133345 after:0.1799206189408004 and:0.1504496507966982 :0.236400274245702 +home:0.011246696694475476 come:0.004539582739690569 good:0.0033493715563145217 girl:0.0032989448188169485 :0.9775654041907026 +friends:0.10748156599909679 citizens:0.09760733771165454 members:0.09724376633091547 people:0.03068105596003706 :0.6669862739982962 +but:0.4802480984277062 to:0.13144013318696252 of:0.07952446056039708 on:0.07712242074341949 :0.23166488708151484 +-:0.1954780278245289 sure:0.02568377370975426 to:0.01690356828781672 a:0.009446617757876573 :0.7524880124200237 +pleasant:0.42479996715461354 up:0.2172875326620435 reported:0.04373198369113991 said:0.03214490529113939 :0.28203561120106374 +say:0.11961389789567203 believe:0.10888840552127874 be:0.08537896556273143 see:0.07327291527123748 :0.6128458157490805 +wife:0.2183005749471905 face:0.10063978764766884 way:0.041168046061829736 hat:0.02057940103093688 :0.6193121903123741 +of:0.33102821804901283 with:0.13510165095697024 and:0.10926176382378056 in:0.1090002150859613 :0.315608152084275 +the:0.9619239853340504 his:0.03342996464553008 tho:0.0016871846342756767 of:0.0008224274823676916 :0.002136437903776086 +movement:0.24490726440930885 field:0.024722901273212448 point:0.023835632557602907 board:0.02144840142763984 :0.6850858003322361 +of:0.1750798439888038 as:0.13346333451144538 and:0.10410966289096504 to:0.03996272771511883 :0.5473844308936671 +and:0.18258537899504512 the:0.10123383737823925 of:0.07093686593075885 The:0.06967084538402048 :0.5755730723119364 +with:0.6348711827819364 and:0.10704753077052129 under:0.10281878316368208 to:0.06474485457286705 :0.09051764871099312 +quarter:0.10340080402129798 parts:0.027054805468847743 feet:0.026340074409151464 miles:0.02499019951729663 :0.8182141165834061 +is:0.24491484805571584 are:0.17515065527649848 was:0.1518659840117052 and:0.06349553330072615 :0.36457297935535427 +a:0.9411085470737186 A:0.02014710930297762 the:0.01440648681471635 has:0.012692756482212025 :0.011645100326375458 +entire:0.02489550869955979 the:0.023178867852258506 whole:0.019265282278665256 great:0.01699341270654479 :0.9156669284629717 +than:0.2832234620440919 of:0.26103479953136255 in:0.20913727015040745 be:0.09678973766423392 :0.1498147306099041 +the:0.06864094745120018 that,:0.048572970130923765 right:0.037126333080508764 well:0.02149150190110198 :0.8241682474362654 +to:0.7260355355333068 and:0.05260996902905768 or:0.02067729122308382 of:0.013876458075889924 :0.18680074613866177 +for:0.9835319956208385 lor:0.011693152512629942 tor:0.0009389337939069126 to:0.0009305688491867616 :0.0029053492234381115 +the:0.04626763178101001 of:0.026909215973495 and:0.019169393886957802 man:0.010523647001878987 :0.8971301113566582 +and:0.13794756286750823 M.:0.07035184923049793 S.:0.03806042897970705 J.:0.034618479970486504 :0.7190216789518002 +may:0.14928736241016277 Yet:0.10292402792630745 and:0.10051986444338162 history:0.06847155268219995 :0.5787971925379481 +tion.:0.22213160265311124 and:0.12449174401570019 are:0.12063528481903239 is:0.11609610701499473 :0.4166452614971614 +to:0.9998022244172972 will:0.00011984808382988972 should:2.7410796626720678e-05 would:2.6120733893018995e-05 :2.4395968353206485e-05 +in:0.07142439982884631 to:0.05932673487502117 of:0.058633566627064586 that:0.05486022848024173 :0.7557550701888264 +which:0.26795054642024446 there:0.03645467782349448 the:0.029253912911237016 it:0.022174831221831674 :0.6441660316231924 +which:0.029171504348506083 that:0.0020217474681999007 life,:0.0011973362620371442 the:0.0010400050529569926 :0.9665694068682998 +the:0.7121919696368344 no:0.11915459261110734 any:0.04047287143701103 this:0.01259893984437787 :0.11558162647066932 +upon:0.5422543842367983 in:0.01850052277230356 give:0.010555945156459174 of:0.004963047036206588 :0.42372610079823225 +be:0.9895035612245704 he:0.007650058860105748 bo:0.001985555706884457 ho:0.0006248091892618671 :0.000236015019177465 +of:0.535121113664983 and:0.3595507709029605 to:0.03737331128371961 or:0.012608485220349464 :0.05534631892798726 +will:0.22571147025321628 shall:0.07087384867227546 can:0.05352611482911343 Will:0.03607393110009747 :0.6138146351452972 +medical:0.5888645584546409 legal:0.30316171765692856 of:0.009518068535653667 known:0.00556058549625539 :0.09289506985652138 +thence:0.8020391332424122 street:0.011632624563757408 land:0.005319156750563166 wall:0.004201596770039675 :0.17680748867322738 +telling:0.06508535502678217 to:0.05152332266503514 and:0.014940291198683673 with:0.014467544099105176 :0.8539834870103938 +on:0.5964192424673537 died:0.02474607776084665 last:0.0018792331537606094 and:0.0007189226610129129 :0.3762365239570262 +Beginning:0.9389323145847978 beginning:0.03133155162807136 one:1.4122274002731655e-05 I:3.607530970460181e-06 :0.029718403982157686 +first:0.32799648419395794 second:0.26752158899111533 part:0.0714126978268153 own:0.0630996797002985 :0.26996954928781286 +late:0.044187444324572875 the:0.03276097852003064 United:0.02806448691446702 said:0.020037555839934443 :0.8749495344009951 +four:0.8315833161816399 the:0.013367876306441425 more:0.012729487804164923 a:0.00453555531127006 :0.13778376439648365 +church:0.04465781251125777 public:0.04237071109929512 city:0.040883251333144806 situation:0.027971615530114003 :0.8441166095261883 +ing:0.09841338429215615 against:0.08367771404655618 himself:0.036628692224151674 as:0.035068740313248935 :0.7462114691238871 +action:0.0428449125985601 waters:0.03041245741052456 Board:0.0188424461488785 use:0.016968636242828766 :0.890931547599208 +and:0.33216416109014085 being:0.26910862410985925 against:0.12278886405489617 ordered:0.11205133690291301 :0.1638870138421908 +and:0.2097120772918879 of:0.19551530824123536 in:0.06556814450662171 per:0.05931276266330276 :0.46989170729695234 +work.:0.4705871188477987 of:0.06959612245318511 is:0.019865404297357 until:0.011059032739906022 :0.4288923216617532 +would:0.9085095418664505 was:0.03720914609083665 might:0.02618380879312984 had:0.0105142907763415 :0.017583212473241662 +proposed:0.05047715852740899 required:0.049076946171521314 to:0.029935559588814397 given:0.025871681694575713 :0.8446386540176796 +in:0.9998757244243055 any:4.2597214814863874e-05 no:3.1262899344796897e-05 th:8.084948307501592e-06 :4.2330513227524704e-05 +the:0.568459032421171 which:0.04137307860785443 our:0.036386696094073474 all:0.019319322605460695 :0.33446187027144053 +the:0.5803658723496068 St.:0.1189185298263616 a:0.022473673718700963 tho:0.018477570141162043 :0.25976435396416864 +and:0.05519596194093577 E.:0.028606481908040507 of:0.02764588468667191 30:0.0267753902137222 :0.8617762812506297 +fact,:0.10710543336528702 me,:0.06477721102055384 out:0.051760914682288266 body:0.03717504115359374 :0.7391813997782772 +it:0.4344161153607782 they:0.1656720107964119 he:0.12378493367719202 there:0.09074101204088236 :0.18538592812473548 +any:0.0023438900303440363 it.:0.0013679067405343035 A.:0.0011266046545352264 the:0.0010684247084755364 :0.9940931738661108 +his:0.6997652609848557 and:0.18429875669812457 a:0.02906509189318053 bis:0.027980565273889417 :0.05889032514994975 +and:0.644364883190145 held:0.030669109087842043 said:0.016754955281272303 for:0.012599912886516695 :0.295611139554224 +the:0.5611201446301705 his:0.21266169837205534 a:0.09007464753664772 The:0.03067227440318613 :0.10547123505794058 +weak:0.05232864078216957 happy:0.01304273476536043 advanced:0.012579263426416878 showed:0.005990878804458394 :0.9160584822215949 +lay:0.9675472225457671 be:0.0024936595679086017 the:0.0013703134743423382 go:0.0012559908793202677 :0.027332813532661572 +such:0.041939005794598944 likely:0.006378766016199634 believed:0.002179428920173405 so:0.0018627334201283053 :0.9476400658488997 +and:0.04091769619153306 them:0.011773102206460403 were:0.009432044632910528 him:0.009254955645254508 :0.9286222013238415 +reply:0.2511668699600301 relation:0.24928112935309507 reference:0.13813964453019342 order:0.05643487710211947 :0.3049774790545619 +of:0.5014960802283458 in:0.3563410475239013 In:0.04804610835033122 for:0.02250682057035231 :0.07160994332706946 +of:0.3349144675601631 and:0.11489904835103605 in:0.08570867631937683 In:0.0642146037898859 :0.4002632039795382 +belief:0.21807628954374447 one:0.08659113562585588 a:0.08489091666396918 several:0.06530231622874516 :0.5451393419376853 +per:0.9998832076447586 er:4.544794484727278e-06 par:3.8831077329887244e-06 per-:1.456949254938447e-06 :0.00010690750376884651 +rather:0.3514399753515169 not:0.1449478554820768 but:0.044418412939547854 already:0.03917707385169984 :0.42001668237515866 +red:0.030499488974518967 sold:0.02008190236600492 that:0.017461056619954254 looks:0.01629981296443757 :0.9156577390750842 +said:0.02432485109056024 north:0.014067762901851919 latter:0.013657146085618434 now:0.011563807216661753 :0.9363864327053077 +say,:0.014856552740067171 the:0.011510086771622484 Now,:0.008487930329801954 promise:0.0027600707058154242 :0.962385359452693 +the:0.020251571121800094 life:0.004821855639506812 gold:0.004289479277707421 a:0.004115730197371275 :0.9665213637636144 +have:0.19435015293972438 do:0.15779741743489328 than:0.13634427711886407 did:0.11413959432738803 :0.3973685581791302 +to:0.06957330867171027 than:0.037103289182078635 was:0.034616778863147464 about:0.029986290026665027 :0.8287203332563986 +and:0.04172707867331462 in:0.021071554839406544 be:0.018736558928436717 of:0.017379846576716016 :0.9010849609821262 +room:0.04679775602280202 good,:0.021265456815562956 of:0.011580296174025022 ground,:0.00984167588592011 :0.91051481510169 +the:0.30459940102312333 few:0.14565912468564046 thousand:0.06877261440280032 heavy:0.06402574104908916 :0.41694311883934687 +any:0.453049926926988 favor:0.1730505295507091 one:0.0461246730513117 the:0.035521746875577555 :0.2922531235954135 +the:0.6464460316912113 a:0.11159102074351462 tho:0.05158328869585896 his:0.050814025956768635 :0.13956563291264648 +not:0.18227131954689005 very:0.07037600030157071 carefully:0.06725090389947852 to:0.06337974870721022 :0.6167220275448506 +silk:0.1175529060521238 use:0.051951771310460464 his:0.007722553122720877 two:0.0019407416125466282 :0.8208320279021482 +in:0.208856114538244 in-:0.11414146937187662 almost:0.08352789616107523 otherwise:0.016066091626339877 :0.5774084283024643 +the:0.11897632028594472 .:0.06294475792794688 need:0.031245764201342268 not:0.024109243633405563 :0.7627239139513606 +and:0.0159290256342213 by:0.007834248944811684 followed:0.007767907700401463 ed:0.006875979780151537 :0.9615928379404137 +that:0.24053668862289798 and:0.16898366113675825 which:0.07636024106337591 but:0.060552329816835705 :0.45356707936013235 +conduct:0.3087262752960325 the:0.08904305662694327 health:0.031745802564753685 right:0.020672537052542298 :0.549812328459728 +upon:0.4294964767647223 in:0.18902275654703227 from:0.13947899332936559 on:0.1233351715616699 :0.11866660179720986 +of:0.6595492525215558 a:0.0641382014174316 the:0.05828832731980891 and:0.05683570426487177 :0.16118851447633206 +interest:0.5187563827996138 Interest:0.13890956790358447 fee:0.011308394917079205 taxes:0.007609274958245715 :0.3234163794214768 +of:0.5077216844620352 for:0.39790901819144314 ot:0.024697811698810326 and:9.564570491563323e-05 :0.0695758399427957 +of:0.034394309469035385 in:0.028672805450405688 there,:0.02858880457303384 system:0.027981969166685314 :0.8803621113408397 +the:0.4351265452685841 pro-:0.045052089546532746 other:0.04445704605346684 property:0.038123871615996514 :0.43724044751541985 +the:0.5435008603301834 to:0.11857026190138073 their:0.10539322892802276 his:0.07802474273836951 :0.15451090610204365 +leave:0.6009846619341216 consent:0.09218165509796404 le:0.002924217156705236 goods:0.002767869852615973 :0.3011415959585932 +is:0.41710811931445607 are:0.18945594410766717 Is:0.12621997039171948 we:0.019587764656143272 :0.24762820153001414 +of:0.9259288168027011 was:0.02439051000156784 and:0.02107657659066006 with:0.009664280361597544 :0.018939816243473368 +the:0.9975867547315039 a:0.0013717712933253607 this:0.0007158689581574879 on:9.73716481618608e-05 :0.0002282333688511794 +Minnesota,:0.7288479744466556 Virginia,:0.05911670056804166 Dakota,:0.007486915157141904 Columbia,:0.0018192546468594909 :0.20272915518130125 +way:0.3682543935107833 products:0.13719897983305057 needs:0.011720553090640217 mills:0.009504097127629927 :0.47332197643789603 +he:0.7674642856210144 was:0.08783965715150782 the:0.06935257948169829 tne:0.043916482860028284 :0.03142699488575117 +are:0.2927286510245223 have:0.11165340549034455 will:0.09095222860420729 the:0.05972752911942684 :0.44493818576149924 +and:0.09721647528210758 and,:0.07864346197974474 It:0.03985787629482709 he:0.03783335856568599 :0.7464488278776348 +have:0.17164762423045166 am:0.15604509117901447 was:0.13236326384898486 had:0.05407801000639122 :0.48586601073515767 +the:0.2386024925807582 for:0.16378217221978825 not:0.10883449209352984 a:0.07153809807282284 :0.4172427450331007 +of:0.24081330438889903 in:0.23446451621772815 for:0.16473312148657349 to:0.08925361275361746 :0.27073544515318176 +in:0.4482970226614944 on:0.27625775797462027 upon:0.13300842840406374 at:0.0729175230266946 :0.06951926793312688 +the:0.3465674528779805 W.:0.2574629959097523 a:0.1416081669111082 this:0.1354062756721425 :0.11895510862901648 +and:0.09600589187291525 by:0.05289751621490816 confined:0.027036959896213877 ed:0.026359779854189754 :0.7976998521617729 +therefore,:0.9694144977030618 therefore:0.0010464278900266736 that:6.761120917211011e-05 and:2.649679862457237e-05 :0.029444966399114945 +in:0.26581277478791926 to:0.17249662994965254 of:0.1599963637801869 and:0.12441463081433783 :0.2772796006679034 +of:0.17931254642331923 to:0.14130662580032124 and:0.09421478183568069 on:0.07778795690113245 :0.5073780890395464 +years:0.2849310174560407 boys:0.09901278987112605 names:0.09299404348039012 check:0.08573781212578634 :0.43732433706665674 +and:0.18301013150474169 that:0.10696800915232595 but:0.06948803838631426 where:0.05272295832400006 :0.587810862632618 +per:0.21058393815747858 the:0.025816923114288334 a:0.01943855718713665 one:0.00790275051790189 :0.7362578310231944 +better:0.7946401633830481 worst:0.18655465383275366 benefit:0.009538227513126453 best:0.005501161359495083 :0.0037657939115768924 +the:0.8186138846193352 tho:0.17695648169784683 tbe:0.0019710779176977523 her:0.0011080615464498578 :0.0013504942186702965 +the:0.456404877527852 existing:0.2322478876099392 some:0.12093425005552787 a:0.0960324615718033 :0.09438052323487749 +i:0.570430402194105 of:0.1473657463661742 at:0.02557670835372038 and:0.014264676393107108 :0.2423624666928932 +a:0.06909329992782867 as:0.037791606561078 of:0.03153763900162842 like:0.013472786445967904 :0.848104668063497 +to:0.6089833786821575 of:0.22483584659987893 or:0.0826315282345097 oi:0.042574200342801766 :0.040975046140652276 +and:0.12429806551800894 of:0.11327620193197262 the:0.07989596791302299 a:0.06250115511102387 :0.6200286095259715 +which:0.3020288291128379 They:0.06190606421616581 we:0.04449685616082343 would:0.04121541651037103 :0.5503528339998018 +the:0.2581472702089519 The:0.19884988714387725 a:0.17948261213738367 A:0.16297258157294953 :0.2005476489368377 +to:0.9995790173187034 of:0.00018252717550366435 in:3.114097420952537e-05 during:1.8784746181266683e-05 :0.00018852978540227563 +the:0.43789638508944145 and:0.1587118170207106 in:0.09157712362549598 The:0.08700056351208743 :0.22481411075226437 +of:0.27196086748189763 and:0.11532230001328742 in:0.09770373945090362 with:0.08837071822260319 :0.4266423748313083 +and:0.13506697184716915 of:0.12619915489970598 the:0.08190152489504511 to:0.037382444788910896 :0.619449903569169 +J.:0.06402317375371575 H.:0.06306028391288335 A.:0.05144794624578858 Smith,:0.0480175176808416 :0.7734510784067707 +quantity:0.3841374118171524 one.:0.06276861452480142 amount:0.018606306036840332 at-:0.002535690654192736 :0.531951976967013 +good:0.23360625427292003 laws:0.1843416731242446 contract:0.03726193328580787 duties:0.025450442543414886 :0.5193396967736126 +the:0.10439913818856288 a:0.027597603482499327 him:0.01382990915206326 them.:0.007851945035740996 :0.8463214041411335 +of:0.30000516312647724 that:0.14800213973802434 by:0.12483901845569788 to:0.09734383732957476 :0.3298098413502259 +of:0.22714144451782642 and:0.1371623684349377 in:0.11206897340133128 into:0.07127787368771393 :0.45234933995819077 +big:0.449817232357487 fire:0.15160842166175167 best:0.05415002189577201 necessary:0.0342281239775588 :0.3101962001074304 +and:0.46617207089036766 He:0.3124390191337964 he:0.07532388959238863 they:0.044559974014745825 :0.10150504636870158 +rights:0.18688335037495918 action:0.04085216063403737 way:0.027367549358139467 views:0.025344735160591315 :0.7195522044722727 +of:0.43294417000812846 at:0.38662110663766097 or:0.08865140584091732 to:0.052801862696470504 :0.03898145481682266 +they:0.09132515815017643 They:0.08773560150026374 There:0.08381185473878101 who:0.07037436774903687 :0.6667530178617419 +the:0.6710250506401069 tho:0.03937724006376156 The:0.018937800183515104 a:0.018596021661620374 :0.25206388745099606 +or:0.6852720960385182 always:0.1375867628533828 to:0.0936170447841264 and:0.009673850890588588 :0.07385024543338393 +to:0.05295427056590677 any:0.0471985175733465 same:0.019786500655133394 treatment:0.019013065517468456 :0.861047645688145 +2,:0.1099391809908648 the:0.04275427093002318 and:0.04164567952587865 of:0.024082863052683277 :0.78157800550055 +the:0.18372668866593506 a:0.08278133794607671 he:0.04034434249343359 to:0.02945337309740098 :0.6636942577971537 +south:0.986213123354746 north:0.009782902469482713 S:0.000835838301339932 N.:0.0006648868690667877 :0.002503249005364575 +British:0.08516376969628493 city:0.04858006778495549 negro:0.033665330400728034 road:0.03316509850498637 :0.7994257336130453 +decided:0.7164202223029319 been:0.016763984900475686 gone:0.010590200784514265 anything:0.007980064781317547 :0.24824552723076043 +neither:0.8072287987345313 no:0.05732190749504741 not:0.04212037236058937 the:0.03425565468854561 :0.05907326672128635 +in:0.14124834030128117 with:0.1193996270901888 as:0.11474871838995658 but:0.10904193558047222 :0.5155613786381015 +that:0.8237461596067026 and:0.04740669992345766 hat:0.02811212738855268 if:0.012669544376644918 :0.08806546870464216 +those:0.48349858171490345 men:0.05151655844615269 ladies:0.034010292775008666 we:0.01651504303765178 :0.41445952402628333 +taking:0.11516747393948963 bringing:0.09268120651852 as:0.08711353893517132 while:0.028649587075830093 :0.6763881935309889 +the:0.4948985420386785 a:0.1011345467656551 his:0.07986685449020635 tho:0.019841002047444656 :0.30425905465801545 +be:0.5686552942042881 have:0.27851914772029673 expect:0.01964914155964046 to:0.017107931919114246 :0.11606848459666047 +I:0.18109951682014852 has:0.13683001105236728 have:0.09730194628042925 that:0.07357813099215864 :0.5111903948548964 +statement:0.2825103134355425 commission:0.05166318656102896 bow:0.03777117959214223 stand:0.026343643591458143 :0.6017116768198281 +for:0.6191941723766362 before:0.24504319668844082 lor:0.04925468620525989 in:0.031621126731667205 :0.05488681799799599 +now:0.17620972735066667 if:0.16709319968588773 even:0.1495654116039164 after:0.11739046592565251 :0.38974119543387675 +a:0.4627258144171018 are:0.18632946400712652 being:0.1752441892787976 were:0.09143766075111051 :0.08426287154586357 +survey:0.05395605376393284 C.:0.026177490654392514 Block:0.0037996047915974216 Cor.:0.001158649570442592 :0.9149082012196346 +to:0.000729022969948805 lot:0.0003718076877351963 ol:0.00020771676933731352 said:0.00014126023194912753 :0.9985501923410295 +when:0.10148046535497733 here:0.05851576498154203 so:0.054917413961334295 there:0.05488761229079481 :0.7301987434113515 +in:0.38146044387980416 was:0.30428726860524646 were:0.15205830830730396 are:0.06675245978257258 :0.09544151942507281 +of:0.546832342739734 in:0.444056271348052 to:0.007146549698346755 with:0.0007149907520076663 :0.0012498454618596496 +in:0.29105093258391174 has:0.19116165193059179 into:0.147694914716947 as:0.0712455986094131 :0.29884690215913634 +or:0.405792683746707 be-:0.08384304134627245 ¬:0.05750133989490963 and:0.012843583443285223 :0.4400193515688256 +the:0.6110226308388477 The:0.19688288158362752 die:0.04918335276283003 that:0.025168181203090993 :0.11774295361160393 +of:0.9990322513185125 in:0.0004975071388865864 is,:0.00020126887015587083 that:0.00015035849451167313 :0.00011861417793357171 +that:0.23669947624116833 but:0.12843327299150814 and:0.11012097509445054 which:0.05181294756886115 :0.47293332810401184 +evidence:0.20743838792440658 course:0.12917995783122674 position:0.12636878694617326 success:0.11821381874239575 :0.41879904855579764 +the:0.5659133264638695 a:0.14606779682961724 all:0.064759823929993 an:0.03853848283554271 :0.1847205699409775 +low:0.2515151555625327 and:0.1122420901167908 able:0.10066524621463553 these:0.09859660941879768 :0.4369808986872433 +there:0.09772492278228391 family:0.038383388563419066 crowd:0.02738548320955826 man:0.016291597995024165 :0.8202146074497146 +the:0.31474376426135414 at:0.05379258913253723 Gen.:0.04146556327652668 Governor:0.033726549100574675 :0.5562715342290074 +of:0.9616281673052772 ot:0.01878449694574894 ol:0.013613358156755491 of.:0.003104000668215484 :0.002869976924003083 +be:0.8840931755646282 he:0.035791401973777386 bo:0.01989935774707118 secure:0.00982726632163283 :0.05038879839289047 +ern:0.030804803206624053 the:0.010711080758161712 -:0.004873683659895093 I:0.0032073300849046844 :0.9504031022904145 +to:0.8055754070027805 by:0.09499325675742668 or:0.03350474881975715 and:0.02248521593373851 :0.0434413714862971 +of:0.155961958511318 and:0.1355874375602781 the:0.0736663238695435 to:0.039353930712244856 :0.5954303493466155 +improvements:0.24805674543373782 House:0.09969196136384083 work:0.09167189297904045 labor:0.031432148427671176 :0.5291472517957098 +good:0.16642978329110766 little:0.1438156678181523 general:0.13168315259539587 great:0.1296012567737332 :0.4284701395216109 +As:0.06331836327704385 into:0.061273441624705514 condition:0.05373423797352655 direction:0.03677128739681858 :0.7849026697279056 +2:0.4280829164596657 three:0.2730812220675338 his:0.03469714297715114 fore:0.022340023640005775 :0.24179869485564345 +most:0.14659225112137866 the:0.06765598026191776 earnest:0.027839193610529285 closely:0.021019559696467426 :0.7368930153097069 +all:0.6899485059950393 and:0.08443452898355108 11:0.07897074694279237 of:0.05759092106102907 :0.0890552970175882 +and:0.1831009406366674 to:0.1271353849292464 I:0.08741896899501009 Mr.:0.07730592072508341 :0.5250387847139927 +not:0.9171623153092006 to:0.06463967221609425 the:0.005486601653742542 is:0.004080260339737665 :0.00863115048122485 +and:0.25807010430906235 It:0.11609106723970361 had:0.0752552392535065 which:0.06967300847198338 :0.480910580725744 +military:0.42303028142789506 little:0.03398700756344603 right:0.016147128500721995 small:0.013890959104204759 :0.5129446234037324 +even:0.9582054623204365 her:0.00029812423327229263 a:0.00028188810581407614 his:0.00023841667062706888 :0.040976108669850166 +the:0.21226420521589173 district:0.1993556783730602 States:0.07079150173082124 s:0.04702614107065797 :0.470562473609569 +use:0.09852471454484947 floor:0.056916358758089834 aid:0.0416308217171106 board:0.03953796794511859 :0.7633901370348315 +to:0.40549245603148 and:0.23664100350700887 we:0.07881500910620014 will:0.014351038224678085 :0.26470049313063293 +war:0.0006398072354271006 approved:0.00028964655739513863 past:0.00011718660693319409 whole:0.00010616656409752451 :0.9988471930361468 +Russian:0.053714628005576005 letters:0.0402424702479358 trees:0.024658314599154817 things:0.018122603435133406 :0.8632619837122001 +the:0.008992190956611848 of:0.0018249163676897072 a:0.0017653262821517959 said:0.0012922418245383271 :0.9861253245690084 +most:0.028048406284826955 the:0.014945613732368862 United:0.014103789855214448 said:0.012059773000970183 :0.9308424171266195 +as:0.3744649954655128 not:0.07949270236079196 to:0.061466338427658786 and:0.05532843525486241 :0.429247528491174 +cent.:0.08199410432675702 .:0.06934795306180874 Fourth:0.010223082358877096 and:0.00838826386693077 :0.8300465963856264 +in:0.24680891800337698 of:0.08540474010667459 until:0.08049516804136059 dated:0.05723700244752454 :0.5300541714010633 +having:0.8508437585050639 taking:0.05504350979380582 making:0.03473587867165036 being:0.02608540803371715 :0.03329144499576287 +man:0.2277864798029584 thing:0.11318478349324672 soil:0.10252477641294015 person:0.076057576296962 :0.4804463839938928 +There:0.35351933461160034 and:0.12399413115001233 bills:0.10224425664826765 which:0.04784960695994148 :0.37239267063017817 +the:0.13222968419194092 to:0.10112967633524647 and:0.07617686823276221 he:0.03696415171145686 :0.6534996195285935 +spite:0.02565243292225582 scribed:0.004323361524398884 the:0.002785152890808953 good:0.0019950179184275445 :0.9652440347441088 +A:0.3407141053102385 the:0.10694830015491566 Senator:0.07579674705849193 your:0.06763832267373245 :0.4089025248026215 +subject:0.4904413981035877 most:0.41334785300593013 same:0.06076263929250056 matter:0.030423364370044236 :0.005024745227937412 +army:0.20083363975072363 who:0.16277598480331784 and:0.1347266770858772 house:0.1315964898315321 :0.3700672085285491 +of:0.8066994899675837 have:0.03825518959225919 in:0.022289729920633675 as:0.013878425488397498 :0.11887716503112619 +Board:0.3253713554145029 of:0.033827394542790754 party:0.009149408584354103 force:0.006273149738856755 :0.6253786917194956 +of:0.04564309110618308 all:0.041765518512618845 provided:0.03953914202971629 been:0.020021058425216197 :0.8530311899262655 +have:0.6473060723417559 has:0.2494969091599398 bave:0.03791270028377762 had:0.012392020604689347 :0.0528922976098374 +and:0.3132425330912901 but:0.093928461082198 of:0.03704304477199705 But:0.025029933057290846 :0.530756027997224 +the:0.42147496231294485 this:0.2932826006596909 a:0.0766622064287518 tho:0.02666879618018273 :0.18191143441842964 +a:0.33450285271754354 the:0.1289550280665397 about:0.11658634513369182 one:0.1014631150909594 :0.3184926589912655 +except:0.5096605676180606 To:0.23769076154061575 and:0.09856813307474913 of:0.08747937534877707 :0.06660116241779761 +the:0.9100684297106972 a:0.039246279486604155 of:0.015043908164623775 their:0.01207196807275509 :0.023569414565319833 +of:0.48285090477242454 thereof,:0.06843396211495072 or:0.06554744383057003 and:0.037109356552137124 :0.3460583327299175 +of:0.5404500114478897 own:0.048002060662178624 pro­:0.010029108628778453 place:0.006593515286075257 :0.39492530397507797 +before:0.3141572947416737 until:0.3022285498612623 more:0.19257521051428758 later:0.12522982590231233 :0.06580911898046422 +are:0.023110283543105938 here:0.016200880136949983 tion:0.008828978872332027 of:0.008472947895188834 :0.9433869095524232 +to:0.7523173736667504 will:0.17085592490073923 They:0.008996880074394812 that:0.003641292521516866 :0.06418852883659898 +been:0.9814125849329706 become:0.0038031585836442003 not:0.0035973458277579065 kept:0.0014039439476341245 :0.009782966707993276 +the:0.5700755452483541 a:0.04995529062553101 his:0.049627083492829446 their:0.037010752813431885 :0.2933313278198537 +that:0.15047277713689663 A.:0.09460328092164659 the:0.03378339845515859 large:0.020462839318834355 :0.7006777041674638 +this:0.45570517589008325 the:0.26870782097696017 tho:0.1972711788296208 which:0.0022823486283925164 :0.07603347567494322 +was:0.2514782381486517 and:0.17037357049327773 who:0.08578634264241691 a:0.08171170951053756 :0.4106501392051162 +or:0.5462958303184818 your:0.25997886819615473 at:0.03177298109528722 ami:0.012976122893081305 :0.1489761974969951 +been:0.40245488778909566 the:0.02027509936717939 or:0.0152140672370123 had:0.013202830676075647 :0.548853114930637 +come:0.12356271957591748 be:0.10637849194725064 go:0.09282880695148071 attend:0.07021872126170856 :0.6070112602636426 +gave:0.3191709837763387 let:0.27527723999504455 on:0.12552861819636046 by:0.044998555811549025 :0.2350246022207073 +tho:0.8142008479966598 the:0.18405496505730015 our:0.00010900163804662444 tbe:9.452140101933995e-05 :0.0015406639069741083 +and:0.7680043508105183 at:0.09171446723038461 but:0.028767455535994073 aud:0.02155826129731522 :0.0899554651257879 +second:0.28292448946776777 one:0.20301196067730778 man:0.11569448894644341 body:0.08365516324417574 :0.3147138976643055 +should:0.4979770841232222 can:0.2750844855314586 might:0.0956980072302246 could:0.08606098978318687 :0.0451794333319076 +and:0.2958635747511266 so:0.03410972721718847 but:0.030892726554206155 saying:0.023899363831044088 :0.6152346076464348 +and:0.10369626076319231 but:0.020847578438129403 As:0.015924927254703375 tions:0.01591188747769941 :0.8436193460662755 +in:0.1911431917225313 to:0.0917936835325469 almost:0.0726764641305902 mother:0.059122234023623 :0.5852644265907088 +the:0.409189700890879 fair:0.13071529910048196 if:0.02724530411370111 an:0.02283333587686895 :0.41001636001806907 +the:0.6291920239822384 a:0.011707451990745585 tho:0.01077314463856282 to:0.007772522293147767 :0.3405548570953054 +was:0.8261470216584402 which:0.010948098812778358 Second:0.00783919174800721 It:0.005895576806252748 :0.1491701109745213 +city.:0.11314941074610697 world.:0.02784566471022511 country.:0.01781441188838251 world:0.01116518896891746 :0.830025323686368 +in:0.4941136850233137 over:0.19360042499780616 throughout:0.14137885140742165 of:0.12231171129743978 :0.04859532727401865 +the:0.858957092524705 tho:0.052061072704984335 most:0.0369427368844688 be:0.02482067946789245 :0.02721841841794943 +to:0.5273892623298723 in:0.31002332894447576 by:0.08446620633925465 from:0.04971365775463186 :0.028407544631765532 +is:0.6357240330076119 of:0.26082038886708253 opened:0.014565284979169141 and:0.006890843293377824 :0.08199944985275853 +as:0.5052372039191174 from:0.14163094695967296 of:0.10660012656710698 The:0.055108896363586235 :0.19142282619051648 +days:0.313018129523955 part:0.26126644087857637 years:0.20625865624129805 period:0.11633717733798148 :0.1031195960181891 +information:0.07583710802436994 fall:0.019119743938162462 same:0.01188506413994047 bill,:0.009635486261215343 :0.8835225976363118 +in:0.3358451474661332 and:0.2581856542674935 to:0.17061562241323605 for:0.11149964079305683 :0.12385393506008038 +death.:0.6938476518109119 them.:0.07305972182004858 it.:0.0065243140574479845 3.:0.0005067606987699207 :0.22606155161282146 +and:0.20657544669273487 of:0.07365737067957781 the:0.05719505484118761 or:0.04572692077468815 :0.6168452070118117 +being:0.08492487295794805 paying:0.04219301916318788 remove:0.04091442714855389 got:0.018918473898029926 :0.8130492068322803 +the:0.6788523529288215 dis-:0.25662608823907035 these:0.023304057657233132 all:0.018846148142797774 :0.022371353032077344 +for:0.2043106995981693 process:0.12308245400342357 of:0.03360355385240817 corn:0.025296998401288108 :0.6137062941447109 +was:0.1771777829012273 is:0.15605728862695542 with:0.09904484219486648 be:0.04901538283593694 :0.5187047034410139 +and:0.4032412931887016 perhaps:0.31994214912728114 it:0.1645010892301134 I:0.06006421687416846 :0.05225125157973537 +laws:0.06852125985278744 college:0.01982314994616555 most:0.014859817443606097 law:0.014694254781610924 :0.88210151797583 +in:0.3387226887657133 with:0.24477255475305254 for:0.09125009662397897 that:0.07806736674740918 :0.24718729310984605 +and:0.10532441156646656 the:0.056793338886409334 of:0.05045814845399956 from:0.04982583925867804 :0.7375982618344465 +will:0.1714242462628729 entirely:0.13459790278166436 the:0.07460757508450816 highly:0.060139623022764044 :0.5592306528481906 +pleased:0.8617634447757105 charged:0.0007006271679565689 popular:0.0004876695342577117 and:0.00033079268331429566 :0.13671746583876088 +in:0.24063751754889026 and:0.22404749710629152 for:0.19595265669933234 to:0.18811585163623995 :0.15124647700924604 +printed:0.21567910420854333 published:0.1434521862502037 not:0.05615802670928711 looked:0.0545185741218072 :0.5301921087101585 +face:0.12106730218666145 hands:0.08924988279946092 event:0.06164013018673871 way:0.04499843901763519 :0.6830442458095037 +d:0.08850335619444762 y:0.052401652020311766 n:0.029826196848750805 o:0.013444216762535897 :0.8158245781739539 +of:0.5218850815929911 among:0.43210101031562537 in:0.020161980370361644 ot:0.014932974652289198 :0.010918953068732766 +time:0.298146476165427 other:0.11882857619292517 distant:0.11403954960904016 very:0.08556495949311173 :0.383420438539496 +runs:0.1964045907294406 grown:0.026805303679244007 covered:0.000909355792443083 well:0.0005134103924166773 :0.7753673394064555 +be­:0.31335432719290507 be-:0.2197838275529638 be:0.10587619611012984 be.:0.06130450794961687 :0.2996811411943844 +to:0.9642268380446964 lo:0.009210651707914406 of:0.0071537439477407 with:0.006088614572722402 :0.013320151726926214 +date:0.9886411997592365 end:0.0015892078654389536 time:0.0008129833931588051 beginning:0.0006794116592311444 :0.00827719732293457 +the:0.10538996906944283 and:0.08594064949959429 of:0.07084365296777452 to:0.06724412465434398 :0.6705816038088442 +cars:0.2108002187349112 country:0.1190090607591464 party,:0.05062198989485865 train:0.04454415188678232 :0.5750245787243015 +to:0.7027066652264723 will:0.08604026311101788 shall:0.07657859061116817 and:0.06927486856252553 :0.06539961248881618 +of:0.5204538508176464 were:0.22917366976707298 and:0.12462831763205137 at:0.10407197325043728 :0.0216721885327921 +to:0.9998597403681694 lo:2.876019087698345e-05 not:2.057432979676757e-05 a:2.0231816431596797e-05 :7.069329472539323e-05 +enough:0.8829187606836034 relief:0.011810984169878833 is:0.006313762456700821 was:0.006163953870173869 :0.09279253881964304 +able:0.960604437721693 likely:0.018512836249137313 compelled:0.004961563324735316 put:0.0036114767907700126 :0.01230968591366443 +report:0.23243211345939171 movement:0.14378736912609819 contest:0.09183915056295411 idea:0.043291441984243346 :0.4886499248673127 +and:0.6718457797950311 to:0.3028788529977333 as:0.010694266162565335 thing:0.0070044680586193115 :0.007576632986050926 +action:0.013474005692203916 use:0.012726891475037637 members:0.012501601112982005 people:0.012084700278379648 :0.9492128014413966 +who:0.1635410398936129 of:0.13304564832495136 and:0.12745926320514497 in:0.08688454197633398 :0.4890695065999568 +than:0.31868785459131377 early:0.128947345995815 and:0.09240205022457185 as:0.0810341849230312 :0.37892856426526816 +in:0.9490334642026113 In:0.013824564721476112 to:0.009651154727386714 with:0.006952028179196674 :0.020538788169329313 +by:0.6845701306714284 in:0.14879059170020328 from:0.08957958726847327 is:0.025238990482528856 :0.051820699877366164 +act:0.06525944074634502 have:0.052498188075603615 look:0.023933044464639612 live:0.02370987925159646 :0.8345994474618154 +have:0.30039605195363267 havo:0.112831124907179 and:0.10478028806356632 is:0.058011986956114814 :0.42398054811950714 +and:0.04380294213047347 of:0.033010701482761313 4:0.026143912108660506 5:0.017359532900864356 :0.8796829113772403 +conclusion:0.4096185435296926 station:0.22357258832196958 point:0.03674339282840333 thing:0.026033134530007756 :0.3040323407899269 +and:0.17746104097495263 the:0.088874905631258 The:0.08228656501265584 of:0.07035760433619466 :0.5810198840449389 +is:0.3244024301346291 was:0.30811258430811483 are:0.24747134358400377 be:0.05861130903226152 :0.06140233294099068 +fact,:0.19351922612795175 fact:0.18473883514427158 state:0.08757858708287378 country:0.04574094797197586 :0.488422403672927 +of:0.06009293424145575 Mary:0.02236525383040389 E.:0.014630500541110448 the:0.006395290152375483 :0.8965160212346546 +and:0.10755993471791477 the:0.062184499605782914 of:0.061815696399942714 to:0.038903501384516925 :0.7295363678918428 +before:0.3213299143171959 he:0.22226265932654013 by:0.11915247690249893 in:0.10999278458462568 :0.22726216486913944 +met:0.05823646467787529 stood:0.047706260652373225 meet:0.020777230009547027 made:0.018799547299168565 :0.8544804973610358 +and:0.24002310767400664 to:0.1590279947301438 of:0.04654284391883549 In:0.04496454497068618 :0.5094415087063278 +the:0.29359227728107795 New:0.18641140461047825 this:0.045028894009951505 tho:0.03661988121040492 :0.43834754288808736 +states:0.38360165722718365 says:0.1380372395327397 shows:0.07812990536379243 stated:0.07015153268639794 :0.3300796651898864 +of:0.6673498579016633 I:0.07770000646777592 to:0.07547622113195028 by:0.061589520076862844 :0.11788439442174758 +was:0.7496227915298702 had:0.09631920972824924 would:0.023184020579478996 said:0.021683857955310647 :0.10919012020709097 +the:0.43973019282765435 be:0.29613618089660704 said:0.04398759867657875 a:0.023024159592417125 :0.1971218680067428 +and:0.04335337175836404 8:0.032891520885435385 of:0.028613125992949847 the:0.027471866632940305 :0.8676701147303103 +was:0.44529703031145357 is:0.1877501994579378 were:0.1740761271684244 are:0.09937475601439173 :0.09350188704779244 +recorded:0.8443499095271609 ami:0.06920201369148986 and:0.013392556616793836 ten:0.012140177415437676 :0.06091534274911777 +chief:0.29066213949146036 the:0.15624673604409423 city:0.1438803509599344 head:0.052929326143860596 :0.3562814473606504 +blood:0.13342330309616968 equal:0.022508825132395226 here:0.015278594962141645 life:0.011812547444699974 :0.8169767293645935 +him:0.053878685631863564 me:0.03924951639031855 have:0.029598908028259586 and:0.028933364920098324 :0.8483395250294601 +and:0.13811743329704898 or:0.1166699841592823 of:0.10899080465409228 are:0.09618864743737067 :0.5400331304522058 +be:0.912139336477524 well:0.02140710109380424 bo:0.011275913148031436 claim:0.008846355549361582 :0.04633129373127873 +full:0.1739724346114385 York:0.026245242911244675 was:0.017330740161651988 the:0.013808607442772753 :0.768642974872892 +too:0.753829708499712 and:0.0736332209665131 the:0.04175874810417091 but:0.014580891823784681 :0.1161974306058194 +of:0.56553932544169 when:0.135328490849219 to:0.06152484829365536 by:0.06109301177045311 :0.17651432364498243 +only:0.6494696031901251 red:0.04006656480950603 de-:0.025782277475153832 great:0.025154510571224833 :0.25952704395399 +more:0.6185736418829435 only:0.09611898781799845 especially:0.04148571351250896 also:0.037687023716974 :0.20613463306957516 +shall:0.37893197595453304 and:0.1258774995255126 to:0.06039592758342216 would:0.059473392134007506 :0.3753212048025247 +and:0.058546670462253404 of:0.0430277389157369 .:0.04135329984096907 the:0.033707438960921356 :0.8233648518201193 +received:0.22982427845488332 arrested:0.08098720051673197 made:0.0781943435219508 stopped:0.06470134293345853 :0.5462928345729754 +the:0.2533039865670675 four:0.09470101290669511 that:0.011683406655047798 their:0.007838014386521356 :0.6324735794846682 +of:0.9977539361983188 in:0.0017063466722083422 ot:0.00018845777903391588 and:0.00018057357849199422 :0.0001706857719470047 +than:0.26773952723711586 and:0.1601122731171242 more:0.07400941247340527 the:0.050356125688132254 :0.4477826614842225 +The:0.1903868596173594 In:0.13389353277654134 that:0.10032524225403015 have:0.0670649422298049 :0.5083294231222643 +home:0.16577061509177507 boat:0.056862659028196816 bridge:0.0292857378556691 the:0.024549897066841853 :0.7235310909575172 +the:0.5681493932101034 a:0.1524372639399211 an:0.034772254151513804 tho:0.03442777277594956 :0.21021331592251222 +every:0.4089925934093869 all:0.1117098618899936 the:0.10047738531712186 a:0.06517627272721624 :0.3136438866562815 +be:0.23298511773021272 secure:0.06705516828955148 have:0.06585504490089705 receive:0.05739344492017543 :0.5767112241591634 +and:0.09704593239802341 of:0.09616788281051132 the:0.05390950656623121 to:0.03881518894103192 :0.7140614892842022 +no:0.20499466948960457 many:0.17004719368941074 two:0.11847059740404915 several:0.06965625690843721 :0.43683128250849823 +it:0.04054640087564091 team:0.016362828051446777 there:0.013404593753932955 what:0.011652720881518051 :0.9180334564374613 +he:0.5774106514899984 she:0.11398603122039414 be:0.07289686858527689 we:0.059062772967924025 :0.17664367573640655 +and:0.20753261425104003 is:0.12609409133801416 with:0.09555164624465193 has:0.06309173626806219 :0.5077299118982318 +and:0.2438685412478204 but:0.1173896532740657 which:0.03281049009861302 But:0.026387843662344333 :0.5795434717171566 +and:0.09957975894751912 convention:0.07736054572329674 but:0.07319095400585698 County,:0.03205469325965524 :0.717814048063672 +they:0.4704322124930295 we:0.19209523299136053 then:0.017231018412233044 the:0.012225571218940122 :0.3080159648844367 +bill:0.08895192686958006 gentlemen:0.04910353428212156 question:0.04149308446288885 house:0.03125907672409506 :0.7891923776613146 +placed:0.3480904992703217 rapid:0.055433093587134864 sudden:0.02192819390104038 hard:0.016941686744991722 :0.5576065264965113 +able:0.13286011037593798 enough:0.13096940256593326 less:0.029537869355913352 cent:0.027189271119188 :0.6794433465830273 +which:0.8580749156547799 It:0.011260743981229128 and:0.010731041504033725 he:0.008834646165272103 :0.11109865269468513 +feet:0.8055743558164793 miles:0.08258146271519193 mile:0.018914486448432046 far:0.0005153877507415554 :0.09241430726915525 +and:0.18423670743531823 that:0.0851778348099254 but:0.05451405369534279 as:0.029982756988393637 :0.64608864707102 +to:0.999754247185907 by:0.00022291553347919627 reached:6.954008947632052e-06 of:4.775728083135216e-06 :1.1107543583101908e-05 +however:0.15768541959454743 there.:0.05264405208368141 from:0.03841229489662414 with:0.030920059949782204 :0.7203381734753648 +fifteen:0.24129525782888386 twenty:0.12551902686722693 eighteen:0.106138364354128 sixteen:0.08647767470137512 :0.4405696762483861 +and:0.3332198961787711 by:0.06839227526229265 to:0.054172179598183594 mid:0.04130182356312055 :0.5029138253976321 +o'clock:0.5200893607360758 11:0.01901178513527982 6:0.012560733220117913 10:0.005575653125825586 :0.442762467782701 +to:0.6503414269755181 in:2.092235419053756e-05 my:1.956019870308155e-05 la:6.447313287576539e-06 :0.3496116431583007 +avenue:0.5986472969784455 street:0.3608037528501639 east:0.009799481305484801 contract:0.0027254053329362577 :0.028024063532969455 +carried:0.1250169604173174 thrown:0.022909259514856114 under:0.00590765579514892 started:0.001009462137151455 :0.8451566621355259 +and:0.15811162893888941 but:0.054209221798325824 but,:0.04340664177273253 while:0.037751187584106755 :0.7065213199059455 +the:0.809975778642257 that:0.12781359975324197 not:0.04360489675651376 tbe:0.00755887112251229 :0.01104685372547499 +been:0.6755883189793804 no:0.13469516770381748 a:0.030716836512547578 the:0.020996485723664398 :0.13800319108058998 +of:0.30305520069591363 in:0.2026806202479756 In:0.13161008260383164 Since:0.10127155116598979 :0.26138254528628935 +other:0.5845775207484133 public:0.08957021133144766 special:0.051998303379542296 important:0.028158660223464665 :0.24569530431713196 +They:0.1180475239170504 who:0.07189572760721871 There:0.0658085535430688 they:0.05495012187677963 :0.6892980730558825 +Court:0.023666369314107403 difficulty:0.022176568563894508 and:0.020987870227426576 that:0.01933862050557906 :0.9138305713889924 +in:0.012615410114998291 down:0.005180963283702132 property,:0.004428927668648813 risk:0.0038406927235654894 :0.9739340062090854 +of:0.2540283381976556 and:0.09345466462304045 the:0.04312457972346129 The:0.036960753189776395 :0.5724316642660663 +destroy:0.20295523754246803 support:0.12860141582221252 protect:0.043984100103475136 aid:0.04079974594753568 :0.5836595005843086 +over:0.1489875177821412 nut:0.0016430315425758366 the:0.0008046381140627194 once:0.00033421627835657843 :0.8482305962828636 +or:0.19935758434964818 and:0.19610166636088358 provision:0.029759583418826546 operations:0.020848884905774974 :0.5539322809648669 +in:0.2607663230665343 to:0.23827339533267677 the:0.16919176901064548 a:0.07880143995067886 :0.2529670726394646 +spite:0.02565243292225582 scribed:0.004323361524398884 the:0.002785152890808953 good:0.0019950179184275445 :0.9652440347441088 +On:0.2894279510942789 in:0.20940890469883547 before:0.11955173103050734 on:0.10265044665760992 :0.27896096651876856 +said:0.6177542902300746 lot:0.08266906136329433 Jersey:0.060636788523761566 Railroad:0.04734683064635749 :0.19159302923651209 +no:0.5924600107100919 any:0.2745351596092738 a:0.005851998650377042 cut:0.003647403758684787 :0.12350542727157228 +be:0.9092281825987572 bo:0.06956576572560294 he:0.011523275495154752 not:0.004863645355800761 :0.004819130824684332 +said:0.02317256335324298 us,:0.01721995991829435 question,:0.01530223965855258 such:0.014079295851273292 :0.9302259412186367 +believed:0.5780978085733005 likely:0.1552499080949156 naturally:0.14597966530544995 not:0.04825429450655132 :0.07241832351978258 +which:0.12558579448382104 who:0.11219972946785221 There:0.08201021999421236 they:0.07938564480623087 :0.6008186112478834 +and:0.11306948497965831 the:0.09994632713094609 of:0.08173375539632721 to:0.05115091667511176 :0.6540995158179566 +that:0.052883493788818264 and:0.04395863823416527 treatment:0.04348381415000547 States.:0.04304621328906334 :0.8166278405379477 +cut:0.17839304361760913 of:0.06952183384663795 raise:0.06640165741822043 increased:0.056861649960444446 :0.628821815157088 +a:0.7495765099086906 the:0.14055130335316235 and:0.029776408807710535 1:0.01819202435802482 :0.06190375357241188 +Gen.:0.9980628125888311 President:0.0007068127627386043 young:0.0005375193895223359 the:0.00031749124968680816 :0.0003753640092210052 +on:0.4695189265568298 and:0.06249048956884972 called:0.04989233689816641 made:0.04518159627693043 :0.37291665069922364 +of:0.5669081680374495 it:0.2025510047249542 the:0.05280974632372963 for:0.0238728587672121 :0.1538582221466545 +caused:0.0984052058858779 and:0.049000343236429225 followed:0.04324630837517464 but:0.038353634699315985 :0.7709945078032024 +and:0.1182933413578198 the:0.10794650967201867 of:0.08103005697141193 a:0.0524290762112188 :0.6403010157875307 +know:0.19082132779234054 come:0.03714263084925587 stop:0.03198626532032709 It:0.02494288088433267 :0.7151068951537438 +H.:0.010132576339798074 F.:0.0066670018400558865 L.:0.004634834624641268 N.:0.0035064668353484464 :0.9750591203601562 +brought:0.1857455744575094 carried:0.09064415320826867 led:0.08303887057385123 and:0.04375382647170954 :0.5968175752886611 +east:0.31284758255852496 street,:0.04366089275579509 south:0.033753606462299565 street:0.028380689802104668 :0.5813572284212757 +Mr.:0.2561531080604881 The:0.2121559658960733 of:0.09488416227746486 and:0.08606198981906223 :0.3507447739469116 +of:0.5534562606183006 to:0.25086109104453475 against:0.0018929946643792275 that:0.0013898948967790746 :0.19239975877600643 +a:0.3067222219359359 the:0.2963788985474194 her:0.20695241675601092 by:0.08218921574085242 :0.10775724701978125 +on:0.42517373711125617 from:0.25363730203781887 by:0.06963934513779266 of:0.0674790203280373 :0.18407059538509493 +the:0.4640484389709042 a:0.045822254296168256 this:0.03439154934754056 tho:0.028817764479042773 :0.42691999290634425 +some:0.45679580918570567 the:0.19948523726103035 this:0.17111049730330677 a:0.07646379388639739 :0.09614466236355985 +and:0.05673745567986084 hours:0.04254613573791639 now:0.029619639769383716 Friday:0.012287151486662493 :0.8588096173261764 +the:0.49018748606330775 in:0.15752597641475083 a:0.12224560784462356 this:0.0734535832067328 :0.1565873464705851 +kinds:0.11884826798506955 parts:0.08356033225668953 classes:0.0655197568597065 lines:0.0448647879765522 :0.6872068549219823 +last:0.2290934125827009 extra:0.071503439877979 only:0.031897601202309174 silver:0.019965654061420438 :0.6475398922755903 +his:0.1787011139529661 him:0.13317676578422324 the:0.13070270399677122 to:0.10600582917674262 :0.45141358708929685 +it:0.8647128808217935 It:0.013251021352510262 which:0.01100269234958107 statement:0.010766041153315625 :0.10026736432279951 +of:0.9923116805753632 ot:0.0008840494158057726 so:0.0008239590495951556 or:0.00047286332798460385 :0.005507447631251402 +There:0.25584411894143705 a:0.1975090978459238 was:0.0851434108393898 has:0.05995120793531909 :0.40155216443793024 +could:0.972411660660466 should:0.014816269303053572 never:0.004510826730597034 always:0.004018777702558279 :0.0042424656033252005 +of:0.31838220591200816 in:0.18993024163381775 and:0.12569459710624017 to:0.10640019997882794 :0.2595927553691061 +j:0.18890128676550763 and:0.17673067397000403 the:0.13593320936598277 to:0.09190440232027132 :0.4065304275782343 +second:0.04656229539225661 third:0.03019720503347371 old:0.01608608853022775 strange:0.013155496152144367 :0.8939989148918975 +of:0.352479094195918 to:0.16766837680960814 from:0.13019424694042028 in:0.11901327715944766 :0.23064500489460596 +the:0.22613125002627893 Federal:0.21317708820644274 this:0.10997368721251745 her:0.05196303033913681 :0.39875494421562396 +to:0.34265747317387385 by:0.15544435162067802 with:0.13850047291839887 in:0.0974540482663339 :0.2659436540207153 +character:0.054314346230724 result:0.05065498962913823 better:0.050222134276785464 amount:0.042145668934882474 :0.8026628609284698 +said:0.04280490837515187 most:0.022935306084703594 the:0.019772856485657585 old:0.01951604243655441 :0.8949708866179327 +service:0.2880400587258173 services:0.16104498224190178 forces:0.03061345818755478 rule:0.01584976198925762 :0.5044517388554686 +ability:0.008193738068067235 him:0.005146505329596813 go:0.0020358433659772857 order:0.0013818440458672145 :0.9832420691904915 +same:0.040955743149586055 of:0.038425513831993545 mental:0.02496052884121274 great:0.022164271503639976 :0.8734939426735676 +They:0.33628549971571664 to:0.253950047907712 in:0.0998712892053388 the:0.07087288677281903 :0.23902027639841347 +us:0.09937584287174647 how:0.09191209130006575 is:0.07457818223928817 themselves:0.06535275926671591 :0.6687811243221836 +ship:0.19035832252571017 township:0.08664190058260857 of:0.05128720674298051 at:0.03065565694347129 :0.6410569132052295 +of:0.806182145437808 in:0.09669126568181456 ot:0.030509274796444268 for:0.025728057686069488 :0.04088925639786364 +the:0.2705203769778732 a:0.05394002307526364 be:0.048868314845564045 his:0.03671050899876204 :0.589960776102537 +to:0.3132715442943717 of:0.16718385361330523 in:0.150275919245981 with:0.11688355808521764 :0.25238512476112446 +In:0.6006569432329547 in:0.35523983523084807 being:0.014114682458220503 iu:0.005595906385915821 :0.024392632692060823 +hundred:0.5304528836072187 thousand:0.19270511980172514 few:0.14771353814876373 dozen:0.1034488238729567 :0.02567963456933558 +the:0.19738813740085526 animal:0.0657690997536233 to:0.046818923865767685 water:0.04350578081178252 :0.6465180581679713 +who:0.15871768707127906 they:0.09888659939411414 They:0.07789618892209962 and:0.07642191463133263 :0.5880776099811745 +in:0.9259336918734689 In:0.0339271795866655 a:0.011401969038862515 as:0.00915664449133027 :0.019580515009672835 +payment:0.025081064876330415 action:0.02239571189536636 attention:0.01825604382297633 people:0.016949189342120818 :0.9173179900632061 +he:0.2744453591623696 be:0.19571693724258046 it:0.14607589824193232 and:0.11496519250610927 :0.26879661284700845 +of:0.3286798837956122 and:0.2129721487331125 in:0.1270800927969498 a:0.12195990698891367 :0.2093079676854117 +a:0.23073806208986966 the:0.17465034863965662 his:0.06065795151070066 their:0.04004722637524835 :0.4939064113845247 +to:0.9596168629910349 would:0.018433906488663363 not:0.006707500989784946 expected:0.005501249618824357 :0.009740479911692414 +placed:0.16979589364801456 had:0.0750138436135472 has:0.057685921921890246 used:0.05625390354029127 :0.6412504372762567 +the:0.6223822955432258 Mr.:0.23592103840467532 a:0.03525486475792343 tho:0.02341073153236628 :0.08303106976180911 +U:0.22992227526217593 to:0.08043348419718849 had:0.07447732319643076 the:0.07159648350567975 :0.5435704338385251 +States:0.5922483364817552 States,:0.04979449380030814 States.:0.015595983277735103 states:0.008281543522653406 :0.33407964291754816 +¬:0.007576272961456686 i:0.0025821611447594903 and:0.0002942215173689879 of:0.00017848355457203375 :0.9893688608218428 +of:0.14063666231569708 few:0.1129317417028411 small:0.07435302833163779 and:0.0698314317696663 :0.6022471358801578 +paid:0.4059131547789679 delivered:0.033801738380027084 offered:0.0003426540282859725 went:0.0003112621792814251 :0.5596311906334376 +course,:0.14329944890719643 age,:0.06207616319470301 government:0.05868500670998001 it,:0.030669960201420647 :0.7052694209866998 +.:0.8364840875815905 .,:0.027926448589974933 -:0.004983650858027637 ill:0.0020843045605741183 :0.12852150840983276 +the:0.6708930410103192 his:0.13875263037103627 this:0.10433703131296551 my:0.03967118979859981 :0.04634610750707921 +any:0.9301424387956722 all:0.06279134671033415 the:0.003920380956475456 every:0.0009009054364876962 :0.002244928101030581 +of:0.08980006951943661 line:0.06235942549055392 and:0.04457497119452392 in:0.0405767856659214 :0.7626887481295643 +city:0.5135639775966261 light:0.1991538743489567 water:0.06922499892331833 matter:0.019519538600121105 :0.19853761053097793 +arrival:0.07459626528627003 death:0.06864031237554613 subject:0.046459393795061595 question:0.030829493859796085 :0.7794745346833262 +day.:0.05513871486402789 de-:0.022741440406409064 year.:0.017818637147780942 ::0.013144502352397478 :0.8911567052293847 +of:0.5009089811917292 on:0.3830337249029008 that:0.041801355689807335 is:0.014643810643066753 :0.059612127572496024 +him.:0.07616567282443447 home.:0.06867343170387039 As:0.06737207851740308 day.:0.04907787461190068 :0.7387109423423914 +home,:0.7479276591608075 home:0.0011313440538530887 residence:0.00039431928342938247 of:0.00016499913177447781 :0.25038167837013553 +protect:0.08230221516086679 show:0.078104634361121 cover:0.055502699301355485 make:0.052272538120725374 :0.7318179130559314 +The:0.1416568808727687 the:0.08744945795588023 h:0.07467880598620194 a:0.04059670165528478 :0.6556181535298643 +make:0.05203031149244091 attend:0.04874282551329496 be:0.039622417693754644 enter:0.03935227266566701 :0.8202521726348425 +States:0.06662942092043884 States.:0.010853236912239451 States,:0.0012248842769050897 St:0.0011170594220044207 :0.920175398468412 +question:0.23674709411936146 which:0.2014434499170356 are:0.18378768170737453 and:0.08139485819540733 :0.29662691606082103 +made:0.052178220432369034 won:0.025352499188704244 killed:0.02127104377536812 caused:0.0209574042402228 :0.8802408323633358 +owing:0.5408544970323018 and:0.06286974873088047 but:0.032079435803704946 according:0.01423825539188493 :0.34995806304122773 +State,:0.5006672043402567 education:0.013316843174709849 and:0.007219493687710164 it:0.0035706322987344866 :0.4752258264985887 +tor:0.0784688181793267 people,:0.04139243647702496 may:0.034524345025903104 U:0.022726165117698 :0.8228882352000473 +while:0.16694172883449626 my:0.16395696391380013 and:0.08453765715308548 to:0.02640472786061249 :0.5581589222380058 +This:0.16965323418441042 in:0.12884311194430095 is:0.12555950914805747 During:0.12045215897693906 :0.45549198574629207 +whole:0.11068573886483676 that:0.06386022733950003 money:0.04888968768656218 in:0.02565043423377562 :0.7509139118753253 +in:0.6668097547460234 at:0.167871846184336 of:0.08938789581345787 and:0.04688259809799556 :0.029047905158187105 +ever:0.7005742711191605 probably:0.1410893596901082 always:0.08047357459797466 it:0.06587689404691052 :0.01198590054584613 +man:0.43115355053188653 girl:0.19977364646905973 woman:0.02592784617583661 wife:0.0159516833709429 :0.32719327345227417 +county,:0.036730382158395816 ;:0.035472608581089714 ment,:0.02090672466759879 County,:0.016131467245779532 :0.8907588173471361 +in:0.3387480334125769 of:0.183306915528989 for:0.16303373600612042 to:0.14698924741254463 :0.16792206763976905 +W:0.006152376074846744 25:0.005393955767447527 hand:0.004615167198025278 in:0.0041713050431312565 :0.9796671959165494 +it:0.31358647136134726 he:0.12345254322106826 ever:0.054209211337036094 will:0.049882121719721735 :0.4588696523608267 +the:0.08516238810327677 which:0.051817353967123315 a:0.01614208896339049 tho:0.012096464568745581 :0.8347817043974637 +that:0.9869547154882222 as:0.007771239872061283 when:0.0035214922209084675 that,:0.0014094288286687759 :0.00034312359013916136 +morning:0.5734513398386979 men:0.10329839912308478 school:0.0620768681722057 evening:0.05559814847368004 :0.20557524439233166 +the:0.8571483167457666 tho:0.08899385812679807 tne:0.013170267742370106 tbe:0.007940968880324823 :0.032746588504740215 +and:0.10148387094988004 of:0.08696434025448387 the:0.05365717173332362 to:0.03393106186200422 :0.7239635552003082 +other.:0.033688468523449595 water.:0.005166493119111014 ground.:0.0026886339769461812 money.:0.0020169812073827713 :0.9564394231731105 +cannot:0.4411511921220592 to:0.10626149127289172 who:0.06409929347922379 should:0.02496563209662464 :0.36352239102920064 +and:0.26403880064865104 as:0.08605424483709863 commission:0.05355760489514024 above:0.03504122851289148 :0.5613081211062185 +tion:0.06450430661453888 one:0.05483406345482783 which:0.022296540770903664 day:0.020707916489687863 :0.8376571726700417 +people:0.23736305847572434 interests:0.14539517822075435 which:0.0753628903578715 who:0.05911009211606475 :0.482768780829585 +We:0.8474364444375133 They:0.09838121393308141 I:0.018929511693008817 who:0.012480675960121342 :0.0227721539762752 +the:0.05008011660620372 York:0.041518494805157416 that:0.04101416308261845 York.:0.036564509495821525 :0.830822716010199 +About:0.2581837746951426 or:0.2075176655573434 nnd:0.1413164030497608 and:0.12811086318521686 :0.26487129351253624 +of:0.24745529633051802 and:0.22067229234765215 in:0.16456976031383214 to:0.16149126375138784 :0.2058113872566099 +of:0.20304724164241478 and:0.10068897723604602 was:0.09872410686510139 is:0.08834822594446984 :0.509191448311968 +majority:0.3057363575409751 tion:0.08787039513747708 one:0.043122970392187446 many:0.038509887520389495 :0.5247603894089707 +his:0.7734439997251146 the:0.12261673833534338 their:0.03357335199481349 her:0.029189320319384007 :0.04117658962534459 +period:0.2505615658886612 rate:0.0420594402280235 hour:0.022385865740857092 fee:0.0198980273333443 :0.6650951008091139 +that:0.4547674602964153 which:0.15886462726620795 the:0.15551556813079778 as:0.11766739044672854 :0.11318495385985053 +he:0.9949227508921946 and:0.0017933000667340498 it:7.970378289295132e-05 which:6.875352553957011e-05 :0.003135491732638755 +50:0.4337467464707068 to:0.12795712546790142 @:0.05670370852104314 and:0.006314084492868861 :0.37527833504747976 +the:0.03664697103683753 up:0.02325487370436288 him:0.020809456386306324 it,:0.020787917115504567 :0.8985007817569886 +it:0.33180010076921834 them:0.313307621128522 ing:0.03660889494110325 than:0.0284388017455317 :0.2898445814156247 +receiving:0.8514888823171888 being:0.010264166966454984 to:0.007171199478946924 and:0.0013631696977080693 :0.12971258153970136 +and:0.1925999364808927 its:0.1455184441257872 quite:0.0764201339470878 a:0.06714123578467478 :0.5183202496615574 +order:0.23090379775890485 earth:0.10505751442672859 progress:0.07194610869384233 life:0.042816376097164495 :0.5492762030233596 +of:0.2682543922505543 and:0.12045516248677811 the:0.05134166578730739 to:0.027450991752409094 :0.5324977877229511 +the:0.3516986303384075 said:0.032234033719068314 this:0.029442448657973967 a:0.029069912124322944 :0.5575549751602273 +coun-:0.03599890229078135 States,:0.01735275776448579 farmers:0.011269583572303447 and:0.01019231461730544 :0.9251864417551239 +I:0.2364578157026181 of:0.036205519985607254 was:0.033321172049461834 the:0.017592938876783443 :0.6764225533855293 +where:0.9298476835691952 and:0.02263719179881049 till:0.0104925964528605 of:0.009871761348401033 :0.02715076683073279 +the:0.30625454658779416 tha:0.3021870728488226 permanent:0.24838412019494072 such:0.029369781510974538 :0.11380447885746779 +old:0.1900263263989091 Fort:0.09783784025175259 Central:0.09523167077039736 Southern:0.03438517955078289 :0.5825189830281581 +has:0.5595030856801205 and:0.3953639034107917 numbered:0.008538127521235785 section:0.005469355058044628 :0.031125528329807316 +citizen:0.12027424638138172 man:0.11816606725853482 man,:0.058698980388341496 g:0.029627207664220584 :0.6732334983075214 +the:0.5781021336687517 and:0.04213187573115069 of:0.03173974101537842 Christian:0.019842420792171533 :0.3281838287925476 +name:0.6175396542113618 nomination:0.046121436140955194 side:0.019179224976501635 use:0.018304666731007915 :0.2988550179401735 +and:0.07763136307417319 of:0.02526937603165188 Committee:0.01924940102736992 was:0.0163597513231682 :0.8614901085436368 +of:0.44566774928067304 and:0.07070315863832485 ot:0.030656064669011832 the:0.03035142145294455 :0.4226216059590458 +industry:0.2641681243578331 morning:0.1168667878284587 report:0.023361853850564523 mass:0.019893726573887074 :0.5757095073892566 +is:0.2203943600911756 never:0.14662959309324688 in:0.13699454234308656 and:0.13272246590372427 :0.3632590385687669 +for:0.27821894696646476 expect:0.1772433345856231 in:0.15509707893118177 with:0.11804370987328996 :0.2713969296434405 +amount:0.6194466294332804 claims:0.07684703421005168 prayer:0.06708716017300206 payment:0.011173864604691166 :0.22544531157897454 +to:0.16903178528885932 country:0.048054422656878204 State:0.03577170568837868 country,:0.02793730368235536 :0.7192047826835284 +to:0.9981957688315585 that:0.00030083583879105506 interests:0.00026910290179147874 they:0.00021864457701220024 :0.00101564785084673 +home:0.3241354161397225 friends:0.039193134438920404 man:0.018939597802999496 residence:0.012588059516557991 :0.6051437921017996 +left:0.4139892323272067 rapidly:0.038643293996413905 thoroughly:0.03189824654777555 in:0.02206107269738378 :0.4934081544312201 +im-:0.9861324762911258 than:0.0011149176881592717 and:0.000905062841673884 the:0.0005283511493817734 :0.01131919202965914 +people:0.03847372567212073 war:0.030000402024268527 tariff:0.028944933337870515 law:0.028907541052618547 :0.8736733979131216 +horse:0.1009032369753772 party:0.006973479817326256 ever,:0.004718475586042597 of:0.003815175765564294 :0.8835896318556896 +now:0.3379446617964763 of:0.28274405931931884 which:0.16048500089620105 from:0.08766776520060839 :0.13115851278739554 +war.:0.05675752911946487 him.:0.008782823724044892 the:0.004795534068211375 good:0.001544802987076139 :0.9281193101012027 +the:0.7002923810583455 tbe:0.12213801288379558 an:0.10326354695839594 tho:0.0401302733933695 :0.0341757857060937 +of:0.18971474729204496 and:0.09950525919764022 be:0.0642988167142416 the:0.04128162329430162 :0.6051995535017717 +is:0.4521218710715335 of:0.3979374736443423 class:0.02786180608437804 he:0.01870444819990007 :0.10337440099984596 +now:0.21480612794983006 not:0.09913334405191089 spread:0.08437903479295351 to:0.06011333866945032 :0.5415681545358553 +and:0.008406885244594662 this:0.0068249566223187435 which:0.004972623910969506 these:0.004879255671053696 :0.9749162785510634 +make:0.3502814934240946 find:0.16356453655170244 such:0.05830327537892469 build:0.04757535219410216 :0.38027534245117617 +last:0.4611484793185184 present:0.19624658136839987 the:0.07283429159193051 conference:0.043982140141179696 :0.22578850757997126 +said:0.4485460016139182 thought:0.09937971533264535 found:0.0870430154989149 knew:0.04599454331467837 :0.3190367242398429 +and:0.12182416097569009 the:0.057466781906753354 The:0.05333841738878881 of:0.04740935281988491 :0.719961286908883 +without:0.3565130955318775 of:0.20948593613830804 to:0.040298723742909846 in:0.03823285073683122 :0.3554693938500733 +ture:0.15690836406505146 down:0.13681245178006388 which:0.1221727487726787 head:0.1149460601632007 :0.4691603752190052 +by:0.34443384947269484 as:0.19988061005630003 be:0.19299104607160442 gets:0.0831915270848863 :0.17950296731451443 +raise:0.13188124730330303 that:0.03739433736351618 hope:0.03232014271513652 day:0.017552287298459517 :0.7808519853195848 +favor:0.8854717186428913 case:0.04673656017804769 times:0.036673617193914744 cause:0.00709814304041257 :0.02401996094473371 +weight:0.09404576530680393 amount:0.04555142186341232 force:0.044551746352728835 condition:0.017027833326577004 :0.798823233150478 +records:0.06218904168417647 people:0.00863320700722664 people,:0.0056274213792277695 ing:0.0037803097214420666 :0.9197700202079271 +the:0.10887415921637539 and:0.08753433951317607 of:0.051502969856472604 a:0.04518199712320979 :0.706906534290766 +and:0.15879219729696634 the:0.09985603736248154 The:0.09382443663622893 I:0.06575366569719196 :0.5817736630071312 +in:0.10730123750613323 of:0.0983433907323835 and:0.06750537303652625 In:0.06080656349760059 :0.6660434352273564 +and:0.32173623153736997 but:0.15295707856346083 that:0.10353661353664594 as:0.035825848636376265 :0.38594422772614706 +estate:0.22108442763628947 corporation:0.11166533995081865 bonds:0.043113764225226246 county:0.03569973787168212 :0.5884367303159834 +and:0.1623066146612242 where:0.08747431054228276 as:0.0635727061985785 but:0.04663202417372156 :0.6400143444241929 +be:0.24722833797229662 stand:0.09063751483936165 to:0.0651507641760705 the:0.054393891913297604 :0.5425894910989737 +of:0.12201046743222692 and:0.10926298520307663 to:0.08642576417228712 or:0.03254166608565849 :0.6497591171067508 +cash:0.027464210399010182 his:0.023032758844305758 not:0.01513689929444668 place:0.013721008879499112 :0.9206451225827382 +which:0.2662700332492986 it:0.20941280265849124 was:0.15534870224994674 It:0.12254843562054857 :0.24642002622171477 +the:0.3511133753569412 and:0.08580369092112065 The:0.039903988756637955 of:0.031522028324995226 :0.491656916640305 +he:0.8828556961838048 that:0.043536012957386884 they:0.025415512110432133 it:0.019015937940822496 :0.029176840807553645 +and:0.2479277346310307 and,:0.171908343938407 so:0.06732410623356472 ;:0.054950169989284 :0.4578896452077133 +the:0.059581330590492594 much:0.04635548971093236 serious:0.04153186294048871 a:0.037575961129637445 :0.8149553556284489 +is:0.5283166888481834 was:0.1678889163047826 of:0.09103297653029818 and:0.09028134222380077 :0.12248007609293506 +been:0.5419817547402419 become:0.009127097810432928 made:0.004979823480767248 created:0.001566842932617422 :0.4423444810359406 +old:0.863737667481932 engine:0.013849470751832486 ice:0.0028873612250968073 a:0.0015410438723937455 :0.1179844566687448 +state.:0.0023524807745431233 week.:0.002144663217333204 hill:0.001976524109294983 day.:0.0018959522677301345 :0.9916303796310987 +men.:0.015312051574839867 conditions:0.014833980417591763 places:0.014411494671774952 piece:0.010598114388068635 :0.9448443589477246 +sur-:0.29676368454650154 sure:0.10483587307620054 new:0.04800527350484719 personal:0.037536119951979946 :0.5128590489204707 +I:0.05449759684507121 and:0.05333968585223449 She:0.01698892758216425 He:0.0028145890145899813 :0.87235920070594 +The:0.17929902251906715 Mr.:0.13222167603693127 the:0.09592524601947822 this:0.08444827195673793 :0.5081057834677855 +of:0.9195159131229174 at:0.02447511873165268 in:0.02312600352069554 kept:0.019188255257861542 :0.013694709366872842 +and:0.18670410340299343 is:0.15068229717353543 with:0.13547358193539671 of:0.11104134140218773 :0.41609867608588674 +small:0.05782791014204304 to:0.02972883486315704 death.:0.02952280774645582 death:0.024560937596066635 :0.8583595096522774 +home:0.8657331905110451 on.:0.06801428961622595 away,:0.03839407218385607 out:0.016813923820717683 :0.0110445238681552 +J.:0.18646179705978339 W.:0.16518575878375447 and:0.06627665574296733 William:0.06266434587859228 :0.5194114425349025 +city.:0.5569435397988002 an:0.04394470806064892 other.:0.003122940047061079 district:0.0022272215930778873 :0.3937615905004118 +the:0.5559261384647931 every:0.10595986669269122 lots:0.05321657246223966 his:0.04624001483410742 :0.23865740754616857 +school:0.5352042578108581 other:0.08508362339906865 way:0.05638825201029786 wise:0.030506915563886048 :0.29281695121588946 +or:0.21089413738480944 and:0.16509602527794506 but:0.12899127477792002 But:0.037886414110977894 :0.4571321484483475 +interest:0.19124333281537087 Interest:0.11855767417482693 in:0.10040007746508886 of:0.0351858577509895 :0.5546130577937237 +break:0.10806181395678138 continued:0.10300641961562196 tried:0.07386179781399997 even:0.06154180865741734 :0.6535281599561792 +following:0.04993940978209169 time:0.046320364106852585 last:0.04441459077257839 next:0.033783816605902704 :0.8255418187325746 +of:0.11317038074942708 ti:0.09512747989587758 t:0.06249896124522452 the:0.04325109234762951 :0.6859520857618412 +what:0.5226360147028124 that:0.4279802078807436 so,:0.008667506059344719 how:0.007864590612723928 :0.03285168074437538 +their:0.9999280652842142 its:6.038291218504714e-05 our:7.1763772744272e-06 his:1.685056332590714e-06 :2.6903699937533824e-06 +and:0.21166404516332551 to:0.14093712098294187 the:0.12351672356433623 of:0.062238846024989705 :0.4616432642644068 +of:0.42020438054938797 and:0.20792846174569318 the:0.13238881934203806 or:0.08661631422463527 :0.15286202413824562 +plan:0.9987978561846991 as:0.0002420136802560446 was:8.475093914487339e-05 for:5.903498798468658e-05 :0.0008163442079153265 +is:0.03700197162153392 and:0.004236315069809903 age,:0.003626871088297621 being:0.0035455268700836963 :0.9515893153502749 +J.:0.26271113176920996 Mary:0.10996307688469602 et:0.09634865295807303 William:0.08460183382043668 :0.4463753045675844 +are:0.48806180044195785 know,:0.2656129456008632 have:0.05979278586100692 by:0.03301145650500059 :0.15352101159117143 +the:0.0027674362239582767 mass:0.0018118315088497968 young:0.0013582177665056767 labor:0.0008944293381238737 :0.9931680851625624 +from:0.17177062401273038 the:0.11658761590556863 take:0.10065548473187874 with:0.0736039151035483 :0.537382360246274 +and:0.21616881896954088 H.:0.057434572683863164 A.:0.04690406312397072 E.:0.038874743169928665 :0.6406178020526967 +doing:0.18407049244107712 taken:0.032625138817013045 not:0.024951347263679684 to:0.015093733261261996 :0.7432592882169681 +told:0.46659877973007374 will:0.15073184456584116 to:0.07495307176313944 may:0.06859203948365217 :0.23912426445729346 +he:0.5512836044943855 He:0.08071885664027376 and:0.07243300682736685 King:0.058616232136057 :0.23694829990191704 +the:0.4230451313294619 made:0.3681472544021273 th:0.09658436324176262 their:0.03824082401401028 :0.0739824270126379 +the:0.5605271062830787 tho:0.43945120288661565 of:1.241261363422301e-05 to:6.80503179330855e-06 :2.4731848782762347e-06 +is:0.2916314675668928 was:0.24732155767625238 considered:0.1936165534773419 had:0.13851688421265615 :0.12891353706685688 +and:0.4133902371266165 rendered:0.03637991138425615 permit:0.02220145088886814 command:0.014274517421954899 :0.5137538831783044 +of:0.17344376065446984 half:0.13887658611149897 for:0.1344696429491116 about:0.12983414878042213 :0.4233758615044976 +to:0.08564945903123772 the:0.043554492435357514 it:0.024072549295663367 in-:0.022200348223517484 :0.824523151014224 +of:0.886745403116146 ot:0.028132129119199954 ol:0.024369634453577385 or:0.00878930415970825 :0.051963529151368384 +those:0.43351973956751716 men:0.07378664507443904 all:0.053415422875892286 people:0.03799105273046997 :0.40128713975168157 +account:0.6109134672128215 description:0.06960489888182698 knowledge:0.039281029070568824 story:0.026200225013050735 :0.25400037982173185 +interest:0.12187961039012998 interests:0.11782331595329319 Interest:0.09471321176830298 success:0.036515586618221456 :0.6290682752700524 +say:0.22888095431202182 do:0.0417901269351299 be:0.021951622079299994 say,:0.016001866309475955 :0.6913754303640723 +face:0.03956456786824165 I:0.034241294927972905 into:0.024693356398297568 and:0.021444667063898065 :0.8800561137415898 +He:0.26895109133660877 she:0.19133524118442125 he:0.13782819523578801 and:0.12223846871740005 :0.2796470035257819 +and:0.1510479806268836 but:0.10345270198148472 the:0.029691738405165317 here,:0.02523047435561238 :0.690577104630854 +has:0.979849802160582 have:0.010181874800874114 had:0.005642772607837837 haa:0.002065145400706312 :0.0022604050299996794 +contest:0.43109361141859065 head,:0.010805382022023781 majority:0.009981524252839056 as:0.007992481910278935 :0.5401270003962676 +the:0.19731252620687964 said:0.038530602063554534 work:0.02691565576111796 a:0.02598221079393112 :0.7112590051745169 +according:0.831746990967674 agreed:0.03752860313968974 pointed:0.013038617215672699 ing:0.008507392501716927 :0.10917839617524658 +Union,:0.11845305324963794 house,:0.08699445095410165 home,:0.06378764601565563 State,:0.027123860468595596 :0.7036409893120092 +in:0.40374819274649565 upon:0.18858001554556192 on.:0.14771700637870247 to:0.1417219394924497 :0.1182328458367902 +the:0.39236089086264453 a:0.15032668881741787 an:0.035813363168094414 in:0.029691845572903778 :0.3918072115789394 +of:0.8538612477128668 that:0.076622404386796 for:0.03227141290011109 aforesaid,:0.014031948259037415 :0.023212986741188695 +to:0.38496512313051273 I:0.19276739685685532 she:0.09601364246321424 who:0.08277563269365176 :0.24347820485576604 +a:0.9986782657467669 s:0.0012046397064155328 n:7.099251398697387e-05 u:1.5356551376281536e-05 :3.074548145447513e-05 +;:0.02581933166658581 was:0.023978486811324293 found:0.021965360608892072 to:0.0162837459712534 :0.9119530749419444 +that:0.03303160765451656 with:0.03235399606694781 right:0.018785934305044306 only:0.015104177026484242 :0.9007242849470071 +for:0.5110302237855244 of:0.4131406886685842 ot:0.026863572131371607 to:0.013593427057400359 :0.03537208835711955 +there:0.39392562555717237 these:0.3189795561388698 they:0.19778450920623622 returns:0.03690443656123976 :0.05240587253648194 +of:0.3535236904699282 to:0.08861013112139299 and:0.08131993785505381 in:0.06187771349146117 :0.4146685270621636 +white:0.0008835475375079115 in:0.0006113807868064202 my:0.00044356630922141193 rest:0.0002446128475440165 :0.9978168925189201 +of:0.2679801797375548 than:0.2089713906520873 for:0.11569550240191889 to:0.11554817051155848 :0.2918047566968805 +are:0.1380267331010623 I:0.07409946576103837 provided:0.07290103776792274 make:0.05070043952905382 :0.6642723238409227 +tion:0.042104654506703434 idea:0.0283267319328806 ing:0.025477835143607023 of:0.022459699106919195 :0.8816310793098897 +the:0.47833482918677117 I:0.09178279874793058 this:0.07892657816656717 a:0.07085668935155719 :0.2800991045471739 +by:0.3446583574314532 in:0.19640374754553963 as:0.14340607193315943 for:0.13296835073043545 :0.18256347235941234 +of:0.0889459442433757 dress:0.07211030844400307 amount:0.05788917164623493 and:0.04094258555194299 :0.7401119901144435 +political:0.18400470815261233 present:0.05380979589150595 the:0.02298882457256283 close:0.021944795281072738 :0.7172518761022464 +a:0.1307603322019914 the:0.12401111730738595 to:0.04523335164320008 it:0.02672981912919419 :0.6732653797182284 +its:0.970038747033394 it:0.011348951044712752 the:0.008965157588164099 Is:0.005576534114584641 :0.004070610219144638 +and:0.5101671158458234 in:0.2591368290018475 to:0.07551848042536397 aud:0.052067246027021306 :0.10311032869994378 +and:0.3766811182737777 the:0.1240353610611139 Mrs.:0.08918099567455354 General:0.08640484235244504 :0.3236976826381099 +in:0.2418149748883747 of:0.17279728149095783 with:0.1668258389961406 and:0.1381902988014981 :0.28037160582302867 +in:0.5146282210650548 and:0.22000058440069595 In:0.09211025134524639 to:0.058645590591139954 :0.11461535259786283 +find:0.5267416491927415 are:0.20833409228159971 not:0.13036742957903188 want:0.04965978800466608 :0.08489704094196074 +every:0.09192940646498123 Every:0.05682998668486664 the:0.023482164146090896 an:0.021103858225661264 :0.8066545844783999 +;:0.13880648067862764 rule:0.05482517682094453 thereof:0.04080280555663284 here,:0.040488806418571735 :0.7250767305252233 +and:0.0014220721393275253 of:0.001072556334811999 to:0.0010132186052977561 it.:0.0007946389959289109 :0.9956975139246338 +highest:0.05634111415251394 same:0.016431125128650092 public:0.015020954926214043 general:0.012220001958623387 :0.8999868038339985 +the:0.16921115519309363 book:0.03855951636226318 a:0.03293643386358976 It:0.018725576086150632 :0.7405673184949029 +can:0.3806578268681136 should:0.3114549577887109 will:0.12449877916176019 could:0.09324026662984429 :0.09014816955157103 +the:0.0654304224576365 to:0.035789739658912426 then:0.01084362255375897 follow:0.010533643971294708 :0.8774025713583972 +1,:0.056934650199738826 thence:0.05236047476651475 block:0.04878778590520594 and:0.04857045651873355 :0.7933466326098068 +be:0.590712677419711 have:0.07770112579059303 not:0.05965511731834724 bo:0.022769938051721793 :0.24916114141962678 +were:0.17694350281283758 through:0.08997264527505287 at:0.06596414333963009 of:0.05871347017903553 :0.608406238393444 +not:0.41058060503337684 have:0.20514094528683066 be:0.13516934974208436 lie:0.04178214046916736 :0.20732695946854085 +him.:0.04626361252909414 the:0.02436280337729729 it.:0.01901487682480853 danger:0.009068552183827159 :0.901290155084973 +the:0.17406934843029356 be:0.06895854018502545 order:0.039674858142550576 issue:0.03521631457415248 :0.6820809386679778 +has:0.950216190427385 had:0.021476466619621434 is:0.005795725651930761 can:0.0038334540894349933 :0.01867816321162768 +and:0.11011195658335793 towns:0.04672539662202066 moment:0.03393843157506454 quantity:0.024119925288949025 :0.785104289930608 +and:0.18770502414963547 the:0.13241921525783246 a:0.07111155537837477 with:0.06266784221474499 :0.5460963629994122 +the:0.120174958740774 9:0.05096801901514789 she:0.047387196495728756 next:0.024677857878454636 :0.7567919678698947 +the:0.6274428731705041 him:0.061187487964604326 his:0.02837589308948263 tho:0.0280711722871729 :0.25492257348823605 +and:0.1605836651820941 the:0.13730881253075278 by:0.10259851967649686 to:0.08815163293482828 :0.5113573696758281 +was:0.8262492348049835 is:0.03777231463997362 the:0.022728189029439957 told:0.00982302019547631 :0.10342724133012668 +The:0.6172147422354425 Tbe:0.022644572556777154 He:0.013510470980984299 His:0.011302327059110677 :0.3353278871676856 +spoke:0.015502299849720026 wishes:0.014395940678855433 talk:0.01413484128099659 is:0.01254100695247197 :0.9434259112379558 +had:0.17931810919389174 has:0.1790390695688503 was:0.11070533253313278 then:0.08365772091032418 :0.4472797677938009 +below:0.33521852960164966 of:0.20604114147919772 In:0.19306226332788884 and:0.1381073800757918 :0.12757068551547207 +it:0.7753576581746938 he:0.04328774307333521 they:0.02081508980451771 we:0.019709991419917316 :0.14082951752753609 +water:0.10186787445679125 money:0.06865800999106587 trouble:0.045951000415502014 sun:0.0106016562294635 :0.7729214589071772 +of:0.14671709924000448 and:0.08099745296153454 the:0.03432969255126281 Mrs.:0.027882407128209656 :0.7100733481189885 +a.:0.36243798011247147 p.:0.31635631232315103 p:0.033208344777440744 a:0.0219011569005395 :0.26609620588639726 +feet:0.3563983485802797 inches:0.13169294481346872 years:0.08431573133589249 miles:0.07221686562244904 :0.35537610964791017 +the:0.08901255025713968 or:0.07216846915372271 county:0.04694450992711847 a:0.04107050628972761 :0.7508039643722916 +girl:0.09247939797018342 first:0.027809475927530386 tree:0.026829772483866067 woman:0.025352620855180565 :0.8275287327632397 +its:0.8304397625077505 Its:0.10616591011601763 the:0.058819686651771695 tbe:0.0002833297792615648 :0.004291310945198537 +of:0.37077596610256947 now:0.12997466973750937 it:0.02481930142413877 and:0.023058198046555328 :0.451371864689227 +for:0.22892396859732786 of:0.22807974491157385 with:0.14245092239160406 in:0.14103560322759662 :0.25950976087189775 +out:0.20752740316302112 some:0.11690077983747492 It:0.05022004192410035 and:0.03027154439428761 :0.595080230681116 +ft:0.3754010046394137 do:0.08657769542701171 H:0.07953586823015511 G:0.07116871334156967 :0.3873167183618497 +on:0.3314406223242354 will:0.12394496065745429 If:0.09848132411738429 with:0.08824852944674666 :0.3578845634541794 +to:0.9974748864380207 shall:0.0020512077466510246 U:0.0003510582224486026 that:0.00011341408061556697 :9.433512264004023e-06 +fact:0.024307856889775957 disease:0.020458605856605788 bill:0.01973113597030182 remedy:0.017524329943136175 :0.9179780713401803 +had:0.4319751358021957 has:0.41919131686450617 ever:0.025582359687860556 never:0.021242184453245584 :0.10200900319219217 +But:0.24044220255045692 and:0.1984230250127384 that:0.038159335626527645 but:0.03173982178979653 :0.4912356150204806 +during:0.27926874961373405 for:0.23768520213281938 of:0.23446784372566962 in:0.1435151884005862 :0.10506301612719071 +of:0.18285570982769078 people:0.11102978592105063 other:0.1073733651844527 men:0.036120731838186766 :0.5626204072286193 +to:0.39484377253446074 here:0.3847766762419426 shall:0.13280204627844852 will:0.05949415078792679 :0.028083354157221393 +and:0.10815078819034543 to:0.09655571897882782 of:0.09515702352305397 the:0.06292092745212373 :0.637215541855649 +with:0.45862763457632294 and:0.1302535865648547 about:0.1226840405020735 receiving:0.11861945028403581 :0.16981528807271315 +to:0.40228295544415066 of:0.1472869867268833 in:0.12438379035939122 Its:0.042979956024193 :0.28306631144538186 +to:0.037174011779196124 The:0.030301549193434394 So:0.02029196117764171 How:0.020137538482091405 :0.8920949393676363 +good:0.1827835918038792 go:0.023463414449593035 or:0.022287173570334086 men:0.01704053057519836 :0.7544252896009954 +The:0.3055974714795394 the:0.1641449047020979 until:0.09397638062800442 Our:0.04077203792353388 :0.3955092052668246 +they:0.7713925615240769 the:0.16946853197020828 it:0.02922382333682187 to:0.01238969660213349 :0.01752538656675954 +of:0.9655358790265133 to:0.012554533075300408 in:0.005377539269317622 and:0.0042366185391130035 :0.012295430089755786 +the:0.605559333743746 a:0.08387904528915875 tho:0.07362368794786328 become:0.045088889212229886 :0.19184904380700207 +or:0.20718121910220189 made:0.10284462666443002 and:0.09533684017068897 8.:0.03302073651417512 :0.5616165775485039 +he:0.44248036404052854 it:0.40491637397863434 she:0.08755702395581626 that:0.010906963755578617 :0.05413927426944212 +is:0.28972679352770236 be:0.18984165653037005 time:0.17810001342523535 property:0.04801295645716913 :0.29431858005952305 +after:0.8339670154183184 own:0.043513873408204215 entire:0.035876968226821945 past:0.03169111690637749 :0.05495102604027782 +the:0.046740351163595435 which:0.03037869667932947 Jones:0.0265152609424379 bill:0.022164549981383324 :0.874201141233254 +::0.7191097981112974 have:0.046787356473160256 only:0.04190267308345258 the:0.0121333899675922 :0.18006678236449752 +Central:0.39172129859777916 the:0.13997770064383688 East:0.0618564616920647 said:0.02575675556424849 :0.38068778350207083 +amount:0.13264111577361012 sum:0.03274915529563556 length:0.024812610064354514 danger:0.023175039986719312 :0.7866220788796804 +drew:0.6733487037201167 and:0.048579375945496724 of:0.030981016804011694 sold:0.020812103453770808 :0.2262788000766041 +first:0.016612684378296456 story:0.010802985937939031 old:0.010683718989139147 general:0.010125902933514515 :0.951774707761111 +record:0.16450910969245003 books:0.08693281053117238 stage:0.07712579861056855 scene:0.03241967063724269 :0.6390126105285665 +are:0.5430088738309625 who:0.10564591189232773 were:0.10244831303323107 seem:0.08208780620356666 :0.16680909503991193 +of:0.3422416349610425 and:0.24480785036441607 except:0.1496959928505607 Into:0.12034948275835068 :0.14290503906562993 +than:0.9187422050371006 of:0.023652266649859803 and:0.003007688383892121 likely:0.0023972131213263795 :0.05220062680782107 +was:0.11987472777166588 am:0.04459997290237486 had:0.04299216315560887 would:0.04080459885301294 :0.7517285373173374 +to:0.09406294012552706 a:0.08428954378437534 the:0.07935769009494391 not:0.05402464161971733 :0.6882651843754363 +army:0.0888519742680616 law:0.0885303595880413 company:0.03544699457134566 law,:0.02595761440958384 :0.7612130571629677 +her:0.263288697672955 sell:0.13568645155735604 speak:0.10081631202313836 him,:0.060368220961416724 :0.43984031778513394 +and:0.05931180149434067 that:0.040212819574517125 from:0.015139074481962623 were:0.011505039781395818 :0.8738312646677837 +and:0.18061798382936028 the:0.1161187510656206 besides:0.08815238950408114 to:0.07984265272167987 :0.5352682228792581 +on:0.018491406381596732 pay:0.011779220509755408 such:0.004056880401669421 that:0.0025172892925331685 :0.9631552034144455 +been:0.8327637651526331 wheat:0.04770302130247684 not:0.023424716599438938 also:0.01443349675965359 :0.08167500018579744 +ami:0.3439408287977531 almost:0.19657976479918549 her:0.02773234594275032 the:0.0206673073181614 :0.4110797531421498 +would:0.05346576492809585 shall:0.04663220186321177 does:0.04593578119231478 as:0.042518421184716534 :0.8114478308316612 +net:0.09022759384104855 their:0.08257743621284981 light:0.06412942228532796 the:0.028004840305414187 :0.7350607073553597 +and:0.15144422066712662 the:0.1232368902332243 to:0.11406817544765102 of:0.07653942376266813 :0.5347112898893299 +st:0.04101150477588226 moro:0.028725057742994883 day:0.024892712932196442 honor:0.021078423666040548 :0.8842923008828858 +and:0.21617424811023395 to:0.171361240571213 of:0.05083479845583742 or:0.038829047544067456 :0.5228006653186483 +and:0.10770477941076068 the:0.05312092932065876 of:0.05162522149258256 to:0.026993245858399212 :0.7605558239175988 +two:0.7766141730908152 more:0.21782615928778815 other:0.0019514516618046225 moro:0.0016987696351718014 :0.0019094463244203237 +building:0.0808901924739363 State:0.06346115380932885 subject:0.06146867350519474 weather:0.05689436330931222 :0.7372856169022278 +a:0.15512324976548936 pro-:0.09402292368447455 the:0.0837198972171593 ti:0.07494899343437625 :0.5921849358985004 +of:0.08177224735860364 recorded:0.06979572284650712 day:0.05838094175793557 year:0.04970218519117444 :0.7403489028457793 +house:0.008631462625753332 duties:0.0076158457779609565 examination:0.006805522703097818 bond:0.0035379891132120193 :0.973409179779976 +to:0.3995063475874884 tbe:0.2847185340363052 the:0.17856673861639227 and:0.05013353192758868 :0.08707484783222556 +knew:0.18617694204848262 saw:0.10778304498336104 felt:0.09500344168638482 learned:0.08748578803194 :0.5235507832498315 +appeal:0.0914163981002927 and:0.06794980438248863 as:0.030857525519893347 that:0.024927521117202478 :0.7848487508801228 +been:0.5880872576024386 lived:0.09384293545081228 gone:0.011498659753592247 returned:0.006410505402822554 :0.3001606417903342 +happened:0.03249582198192519 The:0.017686812246358572 been:0.01100841233615077 not:0.0058259367067050195 :0.9329830167288603 +will:0.29989225747531667 could:0.25772590237050524 step:0.19574178958824937 can:0.046730937215996644 :0.199909113349932 +about:0.04915192907320437 coal:0.03820503321997132 Is:0.025842956668044974 as:0.020301539801119664 :0.8664985412376597 +ho:0.8949135838485012 I:0.04984868134265228 he:0.03863103356801407 you:0.008728795326518907 :0.007877905914313475 +a:0.47797022304440945 about:0.34390055156084587 only:0.06223138413539389 out:0.04600199228032749 :0.06989584897902344 +2.:0.1138999705382188 4.:0.10138986690763373 8.:0.04024645308928307 2,:0.025624521091407563 :0.718839188373457 +on:0.40155721496352875 of:0.18953797963915406 to:0.11539781025931448 To:0.09289774052751647 :0.20060925461048632 +and:0.07625543138706543 to:0.028732358375320226 N.:0.025255783409632936 of:0.02394317177374076 :0.8458132550542405 +taking:0.33220987495665333 live:0.3013445541869256 for:0.032247570169820994 to:0.028652370748690842 :0.3055456299379094 +and:0.2147298362205131 section:0.1300190062801666 to:0.038529794222700725 power:0.03026531416027358 :0.5864560491163461 +hours:0.06957521729932381 States,:0.06835190902493646 counties:0.03842843275022075 Democrats:0.0265884425241135 :0.7970559984014057 +forth:0.7215708688507428 out:0.11904954647246606 o:0.0057737730922615554 15:0.00379389186283973 :0.14981191972168975 +the:0.5358295410845466 a:0.05184053115151175 tho:0.019158524297322475 No.:0.01864911791042132 :0.374522285556198 +he:0.4301934562730288 is:0.19820134360951547 little:0.11133796281923382 a:0.11044519586439816 :0.1498220414338237 +west:0.12430554749879918 east:0.1005319981494323 E.:0.09097173449799055 W.:0.06381165132102268 :0.6203790685327552 +had:0.17580200240859747 would:0.12743940196694287 has:0.12230033963261426 will:0.11270130230252577 :0.4617569536893196 +and:0.14037379936236372 The:0.04770524192440881 the:0.04114974202847878 of:0.03822900483921471 :0.7325422118455339 +any:0.4887507478471451 the:0.0022039805277255194 James:0.0007080821349395117 tho:0.00011662913983211637 :0.5082205603503579 +the:0.4409420447457909 their:0.27969474468623684 which:0.15676128650376558 a:0.03836333739725393 :0.0842385866669528 +people:0.09391699629456576 public:0.09069004112926878 water:0.08220058328300646 court:0.03693937618228074 :0.6962530031108781 +work:0.03798568900748357 less:0.033543829358555155 he:0.031848052629336265 Register:0.018234945864889277 :0.8783874831397357 +the:0.28395392529687474 an:0.011527550726185927 City:0.002745307668329213 Block:0.0026227130140368707 :0.6991505032945732 +the:0.531783771242425 her:0.18523813094262812 his:0.15734729785561538 a:0.0716837971982109 :0.05394700276112063 +was:0.26570619224933983 before:0.1868152346344679 as:0.1538665151230297 and:0.137972534011746 :0.2556395239814164 +the:0.4308200957409893 this:0.13953460086862787 our:0.09207499722231453 a:0.051933744336944726 :0.2856365618311237 +of:0.13834188159765698 and:0.12325898358013386 the:0.08285878824356181 to:0.03506945134718701 :0.6204708952314603 +office:0.7460682465813983 history:0.008264016411926778 records:0.00714969792259011 hands:0.006561084338595027 :0.2319569547454899 +greatest:0.3889070679203266 to:0.09948535568422619 and:0.060085528570152764 regard:0.05109701070101707 :0.40042503712427757 +them.:0.08314449801438856 him.:0.0725491235012624 me.:0.04241845077093825 all.:0.035143988204263496 :0.7667439395091473 +and:0.11933305113207396 to:0.03850102841679216 of:0.02770432750471077 is:0.02174691105708549 :0.7927146818893376 +case:0.2310380792122269 all:0.11233999051592662 of:0.037460793987499214 which:0.024037440000903604 :0.5951236962834435 +made:0.36230584919299735 the:0.06510129501810069 broke:0.0638287598105677 was:0.060607765571592156 :0.44815633040674197 +and:0.1829234415777341 the:0.11039893510395596 to:0.10002941906380541 The:0.09229547933250022 :0.5143527249220041 +and:0.031437299627641434 end:0.010451536339146986 -:0.008092102342755576 .:0.007991414134233188 :0.9420276475562228 +answer:0.20156307046791266 way:0.1502091162001909 ring:0.1449085121070511 man:0.027221746472974605 :0.4760975547518708 +team:0.28419425366480267 day:0.2131588803892318 end:0.14479554491904387 time:0.11660010113329779 :0.24125121989362383 +the:0.2644714438762456 and:0.0916058555376946 The:0.06663062597816574 a:0.058632364762596326 :0.5186597098452979 +till:0.6951689554416972 of:0.04886511039532227 and:0.02720403954641525 the:0.01803288487304816 :0.2107290097435171 +but:0.051793879182675195 the:0.045447352873819326 and:0.0401703202321792 out:0.039186721678148385 :0.823401726033178 +of:0.3028322349623063 were:0.052486985203931 at:0.051598611074268864 fancy:0.021826410656543983 :0.5712557581029498 +and:0.1272032695320833 to:0.06596971431356587 of:0.05148919084942192 -:0.047037497690034034 :0.7083003276148948 +and:0.19269024185955966 to:0.18988560274958372 with:0.18802701608321237 of:0.14910342822156922 :0.280293711086075 +led:0.23610429146331463 dis-:0.15479144774732212 received:0.11342296661730061 left:0.058838624314505504 :0.43684266985755715 +money:0.32818175462091537 people:0.11497835382326888 cotton:0.09282362560190875 water:0.07612999242835626 :0.3878862735255507 +ward:0.40957974172568035 fall:0.1449608212700494 coming:0.11994263713422787 appeal:0.05163915456896474 :0.27387764530107767 +the:0.23062370943933386 their:0.030453739905821092 a:0.02689901804365356 was:0.020727558591053186 :0.6912959740201384 +attorney:0.058338563605456646 ly:0.029050954703255066 as:0.015498593131899835 .,:0.0105179633838541 :0.8865939251755344 +of:0.3189855787626767 in:0.27320512981695716 and:0.21449013061258765 were:0.06319796936540074 :0.13012119144237783 +the:0.08696728216950463 and:0.08286739986052527 a:0.0662871758883528 to:0.04810951383036043 :0.715768628251257 +the:0.029336937721930155 place:0.026084613186473666 placed:0.020415834362990642 went:0.017230365730766382 :0.906932248997839 +and:0.16384907757321712 the:0.10167623730868688 The:0.07857968865498095 of:0.05425956803709794 :0.6016354284260172 +other:0.018697890724441092 most:0.01661313495664845 said:0.014543865194466373 the:0.013392443337442314 :0.9367526657870017 +any:0.2617437632827747 the:0.16337286150117136 a:0.09700878060157254 nearly:0.05605708101334866 :0.42181751360113273 +outside:0.06454793606656624 part:0.05829362454037957 those:0.042489567538937754 some:0.04001311936389201 :0.7946557524902244 +of:0.09410301419018129 yesterday:0.021781165578040985 who:0.019922373218754508 and:0.019136686219070546 :0.8450567607939525 +the:0.825737044192663 tho:0.046990173678251534 a:0.04519132101467443 naval:0.01782456007784705 :0.06425690103656398 +year:0.14042873032973752 ladies:0.06676241595880641 until:0.06485111754112909 immediately:0.05712257467462352 :0.6708351614957034 +in:0.18224660536729745 to:0.1331266286367934 on:0.1231062976519518 the:0.0857627662313758 :0.4757577021125814 +the:0.3964585351773094 his:0.09148847086024357 a:0.08591770599864429 every:0.07644419188410469 :0.34969109607969806 +of:0.11181322246396187 and:0.07413750125885937 is:0.03888505908923439 duty:0.03859731610651205 :0.7365669010814324 +and:0.18358725941590368 Mrs.:0.1772715469911712 V.:0.045011881922638594 J.:0.030255006605231585 :0.563874305065055 +without:0.21430318208228416 of:0.16892869714574957 to:0.06586286587478102 than:0.04303448240516237 :0.5078707724920228 +The:0.12926059996709624 Company,:0.08319518815703303 the:0.08181682628544547 r:0.06761701886506091 :0.6381103667253644 +to:0.4984480594209146 and:0.13000231419096292 would:0.10379853959014966 will:0.09009659995697827 :0.1776544868409946 +der:0.034697493423190943 other:0.026856114885835176 in:0.024649189331425386 and:0.020351473626217302 :0.8934457287333313 +and:0.7082801907547591 but:0.011803119405765705 yet:0.010554014990244024 are:0.009270859040842126 :0.26009181580838925 +one:0.3526346338217957 each:0.11706343571138549 all:0.04679444878713671 many:0.046252523754479254 :0.437254957925203 +own:0.038874979167111336 government:0.028962129145966093 people:0.028408265057585758 present:0.020542937991653163 :0.8832116886376837 +years.:0.11966244527164151 and:0.10351561979074149 of:0.0635885861490656 a:0.05951716583347923 :0.6537161829550722 +said:0.25479723511293617 the:0.16694523434523473 lands:0.02647024719163052 a:0.02223267517085608 :0.5295546081793426 +of:0.07710149771050219 and:0.05376021042474507 in:0.028900314091901986 the:0.028602748567832674 :0.8116352292050181 +the:0.261044029921875 street:0.2358846632336966 and:0.07210378042829446 The:0.03215600735574659 :0.3988115190603874 +a:0.2529503314962649 i:0.031666920142936206 the:0.026954790281748527 be:0.026439780895113587 :0.6619881771839371 +who:0.18002503613092774 he:0.09499766722598524 which:0.07210424882132395 that:0.05373602113106879 :0.5991370266906941 +and:0.08684738294736236 1:0.06320453025790254 the:0.06252570496868372 I:0.05391902787907461 :0.7335033539469766 +seized:0.7428616935164865 presented:0.12748117121193264 provided:0.009027400033105005 pleased:0.008925590515281516 :0.11170414472319423 +the:0.9102193758320192 tho:0.028489280770264424 tbe:0.016144648038179707 a:0.0152007252720253 :0.029945970087511396 +and:0.21044704368374592 the:0.15498153247449206 in:0.12819584876542053 on:0.11079507160507167 :0.39558050347127 +will:0.38207836494533276 to:0.2715641216144879 can:0.18853540076041939 may:0.08226516842174429 :0.07555694425801569 +and:0.12126877498905556 A.:0.09254044889171457 H.:0.05045329420976809 M.:0.04082393167207411 :0.6949135502373877 +to:0.3735400913151363 for:0.2305042331498132 in:0.1408029211318332 of:0.08160659176902516 :0.17354616263419193 +methods:0.3382829016142377 system:0.1937491727112668 law:0.14525203448533608 corporation:0.1373938360141631 :0.1853220551749963 +to:0.6876084335397511 in:0.17763317753859892 on:0.03243580521380146 into:0.01341908269680466 :0.08890350101104377 +ent:0.2275812183976951 the:0.18311640365021623 An:0.13151012444206042 The:0.12522885240116757 :0.3325634011088608 +said:0.28404954658081183 the:0.1626266276961378 which:0.055142860715364096 and:0.04506677816949665 :0.4531141868381898 +few:0.8843852396874813 hundred:0.029822291086141386 thousand:0.019333127674061944 dozen:0.008555393288382847 :0.05790394826393245 +the:0.19474793763736373 and:0.0957652270761556 a:0.055298531338398065 The:0.04151144113006673 :0.6126768628180157 +check:0.10754552235566472 and:0.07619417989556558 based:0.04172341992455765 attack:0.02886571591433072 :0.7456711619098813 +with:0.17437833818926077 asked:0.14948529434568578 behind:0.13365045704359907 for:0.06995299411003479 :0.4725329163114194 +the:0.2610581715622607 by:0.2352043338174116 to:0.16673792897126125 and:0.04446260267638937 :0.2925369629726771 +to:0.4230026288250005 will:0.24721504818748608 would:0.12834029602227617 may:0.05578037502673044 :0.14566165193850675 +im-:0.04962747081363462 most:0.04507728471813188 un-:0.026230982176060902 per-:0.023976855824467427 :0.8550874064677051 +Union:0.25436488467227647 true:0.03258705234197636 same:0.019346155634894526 great:0.01055106919050191 :0.6831508381603507 +thinking:0.47987798851284735 that:0.14856017747491304 and:0.08382568086485877 giving:0.06741362693814468 :0.2203225262092362 +him:0.8601852767515658 the:0.133666443802944 tho:0.0016398286688788547 very:0.000760333526911761 :0.0037481172496996074 +ground.:0.0045133479831511916 body.:0.002705249926102139 race:0.00217786194510726 is.:0.0013867937573580253 :0.9892167463882815 +looking:0.049612731280287974 shot:0.040436661481870514 fired:0.027720934686221 present:0.00831985923654098 :0.8739098133150796 +the:0.6801321609688025 of:0.1776380348203073 and:0.0392526474931229 to:0.02959568294952291 :0.07338147376824443 +for:0.4407072325996706 of:0.27438496157979075 in:0.12451006701612885 as:0.058371076705054294 :0.10202666209935547 +made:0.2674920491538466 one:0.13526183223648916 ono:0.03147098796538659 out:0.02590708510893331 :0.5398680455353443 +and:0.42235801841409115 of:0.16172538265347608 prayer:0.043175578232575056 by:0.030241204691312768 :0.34249981600854484 +rapidly:0.599212875635243 secured:0.2887405589318964 raised:0.01476643238832612 or:0.005352796423387115 :0.09192733662114758 +that:0.09422048098563714 week:0.06844941735917241 they:0.05476220889778732 election,:0.047967518065625235 :0.7346003746917781 +of:0.6402454960197925 and:0.08361415460020098 in:0.05272134174082654 to:0.04801654026684168 :0.1754024673723382 +of:0.16334088962529233 and:0.12807159900022852 as:0.08877264500935972 with:0.07164177683074599 :0.5481730895343734 +the:0.5315429021371432 tne:0.23953652746287113 a:0.12057913667352338 10:0.06031326456471298 :0.04802816916174936 +":0.037646480845308763 here.:0.018022582924858095 government.:0.0176429541063071 girl.:0.009004487943356355 :0.9176834941801697 +sign:0.36005188371941166 want:0.2525374667323481 few:0.06412468159170395 work:0.013773137468639073 :0.30951283048789724 +bill:0.2563122687751539 bills:0.07645129858110107 feeling:0.06240287356341307 making:0.017962474089996246 :0.5868710849903357 +live:0.3205873763290997 that:0.15447954549141274 and:0.12099234794041472 whom:0.03706862601128428 :0.3668721042277883 +cut:0.6705448755931106 get:0.010424158359308525 put:0.0015172287665627016 got:0.0013869965409784458 :0.31612674074003977 +said:0.29192551077452394 the:0.043840548339086446 laid:0.008663210513972362 other:0.006470595847728869 :0.6491001345246884 +to:0.2429877932128118 for:0.17354397594034135 by:0.1580231442423942 in:0.09917520715151125 :0.32626987945294145 +to:0.9487299317306808 10:0.0018268493025870667 lo:0.001783442495892913 io:0.0017040080284712786 :0.04595576844236806 +and:0.29128827954917524 Smith,:0.010034340265861605 H.:0.006283249033441776 Smith:0.0038614791628780285 :0.6885326519886433 +in,:0.2201571919076761 dressed:0.021487148606077717 be,:0.005530669321776765 known:0.002503163450069291 :0.7503218267144002 +him.:0.3633847071033222 .:0.004616077574072744 of:0.003477480471144115 and:0.0029902811882507705 :0.6255314536632104 +the:0.6124069557681738 his:0.23489914116188898 this:0.05372419236582782 their:0.03195023366662712 :0.06701947703748229 +this:0.5706452895993325 the:0.13465063868410712 said:0.08993849055474246 such:0.034826770916100744 :0.16993881024571728 +ordered:0.12966005555562846 obliged:0.11945040416345211 called:0.09426986708031283 brought:0.07071446833857149 :0.5859052048620352 +came:0.10663750873930788 went:0.10447620352929415 gets:0.043607816798450244 looked:0.021793870949031745 :0.7234845999839159 +whenever:0.18382796686414013 and:0.17764329187569572 at:0.14257675976124806 if:0.06974118166831493 :0.42621079983060095 +50:0.21445719925485843 ed:0.12633752636680476 of:0.10836449015105001 and:0.04571820707453358 :0.5051225771527532 +of:0.2765066808835975 in:0.18669036937439892 to:0.17764378485476412 on:0.09924608996260822 :0.2599130749246312 +the:0.035344579950831324 could:0.0281552851875298 minutes:0.014568113381645233 water:0.014567260645605205 :0.9073647608343884 +him:0.014390383216249397 hi:1.2845267633284148e-05 men:5.071546244021069e-06 years:2.5404636834472268e-06 :0.9855891595061899 +a:0.6952019148506792 .:0.03680930440222067 in:0.025887358882574766 the:0.021362837431635355 :0.2207385844328899 +home.:0.016939762028110133 party.:0.01616673443450271 life.:0.006371329228444199 people.:0.003493647637415781 :0.957028526671527 +in:0.8548960897726623 In:0.13934988513556693 and:0.00034524185007900283 of:0.00031810558265100525 :0.00509067765904088 +you:0.48249826562122977 not:0.33176706566537145 the:0.09505147425099386 we:0.0491185298711654 :0.041564664591239586 +girl:0.20199385174329074 story:0.11208956126582187 child:0.011181078120418889 good:0.0035522087009740183 :0.6711833001694943 +the:0.03499883312845564 a:0.020695416556272887 tor:0.013997205568900165 at:0.006618875084241189 :0.9236896696621302 +and:0.10392714583017523 of:0.07386915430909625 the:0.06625024421158014 The:0.02582042207295236 :0.7301330335761961 +is:0.2813397153953457 and:0.2517950924434379 the:0.17818681737604306 not:0.165049170974151 :0.12362920381102242 +by:0.9905749271240384 and:0.0008002933448710653 after:0.0007630655593950528 as:0.000724188925462577 :0.007137525046232921 +house:0.027784765306270914 home:0.023839563266683326 act,:0.022310765898822926 act:0.019962532452022234 :0.9061023730762006 +well:0.9920850957191841 a:0.001033018882723284 actually:0.000969725228931583 perfectly:0.0005887527924834328 :0.005323407376677488 +J.:0.07912666889366402 John:0.07586459484956715 George:0.06368761151277122 W.:0.04050169082042084 :0.7408194339235769 +the:0.34860016831411894 of:0.11407486397189992 a:0.10789171050839143 and:0.06130438184016467 :0.36812887536542505 +with:0.9883367495333139 in:0.005932778537686081 for:0.002834154577143398 of:0.0010341231739226463 :0.001862194177934078 +and:0.13428873920890033 the:0.12642607267787642 The:0.0862521432789462 of:0.07533690790272797 :0.5776961369315491 +ments:0.6694613053104593 the:0.19124621552701004 and:0.030346154614623762 for:0.016105200276759473 :0.09284112427114734 +for:0.27201832216594984 to:0.19075239416208195 and:0.1294120277833455 te:0.07842919529653662 :0.32938806059208614 +Mrs.:0.22687516984486972 and:0.04478511680841545 Mr.:0.03510784501366101 Johnson,:0.02236082530128135 :0.6708710430317726 +state:0.4311991779530076 men:0.2666370893849339 public:0.08336277529857661 people:0.07049947145964443 :0.1483014859038375 +the:0.8356791303039265 a:0.07088451053291966 that:0.03695257768494206 this:0.02191764229942375 :0.03456613917878802 +coal:0.14380617342704308 produce:0.045126338618247455 war,:0.014793205519553789 food:0.014569339006470035 :0.7817049434286858 +own:0.04707940435071532 is:0.021374633698028736 has:0.019427637337278966 and:0.017454293966936815 :0.8946640306470403 +In:0.5486206138125013 in:0.3271131020646409 from:0.034145861038428704 to:0.02885155162311984 :0.0612688714613093 +the:0.24059745575979757 he:0.13042713282815904 is:0.1048023402585001 ..:0.1042334459125149 :0.4199396252410285 +to:0.9926786051006415 not:0.005748669383604563 shall:0.000562804725695522 never:0.0005289511915542331 :0.0004809695985041269 +of:0.13907428258702137 and:0.12272444453791466 in:0.12162105535569648 township:0.08323072672382084 :0.5333494907955466 +are:0.7458455817383891 were:0.14403141286558607 is:0.05433475764214739 have:0.04289535405643686 :0.01289289369744052 +the:0.29536670187008596 a:0.04936269863575518 1:0.023722876180387348 2:0.020438151498325216 :0.6111095718154462 +of:0.6523656908316239 and:0.060002727781904644 that:0.054555915995081306 in:0.04405986251056692 :0.1890158028808232 +be:0.6049872656967984 not:0.07357544635391551 have:0.07073054782971455 bo:0.0616745592357357 :0.18903218088383583 +A.:0.14451326872473674 Thomas:0.08777776955739627 and:0.020081547232890504 to:0.019903387408922075 :0.7277240270760543 +the:0.1868120737361607 and:0.1088261779945973 a:0.10474993331242057 to:0.03756552772893399 :0.5620462872278874 +of:0.8925521258851435 in:0.07676202549604369 and:0.018343910696320593 to:0.007258349609882593 :0.005083588312609496 +down:0.3386791555124112 it:0.07457758887025541 away:0.05561896238611316 and:0.02498873999536765 :0.5061355532358526 +the:0.0939681505821665 which:0.06630729514933925 vs.:0.03848362401082535 said:0.012125943485275459 :0.7891149867723933 +will:0.9889411504331566 should:0.004890351025393705 and:0.0023733107803535275 would:0.00034772994549733073 :0.0034474578155989396 +of:0.1891332776166134 and:0.11737687682273054 the:0.03922467232842158 was:0.03454406330094519 :0.6197211099312894 +day:0.29425375392564285 But:0.1845890715088782 well:0.06838286443264487 and:0.059480197691890634 :0.3932941124409434 +It:0.17115646399421383 There:0.11355868688357405 there:0.10927292907327912 He:0.08643123192985255 :0.5195806881190804 +from:0.8366334865663609 in:0.08729167928127947 at:0.0514911472231199 of:0.01855408596630424 :0.006029600962935644 +a:0.523442644299544 his:0.18563676425320652 A:0.1519122909398777 our:0.05675812509670296 :0.08225017541066865 +In:0.5012080363408958 in:0.36300028175986654 on:0.08335473580801245 for:0.028162055374454206 :0.024274890716771056 +the:0.5895620843542069 and:0.06090415685711031 a:0.05965697826176243 tho:0.043674355399141995 :0.24620242512777835 +healthy:0.3375384497975511 far:0.23418878226672968 quick:0.14699252727258258 well:0.08994103565537367 :0.19133920500776308 +at:0.48727720951469244 for:0.14421752453728778 into:0.1289404639539896 upon:0.12165190202128384 :0.11791289997274634 +most:0.38036302954298457 himself:0.2369714634502136 many:0.10179939532196797 hundred:0.06731949720578519 :0.21354661447904863 +the:0.6221008476928498 a:0.06524591379474673 tho:0.029377204058527052 this:0.016301929102184597 :0.26697410535169186 +told:0.9956564322240257 brought:0.0015170292272378462 informed:0.0007577962727200029 to:0.00045425276631067587 :0.001614489509705577 +the:0.5742172904184266 a:0.23830578889682807 their:0.14527135431974997 th:0.021149927523096534 :0.02105563884189881 +third:0.07244045314513935 William:0.03255193870714835 Third:0.01899316962865369 dent:0.006290420801601185 :0.8697240177174576 +search:0.5791628597082698 he:0.06545820650861708 I:0.06201286775199037 and:0.03619422807116673 :0.25717183795995613 +made:0.527998424021089 willing:0.11354597107253193 forced:0.10785774323929706 compelled:0.08055018272501123 :0.17004767894207073 +is:0.25864311577975113 was:0.23214724415740368 the:0.09276963245958225 Is:0.026437723302248514 :0.39000228430101447 +the:0.7102881938341344 no:0.22114472096316423 a:0.03716401786029158 not:0.025784622974587928 :0.0056184443678219545 +ing:0.02691632002392709 figures:0.02577836170617008 it,:0.020402734943726526 women:0.013651629010388912 :0.9132509543157873 +so:0.25756089570590246 the:0.2014251061773118 a:0.14480036974200441 announced:0.11047847150814957 :0.28573515686663187 +and:0.9883259104306304 .:0.005466831031809501 to:0.0026274048646974953 or:0.0013939321035836584 :0.0021859215692788697 +away:0.09914681465088092 and:0.05589297984938469 up:0.03184656306076531 or:0.03029391596609017 :0.7828197264728789 +members:0.08350838867073847 time:0.06697435059118438 people:0.03555694445197643 rest:0.02438442901173351 :0.7895758872743672 +plans:0.527524737925615 way:0.17860173278948396 very:0.014087501939781477 point:0.013407673837830293 :0.2663783535072891 +part:0.5011097620523851 streets:0.03941754578518087 outside:0.025707583803706014 side:0.020268083647353035 :0.4134970247113749 +was:0.3145917796255146 For:0.17577488765103905 and:0.10700686695083328 During:0.0915881631342662 :0.3110383026383468 +of:0.019893077000388056 ground.:0.01696457538452321 and:0.01640800050314987 way.:0.010089646247986958 :0.936644700863952 +5:0.9999123248468398 two:1.4999596725481524e-05 The:3.837222010597193e-06 the:2.6681244102894275e-06 :6.617021001381116e-05 +as:0.37377040805125855 for:0.10651129641929485 in:0.10034492016954502 to:0.06721103318515215 :0.35216234217474934 +country.:0.05575433155957616 way.:0.020881271936745972 State.:0.01600429846035899 man.:0.014016844429632178 :0.8933432536136868 +was:0.6443158034925194 is:0.1469590659548587 advance:0.036008465399729746 the:0.02026877282020264 :0.15244789233268954 +battle:0.16405419526911696 northern:0.12498219242445885 commercial:0.09230391130939226 high:0.062402334463200135 :0.5562573665338317 +a:0.7995483952193144 u:0.11165839367419193 the:0.04384535841143911 this:0.02368116148148335 :0.02126669121357104 +hours:0.1823931832261892 cents:0.12844267038487045 miles:0.09991404531225367 years:0.08212363099331149 :0.5071264700833753 +and:0.3353178866050417 is:0.10607362951176455 in:0.028293373978144496 of:0.02609150999113694 :0.5042235999139123 +will:0.4151428495746643 probably:0.27115157723053085 may:0.13659648751688952 should:0.09447004715558441 :0.0826390385223309 +and:0.10089785076102743 of:0.08680813657001803 the:0.06152859264170462 in:0.033199191494369576 :0.7175662285328803 +the:0.950515873537303 tho:0.01762372652080634 tbe:0.009193382907180345 that:0.006274509882701017 :0.01639250715200928 +American:0.29703171481608337 colored:0.11414850320185861 young:0.07555259594380959 Southern:0.0518346682001206 :0.4614325178381278 +with:0.9520606366898221 to:0.009405634226334026 With:0.0019335527798716925 with-:0.0005708929950450918 :0.036029283308927004 +.:0.024437894224155023 miles:0.023341764454459003 feet.:0.013554332065866965 years:0.010577335229971 :0.9280886740255478 +to:0.2796518434691259 of:0.26878727623546894 will:0.173438414060876 and:0.11584579458950826 :0.16227667164502077 +the:0.9362663731772328 any:0.03153251030395058 his:0.006509274540940996 a:0.0043182568356011876 :0.021373585142274516 +war.:0.44066827625891103 life.:0.15439523922640191 government.:0.012688032213556152 war:0.010233907862864457 :0.38201454443826643 +seen:0.24107117601415393 bought:0.18972863341233942 kept:0.1544134533281153 put:0.1012017871365662 :0.31358495010882514 +speak:0.11049213846558341 vote:0.09435955116439805 it:0.07047723541134297 me:0.06910300316121937 :0.6555680717974562 +in:0.2433646841417129 In:0.1980037688339092 a:0.13529059095521034 to:0.09412012896330463 :0.3292208271058629 +ar:0.46126957485195186 and:0.028432933774752665 the:0.013770659515642695 in:0.0097690436524928 :0.4867577882051601 +Range:0.9985023081309797 of:9.094847149846212e-05 and:8.531635282580104e-06 Dakota,:6.6577716821076515e-06 :0.001391553990557035 +the:0.10127712497203496 is:0.07885268257882229 of:0.045543762675200196 to:0.045459149162583236 :0.7288672806113595 +and:0.812628762643661 door:0.004767994739733361 or:0.0034877830685368437 to:0.0021986042643967045 :0.176916855283672 +and:0.6904955790726455 she:0.12368728990082624 it:0.0631336241022511 he:0.02323277665119224 :0.09945073027308475 +country.:0.006453654644212236 into:0.003328864546773744 efforts:0.002135258143493671 law.:0.0012297169913560281 :0.9868525056741643 +mind:0.35569935563759014 eyes:0.1461007241616116 eye:0.07296110990583976 own:0.06641045237257273 :0.35882835792238577 +M:0.017500347704083274 all,:0.008887564871290917 least:0.00868071764576716 the:0.008322286338045229 :0.9566090834408134 +board:0.2056554433969498 property:0.07809838643171148 the:0.008586175944495957 months:0.002394957663089354 :0.7052650365637534 +who:0.8830031445480654 that:0.01452683636350882 farmers:0.007600298413813574 days:0.0063644863640772075 :0.08850523431053493 +would:0.2735423916533626 rooms:0.11995162643377089 and:0.07724372380843421 of:0.05131243052318596 :0.4779498275812464 +have:0.10127733993321225 the:0.09719647643611949 send:0.07206953220531645 go:0.03013958622303021 :0.6993170652023217 +It:0.18189499104447843 which:0.13485277020241837 it:0.08294491917844073 and:0.07434997173751637 :0.5259573478371462 +the:0.1123208822040296 authority:0.0752523390656992 and:0.04785166758464646 possible:0.03153002039999395 :0.7330450907456308 +of:0.6231842651930051 by:0.07414811186803445 at:0.053741585127528385 and:0.04948718012114364 :0.1994388576902886 +and:0.1400804852536598 low:0.07332256649938948 That:0.036162859942747365 but:0.033653951226811876 :0.7167801370773915 +J.:0.11702224119109568 W.:0.10219280485147293 John:0.05280650370242063 Mr.:0.051342832340777605 :0.6766356179142331 +the:0.5012862529616202 The:0.2817804255983107 and:0.02711466150465638 a:0.013374361914504997 :0.17644429802090772 +the:0.8476355085031139 every:0.09453275886465572 a:0.0297880434120758 tho:0.004488815237107641 :0.023554873983046922 +who:0.10606832473827348 they:0.09993144532121644 They:0.09394848404454711 which:0.07485801826648904 :0.6251937276294739 +and:0.14227271103925213 n:0.07049549223389412 St.:0.057642558634177624 of:0.05039932321852657 :0.6791899148741497 +have:0.8107494896364903 who:0.061457509582259415 and:0.03094687253033056 he:0.02012175426602893 :0.07672437398489072 +the:0.31302670008246297 this:0.07031200624966996 said:0.03949090299082266 a:0.03629743646414979 :0.5408729542128946 +had:0.7573099327869391 of:0.015944880348100255 received:0.009571647053207672 made:0.008930335241265191 :0.20824320457048778 +ure:0.4680450291978846 and:0.03960113784913541 of:0.023041220756660843 the:0.019293847543507863 :0.45001876465281127 +States:0.3495154656477835 States,:0.11560416618475972 there:0.02537262025923682 their:0.008191561950587447 :0.5013161859576324 +ber:0.1502611840785279 lines:0.03118902455200308 tions:0.028921669443615145 houses:0.024841522014970845 :0.7647865999108828 +fruit:0.017712795971788393 people,:0.011527076443101063 city:0.011209725810118904 Union,:0.00716690535641227 :0.9523834964185792 +you:0.33828649046532167 he:0.09218102010647924 It:0.07570861443935754 we:0.07489814590093771 :0.4189257290879039 +a:0.4301983585125774 spent:0.02675751569914446 up:0.014340090404971757 After:0.009977185197409555 :0.5187268501858969 +for:0.20018470891789886 at:0.16225299017225117 of:0.13700210473318944 and:0.1287068821620818 :0.37185331401457866 +with:0.6470443229916606 to:0.16401898026450107 in:0.08018466063113142 on:0.04565910354169553 :0.06309293257101149 +of:0.6925847345919594 for:0.038872101421609635 to:0.029545310504247902 not:0.023446052253317515 :0.21555180122886555 +he:0.29515195424060736 and:0.19963833789056143 He:0.06513575069706364 had:0.022025155370699056 :0.4180488018010686 +York,:0.1852728655952799 York:0.13065051574440145 and:0.11571750989960283 York.:0.09488067968090465 :0.47347842907981114 +most:0.01940877264076102 the:0.01442667852041385 of:0.013356075549321406 United:0.011706734227145474 :0.9411017390623583 +of:0.12319575698459903 or:0.09225315196740518 the:0.07236524062327528 and:0.06377729198146861 :0.6484085584432517 +tion:0.051784168542612995 ment:0.021924872336322496 of:0.020062936701788978 ing:0.014776205451685355 :0.8914518169675901 +time:0.23685815699316867 premises,:0.08591167114697822 lead:0.051264251533380864 same:0.04634568986727089 :0.5796202304592015 +of:0.8861375383025767 in:0.06653534994644629 In:0.021552453501531506 time:0.00944450121447594 :0.016330157034969622 +beautiful:0.05389271163268793 close:0.043412457085384076 large:0.042485597125242205 fine:0.03871290461023257 :0.821496329546453 +water:0.03633656865854521 blue:0.017825301719032807 man,:0.01729574494845872 time:0.013168856771905676 :0.9153735279020576 +the:0.8012214418170572 tho:0.10750731962646476 tbe:0.06056539360974257 tue:0.025428193264334185 :0.005277651682401264 +those:0.32048946259499 find:0.08476578258544036 understand:0.03439544968041409 some:0.012714111611836275 :0.5476351935273193 +Mr.:0.8952075344197221 Dr.:0.04049921705839396 Rev.:0.023969742552895083 Col.:0.022636366024232725 :0.017687139944756323 +and:0.4935910999632758 be:0.2086614388623794 is:0.0536450968423788 of:0.013001185922271341 :0.23110117840969452 +the:0.23744662871835462 was:0.10635652878192625 are:0.09570644783846094 he:0.09105849689527645 :0.46943189776598176 +spread:0.7585453850436518 that:0.22817034729312202 of:0.0062483082494505645 and:0.0015703693119133208 :0.005465590101862386 +of:0.7984846008224147 uf:0.09204652959952793 on:0.041817324655198 that:0.03502540952039588 :0.0326261354024634 +lives:0.04389489342403487 belief:0.036928489652458575 opinion:0.03260469275386466 people:0.024679037273848483 :0.8618928868957932 +had:0.6017837735453758 have:0.38949651515186556 were:0.003801273820722301 Congress:0.0021328227465956914 :0.0027856147354407422 +bonds:0.992716293370918 dollar:0.0017029288862071437 and:0.0001837761982606272 sufficient:0.0001481223654452709 :0.005248879179168761 +large:0.31318768627669125 half:0.09509147098576398 short:0.07930750296174582 little:0.07515691557656956 :0.43725642419922955 +the:0.993500350597886 said:0.0015344512131843183 on:0.00048547672435804093 upon:0.00047225616045746773 :0.004007465304114389 +bonds:0.022655479833968515 bill:0.00985324971660359 sale:0.008086831158433208 election:0.007259083432168752 :0.952145355858826 +well:0.9064742072078853 never:0.01156032498989435 not:0.008052582113044457 ever:0.007074128388995424 :0.06683875730018046 +be:0.5185327248564039 have:0.12439584832166539 lie:0.09838004972872641 not:0.052071605865050684 :0.2066197712281536 +ask:0.3486570985864512 arrest:0.15395249382250506 asked:0.1288531680552723 told:0.08580739179928716 :0.28272984773648413 +and:0.07602941048702841 of:0.07042527450872006 The:0.0643460272670464 the:0.05397076926618474 :0.7352285184710204 +up:0.2440877949099763 subject:0.110199480460827 it:0.08575663229371493 down:0.07076287146162713 :0.4891932208738547 +the:0.874342983122563 to:0.047677769322933175 of:0.04146665604609949 such:0.018728198345574286 :0.01778439316283003 +he:0.2940494020229569 they:0.2418852735708364 it:0.15652534930991924 I:0.10061595071952387 :0.20692402437676374 +and:0.1628768406356831 by:0.1128522844026457 of:0.10382504510231996 to:0.07145026832246314 :0.548995561536888 +of:0.8946197348999002 township:0.04086206689895113 That:0.023590702195069205 in:0.0049148609160503684 :0.03601263509002917 +had:0.37764009238727797 sought:0.06840769135070086 moved:0.06632519955289407 failed:0.06397879228970656 :0.4236482244194207 +other:0.5200713513905932 some:0.3166978751469424 the:0.13918956071139948 to:0.009478637731376364 :0.014562575019688337 +to:0.19824748935598474 of:0.1624047454962108 from:0.11898424162245232 in:0.11748616332052958 :0.4028773602048226 +to:0.4457445692219193 and:0.11343562301542226 of:0.0354079831847305 the:0.02544793939544062 :0.37996388518248747 +the:0.3990129786658631 a:0.05119118195094979 other:0.03268183183860944 tho:0.015701055648785565 :0.5014129518957919 +a:0.4675150525357826 an:0.22960710509367788 the:0.16301677925631072 another:0.033559826279780214 :0.1063012368344486 +only:0.5887384931552678 loss:0.07475833755678493 less:0.036141137517252536 one:0.020696190620593254 :0.27966584115010157 +the:0.9960030266569918 tlie:0.0009499279090048919 all:0.0004808589389020631 tbe:0.0004365073889438654 :0.00212967910615746 +such:0.22445215736849897 the:0.20314851421163108 its:0.16933621688921707 all:0.0806288235215108 :0.3224342880091421 +the:0.2314307155487365 to:0.10009901887454145 a:0.07446651998988944 and:0.05265519411060961 :0.5413485514762232 +it:0.61811465367495 It:0.20924577025696048 ho:0.04680785127557795 there:0.00688488457130721 :0.11894684022120422 +elected:0.3364747945861669 then:0.3145720848822329 him:0.026368397659015885 which:0.020657109295493536 :0.3019276135770907 +first:0.06045719572603149 great:0.036943843881686596 last:0.026045080742867675 the:0.02493791927590523 :0.8516159603735091 +were:0.9731314516793719 he:0.016134706818602 was:0.0014756401808089438 the:0.0013759441130543626 :0.007882257208162631 +of:0.7662052304555127 ot:0.07329282041038312 to:0.062333211780397184 for:0.0372390967276184 :0.06092964062608858 +more:0.027958120293448224 fourteen:0.007894221227636273 over:0.007291109899112956 1:0.00598745163985561 :0.950869096939947 +fall:0.32504917853444676 tbe:0.02592851415173204 his:0.02461372936927538 tho:0.0240528265124294 :0.6003557514321163 +It:0.5698620993261989 it:0.3092914789706613 which:0.013444720646370043 he:0.011037400345069826 :0.09636430071169987 +the:0.17672694063108643 drawing:0.17314582503077183 a:0.04409024115983736 living:0.03431299458029625 :0.5717239985980082 +of:0.7176232989551944 and:0.07174618351274767 in:0.037815450358802294 to:0.024138232883911495 :0.14867683428934417 +the:0.29914673954623255 of:0.06337993686281837 and:0.04656452589551361 can:0.030748981690121538 :0.560159816005314 +and:0.09404838095365194 of:0.0560531991477647 Mrs.:0.05320497408700093 boy.:0.027174401420083965 :0.7695190443914985 +on:0.33956424169376315 in:0.1804125949492061 across:0.16831891364126303 towards:0.15663280168515523 :0.15507144803061243 +the:0.23072785552750225 heart:0.029197220603195344 stomach:0.014101905962379944 this:0.013263096930438298 :0.7127099209764841 +of:0.14812240543204025 and:0.07304048680809533 the:0.07055782958820805 to:0.03664467627777675 :0.6716346018938797 +man.:0.04490391646882193 one.:0.04018922651402803 time.:0.03665106228655737 case.:0.01741356801676952 :0.860842226713823 +the:0.43295053792168897 a:0.11630915415110599 his:0.059589840374869876 this:0.04663680149055636 :0.3445136660617787 +I:0.16124494787160032 as:0.14312009390083658 in:0.11328404290153919 at:0.08493377165501048 :0.4974171436710135 +added:0.02900216381909624 even:0.021233495789238273 the:0.018730707133157692 and:0.016265373737797687 :0.9147682595207101 +and:0.10660627640068686 of:0.09743437963883907 the:0.04014733044656828 was:0.034878873071373925 :0.7209331404425318 +had:0.45161412451088434 has:0.30414507247877304 have:0.14113371056895974 having:0.04189413508066748 :0.06121295736071568 +in:0.35053678961681584 put:0.15783858742769552 knew:0.12579428634605372 on:0.01743283547966056 :0.34839750112977447 +him:0.6304141053305727 me:0.17422390713542799 you:0.11550453685103883 all:0.05110985941658991 :0.028747591266370602 +own:0.031956763644542224 dear:0.02639361664058089 heart:0.02412969650241709 head:0.015835416723428402 :0.9016845064890314 +of:0.1553438792565326 and:0.14684378266307432 the:0.05149339148610483 to:0.044497611578870305 :0.601821335015418 +the:0.26327002348206213 Mr.:0.13554837782723425 John:0.11812518801706555 said:0.09433126689910455 :0.38872514377453354 +persons:0.12299874388938015 ladies:0.07635817961378782 which:0.05900633949091158 them:0.05837899553693602 :0.6832577414689844 +here.:0.00789732697522798 him.:0.0076580174801391815 on.:0.006894451101774157 to.:0.006260351610513886 :0.9712898528323448 +can:0.23817099538362568 know:0.1664503620448578 were:0.013616291341302917 are:0.010762692152842285 :0.5709996590773713 +the:0.5816449141681201 his:0.10194615096480558 that:0.08351254954400539 Mr.:0.07779505198166485 :0.15510133334140408 +sell:0.25884904625826405 and:0.2190288247319918 with:0.10245269055691626 ship:0.10110947358798289 :0.318559964864845 +to:0.42445421604536804 of:0.27714885096528635 in:0.06170439606956421 that:0.056211512784127386 :0.18048102413565398 +S:0.07613299024867125 his:0.05945884689413194 p:0.05765109781407092 en-:0.05497756195171568 :0.7517795030914103 +that:0.1341257050819607 and:0.12907574108976608 of:0.09910112844316465 when:0.08144500836467154 :0.556252417020437 +thereon:0.9135227189616217 received:0.0020488904222421014 from:0.0003367128436106138 at:0.0002804609596528029 :0.08381121681287274 +I:0.1608261840047407 and:0.12041291032976698 to:0.0882927900909554 who:0.08803453597487013 :0.5424335795996669 +and:0.6912425890096214 if:0.12539574667051046 that:0.04084673999237535 of:0.04076459093523895 :0.10175033339225364 +said:0.15233984369589887 made:0.08800268557623923 about:0.08256494152456989 going:0.0773682019441266 :0.5997243272591654 +and:0.19762612440039967 the:0.10314782266070006 of:0.06587521523916169 in:0.04627689207452141 :0.5870739456252173 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +the:0.4550544679059578 a:0.09971515708963374 that:0.06285638790454591 to:0.04948569572824813 :0.3328882913716144 +der:0.012707633489879635 and:0.009314457113255122 after:0.00690246209405079 lake:0.006568265677828088 :0.9645071816249864 +and:0.12582187611893583 refused:0.04715632081264967 him:0.03937192300652949 as:0.038999517390570754 :0.7486503626713141 +saying:0.07974148100399484 the:0.0777867327188879 a:0.031980182386068916 affairs:0.030467178210658283 :0.78002442568039 +silk:0.06308433271682602 and:0.03937759819406469 clothes:0.0289754617954846 rule:0.02594208981759415 :0.8426205174760305 +of:0.21619320943719011 in:0.18789505955861996 at:0.1346317356064829 to:0.09297720722871951 :0.3683027881689874 +much:0.9953455320871992 is:0.0012833158224261878 to:0.0009501613252003555 the:0.0006237965377181657 :0.0017971942274558387 +to:0.4835674038010348 as:0.1531939317102368 toward:0.07574928219642862 in:0.049087325199494485 :0.23840205709280526 +without:0.18067643414049694 not:0.16582102136570667 never:0.0929770409007688 ed:0.07849166777945703 :0.48203383581357045 +proceeded:0.01605296051425122 filled:0.00019535832685056375 done:0.00018064408827946595 covered:0.00016225723723045185 :0.9834087798333883 +old:0.023402674865842764 the:0.021398505185981798 in-:0.016761856468800105 extra:0.015310327943353895 :0.9231266355360214 +over:0.4337464067537507 to:0.05063006102280014 a:0.04053304919301759 one:0.022942771930639365 :0.4521477110997923 +to:0.02431200255541038 a:0.010660054360067252 heavy:0.005001998651872008 the:0.00461016961676582 :0.9554157748158846 +of:0.5807048967348011 and:0.12601330984921386 into:0.11358695589204063 for:0.09928222931229132 :0.08041260821165298 +son:0.2832995059779153 people:0.012024660300106954 friends,:0.010134858254940735 friends:0.009362031289963199 :0.6851789441770737 +the:0.25897781495877054 a:0.18088957396323013 4:0.13294226167888926 its:0.0603175269779992 :0.3668728224211108 +court:0.595122772646685 courts:0.17895720717802474 court,:0.05212503805047293 are:0.016538886670706687 :0.1572560954541108 +act:0.24882227892277475 report:0.08605293852987433 go:0.03606858589938469 offer:0.01436722212655481 :0.6146889745214115 +the:0.376645366160592 be:0.036380344282093795 and:0.026523355794574117 a:0.023741402787322303 :0.5367095309754176 +in:0.5731723806649882 for:0.20102590505181414 with:0.0762689405931466 of:0.06549818862738851 :0.08403458506266234 +A:0.5880734837219372 to:0.060001444659023496 now:0.055505564355965896 by:0.05246920769852674 :0.24395029956454672 +use:0.31861045387276404 payment:0.11642003693958793 light:0.10840443649597523 much:0.055041610350176684 :0.40152346234149616 +much:0.7977119115972778 the:0.04318516237501734 a:0.014961361089560867 of:0.013634352923823005 :0.130507212014321 +The:0.2014680495876666 and:0.1853703182986133 the:0.0903530001017829 of:0.04851991543990853 :0.47428871657202865 +passing:0.13348124548428433 far:0.09718427583285363 to:0.019208945978147804 made:0.010642001698012861 :0.7394835310067014 +the:0.11608326126894332 Dr.:0.0508682076492415 John:0.04722630908901274 a:0.04704794739541394 :0.7387742745973884 +Committee:0.12970971448791607 committee:0.09823764574584475 premises,:0.08151097012326806 duty:0.022546287915024565 :0.6679953817279466 +and:0.21292416527089378 to:0.07742888665200236 of:0.07642839491595302 which:0.06892912373246948 :0.5642894294286814 +be:0.22843064177336123 make:0.10039884428048651 the:0.04468562814523666 check:0.041113038159788805 :0.5853718476411266 +those:0.6747339847988547 opinion:0.158277428215764 the:0.038327249572393265 home:0.02960662088070872 :0.09905471653227926 +I:0.17715641781393807 found:0.006520227336354328 -:0.004843712093356267 the:0.003513373261029735 :0.8079662694953216 +of:0.31154736522927634 on:0.23400233137383772 in:0.19417313279977236 and:0.08193221514381796 :0.17834495545329548 +the:0.08187610879662076 one:0.06871957757047414 means:0.05382479360881892 virtue:0.052041293983154505 :0.7435382260409316 +hundred:0.929279783136833 dollar:0.002300501357769268 of:0.0011214238673977338 day:0.001115683517970738 :0.06618260812002927 +to:0.47643304213203685 of:0.4093849846505344 for:0.01009585150297835 hero:0.0074259567998777995 :0.09666016491457267 +the:0.2033904920657531 The:0.1486519240654911 by:0.1374023092978622 and:0.10958045432294705 :0.40097482024794656 +general:0.12077378994632573 the:0.05656691770056326 The:0.02947041680556019 and:0.009439111285256175 :0.7837497642622946 +and:0.12232089463212688 of:0.08619920437376362 the:0.04115507951602568 Two:0.024822613358308973 :0.7255022081197748 +object:0.38677725067251617 result:0.10230136771657293 application:0.06448260340308555 largest:0.04146049856690766 :0.40497827964091754 +who:0.22270217358981786 which:0.1982280040949888 It:0.16023128840561132 and:0.128805007497006 :0.29003352641257607 +all:0.1452243508946592 the:0.09117147272085618 of:0.04107154947391512 business:0.035646895122536486 :0.6868857317880328 +of:0.21161843048046378 and:0.15839076004506883 the:0.08587242724658425 to:0.052613067496616935 :0.49150531473126635 +w:0.22631529335932216 special:0.09811824327605648 human:0.09640307112551988 pure:0.06999850999111445 :0.509164882247987 +make:0.29789930564099515 have:0.12820474152466108 be:0.04512873898321433 take:0.0447619734230545 :0.4840052404280748 +and:0.16554014782429166 the:0.03101003975031162 to:0.010295729203330942 his:0.009621650663325975 :0.7835324325587398 +finding:0.06585151043638443 John:0.01666228369323682 Charles:0.0048785410868933225 said:0.0038543169980929117 :0.9087533477853925 +towns:0.13385865338213482 they:0.03720982234761339 who:0.02700491169061082 country:0.025658865456058833 :0.7762677471235822 +any:0.0622381747817791 such:0.012393747331580484 a:0.012093095123731044 the:0.007683368847228497 :0.9055916139156809 +plants:0.014551334342223575 Committee:0.0069248014696223804 law:0.0068745666783437106 a:0.006202134419902381 :0.965447163089908 +road:0.03630986069114701 motion:0.006307421244525161 me.:0.0019593707136079997 of:0.0017610733689627667 :0.953662273981757 +It:0.28348376139821363 Mr.:0.21770926272072882 All:0.1974274052417449 In:0.05427527090307252 :0.2471042997362401 +loss:0.2968725190848031 names:0.1400081487023796 representative:0.04593889446694523 parents:0.015542363262753059 :0.501638074483119 +to:0.1106685732265333 give:0.11064083884541905 gave:0.08842310405254765 made:0.027880518034830215 :0.6623869658406698 +bed:0.017530016788889876 same,:0.014758042949837348 houses:0.010673717279313643 people.:0.007944208095613595 :0.9490940148863457 +the:0.9206235545115536 tho:0.03515453391116811 to:0.03294326506496829 her:0.0021399018651362695 :0.00913874464717369 +of:0.2724132207004912 .:0.04877186202579696 and:0.047998992299627063 to:0.015112363679407706 :0.6157035612946772 +The:0.22795945558006409 No:0.058015999899317015 no:0.034550034148353524 even:0.029467364601693698 :0.6500071457705716 +to:0.9863904156799677 two:0.0008967319623942789 and:0.0003263194601813495 that:0.00024124629700474613 :0.012145286600452032 +W:0.0604136944624217 Smith,:0.0015952630348369781 ,:0.00021313617943529136 Brown,:0.0001457134543122892 :0.9376321928689936 +to:0.9296311239153403 io:0.028690476672843128 for:0.02666787674097615 with:0.006699704720896038 :0.008310817949944373 +to:0.870262259382193 and:0.05802066599991477 ready:0.027355369211790402 was:0.008136065776745409 :0.036225639629356196 +to:0.13263820488294642 and:0.13162405375232591 of:0.051807773562294435 the:0.04756686097183847 :0.6363631068305948 +other:0.9469449415789125 various:0.001724088659952243 the:0.0016236724874301443 many:0.0009788473586158067 :0.04872844991508939 +He:0.7172427718805435 lie:0.12308028732602844 she:0.037757628685222845 and:0.028114470731923517 :0.09380484137628164 +the:0.7160408599538604 this:0.0468974610127359 tho:0.02530208573689296 a:0.024172956176936572 :0.1875866371195743 +take:0.7948160748696083 be:0.03767574943269296 have:0.005653099316871228 the:0.0037396366795421788 :0.15811543970128555 +days:0.6932204212602786 acres:0.19453522925950792 numbers:0.02619395985696744 cents:0.009534177785669222 :0.07651621183757683 +knew:0.32302938239535417 and:0.1801216678413662 says:0.15584215620318367 said:0.11709937646216953 :0.22390741709792633 +him:0.08695443032858158 turned:0.06742787165181222 and:0.061874092554859914 back:0.040660149856756526 :0.7430834556079897 +of:0.40925682754228043 the:0.07787737152933066 and:0.06358406245512768 to:0.03848241322782089 :0.4107993252454403 +was:0.24484016604815673 were:0.15882651953425364 has:0.06229381133582789 been:0.056760863754304246 :0.4772786393274576 +and:0.07838710521896157 of:0.065451678477716 John:0.03219204277850455 the:0.029175250634357403 :0.7947939228904605 +to:0.9453368916621371 for:0.008458847324657631 the:0.004486786866939268 at:0.004075615859713994 :0.03764185828655193 +of:0.23833285198517412 and:0.12972818471083977 the:0.04629747402033493 The:0.032747570285371314 :0.5528939189982799 +1.:0.5144394033595179 I.:0.2509246403512028 »:0.0026839455128746872 follows:0.0003917209177609709 :0.23156028985864385 +fire:0.00026915360831234917 salary:1.5857195262512225e-05 a:5.160190420663991e-06 occasion:5.0861295958524025e-06 :0.9997047428764085 +is:0.003333372819148113 fine:0.0010739996770967157 -:0.0007512813564503917 j:0.0007427252285163555 :0.9940986209187884 +that:0.054541905310709314 of:0.03897258357561649 made:0.03508257149963572 have:0.027916469771280077 :0.8434864698427584 +of:0.5935950286763076 and:0.14625788915704088 he:0.06386177713415807 to:0.054739986345657306 :0.1415453186868362 +Company:0.1793047776747424 who:0.07961787159223085 which:0.07755160502387703 company:0.07717784750084049 :0.5863478982083091 +ty:0.6713376379905367 with:0.002254616449139346 ties:0.002171840598561082 of:0.0008594310896776559 :0.32337647387208523 +that:0.7794241046616194 who:0.057419980564646346 and:0.04596119117532526 which:0.01946475629191837 :0.09772996730649074 +who:0.18318485595945452 and:0.08790923265135628 of:0.08349258107975259 Every:0.07731154020347171 :0.568101790105965 +be:0.5312322514174648 he:0.007249737683012081 bo:0.007231536310702332 raise:0.005225225343566006 :0.4490612492452549 +active:0.03295871173826822 steady:0.02814888692937441 common:0.013036498161578165 higher:0.011872568098807096 :0.9139833350719722 +such:0.15737349071536616 get:0.14587002914202116 what:0.11548759084462508 for:0.11079143629135778 :0.47047745300662974 +was:0.7235854627958674 being:0.10017603076287343 the:0.05304110234496753 and:0.052422374289866666 :0.07077502980642479 +e:0.5780412077380728 the:0.14814013870833823 said:0.014036883425240506 tbe:0.013529875018987107 :0.24625189510936138 +would:0.49827348639690355 did:0.11263197534530854 could:0.10817189696739013 was:0.09571044023240727 :0.18521220105799052 +the:0.5461133123240623 said:0.08477050429960206 a:0.02968065813944357 no:0.0277412514048606 :0.31169427383203147 +the:0.17739800246673323 of:0.16852001603793423 and:0.13278621826784617 The:0.09972839696589647 :0.42156736626158986 +said:0.06020751893816504 late:0.0240306816906723 and:0.021038006229647667 Hon.:0.014618477815280972 :0.8801053153262339 +him:0.3409049592560172 them:0.1628503248230383 us:0.14590162882076213 it:0.11981876185020413 :0.23052432524997815 +by:0.313646759956238 that:0.3027897131722968 at:0.1616914536493932 in:0.1605808616717211 :0.0612912115503509 +of:0.7756430784527488 to:0.09026858354964995 when:0.05183737089367786 in:0.030388162333254302 :0.051862804770669166 +lor:0.8732241450531778 for:0.12359902311440515 w:0.0027463790450333344 the:0.0004278768041338519 :2.5759832498215594e-06 +state:0.43155350343017534 own:0.04453342285182272 Governor:0.03207672697636509 thereof,:0.02426813359589226 :0.4675682131457446 +following:0.0960931996907217 third:0.03919601171763709 result:0.034615961156793044 latter:0.019808228343939978 :0.8102865990909082 +the:0.5126300018932544 to:0.06621167650606792 follows:0.039916748760662056 The:0.0254874771802165 :0.35575409565979915 +did:0.6233906872814142 would:0.20041564342897372 does:0.07828221085689585 could:0.0720255556636867 :0.025885902769029315 +the:0.7795191904181583 tho:0.11164655537514963 former:0.007356298444288053 his:0.006336253923816572 :0.09514170183858744 +do:0.11159264531190399 was:0.08136723223151288 show:0.06402088044417405 turning:0.05850232203594222 :0.6845169199764668 +new:0.10616019721189994 old:0.06660971107657662 j:0.06599391271128205 Atlantic:0.06420163407586765 :0.6970345449243736 +and:0.2064424227645488 I:0.12217218308567729 but:0.06417441458719987 she:0.059209471732571156 :0.548001507830003 +road,:0.05523923432855445 yard:0.04205633614597189 dark:0.037846240734693025 books:0.03573124601617313 :0.8291269427746076 +powers:0.03726172226754333 duties:0.03724725624724203 expenses:0.033498708027920425 early:0.020435900701052043 :0.8715564127562422 +highly:0.31370257466153445 this:0.05308889707787439 the:0.048518130240892944 interest:0.04260208615694026 :0.542088311862758 +to:0.977885889804349 shall:0.007757381223038311 will:0.0008243987057226843 would:0.0006500171713316939 :0.01288231309555825 +sometimes:0.4002195526018149 any:0.2732387073841821 anything:0.027573472226096213 so:0.020971926678391258 :0.27799634110951554 +street:0.517915755971738 avenue:0.43460812209709665 E:0.009012117468162809 feet:0.006695386507208595 :0.031768617955793936 +order:0.7100975578094395 regard:0.07120027858509359 and:0.010052506354557214 relation:0.009656734999526474 :0.19899292225138315 +of:0.999699483540169 at:0.00014829145110575748 and:4.890341847225484e-05 to:3.6012659133394865e-05 :6.730893111950536e-05 +it.:0.5076801758000571 death.:0.04917164902605234 work.:0.010638588542614322 wit::0.008559419355306476 :0.42395016727596974 +of:0.24616799323753435 per:0.2211627855571407 in:0.12274720726948633 on:0.1219641610950351 :0.28795785284080344 +if:0.6581317315486013 and:0.04752785516056748 are:0.03522593841068836 to:0.024764003558522627 :0.2343504713216203 +dark:0.05032255552502804 sun:0.03889122585471913 country:0.032849477990033044 case:0.03147423628005357 :0.8464625043501663 +at:0.22088357111346454 in:0.17573152187124738 of:0.14680021819923222 was:0.13146065104593882 :0.32512403777011706 +and:0.7942712517723814 or:0.14521846959892667 aud:0.015472954304421912 nnd:0.006200020833051924 :0.03883730349121808 +agricultural:0.9134068253896052 other:0.04971336149420731 the:0.011057608639167698 several:0.006437055218129526 :0.01938514925889042 +well:0.038585261108824875 a:0.02022923398998216 aforesaid,:0.017483534872093292 the:0.01704977916189297 :0.9066521908672066 +the:0.21525414564141154 The:0.1404550998555616 and:0.1223242265895245 on:0.08389901176157452 :0.43806751615192785 +suit:0.07503094061430242 stop:0.06561723771400496 who,:0.058131553501301024 disease:0.02826094745244694 :0.7729593207179447 +of:0.9340741841645512 ot:0.0235935470967965 ol:0.021439977949649705 to:0.003244440897830029 :0.017647849891172608 +from:0.3868546847667741 of:0.19050560376612583 in:0.16855797896672173 to:0.08932614422700907 :0.16475558827336928 +3.:0.015940435534967087 5:0.01366430895577203 1,:0.012392533601698114 1:0.00810487182392732 :0.9498978500836354 +I:0.03978673968831653 to:0.003220532511844324 not:0.0007285992687403194 and:0.0005316064589823179 :0.9557325220721166 +and:0.15114877387342773 of:0.1267169043621421 the:0.09601985118061665 a:0.053044792858055995 :0.5730696777257577 +system:0.9368925224730149 for:0.00139687157023143 This:0.0010938156098543388 There:0.0010846224179282408 :0.059532167928970946 +keep:0.9528123836175527 hold:0.003421903195571641 buy:0.00279272104666793 on:0.0026170573256052844 :0.038355934814602484 +persons:0.16247145236853047 corporation:0.017274080012071223 who:0.01713614213754606 that:0.007066027223451282 :0.796052298258401 +a:0.6470915903379704 that:0.11957864211230303 the:0.11253405110265217 this:0.056455535194618586 :0.0643401812524558 +notice:0.13055180517776624 Notice:0.12849065937031345 That:0.08865903593874432 it:0.043067612528154484 :0.6092308869850215 +qualified:0.9963543740611578 able:0.0021712663274285095 than:0.0008026423471456882 as:0.000549154334159947 :0.00012256293010816968 +and:0.045978276240289224 to:0.011436387181776989 friends:0.009518991011179444 ;:0.009381110439543226 :0.923685235127211 +and:0.23695202009748198 country,:0.20814114013383367 the:0.11739954634017104 to:0.04148437734030213 :0.39602291608821116 +some:0.8793587757759789 full:0.007880124846600778 greater:0.004698268244104053 at:0.004110630374506407 :0.10395220075880984 +nothing:0.5675787814500869 reason:0.1977247436579544 learned:0.0317105695554329 little:0.028013077224871997 :0.17497282811165385 +possible,:0.07133158891602771 they:0.017382889999392536 possible:0.014465934944323067 ever:0.007405034803698197 :0.8894145513365587 +center:0.02674986696545712 north:0.026321540184823643 pro-:0.026048383025753914 legal:0.024687603718733225 :0.896192606105232 +Is:0.8433232153706014 was:0.041218978603320335 is:0.030852944424262015 at:0.005714940770578042 :0.0788899208312382 +as:0.5400016101125723 As:0.174669210754341 of:0.06331653455330805 and:0.035117387867516114 :0.18689525671226248 +first:0.25407261746899734 not:0.06266619208827999 ap-:0.05876655577496548 -:0.04626481561285971 :0.5782298190548973 +latter:0.8614731924755477 board:0.12022380705616766 to:0.0021674729694592483 the:0.0017648986593719774 :0.014370628839453644 +of:0.5235811417807263 across:0.4068858724193948 from:0.018612538466270402 for:0.01451469090120178 :0.036405756432406726 +rather:0.1254057252662615 more:0.11197883461926258 tive:0.10960193192238016 ter:0.08736672932617705 :0.5656467788659187 +they:0.2723621633021074 it:0.21382943300700052 he:0.18683162351042115 you:0.08920960674510924 :0.23776717343536163 +and:0.07014808032070481 ir:0.05029320875995849 of:0.04884038946292305 were:0.048334099096555144 :0.7823842223598586 +the:0.004243459191305757 left:0.0018227904245722317 little:0.00135568425881779 right:0.0011838852800463982 :0.9913941808452578 +are:0.23520675686237438 and:0.19482833324637092 ns:0.16066407992179613 It:0.126902726756397 :0.2823981032130615 +Tbe:0.24337543417525614 a:0.20524080566979996 and:0.1798631296639157 the:0.07637588293303112 :0.295144747557997 +a:0.44509484125547966 .:0.11270780186234827 the:0.05393204899228705 large:0.018199333849604305 :0.37006597404028063 +in:0.21690643552335823 of:0.10000295733886475 and:0.07456970613716046 with:0.06741393565203306 :0.5411069653485836 +thing:0.9781215087933 with:0.0006274033719138922 the:0.000595275379269757 life:0.0004435515418013264 :0.02021226091371499 +day:0.09907387375610698 others:0.018233729163479536 old:0.018021497838950486 house.:0.01333031091500933 :0.8513405883264537 +hour:0.10949846926325338 life:0.08018270222223917 value:0.02906138581033767 day,:0.028418730429728582 :0.7528387122744413 +the:0.7541756590103592 on:0.13388975706990994 tho:0.04896284915176949 this:0.023463796909396234 :0.039507937858565045 +and:0.19449126840973813 north,:0.1361496374399499 state:0.06316493078045922 of:0.02140983788266779 :0.5847843254871851 +sons:0.022587153064600577 sum:0.0016702985552417488 name:0.0008493397843756797 extent:0.0008221430947438729 :0.9740710655010381 +The:0.9324052206514287 the:0.012600638649282568 and:0.0014262442719609732 of:0.001047694700314923 :0.05252020172701267 +at:0.5375903961585572 At:0.2359329245008886 by:0.17567648710238204 after:0.024334342644412903 :0.026465849593759347 +a:0.2915517483897901 of:0.12481087728937097 next:0.09924544937826754 I:0.0558877264332186 :0.4285041985093529 +was:0.31769934578760545 could:0.20494340930925253 had:0.11220837702593504 went:0.04346543035416815 :0.3216834375230387 +the:0.9142234209556387 a:0.032836614939777874 tho:0.013576095445205954 tbe:0.012594999708583824 :0.026768868950793674 +been:0.9309340485328732 them:0.005121808195913167 also:0.00399985680388215 recently:0.003326462262677427 :0.05661782420465396 +the:0.6258333021334184 a:0.20524307838881622 an:0.12286029940721262 tho:0.011796093254733256 :0.03426722681581941 +did:0.33690272615722244 is:0.25566106701262675 was:0.23913509321026064 does:0.08509360681434731 :0.08320750680554277 +the:0.07462886253060055 sugar:0.0725828061161789 are:0.06714037646628183 in:0.03978169522208571 :0.745866259664853 +that:0.6211968448302321 the:0.1294796111591339 a:0.06779054164131842 their:0.055368329319148146 :0.12616467305016757 +that:0.8221679626011984 to:0.10838770837666334 in:0.030351159050551132 how:0.022310142959579463 :0.016783027012007724 +per:0.9692904904356989 ner:0.003753054509650249 and:0.0007498385313832377 or:0.0006198613673157301 :0.025586755155951824 +of:0.19303205797261885 run:0.06765783430691752 set:0.06599576939686277 at:0.05702103438619414 :0.6162933039374068 +and:0.11001880649184241 to:0.06995826624471665 the:0.06572581545929759 of:0.06044014399867882 :0.6938569678054645 +next:0.8442355423440177 past:0.07452523397459314 last:0.07194233225583138 first:0.0010165096124061313 :0.008280381813151693 +of:0.06890311535957842 local:0.017669151005563627 conditions:0.015655066948073677 new:0.015404782421500037 :0.8823678842652842 +in:0.4446190217905949 by:0.33350078769878444 on:0.10192170676047314 In:0.060758873878339975 :0.059199609871807585 +the:0.9827678122854139 tho:0.003849023356815387 tbe:0.0011498860661215869 fee:0.0011004498932106995 :0.011132828398438486 +new:0.09602578123636218 perfect:0.04011195078473539 man:0.022611485448474255 nation:0.017496617929413722 :0.8237541646010145 +upper:0.22301316696968956 central:0.17498100975952768 back:0.09966088061061185 best:0.0712372918920973 :0.4311076507680736 +carry:0.542741786858205 bring:0.05932551471190017 be:0.055714426753131846 do:0.0549234614581262 :0.28729481021863684 +caused:0.22464103259654428 wants:0.07710351193429586 for:0.052391062159448824 drove:0.035695825877732186 :0.6101685674319789 +of:0.19221702542832694 the:0.021040553248893153 to:0.018537966491910213 and:0.017996531415027633 :0.7502079234158422 +and:0.12603364274017154 with:0.09936247246279903 by:0.09397814756412466 to:0.07553321838646901 :0.6050925188464358 +there:0.8403783607000812 it:0.08112685036662798 he:0.013765808609970382 There:0.008152055866123593 :0.05657692445719685 +the:0.18542046045390445 a:0.17282680400475994 black:0.10857152366754459 great:0.09952920941000871 :0.43365200246378227 +is:0.5083743048862419 was:0.2498622724855189 Is:0.054057123651950485 seems:0.03518858399113875 :0.1525177149851499 +and:0.3513089279356535 of:0.28864490453449515 in:0.15708323956735534 to:0.07037356307359498 :0.13258936488890105 +and:0.11796287109818174 of:0.06067734628518845 the:0.05809092800496109 to:0.029294911726408857 :0.7339739428852597 +and:0.10532441156646656 the:0.056793338886409334 of:0.05045814845399956 from:0.04982583925867804 :0.7375982618344465 +between:0.4572975614150129 in:0.2822048967776409 is:0.11441763985531278 In:0.07839178795918315 :0.06768811399285053 +hot:0.03562981942121611 con:0.03445052588709328 great:0.02872509014095563 iron:0.02829242475976734 :0.8729021397909675 +New:0.6642092832705369 which:0.29428273762234947 all:0.012543297619044413 of:0.007060809899108831 :0.021903871588960493 +avoid:0.16190636262392602 make:0.12225291849790063 the:0.11435732197270493 remove:0.07734575938507182 :0.5241376375203965 +it,:0.011813953288801018 ground:0.010501962386827239 the:0.00994807622090404 us,:0.0029593320922886752 :0.964776676011179 +great:0.1358818788116472 members:0.03281303183945351 people:0.024574356581551573 president:0.02378959691674482 :0.7829411358506029 +right:0.4478953667418109 freedom:0.09587060448654178 amount:0.06730044410736094 field:0.04719795937858066 :0.34173562528570567 +made:0.018478455404779298 with:0.013208980591648559 and:0.01244654801714298 making:0.011489377823370232 :0.9443766381630591 +by:0.5825794117114285 sometimes:0.1621068813726982 which:0.10283912555470483 has:0.05933928034005387 :0.0931353010211147 +the:0.22297775377281476 The:0.1305626336689753 of:0.10783612275573799 and:0.09055381633296698 :0.44806967346950494 +the:0.20907670997646757 his:0.05960301900102621 of:0.04709001096470409 tbe:0.041620198467156574 :0.6426100615906456 +at:0.6382717933256107 the:0.19213306074891254 a:0.05096961636329254 much:0.019792545585625796 :0.09883298397655842 +of:0.9134394429700345 to:0.014607269965323154 in:0.012341369022744155 and:0.012130007150228623 :0.04748191089166956 +in:0.12732093151921026 financial:0.06603399871648048 the:0.05943769394239769 tho:0.03755610034454132 :0.7096512754773704 +on:0.17245905864141323 in:0.11652626286461748 at:0.061144083472948946 that:0.044057460647012776 :0.6058131343740075 +cases:0.07332360363091714 stocks:0.018162113560091994 officers:0.01654636317638726 power,:0.011760828845835968 :0.8802070907867677 +or:0.44240945519086844 a:0.15297039634806647 annual:0.10055342484208 n:0.04994665139696049 :0.25412007222202443 +considered:0.018117147862688233 approved:0.01670146682931498 not:0.015296739129916987 especially:0.014536965843631532 :0.9353476803344483 +in:0.18156681217790127 and:0.16894206641256362 that:0.15036609589365252 as:0.14605726424548365 :0.35306776127039896 +gold:0.7623063082477124 the:0.09713643127847316 to:0.05241534166517381 this:0.04866988889212413 :0.03947202991651666 +be,:0.026509340123389055 Washington,:0.020093835599585375 Baltimore:0.01634218917325677 the:0.0064268274259040095 :0.9306278076778648 +be:0.6862839318750144 le:0.10041236061223574 not:0.04643224723674754 the:0.018283926412800626 :0.14858753386320186 +a:0.9944318949317993 one:0.0025121687173420815 the:0.001928244748600743 u:0.0006206191704615663 :0.0005070724317964448 +which:0.1558349764630547 that:0.1103170468838453 in:0.10415616863284101 on:0.09854533313364595 :0.531146474886613 +word:0.1316980452161262 of:0.08268588500814969 was:0.05536390885688233 is:0.011303767522881689 :0.7189483933959601 +against:0.6737532749799612 that:0.1624532263910934 and:0.053101231120464096 to:0.04501656954875747 :0.06567569795972383 +office:0.10550488697903397 hands:0.0486458375633884 history:0.03532489398025888 face:0.0272085177432372 :0.7833158637340817 +the:0.19583390988828656 who:0.11693319538359247 and:0.11559854112770893 came:0.06508075857268589 :0.5065535950277261 +or:0.45007104826746835 be:0.22427167013150168 one:0.16593512144008496 and:0.08544240394903412 :0.07427975621191078 +mo:0.010995969482173953 ac-:0.0003427174676959443 and:0.00016730049046163875 men:7.525949448003453e-05 :0.9884187530651884 +the:0.33786907397969135 a:0.1947467131364182 him:0.15433804044933036 and:0.05806629336029216 :0.2549798790742679 +through:0.13387446606219555 on:0.11910806353663025 but:0.04342524016979498 and:0.043397010647690096 :0.6601952195836892 +and:0.10234033479026154 to:0.08520126748659371 for:0.05403413358472554 the:0.04046152175241641 :0.7179627423860028 +.:0.9821444659578138 ones:0.0019353904804883394 his:0.000395351097818716 W.:0.0003047035342594852 :0.015220088929619766 +the:0.4387872083961475 a:0.05472674585471969 this:0.024456023037267214 his:0.02015538662249112 :0.4618746360893744 +fact,:0.05991051351356957 time,:0.00879437990827518 money,:0.007938604601726278 life,:0.005821380930685405 :0.9175351210457435 +people:0.32204042924487175 supplies:0.2114951380444306 candidates:0.04641494682427248 conditions:0.04385477208305685 :0.37619471380336816 +it:0.6735719566754935 he:0.14066510230708837 Congress:0.06881605297765649 she:0.04160265541845293 :0.07534423262130863 +and:0.2663348398683329 the:0.10121140074289996 to:0.0784810362459049 The:0.0766285458989256 :0.47734417724393663 +was:0.1768137269471246 the:0.16206548193222428 men,:0.10660533245711526 had:0.06213732148019439 :0.4923781371833415 +or:0.528969883889743 the:0.10746272307295061 The:0.09714589279503758 to:0.08596250251853646 :0.18045899772373236 +very:0.05702365031402731 good:0.03981657449114327 most:0.025251599479296453 little:0.020188130133225943 :0.857720045582307 +and:0.599449125752057 And:0.10439903600106284 looking:0.05255870587385888 aud:0.02834938314947089 :0.21524374922355036 +and:0.11705680706975714 of:0.05351381634333077 in:0.04471111429952399 small:0.013587429181225451 :0.7711308331061626 +of:0.6253938765386191 and:0.07366936601789223 in:0.06637573671645294 to:0.05751297028167999 :0.17704805044535585 +up.:0.2756927200181021 in:0.27367438210147244 up,:0.09317605586125358 here:0.04899766151210696 :0.30845918050706495 +by:0.48613103605440494 All:0.14671901782331925 and:0.11435824890964591 of:0.09678022839385444 :0.1560114688187753 +above:0.05559279913588145 Grand:0.04471246229505571 two:0.03313231458985621 last:0.03121716884019223 :0.8353452551390145 +finest:0.4061966315834468 best:0.3413241195645277 noted:0.12623177337773342 last:0.10297099530992676 :0.023276480164365364 +and:0.0019411844647874072 Brown,:0.001382061729496753 Smith,:0.0011025953890679736 A.:0.0005122304607019945 :0.9950619279559461 +city,:0.44065287601857017 city:0.08741416554022917 lots:0.016157662568670204 piece:0.010454652218760142 :0.4453206436537702 +satisfied:0.08407235939973363 only:0.037162824504276555 less:0.014612249223058277 so:0.01309518320560197 :0.8510573836673295 +costs:0.7144496413531266 charges:0.021847916222611723 named:0.008460437892672742 mentioned:0.007008479943464786 :0.2482335245881243 +of:0.07107733502146825 the:0.06932604935076099 and:0.06916579180160357 to:0.030853510716931064 :0.7595773131092363 +past:0.8534445682959836 last:0.1055777272721393 three:0.011213429659293516 for:0.001911610867525109 :0.027852663905058375 +put:0.13106360178454196 order:0.06945725334428106 let:0.06683973959771543 looked:0.057903553921115215 :0.6747358513523463 +about:0.2813663098896824 in:0.12148736569450355 suit:0.03321246198745834 on:0.032259933930253 :0.5316739284981026 +improvements:0.01692437910585525 plans:0.01391444680015856 grave:0.012846019253696033 work:0.012819292533988691 :0.9434958623063014 +no:0.7001038413006709 to:0.11499827454296054 can:0.0640666279017293 and:0.04393301971621444 :0.07689823653842481 +official:0.07728009948658464 best:0.05948485431113996 necessary:0.02775467777336504 desired:0.02621754038497626 :0.8092628280439341 +he:0.29498129109949106 there:0.2388160115554736 I:0.11613569535029418 they:0.10584915403554787 :0.24421784795919338 +and:0.814646984170754 aud:0.030499361943051247 or:0.028110128760903297 addition:0.013358671288994733 :0.11338485383629679 +knew:0.19866150617553305 City,:0.11279050816522657 City:0.08079122481820147 county,:0.05428497528316092 :0.5534717855578778 +is:0.3186798372081502 men,:0.23764929320070188 of:0.15462628894907185 says:0.07714048019682412 :0.2119041004452519 +same,:0.04085634907875019 city:0.030123034047670572 state:0.02359536812550828 house:0.017959577684452485 :0.8874656710636184 +of:0.14091876199282793 and:0.08767727154473609 the:0.06619588318135713 at:0.026637282210417692 :0.6785708010706611 +the:0.4827725805177214 a:0.0947937105743721 me:0.07467548738663768 his:0.057573742498703416 :0.2901844790225655 +pur-:0.00037604306133329825 and:0.00023578076756510584 protection:0.00020497913827330407 pay:0.0002005602459627558 :0.9989826367868655 +was:0.23998463922882543 is:0.15093219952570008 and:0.09136294407373818 with:0.059265257233122336 :0.458454959938614 +war.:0.0022442345501655575 case.:0.0021119223533379522 State.:0.0018097594625538444 States.:0.0015824015795082643 :0.9922516820544344 +of:0.20313704817951234 and:0.13865961402680205 the:0.08599571270307078 The:0.0550927161755098 :0.5171149089151053 +on:0.4044897796396388 in:0.17049237777279264 from:0.08112940869338812 of:0.051738772013881155 :0.29214966188029906 +tn:0.37443739186871594 and:0.18961699831055256 the:0.12389862655285158 are:0.09453186631785468 :0.21751511695002526 +hopes:0.07591275024048143 wages:0.04077746193751632 cities:0.027686082619064047 party:0.026535199240507266 :0.8290885059624308 +road:0.07534630153141485 thence:0.041673996014926835 course:0.026127340213432455 running:0.006276030221924824 :0.8505763320183009 +mo:0.4519428818497971 the:0.4053391430166683 what:0.08885377788906008 his:0.03165027013067344 :0.022213927113801192 +treaty:0.6992445207624741 time:0.023973702566419352 matter:0.02134915099530923 meeting:0.012912339349952026 :0.24252028632584538 +till:0.34523535854337556 that:0.18180166770978015 as:0.15533529465628826 at:0.0750940485693525 :0.2425336305212034 +and:0.09816180300185251 to:0.0943996671143501 of:0.054006600811389104 the:0.036854170447863877 :0.7165777586245444 +to:0.45704746163815635 the:0.02762649935131679 and:0.010734443559011491 a:0.010384726799151065 :0.4942068686523643 +get:0.3780348734852108 on:0.11282587989798476 around:0.10109410733711748 over:0.04381324364505977 :0.3642318956346271 +vast:0.9152567511647646 considerable:0.03068504707231673 great:0.021434860193045014 large:0.004355960191936413 :0.02826738137793715 +not:0.19119341290889802 very:0.14552287780814563 only:0.1267032043076092 now:0.10065339804621301 :0.4359271069291341 +we:0.274680183903525 it:0.2156498453654425 she:0.14705964306525393 he:0.09116893806521377 :0.2714413896005648 +most:0.029618373471587037 government.:0.026966021856945042 war.:0.024586302429173496 day.:0.0175810700907632 :0.9012482321515313 +time:0.19525344458770752 story:0.13245435924166843 and:0.062419619658748295 Mr.:0.041005678447219154 :0.5688668980646566 +north:0.02134158937554727 northwest:0.01431345688570084 south:0.009745178469716221 receipts:0.008674412552183082 :0.9459253627168527 +you:0.6950679274432134 you,:0.01904610344133664 it:0.01655806608375597 to:0.007975369286894475 :0.26135253374479966 +to:0.3587931650197589 without:0.21679481057783428 than:0.09107507154499096 needs:0.04799861474959369 :0.28533833810782216 +the:0.6218170541147466 this:0.11378711938224974 an:0.05021141726620786 size:0.036909684024905784 :0.1772747252118901 +a:0.1253465353120752 more:0.08006017858427734 found:0.06057272962962615 thoroughly:0.04802179215062766 :0.6859987643233935 +to:0.47066832447854684 and:0.08888669520734832 in:0.07160707685333637 with:0.051266827963585004 :0.31757107549718344 +of:0.3120154684764248 and:0.21410448493786602 with:0.07380923067365117 that:0.06235999220466625 :0.33771082370739175 +not:0.22757422517647538 to:0.2149381278164816 make:0.16573604803474717 be:0.062042717484755594 :0.32970888148754035 +has:0.2642962422058611 had:0.23912215146667465 have:0.12294164292315043 is:0.07843505697037992 :0.2952049064339338 +and:0.46091662187930993 but:0.3184845390510589 as:0.0821361211186288 for:0.0752482983148263 :0.06321441963617593 +company:0.181711002745597 ment,:0.05181487369419496 committee:0.011069141068015006 Board:0.010629332385180382 :0.7447756501070125 +a:0.1632958052611737 de-:0.05049429087824823 the:0.04241018398794058 his:0.016187014166506225 :0.7276127057061315 +U:0.39861719451860095 A:0.3161581194962437 M:0.08126526983297518 T:0.052460210873512304 :0.15149920527866784 +r:0.0387456330941748 the:0.018388804106796382 number:0.008751428359243715 und:0.007383810391406079 :0.9267303240483791 +as:0.35622941607824654 where:0.35183717515310764 because:0.13244793869988336 ;:0.08231566902524734 :0.07716980104351516 +of:0.8881091509709486 to:0.05883147954932693 on:0.018378454460197636 in:0.016832300316264 :0.01784861470326291 +of:0.3286862814151112 in:0.15359409641763774 to:0.13404983316095548 and:0.0861896654851828 :0.29748012352111264 +found:0.1449859016660571 held:0.12257235225737273 made:0.07511106456978085 placed:0.040916307290571205 :0.6164143742162181 +as:0.7818922538775919 failed:0.06991269422074403 ns:0.021502170224949563 refused:0.01734173908021939 :0.10935114259649505 +he:0.42383809872615863 nature:0.39845408034347657 they:0.09457453951771205 we:0.04530393856484476 :0.03782934284780803 +of:0.10702340259111984 or:0.09847605711317933 and:0.08500143440301955 in:0.0819737117084812 :0.6275253941842001 +you:0.07721995560100825 open:0.039733507025638035 will:0.0063479811002144365 and:0.006310267344331859 :0.8703882889288074 +who:0.18733782475660185 would:0.10933614869713779 to:0.05611147634366915 I:0.04800957897002383 :0.5992049712325673 +the:0.4094469582869459 New:0.07629571942466555 that:0.06791542993475165 these:0.05549948018310239 :0.3908424121705344 +the:0.4561024388235906 in:0.22527634735977164 by:0.058047221982552744 but:0.016212328032209494 :0.2443616638018756 +and:0.24110749887114524 to:0.17714670349261172 I:0.04355798857173774 which:0.04219649376002374 :0.4959913153044816 +the:0.4184552996165236 whether:0.1853259199197417 a:0.05591626332126972 be:0.05448724626450787 :0.28581527087795716 +the:0.363150108110747 a:0.055122155961521056 their:0.026139381373600466 this:0.02249874571997104 :0.5330896088341603 +the:0.3177919365399301 and:0.14357495490609193 of:0.08381341053440833 by:0.052257584134652035 :0.40256211388491764 +close:0.04870903700667827 trial:0.037430274222173966 point:0.03547805043875415 question:0.03369490554365979 :0.844687732788734 +of:0.28379408716987814 and:0.11741180267041355 was:0.06227994606583875 the:0.061850283690006364 :0.4746638804038633 +from:0.29216844807625025 in:0.2198016872339573 of:0.20630467725369486 on:0.14395562433171125 :0.13776956310438643 +the:0.6179227538030148 said:0.053509926445017314 his:0.04314619573684827 a:0.03221660193860488 :0.25320452207651484 +and:0.09261489550157011 the:0.04933498243210926 of:0.04819318120956845 to:0.025674069237323547 :0.7841828716194287 +en:0.34906000624453004 of:0.13741982837535252 and:0.05279620636640917 the:0.04359010440407733 :0.417133854609631 +the:0.39595284210324533 on:0.19892863122925689 clear:0.052184740886189504 and:0.0512326967254117 :0.30170108905589643 +a:0.9978804158775652 the:0.0007648179431253826 getting:0.0004427416044703436 his:0.00035613492571107743 :0.0005558896491280049 +our:0.32631913254841766 the:0.2774683456186769 his:0.09929746115626228 my:0.09399845166878332 :0.2029166090078598 +the:0.48073960171331354 Senator:0.11622670153783449 not:0.11389678597496151 Mr.:0.08852425941066 :0.20061265136323042 +a:0.2855984401104558 yet:0.2406256786107309 until:0.18287260970130195 over:0.06565230327062499 :0.22525096830688637 +but:0.3355477013620424 and:0.31046574376692354 only:0.2314186222882223 from:0.06259945759626319 :0.059968474986548635 +the:0.9975079648884176 this:0.001328505025000969 a:0.0006256274046428321 last:0.0003474768859623559 :0.00019042579597621103 +for:0.6532923781308982 to:0.14176292188868236 in:0.08544826612499705 with:0.08041661951675286 :0.039079814338669416 +street:0.008119830529256281 and:0.006765398152782255 hundred:0.005584144444463783 in:0.005224997527985803 :0.9743056293455118 +not:0.4958534901874228 equally:0.3432146168762727 only:0.03548046936570706 i:0.024953444803274404 :0.10049797876732304 +father:0.09389889855982728 boat:0.05174811563225653 stomach:0.05124204135373193 friend:0.036408844073204 :0.7667021003809804 +recent:0.08878058781655529 new:0.04444255898600732 the:0.034954907582489 old:0.031167835853604452 :0.8006541097613439 +tion:0.2641362740344297 ness:0.12634168045740315 ment:0.07904029703102358 of:0.06136710169072182 :0.46911464678642173 +the:0.33682106710599724 a:0.04294565168015439 county:0.01862168930592024 hearing:0.017772592378296984 :0.5838389995296313 +of:0.9953894357016988 et:0.003093435782854815 in:0.00036113151354496436 for:0.0003108795169963228 :0.000845117484905059 +United:0.9296683754520148 Northern:0.0032695469482472697 Southern:0.0011500234913204785 U.:0.001018483409122737 :0.0648935706992947 +purchased:0.15921008581873247 conveyed:0.02049691741368563 made:0.004372836574216382 fed:0.003940969276837503 :0.811979190916528 +been:0.17166033000870828 and:0.11722502621896358 but:0.05324092147222365 with:0.04485474502343811 :0.6130189772766663 +of:0.5478185963106895 by:0.18066305108064176 on:0.11552058522250798 is:0.09878735851143577 :0.057210408874725026 +be:0.546099476517767 out:0.12985592399571722 is:0.0572293892108717 more:0.04650275670628741 :0.22031245356935653 +which:0.23086087264452604 sight:0.009128428221810798 that:0.00254094822742968 whom:0.0015803044100013387 :0.7558894464962322 +ol:0.5343891106179777 of:0.28384924169662057 on:0.12947844875342326 made:0.028584554571327574 :0.023698644360650924 +The:0.6804663231049364 the:0.12241269144961388 at:0.04811311476866563 tbe:0.044784277219166155 :0.10422359345761784 +and:0.115183385332495 away:0.08908515187652352 frequently:0.0500967546130747 was:0.038366219433003904 :0.7072684887449028 +of:0.44711065889440443 in:0.1222623193088699 to:0.10229653234237096 for:0.07548776509641346 :0.2528427243579414 +place.:0.2783796347011573 one.:0.059690947572983835 other.:0.01719724024501707 hand.:0.008713453426287557 :0.6360187240545543 +the:0.2565004882274559 this:0.24301686213586318 a:0.09909144683796804 which:0.06955996051908049 :0.33183124227963234 +of:0.1238265562149526 was:0.10244004206215487 the:0.0857301231894074 and:0.07701913417621842 :0.6109841443572667 +the:0.5536328377222665 a:0.3649695067550886 tho:0.038053078041754 his:0.025248586030414334 :0.018095991450476707 +purpose:0.19723343202552804 sum:0.0967535082211362 benefit:0.044410507409659315 use:0.03010772166844636 :0.6314948306752302 +the:0.9519872387604008 a:0.046504794447671347 tho:0.0011831303019274794 our:0.00012131159291943073 :0.00020352489708101406 +of:0.3168152584039371 ago.:0.12154321744121079 ago:0.10717005907642738 the:0.09792892241131797 :0.3565425426671067 +she:0.9923917383527827 the:0.003008410130497325 this:0.0017575199053001238 we:0.0009768379407239767 :0.0018654936706959517 +they:0.0732128355650496 who:0.06424847780952718 and:0.05427101028255945 which:0.05280573695132243 :0.7554619393915414 +.:0.08335141252813241 the:0.01379866136669247 of:0.009931556766960274 to:0.008466894556490334 :0.8844514747817246 +to:0.20771078475393642 in:0.12126813903259577 with:0.10615418609320014 of:0.0847873754112612 :0.48007951470900645 +the:0.45412445027042175 a:0.24199305560099366 tho:0.16440367881743817 Its:0.11315189724413124 :0.026326918067015304 +as:0.8419785429404242 to:0.05598399657831042 by:0.03439146432574764 aa:0.030635249578623267 :0.03701074657689445 +tion:0.1380858858025843 as:0.05108398874238335 attached:0.031850031312871986 sent:0.024298933708010197 :0.7546811604341502 +and:0.7798212454491331 Is:0.07911216414288015 hereby:0.04711539736718792 is:0.037988076261898034 :0.05596311677890064 +accompanied:0.42804408299868635 created:0.3281257549330208 approved:0.0302264422022125 paid:0.02461732098141307 :0.1889863988846673 +the:0.4087183456359346 he:0.12225670261480685 his:0.08292080288652726 I:0.06134425475528847 :0.32475989410744266 +back,:0.6742760715545644 ground,:0.058500349603512594 river,:0.02746487106360391 water,:0.0251086009025623 :0.21465010687575684 +of:0.26149014441865626 a:0.22192670454164254 the:0.16408965600982856 and:0.04854923702166141 :0.3039442580082112 +disease:0.5408908213966135 thereon:0.02865800070144424 interesting:0.006512356456420772 thoroughly:0.006391013205801901 :0.41754780823971965 +who:0.5917198830190926 north:0.06772076589644524 current:0.06396215410445777 nation:0.03143231564916706 :0.24516488133083725 +up:0.5651382263134901 in:0.1148585905828803 down:0.07388242665749918 on:0.06917644817899812 :0.17694430826713237 +E.:0.4361954825030289 a:0.347322174201191 C.:0.08852328024619159 N.:0.0410485212097072 :0.08691054183988119 +man:0.1280261695743221 one:0.12057874677702231 of:0.111192904788963 house:0.10337646832694855 :0.5368257105327441 +of:0.5519242753764259 in:0.15348056430774784 at:0.12493593096110171 and:0.08618066534286768 :0.08347856401185692 +the:0.0003984294248566143 and:0.00021684760352307472 of:0.00012083669098063822 Mrs.:0.00011915788168948257 :0.9991447283989502 +the:0.16122349483488543 and:0.12789908909645908 The:0.09822147373174835 street.:0.062169405673429504 :0.5504865366634777 +life:0.25730529016521464 secretary:0.048719141370796845 character:0.04848068537816936 and:0.01885067579472035 :0.6266442072910987 +suitable:0.10361212569130263 powerful:0.06662871046041276 land:0.031048879373620494 so:0.021718651611455676 :0.7769916328632085 +and:0.2151209708411716 or:0.07391705665021539 of:0.07073362031145208 to:0.05933311125931989 :0.5808952409378411 +getting:0.10500740118839579 the:0.04143363281175878 going:0.02977759540366944 out:0.028467959492439816 :0.7953134111037363 +and:0.12496696847778685 feet:0.07365317211513568 to:0.05573461897720631 a:0.04932174106065678 :0.6963234993692143 +that:0.3352829505600003 this:0.08245334110466597 which:0.027434994181109913 it:0.027289180367458164 :0.5275395337867658 +results:0.5559164929641616 result:0.03602309950228667 blow:0.033220465445047684 quality:0.028028165472208252 :0.3468117766162958 +the:0.7633859383877076 your:0.0332433861171494 and:0.008227153515855887 not:0.007973557523814038 :0.18716996445547313 +be:0.5405505390679803 not:0.1078195447883905 have:0.08830342501693436 bo:0.05694631848917073 :0.206380172637524 +It:0.2509228488192469 There:0.16135417973137142 it:0.1589894076680216 there:0.12335729648307203 :0.305376267298288 +of:0.17963813679885562 and:0.09060455110392504 the:0.08572245935067742 to:0.0329769829394071 :0.6110578698071347 +tions:0.08575945112484154 out:0.04878765021892103 and:0.025874667082764303 tion:0.010186768051351908 :0.8293914635221212 +strange:0.11747465023070834 vast:0.09840333173255136 healthy:0.03611402312891943 that:0.024505294466666893 :0.7235027004411538 +in:0.31149204014153314 and:0.154542439675328 of:0.09794262260179545 on:0.07663939808031074 :0.3593834995010327 +of:0.4645881439741438 in:0.16537588749153392 to:0.13222442891846614 on:0.0687362970588997 :0.1690752425569565 +Jones:0.0032866794187744333 Black:0.0011984239612204972 women:0.0010673359958740924 John:0.0006967748239402691 :0.9937507858001907 +to:0.694485806409988 for:0.2123659331937027 than:0.06118015162290475 until:0.006354097557755463 :0.025614011215648973 +which:0.8434858734645664 at:0.0009817993288838741 when:0.0008850562980990986 hat:0.0008667265762643967 :0.1537805443321863 +in:0.09289969642239508 of:0.08727652859202556 all:0.06472638163037135 that:0.061153884261882986 :0.6939435090933251 +the:0.10047638731864111 of:0.09068481232709422 and:0.0857255345531299 to:0.049818935540541 :0.6732943302605939 +the:0.4114817116737749 a:0.1796754517289451 one:0.09081784203394418 every:0.031475743618725 :0.28654925094461087 +new:0.04048584738766863 few:0.03816752218685411 single:0.03374791631274801 large:0.03195648221345247 :0.8556422318992768 +of:0.12480095865896712 and:0.11401409458078275 the:0.07398636519648007 to:0.054165294468047874 :0.6330332870957219 +aud:0.15962087067526487 and:0.02309129108068585 to:0.0139551395504376 full:0.010931919013047268 :0.7924007796805645 +hundreds:0.16801473425027505 purchase:0.06356891364336646 loss:0.031251381318840026 lives:0.02591254253897968 :0.7112524282485388 +of:0.2567536015509693 and:0.14323980044481938 the:0.05070361701783846 The:0.0396401272996416 :0.5096628536867314 +as:0.6962505007911578 makes:0.037680012877222925 making:0.030569295362675192 is:0.02967352440906072 :0.20582666655988346 +well:0.7187544814694556 the:0.006761198404813259 of:0.006740304111553522 stage:0.006335995030255137 :0.2614080209839224 +two:0.12878150109764006 re:0.07331231157420082 .:0.044813990350587425 safe:0.028407892458496807 :0.7246843045190751 +and:0.3258006255378731 the:0.24901787125011116 with:0.11423137723892235 all:0.06777564398049882 :0.24317448199259453 +into:0.3374394427539661 of:0.21068759471287815 In:0.1610453584228135 to:0.1445706957390257 :0.1462569083713166 +in:0.42625503491729017 to:0.22469359186185162 of:0.12575703813023031 und:0.11061869858206443 :0.11267563650856353 +tbo:0.7162565564219261 the:0.19331120274765975 tho:0.013556278841608496 on:0.005677149418896496 :0.07119881256990908 +the:0.8912913772729243 its:0.0306523466942568 tho:0.02646356262975723 our:0.02327548907078215 :0.028317224332279626 +and:0.04421371215650822 -:0.036247310796211775 of:0.030614249881348237 the:0.024785827418387422 :0.8641388997475443 +council:0.10239742664037176 clerk:0.05915416642664678 and:0.05571822801280875 hall:0.02907606781594323 :0.7536541111042295 +the:0.9691247972282937 said:0.022571686912353024 tbe:0.0025993758090302145 all:0.0011704354699407214 :0.0045337045803822695 +having:0.30158151932720045 had:0.2961106089707843 has:0.23076368433809274 but:0.0970746481853546 :0.07446953917856781 +is:0.15293292550960216 Is:0.1390942598479346 are:0.13053126398097575 being:0.045711214965543014 :0.5317303356959444 +entire:0.4158281213303413 mile:0.2670804096753755 difference:0.09578055477963242 distance:0.022936425707826533 :0.19837448850682424 +her:0.48380570294581254 the:0.16065847238310285 tho:0.13282848369613506 their:0.09207609725331056 :0.13063124372163903 +to:0.759894189166231 They:0.04725041838980504 could:0.04438389837761326 and:0.04127431356177828 :0.10719718050457237 +and:0.13947521065709048 land:0.05943015486608928 may:0.05889009719806857 might:0.045981313851798836 :0.6962232234269529 +term:0.046431364747473086 lot:0.04356726375263475 location:0.0204715203726141 but:0.009646071616085631 :0.8798837795111925 +and:0.16788079526797103 be:0.1331339069784879 is:0.06471882790563013 or:0.053131103824645004 :0.5811353660232659 +and:0.4466760925300738 by:0.3543427049767346 as:0.06812926771142956 In:0.03492087528628612 :0.09593105949547595 +of:0.9509161436021951 good:0.019253885623672976 in:0.008609662993705748 running:0.0024965260414240745 :0.018723781739002146 +will:0.8945792704547717 and:0.08806241108756661 to:0.00704388895034922 than:0.001958774789140092 :0.00835565471817252 +be:0.628672904374227 bo:0.11604438299826775 take:0.08264372696378686 have:0.06510145964773101 :0.10753752601598744 +goods:0.15503244412485984 trade:0.10060807548272271 Columbia:0.0623387449851521 capital:0.04495377592509679 :0.6370669594821685 +and:0.2782375660258082 an:0.1446282718923655 our:0.14114425412772988 of:0.095140966398733 :0.3408489415553635 +the:0.7808827491284903 his:0.1801636122435198 citizen:0.004190556726623724 and:0.0026646631407158073 :0.0320984187606505 +of:0.3065091381283799 to:0.11382986742783066 and:0.1137288465541094 in:0.09111651346108958 :0.37481563442859056 +building:0.06110428688059994 construction:0.05451330926703656 beginning:0.03029703269036667 election:0.028039954676140684 :0.8260454164858559 +your:0.9993853078691165 this:0.00012544503170197177 the:0.00011458859051570583 a:5.9668253120281454e-05 :0.00031499025554556124 +the:0.30931322772491493 a:0.1753502528530603 in:0.11513770334485697 tho:0.07998542406858364 :0.32021339200858406 +do:0.23119450917680093 know:0.1167258001170429 break:0.11467138506070447 make:0.030506134575189546 :0.5069021710702623 +and:0.10315753747426243 or:0.06339725007064892 was:0.055980911695323196 that:0.05289878019487748 :0.724565520564888 +far:0.3103710350835951 no:0.039528452580341926 him:0.02145236866826932 might:0.021377851287519463 :0.6072702923802743 +his:0.29406775498066795 the:0.2694911424244281 to:0.06422675210539723 their:0.05055067425636673 :0.32166367623314 +and:0.12085666515010447 to:0.09852476320241187 of:0.047447201689993494 the:0.04714867823187508 :0.686022691725615 +the:0.41971944150770857 said:0.1429780018772002 God:0.14064030370793767 tho:0.0652778003540876 :0.2313844525530661 +with:0.6654412139934197 in:0.10333131077121928 and:0.03360104607943954 to:0.0314352769281164 :0.1661911522278051 +a.:0.9811666695449971 A.:0.00642458641583006 1.:0.0002735369928153096 Mrs.:0.00013498905248295295 :0.01200021799387452 +and:0.18468342556769182 national:0.08741942471193195 cure:0.05130266283277311 school:0.04220647435699743 :0.6343880125306058 +head:0.31093965178925037 work:0.08362843684234753 back:0.07815821449541849 residence:0.06533380057772523 :0.4619398962952584 +hearts:0.39237164623743787 and:0.07321406564645613 I:0.013111995140568204 out:0.012688375585071045 :0.5086139173904668 +for:0.4420543530066947 in:0.2823228543354145 of:0.23767131247382992 within:0.0021437025831912548 :0.03580777760086963 +of:0.5802676842702184 from:0.08585678079711623 and:0.07724415947284892 on:0.07632741207775064 :0.1803039633820658 +in:0.7183766400112734 the:0.11197998265605906 that:0.10769183950057072 of:0.01869799415012852 :0.04325354368196829 +the:0.4741382578316833 our:0.4162454317598974 this:0.05009346609646821 these:0.02535011221980679 :0.03417273209214442 +2:0.7177410602238743 two:0.0704391902929166 the:0.035030554546691184 one:0.016288992817645443 :0.16050020211887236 +us,:0.04456388092813748 him:0.022229236067089136 this:0.01089129536638299 death,:0.00656415741344573 :0.9157514302249448 +and:0.05067719474286925 made:0.025250780074512567 or:0.022456782932023876 ed:0.016888595578974222 :0.8847266466716202 +not:0.1463056053940522 the:0.06828333188816046 to:0.06597471958650337 now:0.06204829592780642 :0.6573880472034777 +soil:0.011938265111338334 world,:0.007865856261379419 past:0.005738818240635143 summer:0.004413108067297079 :0.9700439523193499 +and:0.2440648413586125 that:0.0889430342609303 as:0.070336825052704 but:0.05672350583773481 :0.5399317934900182 +Not:0.23892783054337852 a:0.22175322464609523 most:0.20052331418759015 from:0.14262551348004274 :0.1961701171428934 +com­:0.4134453987191313 com-:0.276497963536366 be:0.2025187515490547 ex-:0.05671205269530262 :0.050825833500145294 +the:0.4258516846345042 at:0.24400055758464237 to:0.08918896728514902 The:0.07270539709555685 :0.1682533934001475 +and:0.7111793692119713 before:0.09243353069788283 of:0.05679439644203519 the:0.03849011232213069 :0.10110259132597989 +the:0.7423234694284288 his:0.09890640532497615 Grand:0.09010520579689928 their:0.03469668502512636 :0.03396823442456948 +next:0.18318762535029318 i:0.0800885722880809 said:0.035661211071396935 The:0.019261702593668655 :0.6818008886965604 +of:0.9693710170726711 that:0.005809858557338045 ot:0.003888027825169039 with:0.002757150750048949 :0.018173945794772727 +and:0.19744497960208376 said:0.08599613233123696 nnd:0.047827429783063265 but:0.04706731602860008 :0.6216641422550159 +just:0.1601917596480914 and:0.1244835770384943 They:0.08407528774522763 So:0.06677205733132317 :0.5644773182368635 +it:0.020606445397435856 y:0.01606767599992951 the:0.015103035293613398 and:0.012272059404244312 :0.9359507839047769 +and:0.2672199815592333 claims:0.0726974840197251 require:0.051661244141280184 more:0.028534162262459455 :0.579887128017302 +in:0.9902564083095509 was:0.003297133476192296 from:0.002640400910908938 about:0.0013269287260517567 :0.002479128577295943 +we:0.4223458911645136 they:0.2946940989862196 I:0.21262603249918982 could:0.03271001908255097 :0.03762395826752584 +to:0.4496191029719109 different:0.025535414487050854 difference:0.002976263364970696 formed:0.0007141527580443705 :0.5211550664180231 +ago:0.20282553292031552 the:0.010208275163938957 ed:0.009845856304227116 in:0.008363261573988501 :0.7687570740375299 +It:0.5434863023729498 That:0.1773000636243022 it:0.09707745388308606 and:0.05247418967631657 :0.1296619904433453 +him:0.7901510031966688 her:0.07364943581558066 it:0.004486020159613025 them:0.004384577999101585 :0.12732896282903586 +hot:0.12886135377760163 ba:0.03290032075553093 poor:0.022737219552422014 close:0.01637587897770047 :0.7991252269367449 +house:0.1620773157616561 mother:0.11015797809009177 home,:0.04465291000597796 claim:0.018283459425495672 :0.6648283367167785 +The:0.11672694645552009 Mr.:0.10965808922195462 and:0.1049035860715055 of:0.0447427225529668 :0.6239686556980529 +advantages:0.8980059101260018 and:0.035121911415626726 there:0.01353819741507019 they:0.0075942939338077275 :0.045739687109493665 +one:0.2635885799776186 the:0.19323792918103685 any:0.11774831648234592 consideration:0.033311101255914535 :0.39211407310308405 +grain:0.003600417448103444 piece:0.003506645971883085 shot:0.003223242551545892 ship:0.0012295692573613974 :0.9884401247711061 +proposed:0.5457109694999527 of:0.25035648903215585 is:0.11533058711032779 was:0.02401614805611584 :0.06458580630144777 +the:0.7926959007716553 and:0.07995926064220882 will:0.013622065380518987 to:0.011806836068458712 :0.10191593713715821 +street:0.19979011147410358 street,:0.1576942300386387 feet:0.10567665918459054 feet,:0.07279917745151708 :0.4640398218511501 +the:0.0890058803781327 his:0.07634585993146059 excellent:0.05889880954885256 a:0.0070568512689246935 :0.7686925988726294 +to:0.22361087417137315 and:0.1094859954651154 |:0.0760289805145436 of:0.06983602560658703 :0.5210381242423809 +limits:0.06299359965792911 time:0.03493647685773599 hours:0.016271772683768147 territory:0.012900467003424187 :0.8728976837971425 +on:0.15175452864239666 of:0.13194812786828014 and:0.12364869673322079 to:0.12013393856786567 :0.4725147081882367 +Mr.:0.13698322873665103 of:0.08870131724027396 and:0.07205845230665305 the:0.044696180939380235 :0.6575608207770417 +who:0.05625729677030996 body:0.05051784563842622 I:0.049306635026080674 husband:0.046134977459338866 :0.7977832451058444 +this:0.7921984114791916 that:0.05455313441038038 the:0.0496409318725185 any:0.034435297643152396 :0.06917222459475708 +the:0.3100953112817054 every:0.18132276241655276 a:0.12553089289504638 many:0.033453544415824654 :0.3495974889908708 +and:0.07514793724826337 ly:0.030446208040857875 the:0.02317767731676961 he:0.01859597779090714 :0.8526321996032019 +the:0.2935665277919542 a:0.05105035153359359 The:0.025971160278374296 in:0.024938208217591396 :0.6044737521784865 +a:0.17675485783495556 the:0.13965366641841692 so:0.10471650660030811 in:0.058866470982152516 :0.5200084981641668 +which:0.11973287640108266 that:0.014964037952728246 campaign:0.005848828010651058 reach:0.00531485910264712 :0.854139398532891 +A.:0.03932608118287088 H.:0.03593691753122463 C.:0.03276618675793897 W.:0.02989025840230425 :0.8620805561256614 +Clerk:0.6715781642663603 clerk:0.23499770318618976 Register:0.031550162868959696 Sheriff:0.008947505036137194 :0.05292646464235306 +remarkable:0.13181780126658554 famous:0.1000818939090451 heavy:0.058398371518397614 popular:0.05692015652214663 :0.6527817767838251 +trust:0.2439932723604275 medical:0.08575330096631083 con-:0.05386987513455014 times:0.017216052872969036 :0.5991674986657424 +to:0.4483862825706477 of:0.14889653126889757 in:0.05215206999501689 the:0.03739443694715924 :0.31317067921827835 +and:0.23772924339004514 was:0.0898297575647527 is:0.08232601844515697 of:0.05612468361709453 :0.5339902969829506 +the:0.708567933893124 not:0.0984407707512715 tho:0.07184849327845365 he:0.022877185365596214 :0.09826561671155457 +of:0.16649852172613666 that:0.13473882594037312 many:0.11098273378218204 said:0.05044679698364945 :0.5373331215676588 +at:0.11946447975960747 on:0.03136886530035508 and:0.009274137868675324 the:0.008463661698980185 :0.8314288553723821 +thought:0.25664619474067835 part:0.22035627392529086 one:0.07008544251865684 set:0.06136146054665442 :0.39155062826871945 +the:0.3428999787553686 a:0.042710920803104645 this:0.0394872176747191 of:0.0376600529363655 :0.5372418298304422 +which:0.389834210972784 that:0.3645239871984261 this:0.1463275205680011 it:0.05324311905068617 :0.04607116221010283 +Both:0.25455145669743384 looking:0.14250457800971125 looked:0.10171635515045463 away:0.06617295243100672 :0.43505465771139357 +to:0.4300491670839729 of:0.10186348716395277 and:0.08634439205973163 will:0.031351499839004794 :0.35039145385333786 +in:0.9514756683057869 In:0.023586041352070417 of:0.014983695190659764 could:0.0014502675106668082 :0.008504327640816057 +made:0.08219627388699247 it:0.05363730664813937 made,:0.050612690392025615 asked:0.03085042239652742 :0.7827033066763152 +would:0.8225659181430403 the:0.06115681486329358 and:0.04856688534597031 of:0.02710542591564077 :0.04060495573205519 +a:0.8947923228962743 the:0.044247212537967505 no:0.03861518467111338 n:0.0035803449391515756 :0.018764934955493435 +the:0.5346069015497771 a:0.04497086664117596 this:0.04464661483677883 his:0.04437446975238855 :0.3314011472198795 +that:0.9128767101207328 in:0.0026229777292197725 for:0.0013893708061333086 of:0.0012853987757639627 :0.08182554256815008 +that:0.023004490403821402 used:0.0195016487660863 and:0.015446394232844586 entered:0.01425663042156296 :0.9277908361756849 +not:0.4224469835237409 never:0.3368671372135941 ever:0.08799416844585967 I:0.04784934359872218 :0.10484236721808313 +the:0.3359988079545127 a:0.16363259479249398 his:0.03137182815997896 an:0.023651328041424377 :0.44534544105159013 +the:0.06377582504645661 Washington:0.030431257280295332 said:0.014541299339196774 this:0.012653708947477648 :0.8785979093865735 +are:0.6338386420495208 of:0.04910071769107736 therefore,:0.022768703972229555 and:0.022268145436478506 :0.27202379085069384 +it:0.12300056625274092 ment:0.06017167310589353 That:0.05218403439864007 name:0.03846012420492759 :0.7261836020377979 +their:0.2728636495710366 the:0.16518351696420244 of:0.1317350332939204 and:0.12105970534335234 :0.3091580948274882 +and:0.06117218294474514 or:0.019835875916791246 came:0.01667157229415745 but:0.015890013180689656 :0.8864303556636164 +of:0.6458671028725957 is:0.08672130806027951 •:0.07169510139142929 and:0.045734826923348446 :0.14998166075234703 +opened:0.2653700549464689 held:0.10590003226266076 sent:0.10494026276575064 charged:0.09866745536901368 :0.42512219465610607 +west:0.10687867221910702 north:0.10515132068616533 south:0.0902251181604584 east:0.0734897535295869 :0.6242551354046822 +J:0.08179824962714839 W:0.0447434134033218 John:0.0377353692160107 T:0.03449780544312432 :0.8012251623103948 +been:0.1900599574852499 told:0.13534052138080171 a:0.09738364910059158 re­:0.07039546496228195 :0.5068204070710748 +the:0.19670731922988005 wa:0.06479659534506729 her:0.05146126640747498 a:0.04342268513968181 :0.643612133877896 +its:0.666602127296487 the:0.1299145848620174 their:0.057987037857689584 his:0.043400352457997414 :0.10209589752580842 +and:0.14632957368055008 of:0.07825588455519085 It:0.0680660122222955 which:0.06570553667826551 :0.641642992863698 +National:0.03347058714099751 great:0.03061223880367217 old:0.023726330598370426 principles:0.02325129242399872 :0.8889395510329611 +who:0.4676938887980272 and:0.18171000611866986 which:0.0588469924778855 he:0.05303002074269505 :0.23871909186272244 +of:0.6615105750035712 in:0.1631199969763914 In:0.04862535061821274 for:0.044771254393386084 :0.08197282300843846 +own:0.045431996809228575 unknown:0.017790372669576775 respective:0.015821009117585 the:0.009515709518385733 :0.9114409118852238 +of:0.950625898682751 of.:0.019031042092797698 by:0.0033646863000017704 make:0.0032484794855755796 :0.023729893438873967 +of:0.21218837303983953 in:0.15725345512248223 and:0.1555446808650975 to:0.12943409290001356 :0.34557939807256716 +W:0.26537685343869427 H:0.21019501461945186 B:0.18489679003822054 M:0.17376459472963082 :0.16576674717400242 +and:0.22621370962132886 but:0.11583048771943716 that:0.09584091060777922 as:0.0892565383402493 :0.47285835371120544 +had:0.8412551300485281 has:0.1523824929943005 lias:0.0008926401321468582 was:0.0006851419539092413 :0.004784594871115091 +their:0.4965422550594143 his:0.1521446087678044 not:0.13617443843006133 there:0.12017527394895769 :0.0949634237937624 +and:0.2698195606823073 on:0.2266614918267232 around:0.12701752344705103 up:0.10868459519638175 :0.26781682884753666 +all:0.5974845875659247 the:0.08465581130935647 as:0.038681417178676056 of:0.01194423216814545 :0.2672339517778972 +see:0.5082152396285543 in:0.12182080507013425 holding:0.027427417752307923 for:0.0219236286860833 :0.3206129088629203 +been:0.20628303564793232 decided:0.06817269572998481 done:0.04889434004786217 had:0.03385319413073387 :0.6427967344434867 +of:0.7948714445712868 to:0.09991505400892126 ot:0.06530603803431105 which:0.011533218425091448 :0.028374244960389355 +the:0.9402258107493606 and:0.007612441580747092 tho:0.006254065398059985 all:0.005501274311319243 :0.040406407960513084 +and:0.04544318545323898 of:0.04127078713637801 was:0.02040655917247628 the:0.018440823445028603 :0.8744386447928781 +people:0.22033431544665935 kind:0.10260580294246358 friends:0.03474251435140105 feeling:0.022333831803964827 :0.6199835354555111 +form:0.053925072943014934 out:0.04145626849616677 pound:0.033556024264899315 set:0.02877819987088788 :0.8422844344250311 +the:0.2842936814892703 in:0.27881451092709486 tho:0.21642259118532486 In:0.04764791369680987 :0.17282130270150012 +that:0.6030959282956252 of:0.3201640063356764 which:0.05706361749834343 ol:0.011465345805071081 :0.008211102065283984 +him:0.05222057102146782 and:0.03815336899345389 us:0.031002976768408567 according:0.018981935600529267 :0.8596411476161404 +and:0.13001616004983566 the:0.09050286369344383 of:0.08194670841492789 to:0.059037905603166095 :0.6384963622386265 +to:0.3716563769224258 and:0.2559379192226603 will:0.14449989512876354 shall:0.1124642166382795 :0.1154415920878708 +the:0.32737435045956503 I:0.31814768122041664 not:0.2144458740649422 more:0.08116086457126494 :0.05887122968381111 +the:0.5037677781658195 Mrs.:0.15548282028560692 her:0.09314605293586724 Miss:0.04929683483120338 :0.19830651378150288 +the:0.5744556076566064 in:0.21507047289683653 Grand:0.04401433925803293 all:0.03342455888734162 :0.1330350213011825 +any:0.1987816453179973 in:0.15169323816434854 no:0.1364802568552663 a:0.11352253050140977 :0.39952232916097796 +should:0.41683809230612534 to:0.33830540004947757 can:0.19844959016380873 shall:0.023592146762935313 :0.022814770717653136 +and:0.05465708489740757 of:0.05266607289184204 to:0.031095439599946692 for:0.025361716849598728 :0.836219685761205 +3.:0.07394410465938492 2.:0.048736880288666413 11.:0.03764591567546272 I.:0.036459113970164096 :0.8032139854063217 +recently:6.178524235149013e-05 was:3.646681609139667e-05 frequently:2.596772844228168e-05 been:2.3953910786264546e-05 :0.9998518263023285 +Do:0.44336472763203244 and:0.16715560272607397 but:0.10477572226117277 if:0.06731015377798098 :0.2173937936027398 +and:0.07836261275317859 H.:0.029550175647707635 Smith,:0.021681630922134862 I.:0.016105222979904896 :0.8543003576970739 +paid:0.37914302314323933 asked:0.20960798677038642 obtained:0.16734245460123398 received:0.08196408618879024 :0.1619424492963501 +saw:0.05615472551082412 ladies:0.018094804135572587 this:0.014788602670513226 war,:0.011516804133694183 :0.8994450635493959 +and:0.21524034894205193 is:0.13194587060909904 of:0.09727373060010386 with:0.076363304853426 :0.4791767449953192 +hia:0.38321424806041576 them:0.04966888040996946 homes:0.03487687642076006 parts:0.007609985416376901 :0.5246300096924778 +If:0.2099499340734399 and:0.19172225405604645 for:0.13939648105382368 that:0.08752816259256714 :0.37140316822412295 +Louis:0.026076588784230238 Paul:0.015961078336160173 James:0.01199787705678096 and:0.006547094278260988 :0.9394173615445679 +running:0.15421405038923222 chains:0.04211103576861707 and:0.009127341807831731 street,:0.00569340236160437 :0.7888541696727147 +Do:0.8097730093955567 is:0.04219066500364787 did:0.033803714885582134 are:0.024244279709917205 :0.08998833100529607 +raised:0.009025206748750078 been:0.00648642054230858 worked:0.0064603733717258135 to,:0.005829649068127441 :0.9721983502690882 +can:0.11442427315416823 bills:0.07610966160456166 frequently:0.029326195605625646 to:0.02753006766453537 :0.752609801971109 +of:0.8092714173825885 ol:0.10834516767387428 that:0.03789892136757822 In:0.026809379545225696 :0.01767511403073314 +of:0.5503406558384359 by:0.14200326658084045 to:0.12841249427856422 in:0.07382567017590079 :0.1054179131262586 +and:0.09993512820359482 the:0.019372298079615966 John:0.014864024840462725 Van:0.009443549548271802 :0.8563849993280547 +returned:0.03631874033409164 sent:0.030294270539964415 went:0.02645405880148004 as:0.019608945861872083 :0.8873239844625919 +deposit:0.17116417948894952 report:0.11385744901740788 meeting:0.07852301052136253 election:0.0518383827734209 :0.584616978198859 +thing:0.17071867087661446 fact:0.06425889509061448 and:0.034402959776154284 is:0.023595075769699905 :0.7070243984869168 +County:0.7130833520317211 county:0.14649209447021244 sum:0.05876283052449523 Board:0.02202517917576497 :0.059636543797806335 +of:0.019511463234130538 election,:0.019274166321466748 year:0.010493355932280334 year.:0.009019430487871212 :0.9417015840242512 +and:0.14724981185197686 the:0.11285964243404069 was:0.056432893884014734 a:0.05263259970105628 :0.6308250521289115 +fight:0.1959099119649966 of:0.11549261274977589 in:0.10081685253459871 make:0.05956790491258529 :0.5282127178380435 +usually:0.3461299333204603 always:0.19420636399344035 first:0.15450773862188114 not:0.13883399722587167 :0.16632196683834666 +the:0.6117242040307088 The:0.13717157748622497 and:0.04948135741123097 in:0.03166356513641309 :0.16995929593542228 +of:0.23197925911361617 and:0.12985334709796692 The:0.07416670894126871 the:0.03931383564366092 :0.5246868492034871 +the:0.19600566120777355 be:0.07825577361823392 a:0.036901765794335774 make:0.02286826572878139 :0.6659685336508754 +and:0.39573446565711223 that:0.1993508183308664 in:0.14083399821079456 of:0.13269985602334383 :0.131380861777883 +and:0.44119293127310966 within:0.23867410317419366 or:0.14058516866908943 for:0.0371544610983978 :0.1423933357852094 +will:0.2786163415626431 but:0.22042125596250414 did:0.16904172027029282 do:0.16805599891452513 :0.16386468329003473 +and:0.07426822460396872 free:0.06015418618517251 life:0.048552334367415 out:0.047836370504227926 :0.7691888843392158 +that:0.9074801920362833 of:0.04329737677805405 during:0.018098811931402073 in:0.015579427272431647 :0.015544191981828858 +many:0.31206268776209195 men,:0.017390862493020593 the:0.00851511870218124 money:0.005858809402285708 :0.6561725216404205 +and:0.067432608379446 rise:0.04729265629751826 of:0.02712409368570616 in:0.018953345269967378 :0.8391972963673622 +the:0.4187476986846454 small:0.185315075785565 a:0.027134980713318338 tho:0.014791934774217301 :0.3540103100422539 +degree:0.42742091873633414 tax:0.2675472103575398 progress:0.11423195212941824 number:0.013550173389252252 :0.17724974538745542 +An:0.14210056932980236 and:0.10870194176934223 The:0.07911236733555269 the:0.04698417893983047 :0.6231009426254723 +different:0.0821742735453271 the:0.06660411622948752 a:0.009898106145148374 tho:0.008622069156360332 :0.8327014349236769 +I:0.194551507531152 -:0.18572623342823397 l:0.08262195915085412 1:0.03269196246229488 :0.504408337427465 +at:0.006259348236118654 I:0.005497646980263098 when:0.004730201812680619 in:0.0013457509266294545 :0.9821670520443083 +the:0.28498559918042754 Grand:0.1198184588644392 Mr.:0.0640842930750551 John:0.03968842852625411 :0.49142322035382396 +to:0.23059635810817128 and:0.11464488628673718 in:0.07417445033946554 the:0.06837910337910968 :0.5122052018865165 +from:0.006260232219449602 P.:0.0009893490316018195 C.:0.00037954978000703896 and:0.0003532635229880318 :0.9920176054459536 +tne:0.24121221324982345 me:0.07128683864849207 a:0.06266551008827566 our:0.04754166365349878 :0.5772937743599101 +day,:0.150490625841907 night,:0.12835433782185274 day:0.03956214387939197 alone:0.032673541669636895 :0.6489193507872113 +suggested:0.33437477727956805 said:0.27051442080545396 found:0.1326903510044724 estimated:0.1269769943825066 :0.1354434565279988 +and:0.37039166117556077 side.:0.12709638728584532 when:0.032686823331486356 back,:0.030886675473156405 :0.4389384527339512 +or:0.6578780575782038 and:0.3081750725115761 an:0.004216334594613885 ami:0.004052962545965643 :0.02567757276964053 +of:0.10129905300493892 and:0.07943221675671776 the:0.055634760822493745 in:0.024955656395545273 :0.7386783130203042 +men:0.25732520947759185 lines:0.040145039944476234 cities:0.025098305301189585 rooms:0.025068077182437573 :0.6523633680943047 +the:0.43972497793128035 a:0.06683285022915177 his:0.037291416276200785 their:0.032018597444935855 :0.42413215811843114 +I:0.5488557619887499 we:0.19354730641144327 It:0.13198328975608514 he:0.09402641033752043 :0.0315872315062013 +would:0.573871613587662 could:0.2549539543469807 might:0.07891055852009386 will:0.05040383555348661 :0.0418600379917769 +the:0.42568923503664463 tho:0.12779057459547774 this:0.059630901578382266 Mr.:0.05715184250004007 :0.3297374462894552 +with:0.9906351615404984 by:0.004998116233155351 obtain:0.0019015224386922111 through:0.0010847221701701275 :0.0013804776174837447 +such:0.17051796886258666 the:0.13589377048288293 in:0.09639349507459241 upon:0.0783094743127273 :0.5188852912672105 +made:0.06872007061030234 placed:0.06788951213388106 held:0.06088111037314973 used:0.04662076774155036 :0.7558885391411165 +to:0.029095277297547625 became:0.025542785836986662 the:0.02244763568993302 into:0.016937384291304307 :0.9059769168842287 +their:0.8572467193977237 its:0.07448874772977604 his:0.05967258485823692 your:0.005355789070224741 :0.0032361589440386934 +it:0.43668839322263026 there:0.2032418311117579 she:0.17966003311734732 he:0.13067115100327553 :0.04973859154498911 +a:0.39709990430633435 the:0.14485956426918364 an:0.10757718036300744 to:0.0731251964486892 :0.27733815461278544 +days.:0.11735764416793859 money.:0.01715617466673269 year.:0.014621717549468088 him.:0.007167211498939436 :0.8436972521169209 +in:0.3009018017893302 to:0.14453177229586636 aud:0.09881378898142446 by:0.08050081730186189 :0.3752518196315171 +of:0.9474781088030688 in:0.015599343064398074 and:0.008117633567177743 to:0.004812878174675607 :0.023992036390679736 +Mrs.:0.17630556953683207 Mr.:0.15047738583609485 of:0.13614887656479058 Miss:0.08652503107167321 :0.45054313699060927 +round:0.003784645152940862 the:0.003679550021158455 posed:0.003105343366587039 E:0.0021402419714700357 :0.9872902194878436 +state:0.021706723974788948 time:0.014809701493307915 past:0.012727493673485548 building,:0.010162319365624365 :0.9405937614927933 +pass:0.30647922759297047 carried:0.026332511196878548 got:0.01959976749682411 came:0.00518592439162218 :0.6424025693217047 +the:0.18250544134884017 a:0.045587811971843806 other:0.025867410850183573 his:0.020099794042207648 :0.7259395417869247 +also:0.5259915361202628 suddenly:0.3892653332299372 immediately:0.033471987618723366 finally:0.02556904002289077 :0.025702103008185918 +hope:0.1396447773970291 thought:0.1014387753071295 fact:0.07892817717573464 knowledge:0.05880430108209183 :0.621183969038015 +a:0.2976233078419704 or:0.09914729512585478 now:0.07848825937579133 in:0.07590571064765694 :0.4488354270087266 +the:0.1588636643295159 and:0.06803633349928807 to:0.06574027710039507 a:0.0616213043655308 :0.6457384207052702 +of:0.2694143556405948 on:0.23478439627979783 to:0.11357893246825232 and:0.09900418160444549 :0.28321813400690937 +in:0.6344339906261092 of:0.22610620192146233 to:0.042219019308358696 on:0.03739508276053312 :0.05984570538353659 +the:0.7293867688518051 The:0.10629593604446581 tho:0.06356974280745263 This:0.004973071675055153 :0.09577448062122129 +line:0.8043774544106614 side:0.16068454484862066 boundary:0.018580835305758017 sides:0.0017377781036139878 :0.01461938733134615 +who:0.9753979419828805 v:0.007367566211998155 and:0.0048177799982317745 it:0.0023632817477338888 :0.010053430059155667 +would:0.3211400432976664 can:0.1634899482135578 cannot:0.15304584432676205 not:0.08452927553121935 :0.2777948886307945 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +shall:0.9394843568651693 should:0.021591457751536706 to:0.020991350361877572 and:0.0070480084663665276 :0.010884826555049975 +of:0.8624074887170367 for:0.07979458729350099 ot:0.05721484488199384 the:0.00045228528535539044 :0.00013079382211326153 +Carolina:0.5540979605047658 and:0.0501402511801665 with:0.044720899481185336 Dakota:0.021018690667074354 :0.33002219816680795 +of:0.9230635054040232 ot:0.01630479994518163 ol:0.014352272064882599 ut:0.014039248133697968 :0.03224017445221467 +of:0.22622695977574364 and:0.07510133739190866 the:0.05622318225099883 a:0.02194207578865102 :0.6205064447926979 +and:0.38938673911859834 of:0.19404574668743366 were:0.11963760473200594 are:0.10403594087047727 :0.1928939685914848 +an:0.2509438022355722 and:0.0863216073683374 the:0.04679319020863804 of:0.04575786500374779 :0.5701835351837046 +matter:0.13581875828946469 bill:0.13095855578673357 session:0.1193238070294683 plan:0.10976012368696057 :0.5041387552073728 +of:0.2704659168716664 and:0.13232981827514134 the:0.06043090919285465 to:0.030049137321976938 :0.5067242183383606 +how:0.777650473949349 why:0.09798969649538601 that:0.04922148877456251 whether:0.03826077318303439 :0.036877567597667985 +ed:0.14457563801157444 ing:0.05536161836577249 out:0.047605045673267406 and:0.031983495373462165 :0.7204742025759234 +with:0.6348711827819364 and:0.10704753077052129 under:0.10281878316368208 to:0.06474485457286705 :0.09051764871099312 +the:0.9733128756345923 and:0.005656498900082469 but:0.00440650888210456 when:0.0024197316303760713 :0.014204384952844533 +ton:0.2988475443132043 present:0.1830182412224838 be:0.16915154619466788 from:0.04541272335538436 :0.3035699449142596 +somewhat:0.7497079194941799 and:0.08918832476778837 there:0.08019954457569552 to:0.022272571714258407 :0.05863163944807781 +the:0.08206413760995065 tho:0.05311820368945331 his:0.045997358239362025 a:0.030007499026767148 :0.7888128014344666 +crop:0.10468108427007994 classes:0.03372444801855433 methods:0.024581025039299396 fields:0.017911028470900613 :0.8191024142011657 +and:0.14445531188798974 the:0.08000737897329482 of:0.049961206248307084 to:0.048464497977431444 :0.677111604912977 +was:0.3205706592515553 held:0.17477345346098414 shows:0.12829617338936739 used:0.12202093997781838 :0.25433877392027493 +the:0.9738068919038875 said:0.011985312206211393 tbe:0.011033761611822892 tin:0.001750107989867352 :0.0014239262882109046 +under:0.25471398764526804 by:0.250124628594378 in:0.1731415964164758 for:0.14919563943842645 :0.1728241479054518 +made:0.4960890228233058 as:0.11682174907343887 and:0.05652166359363349 is:0.050762494730776306 :0.2798050697788457 +as:0.6027503640174353 to:0.22854576363751905 by:0.09788564596002686 and:0.03653503407886517 :0.0342831923061537 +a:0.17006023126192898 have:0.0006288941580331115 had:0.0004714947154914835 experience:0.0003405699528083322 :0.8284988099117381 +ing:0.4690989496048622 have:0.11984672236781836 having:0.11139053013725624 we:0.06759251350783498 :0.23207128438222838 +of:0.5894280884138833 and:0.06321974311716444 to:0.03414020593059802 the:0.025335907997960382 :0.28787605454039383 +feet:0.1149659061340561 and:0.042053892531395895 Brown:0.023931357217351946 him,:0.02087064429021888 :0.7981781998269769 +lo:0.11536538047173553 her:0.11160870272383404 to:0.10333875234632463 and:0.05012402271581293 :0.6195631417422929 +and:0.12992207140962353 of:0.0834274828469555 the:0.07254544025544306 The:0.035702415359819016 :0.6784025901281588 +situation:0.17980087154644 course:0.1665692247342334 matter:0.08014257383487276 list:0.04000407874865325 :0.5334832511358005 +do:0.6996080139623909 have:0.10539537915228563 had:0.07721033553410257 should:0.06298605695372811 :0.05480021439749275 +the:0.5307474337117218 to:0.1716415784504639 way.:0.10487552630267538 her:0.08939349838144715 :0.10334196315369171 +same:3.6187603469770507e-06 the:2.3092143625299323e-06 ner:1.2403131693436184e-06 a:7.466919436554746e-07 :0.9999920850201777 +thoroughly:0.5847559438078882 much:0.04682705196043586 near:0.041161126402772044 cold:0.027581866517780787 :0.2996740113111229 +was:0.29879085032840647 for:0.1676381275912415 and:0.12308147079194665 of:0.09201233737229587 :0.31847721391610945 +to:0.9249431898236488 only:0.03854732458330285 yet:0.009046004939821804 help:0.003031357665711967 :0.02443212298751448 +large:0.04559596825107381 the:0.029686653537357447 long:0.02900396576805051 small:0.02862387267886441 :0.8670895397646537 +the:0.04494569292217916 matter:0.03522688668835651 a:0.0349360537368713 was:0.01526293527367553 :0.8696284313789174 +of:0.30732233882516974 in:0.14729230536492105 and:0.1287391511603995 to:0.08112003116900407 :0.3355261734805055 +and:0.2811903257313084 by:0.1322177523763139 to:0.0783280176118613 with:0.06852980092671127 :0.43973410335380514 +best:0.12106540472487581 laws:0.092620127283284 highest:0.06655896640578818 lower:0.04190482325751048 :0.6778506783285415 +pain:0.03736548513749912 time:0.025007989374202445 State:0.01887394981154439 paper:0.011008229657172965 :0.9077443460195811 +civil:0.15408169941463767 recent:0.07134888667155093 Spanish:0.06745010276868305 first,:0.06452256795865619 :0.6425967431864722 +received:0.5423460688099137 true:0.08560300813318672 found:0.05112201429673484 tried:0.04267125184776933 :0.2782576569123954 +and:0.21126962903165805 but:0.027239167603681384 published:0.01893802494712066 girls:0.014899017373638943 :0.7276541610439009 +work:0.4990206399982473 is:0.12316882204099722 will:0.12142487943133791 was:0.057477341631324355 :0.19890831689809324 +4,:0.07247836969161564 street,:0.052939450973063885 feet;:0.03981158031216801 ;:0.023776955551117956 :0.8109936434720344 +Smith,:9.379659593001713e-05 Brown,:3.30758975251431e-05 Johnson,:2.3051791716363082e-05 Smith:1.3078342779408125e-05 :0.999836997372049 +and:0.6079210399660104 was:0.24433111402893887 are:0.07247413205242989 is:0.01938251799392381 :0.0558911959586969 +it:0.14343567931825763 as:0.09949378394698373 It:0.08868645629738946 which:0.0727244622113136 :0.5956596182260557 +our:0.5110229690829748 my:0.26544354559365396 her:0.13585808227719287 the:0.04071187750412731 :0.04696352554205106 +or:0.11943796485840054 remain:0.03490276260938403 or-:0.018185534240042156 un-:0.0021275006614491997 :0.825346237630724 +I:0.3166027772400161 upon:0.24779417676250504 he:0.16352536509977691 being:0.14391335481400092 :0.12816432608370104 +wall:0.05193492778668969 tree:0.03905311425338718 book:0.03664943442026795 cut:0.013972610635980215 :0.858389912903675 +does:0.3365507343994751 could:0.14114364007783264 do:0.13368696652498394 had:0.13121646164459502 :0.25740219735311326 +the:0.2215209881832806 last:0.14928246511012727 in:0.08237083972206814 an:0.05188641279439932 :0.4949392941901248 +Such:0.34655503683346994 such:0.2868260987057333 It:0.06845984436857798 it:0.033485299145421046 :0.2646737209467978 +accomplished:0.043126910836978324 worth:0.013468719469532 and:0.007912056927156597 recognized:0.0037914230749069495 :0.9317008896914262 +the:0.8381365872831575 tho:0.07544614451982616 tbe:0.020782577456070074 tha:0.01244346669419639 :0.05319122404674975 +the:0.6093880433549488 a:0.22815788800535627 this:0.0706504429523073 of:0.008158122861424286 :0.08364550282596328 +be:0.0869055744721758 remain:0.06914998400411015 aid:0.06360355125244714 live:0.04107976018418452 :0.7392611300870823 +the:0.1822627752368503 and:0.08913818808384825 a:0.05266864001821782 of:0.032644632404185754 :0.6432857642568978 +around:0.4175759812500717 and:0.13005730410291394 them.:0.09190773169966 the:0.05746231223439488 :0.30299667071295944 +is:0.5227175681302254 of:0.2113070995501819 looks:0.08563826133843994 in:0.05582516871817663 :0.12451190226297616 +whether:0.9118873690445168 and:0.014378565559025076 but:0.007412560313051016 in:0.006478832196629681 :0.05984267288677737 +the:0.6911322436765 his:0.0564190692903317 a:0.03802130054497076 Mr.:0.031276477041115226 :0.18315090944708232 +order:0.796598043048833 but:0.010565331976861426 regard:0.002473442265961367 reference:0.002449135598593061 :0.18791404710975126 +the:0.1317136484006712 a:0.1102094590853734 to:0.037399274631282516 they:0.034039857020682025 :0.6866377608619908 +of:0.9444048181881267 commercial:0.020997602630958463 and:0.002395450661774755 nations:0.0016576689182486815 :0.030544459600891385 +don't:0.2676164338156615 only:0.24370430160081216 now:0.16659515109209036 not:0.13764894234217187 :0.18443517114926408 +the:0.46620451410081076 de¬:0.0031610159718318516 food:0.0015905996811964565 water.:0.001004400257475149 :0.5280394699886858 +and:0.26225263466309123 of:0.22702952517247013 the:0.11591418527300858 before:0.11199392108511544 :0.28280973380631447 +necessary:0.16817027118261202 time:0.15916698587023717 proposed:0.08137900994122274 dangerous:0.05881183928443417 :0.532471893721494 +Fourth:0.9943976747642088 Second:5.593413356812812e-05 If:5.537827679845018e-05 I:4.461933487104607e-05 :0.005446393490553618 +with:0.18149403537699463 of:0.09877011835574914 The:0.09465941389134097 and:0.08471958756203186 :0.5403568448138834 +the:0.39307624788641615 to:0.1406564093556998 a:0.12443850673653017 and:0.10422277939881901 :0.2376060566225349 +the:0.41036688568195057 to:0.08136070458227856 their:0.06922996427354126 these:0.04873749578847648 :0.3903049496737531 +connection:0.2339323392641461 letter:0.22996389607916942 particular:0.05543774291718159 city.:0.021528852791563646 :0.45913716894793927 +of:0.3211000752273025 at:0.27384539663372315 that:0.03196074012269394 in:0.021093123773042628 :0.35200066424323784 +bill:0.047018485069903776 strike:0.033392726779704285 same:0.030388496468796655 states:0.030344199958522694 :0.8588560917230725 +have:0.8107494896364903 who:0.061457509582259415 and:0.03094687253033056 he:0.02012175426602893 :0.07672437398489072 +this:0.6131225568675123 physical:0.13243547528570754 the:0.09521430608372235 tho:0.02447541927574737 :0.13475224248731044 +of:0.4479538028450661 the:0.2395562036101084 was:0.142601152744725 like:0.0887460645690134 :0.08114277623108712 +and:0.09739378297919823 is:0.04471883690435888 ami:0.009944509375381511 Smith,:0.00371158971342618 :0.8442312810276352 +not:0.19837202726763936 then:0.0001996042662498218 well:0.00017308485649938753 was:0.00016127258817577155 :0.8010940110214355 +it:0.00045723068540966976 proper:0.0001267052873741016 aud:0.00011119098429720274 to:9.808879784908327e-05 :0.9992067842450699 +support:0.18552673324457758 education:0.10214106938982649 protection:0.07459469959083005 securing:0.054984926571443854 :0.5827525712033219 +Wilson:0.0014019072714351324 Young:0.0011625342919309581 Davis:0.0010462946391427592 Grant:0.0008252881658099186 :0.9955639756316813 +.:0.1491922377998229 W:0.04563740421486943 H:0.0350876669072409 J:0.0277403116815891 :0.7423423793964775 +battle:0.02835817570918459 the:0.020738274338317833 waa:0.020590440874303076 was:0.016586863191019204 :0.9137262458871754 +trial:0.07558727744641756 hearing:0.07132465072180444 us:0.06994000792567527 both:0.04698656325053711 :0.7361615006555656 +to:0.1732262583663226 in:0.14353359694117696 under:0.13887625585518884 If:0.12946677415874108 :0.4148971146785706 +force:0.014482392399011026 and:0.01204181305212395 right:0.011990611567153763 to:0.008412990556608041 :0.9530721924251031 +the:0.9726492848161933 that:0.011947290604407756 he:0.006326774734126343 this:0.0017090225754040457 :0.007367627269868631 +and:0.31461833009348933 are:0.27183290031197704 as:0.1398200349857065 is:0.07085667084068836 :0.20287206376813874 +those:0.42413640617442594 men:0.16624056657849284 hero:0.043107091792845054 and:0.017227807510952264 :0.34928812794328395 +sup-:0.2560245448859302 pro-:0.06435766113694581 pro¬:0.019657587768709676 dis-:0.01888092565686432 :0.6410792805515501 +reasonable:0.6003262657636539 great:0.14736283348810908 considerable:0.11114020109989224 required:0.09581676389481777 :0.04535393575352698 +heart:0.0007902516498526756 business:0.0007692641438776198 that.:0.00035248035211308827 little:0.00019243521950198768 :0.9978955686346547 +and:0.20563524801639754 of:0.10224606822006431 the:0.062260887043286306 to:0.06001549220735418 :0.5698423045128976 +ten:0.37271552513447165 five:0.27302117909614126 two:0.13769911818686337 fifteen:0.12227624344790115 :0.09428793413462255 +the:0.13459100887591807 and:0.11818512818948128 of:0.06590096008394536 to:0.045178002660258856 :0.6361449001903965 +pleasure:0.09594832434200296 calls:0.03112698914708671 the:0.018670571822757543 experience:0.015237108088814387 :0.8390170065993384 +of:0.41710169064806063 The:0.28637096677957913 must:0.17953466032579038 the:0.06428776254541652 :0.052704919701153534 +of:0.8550265163383732 says:0.03657810245470234 t:0.0247627046183106 into:0.02272853045970604 :0.06090414612890785 +of:1.1658057194724882e-05 School:1.043913689815585e-05 the:9.56892966098943e-06 I:2.6269904315824996e-06 :0.9999657068858145 +west:0.08287986205036617 north:0.07067467956541423 east:0.05390813715144819 south:0.05138934493279533 :0.7411479762999761 +of:0.20331870439054453 and:0.14100387022715477 the:0.05577282141178885 to:0.03334547307396472 :0.5665591308965469 +and:0.6730085010127104 to:0.040596943244437154 so:0.03765373941148508 was:0.031143215874377746 :0.21759760045698975 +the:0.2277572961918086 a:0.06996294039825067 any:0.04158360355361255 other:0.03895898454004898 :0.6217371753162791 +for:0.2332259427947453 of:0.20059476140383317 in:0.1954596375284408 About:0.11258576129286926 :0.2581338969801116 +few:0.20690381204067548 distinguished:0.15575546459910272 of:0.11745673229536269 certain:0.08928081360585469 :0.4306031774590045 +the:0.6002410395208447 a:0.14771626504881535 this:0.03051266671984743 tho:0.0233978825740837 :0.19813214613640884 +of:0.8160259572873201 are:0.052730312703244145 which:0.04729785237712 do:0.032625916577383084 :0.05131996105493283 +general:0.2629776666567607 the:0.2184502606903249 tho:0.12388225379674188 a:0.06089238501196178 :0.33379743384421084 +of:0.20896779895376502 and:0.08734669143408923 the:0.03293215874704197 to:0.024811337434966357 :0.6459420134301374 +the:0.2422692055569463 The:0.22559009064569996 and:0.12374470650851271 a:0.04736702151190579 :0.36102897577693516 +the:0.4632860498099484 a:0.19418016951313524 of:0.05303993873345176 in:0.04577624078164233 :0.2437176011618222 +try:0.04318228756234584 thence:0.03093097999526846 the:0.024234809057009414 went:0.021810521280171257 :0.879841402105205 +and:0.24108147415987574 of:0.18977751757458844 nor:0.15335706117969727 with:0.1418253285163812 :0.2739586185694575 +the:0.09637395156557875 of:0.051861068496975776 mills:0.04034564239821627 and:0.03981224110020407 :0.771607096439025 +of:0.36835835213029783 and:0.048240396727126766 the:0.029084178319897066 The:0.02389086449247013 :0.5304262083302083 +the:0.5429858384932885 and:0.1776335779808494 of:0.04836797562947223 ':0.0234266875216049 :0.20758592037478496 +real:0.4385517741409292 large:0.07848233997172585 valuable:0.031040330236463822 line:0.02339504057707682 :0.4285305150738043 +of:0.011523531846498682 and:0.008704889769596874 to:0.007694127605839912 tion:0.006906362537952985 :0.9651710882401116 +money.:0.055075451383634004 others.:0.013731837200594375 law.:0.012107241310047421 case.:0.0076461684415349935 :0.9114393016641892 +union:0.30389102176164123 equally:0.06788245141380778 taken:0.05298413403136363 connected:0.029948178155993235 :0.545294214637194 +survey:0.08025041899184 plat:0.04252093249578325 purpose:0.03252509385713473 location:0.022282345630673633 :0.8224212090245684 +required:0.7999401319914928 set:0.12672935037211583 fixed:0.050838268632059216 established:0.0045885437837348796 :0.01790370522059729 +as:0.28182859449951664 opposite:0.08430621506487981 down:0.05881298938885481 over:0.04319763073768664 :0.5318545703090618 +position:0.030488823351825116 man:0.03036459027095661 shot:0.029197783547093188 stay:0.028248804427093963 :0.8816999984030311 +of:0.10869461286315049 the:0.08418128501134285 and:0.06653499200266076 in:0.03575039091731549 :0.7048387192055303 +of:0.9719917942248623 and:0.005754232168915227 the:0.001723564533602826 to:0.001201618301654095 :0.019328790770965647 +mouth:0.2037053323336501 the:0.0570517217854858 and:0.04935456945860138 even:0.03068931977061346 :0.6591990566516492 +a:0.4828898028969849 an:0.14878213799499113 the:0.060432142992447334 never:0.05388115209695012 :0.2540147640186266 +the:0.90408128249199 a:0.029099747036290032 any:0.015144298466033223 ap-:0.012710300331711825 :0.03896437167397497 +to:0.22462175973049847 of:0.1536905766351345 on:0.08276968019663061 and:0.08155426983949153 :0.45736371359824507 +the:0.10731674378646835 former:0.09204470187205491 gold:0.03610825057810164 Section:0.017668193145236807 :0.7468621106181383 +the:0.8768029257794844 tho:0.06295388062373204 their:0.0036947642371511305 all,:0.002475172421017467 :0.05407325693861497 +to:0.9990761918404482 lo:0.00012960138204955068 to.:1.6721350527037316e-05 banks:7.125477143859969e-06 :0.0007703599498313916 +try:0.45318200257039365 election:0.3329943749619428 and:0.026296222194981272 to:0.0166150641051057 :0.17091233616757653 +For:0.2019730247991584 so:0.1160106507393245 and:0.07398343504899997 then:0.05219288957910132 :0.5558399998334157 +and:0.1254548807656616 the:0.08838410112246821 a:0.06274999529314064 at:0.05539446921775736 :0.668016553600972 +In:0.7386380245084657 of:0.11583930179276508 in:0.06451338833522313 to:0.0336636017007531 :0.04734568366279303 +to:0.3928024821196308 her:0.15778287085903794 and:0.10788716041607381 She:0.05278897950325126 :0.2887385071020061 +have:0.3973142798048986 had:0.3100058614921058 has:0.23484903633266752 bad:0.013575618107627797 :0.04425520426270033 +I:0.3744879768931379 he:0.30619953279827455 we:0.1002252468744625 she:0.09522398342467174 :0.12386326000945334 +fear:0.073950465509556 snow:0.06809699725874259 man:0.055398251985377164 wind:0.039211746872366816 :0.7633425383739575 +the:0.2840742682056146 less:0.066886633086431 a:0.037249081532108576 2:0.035582168061599015 :0.5762078491142469 +and:0.011315027904298803 a:0.009541843784758062 very:0.0033855717200516606 the:0.00304012933990323 :0.9727174272509882 +oi:0.7076563646928048 to:0.1954724329103894 of:0.07577280484690842 into:0.004821439296898656 :0.016276958252998592 +memory:0.06167106182121593 result:0.056250736230254804 marriage:0.0485362520952633 management:0.04044365509130722 :0.7930982947619589 +driven:0.2699071566490054 put:0.24143223351218604 brought:0.017160441268276865 turned:0.012248975157368438 :0.4592511934131631 +was:0.1819645086032782 is:0.042442256695158026 had:0.04147207651941195 and:0.013383957059184283 :0.7207372011229676 +the:0.047669673941564454 di-:0.03398368185742228 other:0.028652190563600553 close:0.028248972396934094 :0.8614454812404785 +and:0.11867076363501322 machinery:0.11366972611436738 h:0.11256479613357144 some:0.07604893862378492 :0.579045775493263 +which:0.1585389032929485 It:0.058140644115654345 and:0.04288362310273593 He:0.041176328298300514 :0.6992605011903605 +and:0.1465526773614178 to:0.1099505563715544 of:0.0780757860969256 who:0.04022466227588505 :0.6251963178942169 +or:0.8313583880976076 and:0.09053577705309251 aud:0.0021407503609438155 anil:0.002108721754126377 :0.07385636273422963 +that:0.446532963025347 at:0.22300546802141044 and:0.14579249473150865 nnd:0.11168796271865256 :0.07298111150308124 +the:0.287746755281497 a:0.05155576827199348 most:0.027674538147166198 other:0.027557339810831437 :0.6054655984885118 +it:0.07238439666684471 and:0.06736637794803522 which:0.04868251446659345 It:0.046916444967761664 :0.7646502659507649 +a:0.061039216290724056 the:0.04593556430525383 of:0.011482506529334047 and:0.005792609414114534 :0.8757501034605737 +so:0.13683630727019255 and:0.12516557863303487 is:0.11027384391399898 Is:0.08345188223002384 :0.5442723879527499 +school:0.009570737968374939 morning.:0.0056164708849790615 night.:0.00407585291991544 afternoon:0.001976754244201806 :0.9787601839825288 +an:0.5577308720754541 the:0.2270351782520993 his:0.06401558909065706 any:0.007967986152409713 :0.14325037442937993 +and:0.730619777017983 In:0.09625271827874757 ,:0.048698936323964714 ami:0.04223006940544869 :0.08219849897385599 +of:0.1481281369169197 and:0.14068962892101627 with:0.1264117768632902 by:0.06763209187925397 :0.5171383654195199 +came:0.953333260204985 point:0.009010074430724678 went:0.007326081285247578 pass:0.007189591579373267 :0.023140992499669284 +to:0.6788065061421542 of:0.20923109258200037 for:0.0682342373815984 ol:0.019691905168836125 :0.02403625872541082 +party:0.06538736401954319 heat:0.03659034353971425 room,:0.019552915226425695 crowd:0.013847977260171689 :0.8646213999541452 +of:0.2831219157748742 the:0.18613817539338753 yesterday:0.14347981457700723 an:0.03200635760366777 :0.3552537366510632 +running:0.07572803475771991 turning:0.020948215284665145 it:0.0064729150738495845 carried:0.0028145153350384155 :0.894036319548727 +30:0.6339707800742352 thirty:0.14926892864011113 40:0.10395692481571944 15:0.06535380749742707 :0.047449558972507 +in:0.5655336008033102 to:0.15636353170334996 and:0.09620194208768623 at:0.05712924931338987 :0.12477167609226365 +him,:0.05005885022468811 all:0.01414744438033832 him:0.011525487096329126 the:0.010375005252904674 :0.9138932130457398 +two:0.9632784790008067 various:0.023822178961521553 respective:0.002527080914413371 other:0.0010896129212204944 :0.00928264820203795 +few:0.30914958076346255 that:0.2713407498176479 the:0.18136640326112638 our:0.056169588547386344 :0.18197367761037686 +tell:0.6875486409346939 write:0.024363481649119167 show:0.017768934517411485 promise:0.009421636988770769 :0.2608973059100049 +the:0.597118846652461 tho:0.14330450327482708 every:0.07900115536768192 his:0.019931397750387422 :0.16064409695464277 +that:0.28022971643291916 for:0.28000554160630536 and:0.15841976796037566 as:0.14599416332475387 :0.1353508106756458 +great:0.02312291177034953 good:0.01302608466386392 large:0.008420949655106078 very:0.007805326541341981 :0.9476247273693386 +of:0.27970282464992047 the:0.11510086338756405 ot:0.11287362524380705 The:0.08669233552496598 :0.40563035119374247 +and:0.2348362080558667 The:0.15341279897621632 the:0.09692515823635911 of:0.047471240097611334 :0.4673545946339465 +entered:0.14902539260551528 fired:0.09325582981295519 are:0.05073273657961127 either:0.04480202312597653 :0.6621840178759416 +and:0.13560558526462657 the:0.048176326758702426 of:0.04157479309545819 to:0.02415382230732238 :0.7504894725738904 +office.:0.03100676947420381 office,:0.02569377007876789 residence:0.02460416077719355 son,:0.009627335575244136 :0.9090679640945906 +whose:0.5241840880377532 with:0.1772136823969483 new:0.16169222682574544 has:0.053512263194558006 :0.083397739544995 +came:0.012137879245308668 to:0.009488975727680917 K.:0.0034704177634503476 Davis:0.0029020207225351506 :0.9720007065410249 +being:0.9336274119794262 has:0.010658619064564325 be:0.004358969299732389 having:0.002459036546129702 :0.04889596311014725 +and:0.3798629762547278 the:0.09473347517045515 was:0.056166104775930856 grain:0.05175995674563028 :0.4174774870532559 +the:0.9320921928746735 a:0.015541202552184972 this:0.008864938451724614 with:0.005556006555793771 :0.03794565956562319 +in:0.21567289174385296 with:0.14924885095642115 have:0.04227919099760907 is:0.02837083098629987 :0.564428235315817 +county:0.2907696495116786 and:0.18191191356136655 which:0.14521556486146914 who:0.08801092519421826 :0.2940919468712674 +found:0.16094614150566677 way:0.12637468223342008 place:0.0719143746110885 and:0.06982377061488261 :0.570941031034942 +ward:0.24341982518150826 Mrs.:0.16092153096589787 and:0.08218397681901508 of:0.0608985382988533 :0.4525761287347256 +the:0.16336624692776205 to:0.1190403741996244 and:0.10261476586812156 of:0.060701105085117044 :0.554277507919375 +north:0.500984692357134 south:0.11975318163926744 and:0.0829796179774985 about:0.04065384907324344 :0.2556286589528565 +a:0.0996669586768222 closing:0.06706179505814014 and:0.03784279648095485 for:0.029522353540235982 :0.7659060962438469 +times:0.09131540389177678 things:0.019461803700172427 years:0.009734768829908437 friends:0.008064798040483774 :0.8714232255376586 +of:0.1109550272688069 and:0.08292537529251327 the:0.07541622487884123 to:0.041899540552307754 :0.6888038320075308 +and:0.18055451776045375 of:0.12203617845201713 the:0.05782610864008958 is:0.04139781899766672 :0.5981853761497729 +have:0.6058183327451397 had:0.27159122707933897 havo:0.08676647953795141 hud:0.0055741646410948 :0.03024979599647491 +of:0.8018002947569505 absolutely:0.08251872469032914 and:0.04838544059993277 has:0.0260964218944096 :0.041199118058377976 +and:0.17456367727317376 be:0.16728690646029723 is:0.13408280947469334 was:0.10691095966315785 :0.4171556471286777 +business.:0.05360812325070344 and:0.04637390321243727 when:0.01551174100780854 .:0.011822561288270233 :0.8726836712407804 +the:0.25904051089755775 and:0.08410540282912816 a:0.05460566889001177 of:0.048210382188925205 :0.5540380351943772 +a:0.694160692137771 the:0.1941156390551771 one:0.016530682526855515 every:0.0156393046181504 :0.07955368166204609 +and:0.12811708811194142 covered:0.04417987629564223 filled:0.042750925487517064 road:0.042265520597211385 :0.742686589507688 +declare:0.10012821934273497 say:0.06984213561716975 to:0.05432634321587202 do:0.05095268213549724 :0.724750619688726 +had:0.3673085223160575 he:0.20734610261043127 I:0.17612919486509418 now:0.07643775910805566 :0.1727784211003612 +meet:0.9921371935328425 be:0.002152548549365864 bo:0.0015070159335179134 come:0.0014606763236542774 :0.002742565660619387 +that:0.25345310033723806 the:0.21370717868485264 ment:0.12029765564282968 ed:0.0662306697291296 :0.3463113956059498 +a:0.49595972293955276 his:0.20457349942397282 our:0.11851267783385205 the:0.07482162698498818 :0.1061324728176341 +added:0.09689809381699602 made:0.06533311145267942 elected:0.03763031909412943 received:0.0348395255181405 :0.7652989501180547 +chance:0.11118653492589191 check:0.09033701664918034 candidate:0.04650233745971849 nomination:0.042407193685506626 :0.7095669172797026 +.:0.10581733890478652 way.:0.04016345749210872 city.:0.008459584965693975 case.:0.0064261975923171006 :0.8391334210450937 +and:0.15079060573569755 of:0.10988620537067754 to:0.07204214856977868 the:0.05038227261533803 :0.6168987677085083 +.:0.3039160873580063 e:0.27328754893803275 the:0.11269560861221904 an:0.01405790336134902 :0.2960428517303929 +most:0.02322248573659713 the:0.019726256867757485 same:0.015479647668753534 old:0.010874665997521035 :0.9306969437293708 +two:0.3542664427400538 several:0.26504498340336907 24:0.12460643984466081 three:0.0933266678264982 :0.1627554661854181 +with:0.22129847961416474 to:0.20746804516473458 for:0.12390781060834946 upon:0.11513927566703866 :0.33218638894571245 +his:0.4380480124296329 black:0.04384855152724917 the:0.040098572656615476 with:0.024365587316143352 :0.4536392760703592 +interest,:0.0596405077799122 meeting:0.0303128750880861 and:0.022639975178126673 road:0.010458739505626206 :0.8769479024482487 +nearly:0.6575720054407447 of:0.1641608428545269 which:0.035799696393721055 in:0.03001645549070371 :0.11245099982030379 +the:0.19987518647384228 a:0.04800712092834117 of:0.02883677577761586 other:0.021099344339129918 :0.7021815724810708 +to:0.25016860981495925 by:0.2184445299128309 that:0.14901687680661144 of:0.12052975886263119 :0.2618402246029672 +the:0.19679538177736952 a:0.14344708526298983 The:0.11774645538189725 and:0.0852282090573686 :0.45678286852037486 +company,:0.0933775456382153 corporation:0.08561846988457 clerk:0.060910636241207634 state,:0.05466458994536726 :0.7054287582906398 +the:0.9307714786697531 The:0.005099168615186003 "The:0.004806125772022584 a:0.0016349101332806496 :0.05768831680975771 +the:0.22094065583314496 and:0.14004264659974935 of:0.11126571053493468 The:0.09971016948800264 :0.42804081754416845 +club:0.042120368108802715 same:0.03789966867857053 people:0.03715331481870091 party:0.03664624878564606 :0.8461803996082797 +B.:0.4657603578082504 and:0.312213788368316 James:0.08370677285318728 R.:0.03649906678490295 :0.10182001418534334 +it:0.23228695508758637 him:0.20047834867330683 them:0.11836762421047406 us:0.08505978825206519 :0.36380728377656735 +and:0.3200045431645608 of:0.09080642323933288 without:0.07226208991787827 or:0.06644047377254994 :0.45048646990567803 +and:0.00849991431536391 thereon:0.008346801207200456 farmer:0.00600708716762304 the:0.005333790546709398 :0.9718124067631032 +the:0.36171807159531816 all:0.16124773749118018 such:0.058382362508362866 some:0.047190653158231656 :0.371461175246907 +said:0.2631888443376661 told:0.13615003251880162 stated:0.04890201474924765 is:0.045313647377930186 :0.5064454610163547 +set:0.29392456921685195 took:0.12973804231482902 fixed:0.10783499241572343 looked:0.048535763281314565 :0.419966632771281 +give:0.5012129164931542 leave:0.08468659934905834 get:0.06283726881326286 cross:0.04930054778827687 :0.3019626675562477 +There:0.5041866100319708 It:0.12696679186974283 That:0.07112942656117408 He:0.05372390237308272 :0.2439932691640296 +who:0.1498481372071555 and:0.11396046204336013 actually:0.07918450233462698 He:0.07741014020550407 :0.5795967582093532 +in:0.31313829954331956 for:0.10774025137613202 by:0.07782553743144051 without:0.07088640423596257 :0.43040950741314543 +and:0.5954826799415849 to:0.13053676060357178 with:0.10671668729070781 as:0.09920080643980418 :0.06806306572433138 +receive:0.2632217930528539 by:0.04107331813922778 after:0.03783275563497334 usually:0.026082082090684775 :0.6317900510822602 +of:0.9216182890275012 th:0.0017697745862773552 places:0.0011122673996889964 to:0.0010199518717925536 :0.07447971711474005 +o:0.1437663834798305 h:0.12732012347888205 ,:0.06321314900199324 d:0.026717090455126366 :0.6389832535841679 +that:0.7805521907355375 of:0.20850732999474897 in:0.0026684341072304107 to:0.0021786451793815403 :0.0060933999831015145 +the:0.41437280361704587 a:0.17236423480365817 an:0.058809582692667645 any:0.03382278570671364 :0.3206305931799147 +the:0.33109115405840245 his:0.06441403631567673 a:0.04192780062351232 tho:0.030632494231007244 :0.5319345147714012 +the:0.4266755548871222 a:0.067879135697098 and:0.066138042690617 The:0.05941762796379108 :0.37988963876137166 +brought:0.2258675900846129 seen:0.21775620374443405 any:0.14654858391485914 the:0.03778122504954629 :0.3720463972065476 +upon:0.2897885726482059 into:0.24388363735333848 on:0.20457978280640446 to:0.15458977098912413 :0.10715823620292703 +state.:0.059868287115440344 case.:0.014425349417350417 world.:0.005121858547627003 country.:0.003000251503649041 :0.9175842534159331 +a:0.1632748543848667 ar:0.09111362088810832 at:0.08958509564398834 w:0.05329792030248421 :0.6027285087805523 +a:0.5832911292250428 the:0.3352873348000707 tho:0.013352168156232115 such:0.010719393775989877 :0.057349974042664516 +for:0.5195245288520334 with:0.16221761387793096 in:0.1387428960720464 by:0.07530668100722353 :0.1042082801907657 +dangerous:0.052482813593615306 as:0.04952419905245327 especially:0.043180037627069644 bar:0.027808365084951357 :0.8270045846419104 +so.:0.4045805521679225 that:0.14060910061752524 and:0.02732281814823228 be:0.015585461200375813 :0.4119020678659443 +.:0.03790665849242923 Jones:0.028868216414266266 ":0.025376830008915552 ;:0.020870473958678734 :0.8869778211257101 +it:0.2182667649525342 a:0.1606722749418071 has:0.10873292350677859 the:0.09930240658267286 :0.4130256300162071 +dollars:0.4590389996450004 them:0.257369375188617 death,:0.18973994788955667 and:0.011608529433930918 :0.08224314784289492 +nnd:0.4028371484562642 to:0.3101777156173566 of:0.09165114211807364 it:0.051610997038924196 :0.14372299676938144 +is:0.16544518798065908 affairs:0.12604329979719528 Is:0.09343027186776484 brought:0.08025772407795448 :0.5348235162764262 +strong:0.05612195369904371 sudden:0.05123649685724275 show:0.04993257786165199 bad:0.030511165398418534 :0.8121978061836431 +State:0.06768486505727317 instead:0.020707153683016143 that:0.01772313156597825 the:0.016651393613130464 :0.8772334560806019 +to:0.9251763805710892 I:0.04662813782283435 or:0.010561207947016775 would:0.009509009074314782 :0.00812526458474491 +same:0.07191967797808632 Captain:0.06365039967075593 greatest:0.0601012146778005 road:0.05984228030131245 :0.7444864273720447 +that:0.08115057682459152 if:0.07267468149002705 which:0.02533485724186004 when:0.013227820865425266 :0.8076120635780962 +The:0.4824015622195066 the:0.21094415952788614 a:0.0333294076643389 second:0.020063927090562414 :0.25326094349770617 +fifty:0.3756024011860937 forty:0.09115983205212602 sixty:0.060317323506780644 twenty:0.04503214952903624 :0.4278882937259635 +holding:0.3354237603787071 a:0.19860203261140538 the:0.16880081853571097 going:0.10502000869127655 :0.19215337978289998 +and:0.5017931270156571 the:0.2088127225400595 he:0.11301308985745272 this:0.10865502905930198 :0.06772603152752849 +and:0.9560196716149607 to:0.03215328408202568 ami:0.0006595263397225902 anil:9.258258814902642e-05 :0.01107493537514176 +In:0.0009090357777557217 to:0.0003171091365001432 will:0.00024660576896364493 g:0.00022952875908357196 :0.9982977205576969 +of:0.21590393317905815 er:0.1690487494264282 that:0.11970229450244377 to:0.1100761888852846 :0.3852688340067853 +N:0.024186400659446747 State:0.012370831484419982 a:0.012361235547683553 said:0.011605638209876304 :0.9394758940985735 +of:0.3573928912900926 and:0.1808907050869038 for:0.0665979177926992 with:0.06207446606656486 :0.3330440197637395 +order:0.07204880893459673 1:0.03852478902750496 end:0.033987492277068224 hour:0.016864468407125174 :0.8385744413537051 +and:0.41993333329036847 to:0.1102234714082271 of:0.05884913906968376 by:0.03924335938242194 :0.37175069684929885 +books:0.4769792271907709 experience:0.10602063312887289 which:0.09198672084885942 body:0.061172225789156216 :0.2638411930423406 +five:0.263933455973945 made:0.0871877013404905 began:0.055738433929376434 about:0.0449844976569988 :0.5481559110991892 +the:0.18364537714859716 and:0.10608727002288482 to:0.06337433792163517 a:0.058028537130828894 :0.5888644777760539 +fresh:0.5508383073783926 it:0.13079078821359436 badly:0.06264880065830138 in:0.053262495139445885 :0.20245960861026577 +of:0.3255869216593111 to:0.15283476482512764 in:0.13698763777715547 for:0.09618700064339422 :0.28840367509501147 +of:0.13408806339833662 and:0.12993880298390473 in:0.11881933607145828 with:0.09187221278588796 :0.5252815847604125 +made,:0.023763577914697017 over,:0.015850613733971126 over:0.015460971255577277 made:0.01412925114415889 :0.9307955859515958 +the:0.3135168549015748 he:0.1285921342313837 Mr.:0.09679988743917885 it:0.09350541109448086 :0.3675857123333818 +Mrs.:0.022333172335466063 and:0.020414597741782867 J.:0.01614219907191986 March,:0.013619311665646753 :0.9274907191851844 +payment:0.7757505750359266 said:0.12832608368780324 the:0.03794004370960515 this:0.037859036045678404 :0.020124261520986786 +In:0.6297134251834527 to:0.1951480557896093 in:0.11843553484706754 of:0.03408421106106386 :0.02261877311880665 +in:0.6967219835045738 In:0.10697170313409401 iu:0.02548148109174462 on:0.002017250560290669 :0.1688075817092968 +and:0.08182531552652046 of:0.05516671022528863 the:0.051202839133732934 to:0.02595415674584863 :0.7858509783686093 +in:0.18248785626747147 and:0.17232048208914236 of:0.12068426095605492 are:0.0864036798963795 :0.4381037207909518 +can:0.3773290609014505 may:0.3459303396041719 to:0.18509353745240506 will:0.05712984398102789 :0.03451721806094461 +the:0.508052114816398 a:0.19737405615217982 with:0.05436002047941548 of:0.04121334192880066 :0.19900046662320614 +of:0.9228657354917297 between:0.06587437929507778 with:0.006721970364517486 is:0.0006333187381543994 :0.0039045961105207984 +most:0.038361721838264674 the:0.01791864960592093 great:0.014443699526257457 American:0.013549405748126351 :0.9157265232814306 +legislation:0.07886335482964048 to:0.062093266620410016 from:0.03482565245966896 money:0.033849649888204214 :0.7903680762020764 +and:0.5838417367612978 who:0.23250936142766943 she:0.03638866027467092 d:0.028622423906494533 :0.11863781762986726 +by:0.979891317553899 in:0.008779241105346381 without:0.005707316907065038 at:0.0031766749085187815 :0.002445449525170709 +for:0.11743355366980714 of:0.04819935505994991 medicine:0.039807425602826754 to:0.03160948588561991 :0.7629501797817962 +of:0.6845904921280567 at:0.12241708648253911 was:0.10730319533966001 until:0.05158447419573082 :0.03410475185401344 +remaining:0.36667756349009706 advantages:0.3632771255809979 times:0.15262039094206414 of:0.02424554049138192 :0.09317937949545901 +August:0.02416371811079619 day:0.020093157723978274 day,:0.009039312172071304 the:0.009011570754218197 :0.937692241238936 +the:0.5968019762117115 this:0.11291616515227179 Ihe:0.04356329608704448 a:0.018830688032193003 :0.22788787451677922 +we:0.3091948807914366 and:0.2454816132415367 I:0.1449804056526094 that:0.0548839784290904 :0.24545912188532693 +he:0.25496087030963716 the:0.2175472578626955 his:0.1299618393528491 this:0.09793366060838833 :0.2995963718664299 +behind:0.09812358829785137 men:0.060713023136634355 experience:0.05662485745264638 both:0.042872459523234346 :0.7416660715896335 +his:0.47855998733239724 the:0.40863520436248374 a:0.0626080502469782 my:0.030700147693310496 :0.019496610364830216 +of:0.6168978947681363 for:0.19334564766534254 out:0.07304656100211275 in:0.06108693937705188 :0.05562295718735658 +and:0.23606168603664038 ing:0.12081510263790035 like:0.06442592226152975 to:0.050113606472065635 :0.528583682591864 +half:0.20755037916634453 a:0.14040321114247648 and:0.10301617606962567 the:0.09491210095424221 :0.454118132667311 +for:0.18960468387669294 in:0.1791186668042563 and:0.1463751220384232 would:0.060851053219165 :0.42405047406146257 +both:0.7643154370464464 all:0.07520871647690659 the:0.07232933134298115 opposite:0.04910383114686451 :0.03904268398680127 +usual:0.005859586168991124 the:0.005327039198667949 part:0.003618671895357314 particular:0.00349412481889327 :0.9817005779180903 +of:0.3824794399855042 and:0.04996824184193945 at:0.049649179086796946 the:0.04941426608914254 :0.46848887299661673 +and:0.17436561279743887 of:0.07677903041878363 or:0.06415271428373163 to:0.05587422096293071 :0.6288284215371153 +were:0.10873440018744486 the:0.04503224758408931 in:0.04426490971548872 be:0.03954228501128397 :0.7624261575016931 +one:0.5417273708416509 front:0.06485898616195439 black:0.03426556632650348 the:0.030870092710223788 :0.3282779839596674 +state.:0.0019514770934165248 canal:0.0016182122419009706 If:0.0008912055348711522 and:0.0006626730591736053 :0.9948764320706378 +by:0.9923099513964704 from:0.004567715037703655 to:0.00188832880019492 all:0.0006926982283762629 :0.000541306537254568 +and:0.1599068616207425 to:0.1569459655546475 in:0.131606577836316 with:0.08438052278191478 :0.4671600722063794 +York.:0.17574353316841454 York:0.031455249581173454 States.:0.011242809045808497 England:0.010555221978042727 :0.7710031862265608 +her:0.9998615109529838 a:0.0001030611469906936 their:1.6322418514185724e-05 his:1.3251988970764684e-05 :5.853492540520602e-06 +situation:0.17919792114490019 parts:0.17878197919762195 part:0.12630270430412824 parties:0.09954159490270416 :0.4161758004506456 +of:0.16710191839107297 to:0.11156298655730854 in:0.10972572313952847 and:0.0933604642172049 :0.5182489076948852 +are:0.4351594788968676 aro:0.35667386980768945 arc:0.05071411925852539 were:0.030963561756446566 :0.12648897028047104 +me:0.05188073387796214 ed:0.04782759528930736 them:0.04558327479901845 himself:0.04429253406782822 :0.8104158619658837 +ed:0.07810907070168743 and:0.06884938489042844 ing:0.06771291291484535 enough:0.05615007522980756 :0.7291785562632314 +is:0.17441535686427942 runs:0.05376305994488603 was:0.0324176674010637 that:0.02726862385007865 :0.7121352919396922 +even:0.4593512024938794 as:0.12675023514383008 but:0.11123389479647075 Even:0.02396452290383768 :0.2787001446619821 +recently:0.20970148865296662 no:0.2035982435496912 the:0.13862070867553763 only:0.1069997567712281 :0.3410798023505766 +cent:0.3003579498180753 six:0.18796495849853062 ten:0.17771578918599032 two:0.17725309038822448 :0.15670821210917943 +and:0.5013363803576516 within:0.23711679710310457 or:0.1157772703874703 in:0.060324732132079714 :0.08544482001969383 +What:0.09689964945798166 This:0.01997066573154091 But:0.014377030654233756 That:0.009707596215882342 :0.8590450579403615 +and:0.15901272598170132 the:0.08152372863065924 of:0.05151878855098941 was:0.04052893925779356 :0.6674158175788565 +party.:0.09179831199774187 and:0.04335891135460978 side.:0.04251551547407205 platform:0.011463215696940685 :0.8108640454766356 +that:0.25661301489005556 and:0.2168228074831432 Court:0.14871488872332547 as:0.09901138414822244 :0.2788379047552533 +tbe:0.04211221172054888 of:0.012042413149377996 the:0.0038860783392016753 The:0.002846140271764441 :0.9391131565191072 +by:0.5683018484265357 of:0.1502922249270704 in:0.1351590484591444 quite:0.05872839635210788 :0.08751848183514147 +South:0.2992279097292431 and:0.14024376393791746 shall:0.10482472695925216 the:0.04412388752078235 :0.4115797118528049 +and:0.17674203137915045 ton:0.06848751137124373 made:0.03785145323771503 It:0.032091403827951566 :0.6848276001839392 +acres:0.24935102564434328 piece:0.1521471160356761 tract:0.0850102437132258 composed:0.048011949285604774 :0.4654796653211501 +and:0.2846287056022055 he:0.17601553470306228 I:0.11676704176860919 1:0.10555089217958967 :0.3170378257465335 +glass:0.07161101247325558 hour:0.05251145636607296 secretary:0.02392361138086641 first:0.01974927996961755 :0.8322046398101876 +received:0.23229229441010651 purchased:0.10940608657068414 made:0.10831836694778339 given:0.030762428077449232 :0.5192208239939766 +our:0.5923283372766386 his:0.23622344265696268 their:0.07737772063173427 the:0.048084270023784535 :0.04598622941088014 +came:0.7192923506008551 up:0.07758288397121174 I:0.056287329951255384 whatever:0.0502403518375472 :0.0965970836391306 +at:0.39891653825608 of:0.26720000142732303 in:0.08522360485906963 and:0.050878785854810794 :0.1977810696027166 +most:0.025336555765570253 the:0.021932440429166134 same:0.017753450615734807 said:0.016448812278795986 :0.9185287409107328 +provisions:0.35699862578749186 terms:0.06806362329735427 construction:0.04826358445230548 and:0.0355537188509421 :0.4911204476119064 +prepared:0.06760802499226021 and:0.05137936543474002 made:0.04109067152219628 owned:0.03756164468611668 :0.8023602933646868 +and:0.04484749457145861 of:0.025500592174938122 extra:0.02306023712360519 7:0.022986866711245908 :0.8836048094187522 +can:0.7187268765468628 cannot:0.12285216766774451 could:0.1099320623855892 sister:0.022016691719743436 :0.026472201680060013 +the:0.39294848239176194 July:0.11982762961947259 a:0.11853453329593328 our:0.023166965579805073 :0.345522389113027 +he:0.4202021291314459 I:0.1357465774389822 and:0.10050298418248992 He:0.08434202756655272 :0.2592062816805292 +or:0.14016293680818886 than:0.05781814045397291 free:0.047485501429742914 not:0.04608040812549022 :0.7084530131826051 +and:0.21727518631085418 or:0.1696841013211459 few:0.0802026654260734 the:0.05261231900781148 :0.48022572793411517 +be:0.40051046607197777 have:0.04685533529907102 he:0.017864081137172617 also:0.008461544445105131 :0.5263085730466734 +and:0.04116741022920874 John:0.014425379472764295 the:0.012541617781667763 J.:0.007294398662255172 :0.924571193854104 +sur-:0.05567943741883184 the:0.04828895209231369 ex-:0.04727914003214131 and:0.047210002123872066 :0.8015424683328412 +a:0.553487180028289 the:0.37023303872386387 no:0.05100957354729174 any:0.009619284648967068 :0.015650923051588304 +money:0.02848641052557747 up:0.02119719476352334 the:0.019447869104943116 50:0.019350302838441805 :0.9115182227675143 +to:0.38953837437591565 and:0.22601786900161358 would:0.13014297968435368 might:0.07291906697767042 :0.1813817099604466 +town,:0.08087806786831969 and:0.07043770284831767 was:0.03134093024461606 ami:0.0277607359245564 :0.7895825631141902 +sum:0.07281469436071691 pose:0.0652474945336792 tion:0.06227135590827228 day:0.059129558982890996 :0.7405368962144407 +years.:0.024457333837044265 days.:0.01964146671640957 feet.:0.007031318180042407 men.:0.004688685999497463 :0.9441811952670063 +trees:0.3743795949902787 her:0.11919663723819512 them:0.08533027895037594 him:0.08191923334534776 :0.3391742554758025 +It:0.13560907253176782 it:0.09436018776067659 which:0.08128636383520584 and:0.06683764364568587 :0.621906732226664 +the:0.563450064847745 this:0.12001884836993275 I:0.0421477631779656 in:0.027312496525215304 :0.24707082707914155 +most:0.1360744461483071 only:0.0602635322927858 first:0.04556482475866224 greatest:0.03673499118927071 :0.7213622056109742 +steps:0.068306906766169 road:0.01591960312518351 progress:0.008952451894231469 defendant:0.008777306386346 :0.8980437318280701 +4:0.2090460342610601 the:0.07368757037875989 The:0.054778574109796675 A:0.0418086071513639 :0.6206792140990193 +of:0.03233286562825902 to:0.03175778435507977 by:0.023473987222926238 the:0.021856030271005657 :0.8905793325227291 +the:0.46440539749038257 this:0.09106317747771366 that:0.03645879674486123 those:0.03644640046664992 :0.37162622782039284 +a*:0.5553755359159094 of:0.020941954134771613 W.:0.013067742884099983 and:0.009792279432584223 :0.4008224876326348 +and:0.32254961963623535 with:0.09962431826201354 the:0.07128541954802668 of:0.06979983898453779 :0.4367408035691869 +the:0.7014396232297809 a:0.12268454642041549 his:0.05277606652358628 tho:0.04197734114319525 :0.0811224226830221 +the:0.29580885314905603 Mr.:0.10760110536518648 a:0.10583817734075371 his:0.08224009099000035 :0.4085117731550033 +to:0.15520695408654067 the:0.11998224010159568 not:0.08677251131331944 that:0.08447287591944638 :0.5535654185790978 +men.:0.11324066353707317 them.:0.030379983015999874 the:0.012332123891959819 years:0.01087975426421976 :0.8331674752907474 +bought:0.31602482715366204 man:0.20216989909856195 worth:0.07998514332039683 sold:0.016238247677724933 :0.3855818827496543 +a:0.40634212581491347 the:0.2190410502116954 and:0.10337092510443814 is:0.03438825756120066 :0.23685764130775233 +the:0.5013915908537702 Mr.:0.11184564884124244 Miss:0.08367615479246676 his:0.0817999290679037 :0.22128667644461697 +only:0.29496355771816796 the:0.13971478374267074 tho:0.09465584336740862 a:0.03122975159548295 :0.43943606357626985 +in:0.227514404414152 and:0.22276033951101343 the:0.0876651547856609 of:0.06521174823349035 :0.3968483530556832 +from:0.2139240212302351 of:0.1969280882091956 In:0.1929161968386989 to:0.030688349939878807 :0.36554334378199155 +the:0.2522741690673847 are:0.07178291189864876 The:0.036766967911112954 is:0.031664005155433626 :0.6075119459674201 +was:0.21645554892741412 account:0.1531540355374406 had:0.07854107388031178 who:0.06184849517614811 :0.4900008464786852 +man:0.20124005494593603 one:0.10702282606606504 fellow:0.018356677228627303 woman:0.012626462838437259 :0.6607539789209346 +the:0.5268721676804796 a:0.065392741275999 this:0.04599449347499611 that:0.028221232889756444 :0.3335193646787688 +of:0.3806322947316875 on:0.3038847447359261 from:0.11627557287376285 to:0.09727442681774309 :0.10193296084088044 +first:0.2398158797448519 late:0.12709855522299773 early:0.12526143477580914 old:0.042558113409796046 :0.4652660168465451 +and:0.03808474792403877 church:0.03517097308113584 once:0.028098101790142625 j:0.027679719044286274 :0.8709664581603964 +the:0.16779440412278748 to:0.12799039170765647 and:0.12295156180766022 The:0.04339767809289853 :0.5378659642689972 +of:0.08800845708124701 and:0.08379409873078299 the:0.05862861887540715 to:0.026065459706837886 :0.743503365605725 +and:0.12495836912514381 to:0.10766393603238825 of:0.04816033786655047 the:0.03648270867357636 :0.6827346483023412 +doing:0.5033948255277676 not:0.3818488774095129 found:0.015098869413842522 called:0.014762090941227235 :0.08489533670764957 +United:0.019032061170095243 public:0.01446901555511407 the:0.013457506198779551 State:0.01032053394797212 :0.942720883128039 +worthy:0.473847639628182 one:0.061654337412315706 capable:0.010356357946505286 composed:0.00949179718416822 :0.4446498678288288 +of:0.8378142224599966 the:0.043541177935482574 this:0.015399884355185408 all:0.009525333661879984 :0.09371938158745546 +not:0.6784800677785346 the:0.08690437682394601 he:0.032308215325280484 you:0.024338349458437696 :0.1779689906138011 +situation:0.1394491485528925 enemy:0.0810306454303948 rate:0.028799405764085784 state,:0.007933711672414748 :0.7427870885802123 +and:0.06224195003984371 away:0.03702154677448784 taken:0.01611589090769748 came:0.013051924298858559 :0.8715686879791125 +The:0.42469228718424074 the:0.18272850541507443 a:0.09801380661004915 A:0.08018128157409267 :0.21438411921654296 +the:0.6475274416938258 this:0.07672617479809361 their:0.06951728107894901 tho:0.04787358694933268 :0.15835551547979893 +and:0.7821262742644371 to:0.083325538410772 where:0.05709249845014401 after:0.03512580255679282 :0.042329886317853886 +court:0.0022023510275173117 county.:0.0021467148161346287 mortgage:8.883155481994547e-05 city.:7.050935520071267e-05 :0.9954915932463274 +the:0.7914515135098283 con-:0.05253446672983552 a:0.047126349968207866 several:0.007899925304544368 :0.10098774448758385 +is:0.35048160272375767 one:0.26986739333809845 record:0.14023178044154522 man:0.10664773079235121 :0.13277149270424743 +States.:0.012154578192430415 was:0.009723043946301621 days.:0.009673849709502079 people.:0.0032365353210897776 :0.9652119928306762 +report:0.04733344376291064 j:0.006319823141464404 of:0.005207528400788519 can:0.003221166031412603 :0.9379180386634239 +the:0.9648990345681935 tho:0.016423318399953465 tba:0.013632807285200183 (he:0.0027180728327045388 :0.002326766913948144 +in:0.5886158274952334 out:0.173427978873343 of:0.09060683853199634 to:0.04492106295126242 :0.10242829214816473 +today:0.5485088960082485 while:0.15802652329188172 that:0.14434206169450353 although:0.06527475829674485 :0.08384776070862153 +.:0.02146386581752003 and:0.009240688529006395 of:0.008456937982693043 it.:0.0067291721733960435 :0.9541093354973844 +men:0.8899439891937325 man:0.004152345221203812 and:0.002992370129919831 the:0.0027163921101975557 :0.10019490334494613 +the:0.6673494169971194 our:0.12493605958478285 that:0.0788660859104228 an:0.05290508124283941 :0.07594335626483555 +that:0.6584428583304541 as:0.02542677049072063 orders:0.021408918140999347 things:0.01370744063861586 :0.28101401239921003 +and:0.2536147744642929 to:0.2479659457175609 the:0.03709161273913196 of:0.020565393600859547 :0.4407622734781547 +came:0.24211340189081648 broke:0.16465872128251724 with:0.07477290826080189 of:0.06602007269603452 :0.4524348958698301 +a:0.21410094916825204 the:0.13358070326934704 in:0.09942307696494912 quite:0.05526134686977683 :0.49763392372767495 +one:0.10154299705385515 One:0.0801674818148312 Some:0.04432277164983848 All:0.041976506779072005 :0.7319902427024032 +In:0.5951155673120017 in:0.32313934778782766 n:0.022884306536467506 that:0.009795745874662093 :0.04906503248904106 +ns:0.4265223144226739 five:0.20697685697692528 by:0.11698102310411221 through:0.09737503767501049 :0.15214476782127806 +that:0.14348135187874758 or:0.0923337036471135 is:0.043913876486603325 authorized:0.03530207604290923 :0.6849689919446261 +of:0.19155269985202944 in:0.08036772248023355 and:0.06897235418371159 at:0.06744764451888012 :0.5916595789651452 +and:0.2358216822162894 to:0.10718958581383159 in:0.09089603679675272 as:0.08262722805770993 :0.4834654671154164 +estimated:0.02923867310419983 annual:0.026123581746038498 said:0.012082445481352134 revenue:0.009791103358622677 :0.9227641963097868 +the:0.15506262517179611 a:0.03697904607397898 other:0.034200846532069694 Mr.:0.02051268986210868 :0.7532447923600466 +gives:0.496088632877696 and:0.09982790323127096 such:0.07747617269300688 take:0.07103609034056227 :0.2555712008574639 +it:0.4679107132147186 come:0.1777591925037354 this:0.10978149340633879 the:0.05021890467866489 :0.19432969619654233 +in:0.37033558355792845 and:0.3524491686786048 ing:0.09307465360454435 beyond:0.08057952827067452 :0.10356106588824783 +when:0.4981481103966809 before:0.1323239421132639 as:0.09306566230501341 that:0.06078116735542941 :0.21568111782961247 +the:0.1792974215103996 to:0.09823218961511723 a:0.09661729006440707 his:0.08447875148455283 :0.5413743473255234 +and:0.07224926536447168 between:0.053207936650711156 yesterday:0.05123348381693357 until:0.042422315182348326 :0.7808869989855353 +to:0.31463680442577036 in:0.22452451083859654 a:0.2019518153836348 the:0.15070226405226395 :0.10818460529973425 +were:0.9342728804059701 had:0.01291692909428141 are:0.008935253408646386 did:0.007027390651799259 :0.036847546439302964 +of:0.16200817575579846 -:0.04418138083528661 sent:0.04155596239089998 A:0.014133630769043833 :0.7381208502489711 +is:0.25523962129002153 was:0.03913824347295838 em-:0.02212835763933357 had:0.014089940480961276 :0.6694038371167252 +That:0.79133186722894 that:0.08225367277334251 and:0.03399421763560888 but:0.011504681836552481 :0.08091556052555605 +the:0.9998691511233999 tho:4.3857755783702566e-05 he:2.0292807296199265e-05 tbe:1.0801027507171988e-05 :5.5897286013087065e-05 +a:0.5521316990586721 private:0.05804287665254019 it:0.039190843849700514 soon:0.036039552643544664 :0.3145950277955427 +would:0.4173626656669924 in:0.18244165448475386 to:0.12106152169323695 v:0.11952070397776418 :0.15961345417725253 +by:0.3119907757390024 with:0.1374221384086891 to:0.13094444371276068 in:0.12956931342589043 :0.29007332871365743 +he:0.7858904967019312 was:0.049790442190195565 that:0.037287877048570846 is:0.034313365465474754 :0.09271781859382758 +right:0.6477719618805061 with:0.0529347377321865 work:0.038209847339661346 capacity:0.0368180312370421 :0.22426542181060394 +thence:0.1416131370664725 six:0.13247667410848307 the:0.0836746474494747 a:0.07958446995981665 :0.562651071415753 +the:0.4661800825865926 a:0.07715110981852487 his:0.04589642332619419 tho:0.029946507777901785 :0.3808258764907866 +and:0.09981088963348488 the:0.06979536538569756 of:0.06718089058446323 a:0.027007216383970373 :0.7362056380123839 +be:0.3474447718448667 not:0.06728141158389321 bo:0.0318593119005595 have:0.02793844713449226 :0.5254760575361885 +causes:2.992447464759061e-05 men:1.4336561044118238e-06 states:5.495309057804033e-07 nations:3.8288258854840006e-07 :0.9999677094557536 +and:0.1919410817272171 of:0.05968534985819272 to:0.05386715371535425 the:0.042951240155930666 :0.6515551745433054 +young:0.5787908627594637 beautiful:0.03285839943665143 quiet:0.021191669071269903 single:0.0052482205256653225 :0.3619108482069497 +to:0.9697307182685908 on:0.006616291634382183 in:0.005005147346457699 and:0.004188005006840211 :0.014459837743729114 +the:0.07715694507477835 valuable:0.06482604783698398 cost:0.0573856089466225 Lake:0.02539782282511113 :0.775233575316504 +had:0.18281467651341957 appeared:0.09511847140426884 were:0.07473006486815646 are:0.05963102222726277 :0.5877057649868925 +when:0.17751601893638136 as:0.13490777489326158 that:0.12091646156720773 did:0.09842551218880913 :0.4682342324143401 +we:0.5500302146241484 and:0.40013774805363317 to:0.04030975031017752 you:0.0076359555284812985 :0.0018863314835595281 +to:0.48872220840200215 In:0.3397420965641372 and:0.031004272368759377 of:0.025028778612326746 :0.11550264405277463 +and:0.09571901524303525 the:0.052774266639268 of:0.05081812472477736 to:0.026042470333028728 :0.7746461230598907 +E:0.4780280502958148 R:0.21085181269915332 A:0.13264122057573105 G:0.11963735481085837 :0.05884156161844235 +a:0.5314896535382699 you:0.3021486744311941 the:0.14239424199679232 for:0.01473668496446844 :0.00923074506927506 +I:0.3100926038938214 he:0.03676551842352918 who:0.022204998944881274 then:0.0012027227814003204 :0.6297341559563678 +their:0.3208849348051892 of:0.1910701878899904 the:0.049338127718929405 small:0.04094946479875183 :0.39775728478713934 +the:0.183268500222114 4,:0.0788469820470021 be:0.06508663554199003 3,:0.021936559596074844 :0.6508613225928189 +that:0.5091495685410097 we:0.24852613444909846 there:0.12408883378616921 which:0.09052905376953785 :0.02770640945418483 +time:0.3081101439809363 stage:0.20973099189291305 It:0.186655641199681 it:0.12837357159464288 :0.16712965133182672 +were:0.24308950515574632 are:0.201290025414155 was:0.19781125028136687 is:0.15767274712087936 :0.20013647202785237 +of:0.0182155624950539 and:0.009177999429591107 tion:0.005615317185155338 ing:0.00487196048408343 :0.9621191604061161 +to:0.3091070116778631 of:0.29140357823655466 at:0.2012695888061696 in:0.12571961857553512 :0.07250020270387746 +of:0.2964309952343522 a:0.2725573823112763 In:0.1326875829795443 A:0.05077007704841135 :0.24755396242641584 +that:0.701652880907693 more:0.2480863639241406 the:0.020104618683882726 with:0.01552420694580328 :0.014631929538480548 +this:0.06443297328530902 a:0.03966654947007068 to:0.03795680314009564 November:0.02374436142479868 :0.834199312679726 +gold:0.06705004049370085 those:0.052757078443438264 the:0.05255196192510819 dollars:0.03386034378925679 :0.793780575348496 +better:0.445123069742014 well:0.23840051896345843 worse:0.08235919780165639 it:0.08158800430506162 :0.15252920918780963 +one:0.15036549594709314 some:0.02912046657616631 most:0.02763431698173924 that:0.017327829166278137 :0.7755518913287233 +tion:0.04043621699587593 of:0.016654010582221775 nor:0.00981870616101851 banks:0.009061914046341258 :0.9240291522145425 +south:0.2823803566947889 north:0.2206448192170404 N.:0.15230820963119515 west:0.08949587158702424 :0.2551707428699513 +in:0.4278197342437432 for:0.15356222160395558 of:0.09175630273396487 to:0.08981696448896115 :0.23704477692937526 +be:0.29428127716432684 and:0.22114560166811167 is:0.038949805630612774 are:0.0308252604302016 :0.4147980551067471 +New:0.9414284261582156 Now:0.0447943867461436 the:0.0007059015897873167 few:0.00048446026647405645 :0.012586825239379314 +to:0.03183754030172594 of:0.01107166782855102 bonds:0.009408064899643138 one:0.008534283506635813 :0.9391484434634441 +case:0.7601970232733699 came:0.0748274695814001 ease:0.06193651170010694 event:0.054269568619267815 :0.048769426825855174 +for:0.4581307408623704 of:0.3696450751915877 to:0.036951288266889586 and:0.02996782123886821 :0.10530507444028421 +under:0.3311126124712068 other:0.21116848605193878 south:0.07701108141900884 north:0.06912215389262527 :0.31158566616522015 +had:0.7608215986659393 has:0.151834843815203 have:0.05696745402527876 haa:0.017147436272402707 :0.01322866722117623 +the:0.38354306978453884 a:0.019056828224747035 tho:0.018370227786847357 where:0.015795994252681994 :0.5632338799511849 +has:0.5645704549407355 into:0.23501393660104403 bad:0.060523688517221425 was:0.05814223833053827 :0.08174968161046062 +of:0.48446216438949424 the:0.12202497900047087 which:0.0832765512620746 is:0.05603097362544707 :0.2542053317225133 +the:0.29316578253568515 a:0.058653168291096916 and:0.022954862988217525 this:0.015563258991333252 :0.6096629271936672 +Wilson:0.03411739713613133 Brown,:0.013427313167025737 Johnson:0.0022270794363622574 Washington,:0.001377232217128036 :0.9488509780433527 +and:0.17224043886530668 of:0.09069207853751593 the:0.086288371531679 The:0.0579468310308798 :0.5928322800346185 +the:0.39027857084975154 my:0.16562101683300054 tue:0.0861009171676442 me:0.05004346995838822 :0.3079560251912155 +an:0.07034618491186222 want:0.055330267543844236 public:0.05146268120163561 man:0.02978889806755736 :0.7930719682751006 +the:0.5057214401922495 their:0.09240154823640812 a:0.06343079387166307 tho:0.0629045989026349 :0.2755416187970442 +to:0.11454775270511439 then:0.0699666595551313 I:0.06497641196442754 principle:0.05636758715164022 :0.6941415886236867 +death.:0.032565089925851345 time.:0.02814985786929573 each:0.013134792101085795 the:0.007632730899422198 :0.9185175292043449 +and:0.15635539975748713 sight:0.12558221009103776 having:0.06337997832151421 ment:0.01654335558922233 :0.6381390562407386 +him:0.0013474704797063262 town:0.0013171967133826332 them:0.0009899477722124742 State:0.0009392141498980025 :0.9954061708848007 +to:0.34845888525102825 will:0.22638660115701503 should:0.17433424607211406 can:0.12484435726360599 :0.1259759102562366 +the:0.1432678940659373 a:0.0365301559418461 other:0.02284299883813718 to:0.014224985031318974 :0.7831339661227604 +night.:0.16054919562514525 year.:0.1599602576965199 week.:0.11694341947311752 Sunday:0.09251091486045913 :0.470036212344758 +the:0.19199897409379882 The:0.17387905384633792 Senator:0.07835266940496675 Captain:0.07271542193215261 :0.4830538807227439 +and:0.15177130681040255 in:0.1365696162379927 the:0.1206436461210172 of:0.09777204637340221 :0.49324338445718524 +York:0.6684325127671832 England,:0.11708684066676595 York,:0.04890644822255897 Jersey:0.0025851471113110354 :0.1629890512321808 +of:0.46084250706451213 all:0.1878640384446978 immediately:0.057692791795543936 that:0.026931848420455 :0.2666688142747911 +bank:0.37671730113413243 Dr.:0.29284541642972123 but:0.22919448926523675 had:0.037014953016619404 :0.06422784015429038 +J:0.07937534831301644 and:0.052946609812152864 the:0.047508189257001995 do:0.03338044744517868 :0.7867894051726501 +and:0.3559031585118246 is:0.13429678366508457 are:0.11028455368186936 the:0.07216236347161088 :0.32735314066961074 +those:0.03967083049819983 see:0.03614383192771494 others:0.027840454835875984 The:0.01720501008737079 :0.8791398726508384 +he:0.16095178533079432 it:0.1317371762504941 they:0.11794694872611501 I:0.11347134332980405 :0.4758927463627924 +her:0.11490555802362756 him:0.05238166525471665 at:0.03109408212358948 was:0.02176813869930992 :0.7798505558987565 +had:0.4763589061101845 has:0.43824926642109935 bad:0.0065766729560046595 have:0.006553142436933879 :0.07226201207577763 +the:0.21013228597827044 a:0.08978077256028262 and:0.07397797694934592 to:0.06291357258398639 :0.5631953919281147 +and:0.024011505771562358 most:0.013852362600848921 old:0.006384968338610564 are:0.006316145019570006 :0.9494350182694081 +in:0.24479570449752144 within:0.1589359537628801 for:0.13669191070842096 and:0.1352749888004311 :0.32430144223074636 +of:0.3716625676592989 to:0.15269251637129713 and:0.12587103732237784 with:0.10315763174403957 :0.24661624690298647 +been:0.2573012899097435 made:0.05724154740773035 in:0.046137598206181 brought:0.04422486723784836 :0.5950946972384968 +Beginning:0.04535916002804345 and:0.02850364246400819 ing:0.02587613469527155 was:0.015454271743097305 :0.8848067910695796 +party.:0.1339222809865922 and:0.01750547018243467 to:0.013154502531661933 in:0.008222703643318289 :0.8271950426559929 +be:0.9586066919650936 he:0.019328480090399558 have:0.015303753581238554 not:0.00222167081868531 :0.004539403544583064 +legal:0.9878481794190384 1:0.004244395110913954 of:0.002101595211185078 a:0.000109491389004667 :0.005696338869857845 +a:0.7535372051493351 some:0.16943202171256946 for:0.031221417216708867 the:0.01858310019465122 :0.027226255726735357 +of:0.33344692838074863 in:0.2408343967246343 and:0.1439455643867084 from:0.08747113173446927 :0.1943019787734395 +the:0.6068164010690514 a:0.14780322188863418 this:0.13354480014945092 tho:0.013209971376658799 :0.0986256055162045 +the:0.24737762781914438 and:0.19117529621937482 our:0.11346799272513976 train:0.06299851823518954 :0.38498056500115135 +when:0.4683041692127296 this:0.10778056789949045 then:0.06202635084420148 certain:0.0524055834657941 :0.30948332857778454 +those:0.644551921024446 more:0.05549987595816698 a:0.05184808101850251 the:0.03678372692102365 :0.21131639507786082 +the:0.2613255507583211 and:0.09179413698224839 a:0.06936740828153887 of:0.028973180134294126 :0.5485397238435975 +the:0.5794088240616039 being:0.1298665048167181 a:0.04103778061703209 tho:0.028971136604182768 :0.2207157539004631 +with:0.2511118937325962 that:0.2196642407739211 and:0.16460172385325814 a:0.1544558837125492 :0.2101662579276755 +more:0.31535214413110046 else:0.09009669248985734 less:0.08524011039721568 other:0.055548278749256406 :0.45376277423257005 +of:0.27178170272089663 end:0.2228690855237406 time:0.029995696798962385 half:0.0140296266273961 :0.4613238883290043 +the:0.19627335431926524 was:0.06856976295553625 from:0.056467146637299785 asked:0.053602639090684696 :0.625087096997214 +the:0.3443765824757155 my:0.07920074883329795 a:0.0438778400504521 our:0.020872405634395675 :0.5116724230061387 +in:0.25503726259119236 by:0.21705351800992617 In:0.15360760188505568 for:0.13640612352828455 :0.2378954939855412 +express:0.01492312390774631 quick:0.00548207444714939 general:0.005070837398239059 not:0.0041784123262052116 :0.97034555192066 +on:0.658650064370286 fore:0.07515259851363776 of:0.07367205042045796 to:0.060277154919380266 :0.132248131776238 +since:0.2563718905006436 of:0.22479785448752782 than:0.04861296314837509 and:0.04764147082459367 :0.4225758210388597 +the:0.05685608481433519 der:0.018609728785953326 appropriation:0.015340216181107438 have:0.015235526949569103 :0.8939584432690351 +to:0.13429658406988737 every:0.0035150158928585243 a:0.0018047244673445454 the:0.0012472879349705549 :0.859136387634939 +you:0.28935001981487346 they:0.25342508213475257 we:0.18479701729598483 there:0.07321547463095525 :0.19921240612343377 +able:0.16607205020440524 unable:0.1503019473702495 compelled:0.13099671506457058 ready:0.09587309795777844 :0.4567561894029961 +,:0.05905960074262438 for:0.035658532009823746 to:0.019869803628483097 ;:0.014766337730388258 :0.8706457258886803 +the:0.6457599267592055 their:0.1044241801126198 a:0.09007949649396445 his:0.08597554720046462 :0.07376084943374574 +could:0.23554705374659318 are:0.099608397328574 were:0.06812117391446784 may:0.051342408797558976 :0.5453809662128061 +the:0.22676191823832811 and:0.10881923947300486 of:0.09848108071270355 inches:0.06460254582710277 :0.5013352157488605 +hit:0.09915968604318824 use:0.06540108485955115 left:0.06369243595535119 think:0.028962521764004736 :0.7427842713779048 +to:0.13233092779820413 away:0.04243569860340384 that:0.03169353816763087 back:0.03164574408081739 :0.7618940913499439 +in:0.14754737847749677 C.:0.07445124591637194 A.:0.047020302933648186 H.:0.04587594263592113 :0.6851051300365618 +and:0.2859618726924053 things:0.02961782418557965 of:0.008287191724795289 brick:0.007332040617424675 :0.6688010707797952 +of:0.7391286073838703 the:0.025410874531481577 in:0.018068279329916344 and:0.013321928875122856 :0.20407030987960897 +Grand:0.2533992615043919 War:0.12151618685275334 City:0.10994445765509152 motion:0.015130211242243995 :0.5000098827455192 +lime:0.1696664569210749 fall:0.046065957563883854 state:0.04286513636339735 time:0.03516553281979333 :0.7062369163318507 +come:0.6349193106707414 presented:0.04405358412062198 served:0.04348000725478658 applied:0.04290865627341493 :0.234638441680435 +and:0.17668761706698438 of:0.10823923674747896 to:0.08464885963228759 the:0.07633287750293281 :0.5540914090503162 +in:0.7801773942323358 In:0.07852927637464253 the:0.028242224707787953 and:0.02355731676183058 :0.08949378792340318 +first:0.010030616591362774 of:0.009096927732684971 said:0.008512718085806724 rain:0.008226215969295025 :0.9641335216208505 +owner:0.04208253386575265 free:0.022994937790985603 notice:0.018941233920082474 oil:0.016115251219241487 :0.8998660432039378 +the:0.3238730594316225 said:0.07006980065894142 money:0.04468613090824187 such:0.034469592758633656 :0.5269014162425606 +in:0.16153060172568984 at:0.10287045391022774 on:0.061848484862548785 to:0.054100250473391086 :0.6196502090281425 +a:0.00730412132716781 equally:0.004918393543773565 without:0.004158092296551118 taken:0.0038207634321074553 :0.9797986294004 +and:0.17169809102983372 of:0.05517584257411021 the:0.044372480887568795 to:0.03610729456922416 :0.6926462909392631 +o'clock:0.5699421271909832 and:0.03883034667574891 of:0.0388001400714609 twelve:0.027169692039264334 :0.3252576940225424 +as:0.19705968643942287 up:0.1676793915340034 and:0.1495400622555803 simply:0.042550276450094494 :0.4431705833208989 +relief:0.046505208727435764 and:0.03278277851790539 cure:0.022966641106952356 I:0.019674149622711714 :0.8780712220249948 +extent:0.0823086589822609 end:0.05199261190149943 time:0.037034973443735915 bearing:0.03222503351755535 :0.7964387221549484 +countries:0.06173378016367989 States,:0.014715373543845937 of:0.011842715616475704 years,:0.009280740208714491 :0.9024273904672839 +and:0.02202062971998702 ;:0.010251371534253305 tion:0.007540855037395091 world,:0.007389205914442517 :0.952797937793922 +I:0.2663621314305952 and:0.12032422446059525 we:0.09543911375252619 records:0.08717295690229579 :0.4307015734539875 +agreed:0.12816906810829842 hands:0.10985204848597373 win:0.06331802777096324 ed:0.051351357962250266 :0.6473094976725144 +on:0.3308842924686066 into:0.18658694846249785 about:0.12524891131803406 of:0.09387813811750231 :0.26340170963335924 +to:0.03228463065359495 store:0.031182529924405886 in:0.02768274636886641 City,:0.027029563239212132 :0.8818205298139207 +and:0.231310975334913 it,:0.10002351507455505 this:0.06799597470496917 returns:0.049094594853722424 :0.5515749400318405 +the:0.7132263918723907 many:0.05630047472527633 ten:0.051675691649407496 recent:0.04157376579443611 :0.13722367595848947 +sale:0.560511596658581 loss:0.11486018100392752 proposed:0.014733312067179895 run:0.007353078591635642 :0.302541831678676 +of:0.6714194345703084 in:0.1314913980421108 at:0.08496169470998703 by:0.06286479503536375 :0.04926267764223005 +Chicago:0.0662799971784539 William:0.018954013923508303 Baltimore:0.006850561989927189 country.:0.006298269964738693 :0.9016171569433719 +his:0.6966502164182095 their:0.21965867673167389 development:0.049546038834761705 the:0.02771088812717044 :0.00643417988818462 +and:0.11891068829303304 of:0.07853000383203425 the:0.06580560375936835 to:0.047198647364174375 :0.6895550567513898 +to:0.22591469029522132 the:0.12844958167138248 and:0.10106215696726721 by:0.06554044080758047 :0.47903313025854855 +of:0.3698635226565115 to:0.13715320062580313 in:0.12647747356922728 and:0.10573952130631983 :0.2607662818421383 +the:0.4948985420386785 a:0.1011345467656551 his:0.07986685449020635 tho:0.019841002047444656 :0.30425905465801545 +of:0.7322982680286741 are:0.061204850137110155 and:0.051570781738831256 in:0.046114077501111364 :0.10881202259427322 +at:0.8835690236723011 the:0.0702564167731754 a:0.013937952946217299 st:0.005377279479537944 :0.026859327128768484 +coun-:0.010894889025022352 a:0.005685471714074062 the:0.004394285687316469 man:0.002240456575531555 :0.9767848969980555 +the:0.011470414949618247 same:0.010724276951162076 daily:0.009857971010863333 as:0.0071740363655342166 :0.9607733007228222 +the:0.4052359247479872 Board:0.3138430439069291 powers:0.01710083651692273 one:0.01681229330714348 :0.24700790152101765 +of:0.30124328313297294 to:0.11243906110857933 in:0.10956813461418646 and:0.10784892479291258 :0.36890059635134864 +business.:0.11171061316112714 the:0.06754921909975085 it.:0.004692169310444089 them.:0.003152277757300236 :0.8128957206713777 +and:0.14949278330623744 town:0.12223554436823691 which:0.12106791729351546 ,:0.07945470133266405 :0.5277490536993461 +other:0.649564597181348 and:0.063562527379309 the:0.03932773986903676 cities:0.020785079098553063 :0.22676005647175312 +way,:0.973523943739478 contract:0.0040970873469659535 houses:0.003398516255132805 It:0.0012311041090566875 :0.01774934854936649 +the:0.5694924722798973 tho:0.08339078134194569 Mr.:0.07855418995853772 he:0.05791701837096682 :0.21064553804865244 +with:0.4160454522103351 the:0.2769565022519013 what:0.1711182249008061 that:0.041662651860521406 :0.09421716877643613 +had:0.11278325985671633 anything:0.014199261459519684 er:0.012102300532614421 ball:0.011713838277814406 :0.849201339873335 +signed:0.536155549008757 entitled:0.025879636118384623 given:0.016289405644469224 subject:0.013908878645985515 :0.4077665305824039 +interest:0.001925533364360836 to:0.0016895602397079068 sup-:0.001546349653313693 shall:0.001395231911454685 :0.9934433248311628 +of:0.9991758428813264 fund:0.00045539167470614195 for:0.0002245775947758566 to:3.099664718521752e-05 :0.00011319120200639255 +place:0.05823143542021871 amount:0.027249028295619374 city:0.026301875659737697 sum:0.025663751557077896 :0.8625539090673463 +and:0.45925440557870173 to:0.4194941799224432 expenses:0.04500709115597259 will:0.012329057853566833 :0.06391526548931564 +that:0.29903809924668173 of:0.19552439772850497 to:0.10962934812955162 for:0.10327312929694434 :0.2925350255983174 +and:0.44717772542613554 of:0.15815094730070517 that:0.12211991895237874 were:0.11246364655960772 :0.16008776176117273 +consideration:0.1559457774775808 contract:0.114956881142539 the:0.062372003895966574 foot:0.022157627027382252 :0.6445677104565314 +the:0.3990129786658631 a:0.05119118195094979 other:0.03268183183860944 tho:0.015701055648785565 :0.5014129518957919 +a:0.9990197235786751 the:0.0006370193737469438 any:5.674462179252249e-05 one:4.73225382282982e-05 :0.00023918988755715955 +weight:0.007672099123060409 river:0.007585161426222858 river,:0.0063093496426730265 fire:0.004913874478276315 :0.9735195153297673 +the:0.5693708840825938 a:0.16482593912897464 her:0.14745706146249013 you:0.08275962488815815 :0.03558649043778326 +ing.:0.20879568361430406 to:0.11493208701268691 for:0.06149184285887318 while:0.05873341443582755 :0.5560469720783083 +a:0.1949645015571711 giving:0.1216055290755601 in:0.09115160859349572 not:0.08807128869486867 :0.5042070720789045 +home:0.053959290353067624 it:0.01709294164338401 home,:0.015915153946843962 work:0.014413173893854929 :0.8986194401628494 +aa:0.03029954634571631 a:0.027656042734130786 he:0.012273690730815108 hard:0.0007448945824969934 :0.9290258256068408 +of:0.42600707840937413 too:0.2832825813779572 will:0.10406515016674306 or:0.06872106516642462 :0.11792412487950092 +well:0.9587792471953446 not:0.01864703092397232 even:0.007766519062857558 possibly:0.004457282718865054 :0.010349920098960562 +large:0.09882078019550143 little:0.049082862917501247 way:0.02688715832541137 carrying:0.026687469082073742 :0.7985217294795124 +enemy:0.2562134861933314 reason:0.06483712616961965 but:0.046674851964972265 ships:0.044891363676799155 :0.5873831719952776 +of:0.7829278708510583 ot:0.10107343750266554 o:0.09677692355025155 in:0.0036763013903660766 :0.015545466705658548 +mother:0.03418204679306555 other:0.02012255743792096 majority:0.01535172812591194 soul:0.01351595768807976 :0.9168277099550217 +and:0.06439926776619104 is:0.025060805297366057 as:0.022222454670030735 was:0.01988224650218909 :0.8684352257642232 +and:0.5414641071709533 minutes:0.3422862617974243 going:0.03864023240743718 or:0.02699897076685678 :0.05061042785732858 +dred:0.15547319429141385 acres,:0.04620217642933459 long,:0.036420755336324585 was:0.02581919208119698 :0.7360846818617299 +the:0.17421244266157812 and:0.15089136711104106 The:0.06818773175555311 a:0.05041679958906358 :0.5562916588827641 +the:0.7596339981217288 a:0.02860137480430795 or:0.007008718144960895 tho:0.006244040095375684 :0.19851186883362673 +there:0.7299746877212336 he:0.0954569451397779 this:0.06824055340390235 it:0.05055160436479794 :0.055776209370288175 +re-:0.14678170607752533 to:0.11289416917551984 the:0.10375964971414844 No.:0.07034730354254758 :0.566217171490259 +G.:0.4040083595009346 B.:0.11102612261042365 W.:0.046028569830138526 D.:0.04415381618156582 :0.39478313187693753 +north:0.4703568558985882 south:0.2808416197571703 west:0.11985664195808376 east:0.07226435833354747 :0.0566805240526101 +of:0.11259436647509603 to:0.04172191048177857 in:0.031027589820093987 and:0.024655995247103726 :0.7900001379759277 +of:0.14763374926841302 and:0.1362192571083444 the:0.11779364547349244 most:0.11020121789163417 :0.48815213025811605 +to:0.3838872697360467 of:0.18125373440913217 for:0.17835451161756957 and:0.15120109187980513 :0.10530339235744637 +here:0.0762791609225795 board:0.04879515160332204 entirely:0.03758079746550083 through:0.021246928670624037 :0.8160979613379737 +The:0.5279540522675246 the:0.02292803590479945 But:0.021067578736469347 only:0.016593501970507043 :0.4114568311206998 +have:0.9978230355767467 not:0.00034423675510102656 bave:0.00013641897770801516 a:4.9373967783458295e-05 :0.0016469347226606974 +street,:0.6440608850646093 running:0.05244859369548119 street:0.0360389717948986 Street:0.03325802130482075 :0.23419352814019015 +a:0.3125568827852786 the:0.21527597004310275 her:0.17698628744886774 and:0.05402288653064653 :0.24115797319210433 +in:0.3170474378375339 the:0.15868090464487505 The:0.12725148159736474 such:0.12563127949712447 :0.2713888964231017 +say:0.19608250204883051 consider:0.16565702179617703 know:0.14681684266610343 see:0.10129857402107986 :0.39014505946780914 +political:0.12738007818696562 simple:0.09891797768623578 the:0.03603924386228464 or:0.01603472128471517 :0.7216279789797988 +the:0.33788133709183754 to:0.21386974592105226 mortgage:0.04993893276250123 deed:0.03520697405679699 :0.36310301016781205 +;:0.17090219552975228 nothing:0.02715016734296351 Virginia,:0.01627125821587174 him,:0.010364431005540464 :0.7753119479058721 +of:0.24738698746680549 to:0.0775837306033115 and:0.0758606379058106 in:0.04536313423955662 :0.5538055097845156 +of:0.7044732545418141 in:0.24221474612297067 to:0.025252783125314784 throughout:0.0109650946424601 :0.017094121567440317 +which:0.16296658502583153 they:0.0907178645103483 They:0.0744714076041945 and:0.062336737047209205 :0.6095074058124164 +or:0.8879993146230207 and:0.058878290452988834 of:0.026550382888842577 to:0.014296427872227199 :0.012275584162920655 +the:0.4276262102443271 a:0.08134119957001913 be:0.07345311493959843 his:0.03395393117355184 :0.38362554407250343 +it:0.13688006005223635 day:0.07614092522904652 they:0.042415821931963915 the:0.04003013025497447 :0.7045330625317786 +yet:0.7050079387260361 already:0.02508159766225126 only:0.009216528206288056 had:0.00270394035003393 :0.2579899950553907 +that:0.0786012205561874 and:0.06106393380996661 but:0.02160905997933821 of:0.016705366865404435 :0.8220204187891034 +to:0.2506054644959211 with:0.23188133352620938 by:0.16247976938973477 at:0.11712513324603048 :0.23790829934210425 +to:0.29561319390643603 his:0.1378706669626138 and:0.0975408721924903 he:0.06911897636409942 :0.3998562905743604 +Her:0.2873249049193568 their:0.25259206911477117 the:0.12873103201013802 The:0.10690345307351196 :0.224448540882222 +clearly:0.14573407847420497 therein:0.0879882724478731 at:0.032946487716900945 it:0.013330188891461524 :0.7200009724695593 +of:0.5156059580031858 was:0.1037026570418357 in:0.08576855159962694 that:0.051651267198851866 :0.2432715661564997 +nnd:0.5681060252748098 think:0.08184148405803196 find:0.05619388122880163 make:0.005917202309517301 :0.2879414071288393 +":0.2508405087439254 Well,:0.10974264988870135 since:0.07444913318555064 but:0.03404137508892646 :0.5309263330928963 +they:0.5171234256725998 of:0.24212399684472574 it:0.0664434858093976 I:0.03916895803143603 :0.13514013364184072 +time:0.1023134976953663 of:0.09161466850033644 experience:0.050731753605066765 interested:0.046766220347985825 :0.7085738598512448 +petition:0.08347462864640234 country,:0.03927101129628143 work,:0.036434822196182985 men,:0.029690408276055062 :0.8111291295850782 +and:0.9215408513911134 seed:0.05222261282551611 or:0.016607450639545246 green:0.0015826415262912624 :0.008046443617533917 +American:0.0636964374385163 present:0.04326864374299893 two:0.02672962542729778 General:0.024804463750822313 :0.8415008296403647 +and:0.9052234900447327 the:0.01631003336288429 in:0.010322341924097088 of:0.009176673300429294 :0.05896746136785676 +and:0.07740152683508053 those:0.06722345331090264 people:0.05812477143758516 all:0.04091406617930465 :0.7563361822371271 +of:0.17113085560517086 and:0.10600156269061671 in:0.08735132715810376 with:0.08323897297615791 :0.5522772815699507 +the:0.41814759944984203 The:0.15307305049837092 and:0.13753876299497308 tho:0.02421137159803173 :0.2670292154587822 +no:0.7071798018948794 only:0.1988936869836312 if:0.0333929171951563 any:0.033336453492300744 :0.027197140434032357 +He:0.4244201544942548 It:0.19206958260699128 and:0.14084438104210173 as:0.05369024665784057 :0.18897563519881164 +upon:0.4166327518323812 toward:0.20340700036464263 on:0.1862771599393516 to:0.13262426499243105 :0.06105882287119367 +the:0.41594704780726766 his:0.16588140473466242 her:0.09991569838742773 Dr.:0.08382429812191519 :0.23443155094872703 +with:0.4839645278925483 year:0.32858838777258825 and:0.13893605644675985 trade:0.012769287456858484 :0.03574174043124513 +and:0.05923502296748041 was:0.015019744983104415 is:0.010289255834433247 out:0.0099737752558158 :0.9054822009591661 +were:0.16764938627622253 are:0.14095342861723942 have:0.12460053349578744 will:0.11011276199904575 :0.4566838896117049 +year,:0.12869942576759275 year:0.0942346673360799 month:0.04077101599558087 day:0.023440669213341328 :0.7128542216874051 +Is:0.4183504273096932 that:0.12428470704047404 If:0.07172234740109103 That:0.03167676908442067 :0.3539657491643211 +this:0.7262407763427791 the:0.24998599144649414 tbe:0.010811525680528233 every:0.005451207832137252 :0.007510498698061314 +of:0.5595543299376843 can:0.2818386971454527 to:0.0625770505661903 and:0.02119963447712953 :0.0748302878735433 +and:0.13004635711911908 to:0.08587035413473472 is:0.022199284226551718 confined:0.02039827438866045 :0.7414857301309339 +and:0.09197308409717814 of:0.07609773870793017 the:0.057872812801843046 to:0.021271546562720643 :0.752784817830328 +sufficient:0.19349616807347986 give:0.14995361576955682 under:0.10915319625138242 furnish:0.08493480113499963 :0.46246221877058125 +to:0.012872162942525233 much:0.009912361030564589 party:0.008616667752435738 word:0.008574569374468047 :0.9600242389000064 +in:0.477573186221192 to:0.18136410083881738 of:0.11026753310213376 against:0.107516687708054 :0.12327849212980287 +to:0.21185227287959751 with:0.0879853570010889 by:0.08142719943097061 at:0.05916466166405458 :0.5595705090242884 +and:0.26885039146099926 with:0.08580493652291679 the:0.04469990422784613 of:0.04242885012731564 :0.5582159176609222 +wholly:0.44581875233639684 the:0.35462299141455894 Messrs.:0.03318180723772111 an:0.028236841763857688 :0.13813960724746557 +trade:0.0980357240832197 the:0.0970655111593106 a:0.011189230402696619 this:0.0055746340848557415 :0.7881349002699173 +of:0.38330455447269635 in:0.1365692273709568 to:0.13094921788652317 and:0.0827313674825763 :0.2664456327872474 +suffering:0.311751902663167 motion:0.09730594289811798 heart:0.04154604409190616 condition:0.03863911752458788 :0.5107569928222209 +and:0.09583841558415152 the:0.062176304810779695 was:0.04552196275679345 were:0.04449790905747474 :0.7519654077908006 +We:0.0293964676099398 ;:0.013048479326787484 the:0.011995480449026236 ,:0.006576678408322901 :0.9389828942059237 +men:0.25642088619782194 children:0.16095949681679605 people:0.12908745960932194 all:0.11841734832658846 :0.3351148090494716 +W.:0.005335658202170652 J.:0.004335840735878904 Smith:0.003606936140294055 who:0.003569796136283467 :0.9831517687853729 +told:0.26075606153499853 opposed:0.10099858283425975 occupied:0.05654956748075514 elected:0.04842159511532188 :0.5332741930346647 +and:0.21276945090452642 but:0.1343765313941781 as:0.09514988996660799 that:0.05999863006826031 :0.49770549766642713 +Clerk:0.6349510899949451 Justice:0.03518696144495479 Judge:0.003681073196727256 of:0.0015340700225315526 :0.3246468053408414 +he:0.7795926622992372 they:0.07863959467549948 I:0.06667446357312372 she:0.040892369763897526 :0.034200909688242145 +the:0.8598086825273166 tho:0.06671837396293734 The:0.03706313120440723 tbo:0.011513722987310796 :0.02489608931802813 +will:0.48497131302803037 until:0.39804995518873915 but:0.07790794235537632 up,:0.0224070797579765 :0.016663709669877767 +exactly:0.03645894349158187 entirely:0.03129753607512378 covered:0.021348714330037412 daily:0.020367873679252586 :0.8905269324240043 +as:0.14072903266862463 and:0.1300469292246244 known:0.03960335236744826 the:0.03942244757998792 :0.6501982381593147 +proof:0.16995947881843246 evidence:0.15705214080538296 danger:0.09636289582296573 doubt:0.08053652700550575 :0.49608895754771315 +be:0.49307056591803705 was:0.32378064274728807 waa:0.11981351383280602 is:0.024935854802602492 :0.038399422699266446 +has:0.03260143131261358 one:0.03210435137753257 and:0.02737189442908901 claims:0.0233181175229558 :0.8846042053578091 +of:0.9778608266750082 aud:0.0107554960983028 to:0.005705710759587314 until:0.003922280044711949 :0.0017556864223898954 +the:0.8364378578263721 these:0.10025411182788654 tho:0.02899884700317142 tbe:0.008511374406722463 :0.025797808935847388 +county,:0.2870102361862756 work,:0.04052267516727665 county:0.03791656253224973 community:0.025775455006927208 :0.6087750711072708 +the:0.2984317707292314 I:0.28646667326656494 his:0.07289942557662285 1:0.06888262033911581 :0.27331951008846506 +Texas:0.041541186972598045 own:0.034161079406292025 learned:0.027072240406043006 official:0.012069483468986232 :0.8851560097460806 +those:0.002823457253272015 persons:0.0004695154703159339 time.:0.00029178359215048223 of:0.0001722206042455094 :0.9962430230800159 +British:0.24504936357159304 very:0.10604914552184841 northern:0.1052057102202928 battle:0.09907251653195454 :0.4446232641543114 +ice:0.0024905472306553642 the:0.0011151845651935393 office:0.0009228608176677093 all:0.000827853618621808 :0.9946435537678616 +on.:0.13757859695699348 home.:0.09543374834220658 down.:0.058905697273354804 home:0.05772047800010204 :0.6503614794273432 +bottle:0.5230712100276514 announced:0.049224843553994285 in:0.03854936021054441 taken:0.0025221954820244612 :0.3866323907257853 +other:0.49834677445948405 the:0.009489252132956144 to:0.006471162341390252 la:0.005035412349207227 :0.4806573987169624 +H.:0.42302664209348734 M.:0.1457595626549428 J.:0.14234294328710181 C.:0.13234147228424437 :0.15652937968022373 +a:0.649409323921053 the:0.21912035025849536 any:0.04636813136873294 their:0.032727890714248704 :0.052374303737469964 +and:0.13560558526462657 the:0.048176326758702426 of:0.04157479309545819 to:0.02415382230732238 :0.7504894725738904 +building:0.07291020257182815 limits:0.06938238343935156 bonds:0.0643831401399516 block:0.062307304622421164 :0.7310169692264477 +and:0.15190792351331397 the:0.1353275466829919 The:0.1339337275578831 in:0.10622630834078452 :0.4726044939050264 +Into:0.5548452472003845 for:0.08610677164883741 a:0.07758392556214568 to:0.06232363510797036 :0.219140420480662 +and:0.21542032785451887 He:0.13327838406069628 which:0.12914440792518286 to:0.08650109751000583 :0.43565578264959604 +the:0.12504029470957082 a:0.07473714405755168 his:0.05318464946266571 Fort:0.036737828382418194 :0.7103000833877937 +a:0.36914749508311095 its:0.2750749074782501 one:0.1786802292530231 the:0.10213734778802454 :0.07496002039759128 +any:0.40931745137780273 no:0.25568496527586343 some:0.1370452611010278 the:0.10822393127379072 :0.08972839097151526 +highest:0.03433556767126553 the:0.032001044356539735 great:0.02112684451702204 general:0.019355387814476707 :0.8931811556406959 +the:0.43817576667891533 a:0.1887438064110454 of:0.102905871426201 and:0.035856904707899075 :0.23431765077593902 +While:0.29106739980001334 in:0.2337626605187681 and:0.11142833395278103 to:0.07136655920605792 :0.2923750465223795 +a:0.36003825595163486 the:0.245884056068824 his:0.09981486850026486 great:0.0520887157866466 :0.24217410369262954 +Court,:0.9024195035528128 day,:0.026882298903761797 that:0.010149373052742336 company,:0.009756058050282245 :0.05079276644040091 +part:0.5715899468240955 place,:0.05346084322954701 of:0.03890706057308265 and:0.024667415496879026 :0.3113747338763958 +animal:0.10673090785998464 boat:0.08309216036694113 storm:0.03159611609688581 engine:0.027110556724838534 :0.7514702589513498 +sum:0.1236996330414562 number:0.08734211924508546 Department:0.04486472802269066 County:0.03512564656710088 :0.7089678731236669 +al-:0.0672610305757302 even:0.048689141445436554 that:0.0345404695567306 last:0.025217863392820457 :0.8242914950292821 +Union:0.057260111223692775 ment:0.04546437455856697 was:0.03570641551851422 that,:0.035130209606851245 :0.8264388890923747 +of:0.11868978500530511 and:0.09978933443119946 were:0.07481376695734528 on:0.06893444900397802 :0.6377726646021722 +the:0.5376403249593733 a:0.11512965953131107 silver:0.03509016392241627 my:0.025709627105874155 :0.28643022448102506 +life:0.14879270150483076 rights:0.07563799590612232 life,:0.05020206638855614 nature:0.04529964040646549 :0.6800675957940254 +no:0.5853223484266078 a:0.1646599586060561 much:0.05337255543494579 still:0.04206695602306865 :0.15457818150932162 +the:0.16207974774682035 tho:0.03314910978999535 be:0.029157527244410102 a:0.029082737261546646 :0.7465308779572274 +In:0.4227119799929224 of:0.14588531885652414 in:0.10697205621008601 from:0.03162364888570041 :0.29280699605476707 +the:0.38977212323508054 a:0.0932719499452044 you:0.05845069336675731 he:0.05238795579602873 :0.4061172776569289 +were:0.2743875560011006 aro:0.2562143430810282 will:0.1956564144948 must:0.16825254112357654 :0.10548914529949467 +the:0.3100988019901504 a:0.043594938568140146 tho:0.02002332198540425 his:0.019173111606496564 :0.6071098258498088 +boy:0.5113180235824111 story:0.012942536914499331 man:0.006885733317715835 contract:0.006324021521242369 :0.4625296846641314 +their:0.2944129361457248 bis:0.2658422675665472 his:0.23840621272867793 of:0.04068404707932698 :0.16065453647972303 +easily:0.45851326058486047 de-:0.07907766940788957 numbered:0.04269492689759743 readily:0.0366237914370231 :0.3830903516726294 +hole:0.08122556377988653 water:0.07022890528761457 glass:0.05102112908075694 mountain:0.04436351383992562 :0.7531608880118162 +of:0.8449056959434228 in:0.03947759952177643 which:0.025779699411238175 on:0.020772635060046025 :0.06906437006351672 +H.:0.20876358143819038 A.:0.14360546345186434 L.:0.1070814195478532 J.:0.09362250096445719 :0.44692703459763494 +her:0.9365989296081135 his:0.03595863169488774 their:0.026904945267111333 the:0.00024176192049163485 :0.00029573150939570214 +of:0.18763828564207313 in:0.12031349765436455 street:0.07661173396314508 to:0.06809216537538466 :0.5473443173650326 +that:0.8808812181441594 as:0.09860955235756093 and:0.010231900583934658 when:0.003112811000760871 :0.007164517913583973 +is:0.5799429087287068 was:0.37355149414638517 are:0.031802105945968794 Is:0.01104858549977461 :0.0036549056791645457 +the:0.7254821008970871 their:0.058104004174374294 tho:0.03551794261924811 this:0.03506886050655395 :0.14582709180273634 +said:0.1271622038075276 other:0.0763596305046585 two:0.057181955474037184 three:0.04736877335509503 :0.6919274368586816 +to:0.24486268491718508 I:0.10284601386757554 and:0.10025782970060482 my:0.0900077454946938 :0.46202572601994085 +is:0.36353967733967646 Is:0.08089362580080164 was:0.07253691488008987 seems:0.0370140962828292 :0.44601568569660266 +southwest:0.5828564445754172 provided:0.10144290434061194 given:0.07810160887550803 held:0.054084794551215606 :0.18351424765724733 +and:0.20616206530008108 that:0.15571327441618624 can:0.11895166875296205 When:0.08019066542259562 :0.43898232610817495 +Smith,:0.008808743344689304 .:0.006197028352012141 H:0.0004206117052539201 Brown,:0.0003853563644772256 :0.9841882602335673 +united:0.2810949281721261 and:0.10536585190318469 was:0.07246541666885296 were:0.04101418715987568 :0.5000596160959606 +the:0.3707063022336935 a:0.17567870405868255 their:0.0729734243139653 fine:0.06778854987015438 :0.31285301952350425 +of:0.432230397987873 under:0.2728936972175508 in:0.1771788431343901 at:0.07431056559970571 :0.04338649606048044 +to:0.4325659906230067 that:0.21167328226446566 when:0.09329528140627785 and:0.05578440341035146 :0.20668104229589834 +and:0.19441826806906498 to:0.17955118723370986 of:0.11586533965387016 have:0.0586919156430847 :0.4514732894002703 +a:0.44418443532033336 the:0.27292693079884517 A:0.11966567864566181 The:0.05741806915988708 :0.10580488607527262 +he:0.4354094877286527 and:0.029759097381248968 toe:0.024938551465619862 on:0.024755034642079593 :0.48513782878239886 +W.:0.1632553939521997 L.:0.08225146595637352 A.:0.08035903665308715 F.:0.0798271082586001 :0.5943069951797396 +ar-:0.11016145555687103 of:0.09020806048353915 and:0.05608685094221625 the:0.017660639614867038 :0.7258829934025066 +persons:0.33261329564479913 man:0.17524185720508487 men:0.06662636995652145 people:0.04799618080223693 :0.3775222963913577 +the:0.550406761962873 Lake:0.16131134343301526 a:0.130850878872868 tho:0.026226654348455888 :0.13120436138278788 +of:0.35706606428073223 was:0.28222612114052664 the:0.16668295737667535 a:0.07686261173519568 :0.11716224546687007 +and:0.19012946174242568 Mr.:0.18410191519646849 The:0.1409946416317897 Tho:0.056177346792693914 :0.4285966346366221 +serious:0.9999999918381082 the:3.152109774126476e-09 of:3.106321043411273e-09 greatest:9.41478517698306e-10 :9.619822203186968e-10 +and:0.3022809588052112 so:0.08945722656142359 ed:0.06875386075750604 to:0.051144383779807394 :0.4883635700960518 +head,:0.02959350008758504 lines:0.014056903661501918 that:0.012986683207317662 city.:0.009304072784857807 :0.9340588402587375 +and:0.11650386826221866 of:0.07194159622333193 the:0.06660235185203574 to:0.034074393628613454 :0.7108777900338002 +.:0.08518110121662333 to:0.054063569978598604 and:0.0445807655042893 ,:0.03227848265618773 :0.7838960806443008 +back:0.289137346136833 down:0.22512027639763227 up:0.17433603571338752 directly:0.08272786120062324 :0.22867848055152395 +house:0.09187419221537772 State:0.05011125712197897 Legislature:0.02478469792495147 There:0.02409810253379155 :0.8091317502039005 +and:0.3317838531860481 is:0.13764075423923103 of:0.09386856227631654 as:0.08710689819617695 :0.3495999321022274 +after:0.6806261695377868 in:0.11231050205426912 of:0.05889808679296021 over:0.052609081829022124 :0.09555615978596185 +this:0.8543459283046123 any:0.13111830589778548 the:0.00930237214034277 a:0.0034205239260895514 :0.0018128697311700834 +place.:0.08821447642503577 government.:0.048022347550903774 But:0.026776843268580087 ?:0.02548409429320162 :0.8115022384622788 +money:0.32979921016507735 or:0.036948100037147706 work:0.036506945697069165 cotton:0.030753992607352756 :0.5659917514933529 +of:0.4107205288376075 in:0.10756458558537764 that:0.09381241895256898 and:0.09031934683192928 :0.2975831197925166 +first:0.07685646123981249 secret:0.049326254445637624 civil:0.04357291278052675 one:0.03782528324833901 :0.792419088285684 +party:0.03981757183863653 fellow:0.024051894995606116 own:0.018044968796842448 agents:0.00660332187326761 :0.9114822424956475 +tl:0.3737216636504761 they:0.2552451692251723 he:0.19175800062345327 we:0.07451032072873157 :0.10476484577216676 +he:0.4883843999231603 that:0.3268307475095812 who:0.0882753075187281 whom:0.04916816798325867 :0.0473413770652716 +that:0.15166230424648894 of:0.04916158288830069 and:0.03200143686440014 to:0.021256125533831 :0.7459185504669792 +No.:0.2555924358526944 at:0.08048678028730206 4.:0.05346234433574442 section:0.05311146646451237 :0.5573469730597467 +of:0.8686349302250949 ot:0.05200232201150495 are:0.0336477219517769 were:0.010501403883815406 :0.03521362192780771 +the:0.33363436632027565 a:0.056802974846059874 every:0.04374644884052518 this:0.04214428085677124 :0.523671929136368 +a:0.3449153260437239 the:0.3238330794097973 tho:0.0976759886153144 his:0.017372339197808964 :0.21620326673335558 +said:0.14311279418946934 the:0.057136403348234034 a:0.03247269318625816 buildings:0.02848566991682561 :0.7387924393592127 +you:0.3967915289311774 the:0.27982644079589775 a:0.09825698654489211 I:0.07437239980824029 :0.15075264391979246 +of:0.46465574420945577 and:0.10035333071885666 in:0.07980924731353374 to:0.04050442440711304 :0.3146772533510409 +the:0.24467165672673719 this:0.0683112348823202 a:0.04562303893337873 your:0.03300676849532443 :0.6083873009622396 +he:0.16427087581514657 be:0.149727563269656 and:0.11273629411295642 It:0.10848991039115444 :0.4647753564110865 +and:0.3378457522235067 are:0.21689459064026392 is:0.17346566163994775 continued:0.14803510959240138 :0.12375888590388023 +K:0.07579675101150322 vice:0.026977473693458348 mission:0.01201863524446801 the:0.006791677720993222 :0.8784154623295775 +in:0.23592127068165242 and:0.013415297410411557 well:0.010604235336933165 alone:0.008076206374161374 :0.7319829901968418 +laid:0.25461458733393955 trade:0.032378548545759216 object:0.021147962992480136 be,:0.009598300239627785 :0.6822606008881934 +W.:0.06591660960349749 J.:0.04297407706443123 John:0.04173707020367379 .:0.038730043500743626 :0.810642199627654 +ground:0.1675354021085678 city:0.06729147692902943 average:0.01967823248823378 name:0.016495806122729797 :0.7289990823514392 +them:0.0765804758912858 ing:0.05053101204098749 and:0.034458679235331295 bonds:0.01697868750233461 :0.8214511453300609 +in:0.3450457829948012 the:0.18674836404569511 of:0.0652839349668346 every:0.059250675205176795 :0.34367124278749217 +of:0.13755283163413431 and:0.08753539344956758 to:0.08460284722883188 in:0.0491991507198052 :0.6411097769676609 +love:0.7998784066339619 it:0.13077451549289992 aro:0.005522794051825345 doubt:0.0032510910578722645 :0.06057319276344055 +the:0.3394376257531834 by:0.16653406480985333 were:0.08673833804798275 all:0.07473261000022925 :0.3325573613887512 +any:0.5066720097333898 when:0.1689233370415039 the:0.16231918354670227 no:0.10543990495794511 :0.056645564720458896 +according:0.06609846418360127 only:0.03234946860755918 up:0.023243835942701383 subject:0.015505348918022268 :0.862802882348116 +the:0.2828736811616123 The:0.1341230660690459 a:0.06004247927415635 that:0.05224014900950611 :0.4707206244856794 +that:0.21638678010236348 and:0.18112002940212962 where:0.14542238888451742 when:0.1103631045273415 :0.34670769708364796 +to:0.9198736403205262 the:0.016536574859550457 of:0.014553401341650838 at:0.013997550810100918 :0.03503883266817151 +relief:0.2967993477916293 being:0.1668573937944396 been:0.02041765204193751 any:0.014702552819114574 :0.501223053552879 +must:0.4341134915061128 we:0.20792226552052212 I:0.18138152108204672 but:0.08871082951404757 :0.0878718923772707 +are:0.7384873031889523 is:0.09509151996524152 aro:0.059152649895420364 have:0.051263901836356075 :0.056004625114029746 +the:0.19804076278714525 of:0.1865212020867235 and:0.14903970711246545 is:0.10554988263104016 :0.3608484453826256 +most:0.03178866964892645 same:0.02914916123393015 of:0.018715882260790045 United:0.01733913835867186 :0.9030071484976816 +course,:0.86843814355888 a:0.04013824214437984 any:0.01886172358852066 the:0.016356675753281622 :0.056205214954937945 +and:0.09659525967682912 the:0.09239258179608704 to:0.07090177948007143 by:0.060098111688955805 :0.6800122673580566 +was:0.3130527969972098 had:0.23349951355717147 is:0.1557982204394509 has:0.06244791232088819 :0.23520155668527964 +month:0.02460477959626103 his:0.009323833213260135 the:0.008707256317985378 world.:0.008402349701693478 :0.9489617811707999 +but:0.06129199952196423 that:0.04344754684136049 !:0.03078188075123482 nnd:0.023697847681868875 :0.8407807252035715 +day:0.3826269328360595 that:0.08142394794858193 and:0.06202654139085667 then:0.04796501908880644 :0.42595755873569535 +her:0.6275409127668228 them:0.04767524778963708 on:0.029300503652556504 the:0.025779458038235472 :0.2697038777527482 +All:0.45367737978608497 and:0.05332555362527835 the:0.049317293976833515 of:0.04687628359225336 :0.39680348901954976 +the:0.18611438649899997 be:0.08682874313914235 a:0.03274631205470599 give:0.023848072372558992 :0.6704624859345927 +of:0.2614936247623998 for:0.19638628615750547 in:0.16748027230230736 to:0.09369570194056595 :0.2809441148372215 +been:0.17753649434274807 as:0.11606404276450503 an:0.10748213485582396 taken:0.043181294731157276 :0.5557360333057657 +and:0.09411062112753256 it:0.038682260697108506 which:0.023208754395278395 which,:0.019406627487908706 :0.8245917362921719 +lives:0.011971123787534739 living:0.00972534728490085 friend:0.0015016981079161804 friends:0.0014922905890281132 :0.97530954023062 +moro:0.3334868779931627 sun:0.16129925577906865 morning:0.14807690348590127 more:0.05166674022550407 :0.3054702225163633 +the:0.33040001825023896 many:0.12836628042672676 long:0.11872837173904122 with:0.10090721188156271 :0.3215981177024303 +of:0.5895711263035146 to:0.20215495180757126 is:0.05031733033735716 he:0.020405932630709334 :0.13755065892084775 +of:0.6899990594566556 in:0.02615589270717082 and:0.02296876614513287 to:0.021433225149211838 :0.23944305654182899 +to:0.09468050993627689 of:0.0866025312524021 ground,:0.04919724742225801 above:0.04348363997297494 :0.7260360714160881 +!:0.0653771750546656 by:0.06378169053720835 so:0.04413683582589212 there:0.03323769623494231 :0.7934666023472917 +own:0.09447643908858455 election:0.0928820185087228 legal:0.0491919454017755 supposed:0.04066128827524439 :0.7227883087256727 +of:0.20388179784896718 and:0.16060976330107554 to:0.035492725473593854 the:0.03467914083988434 :0.5653365725364791 +You:0.07044517027618759 and:0.03171776089014596 We:0.01030809521471465 They:0.008061737562581597 :0.8794672360563701 +to:0.3059278134297062 and:0.2598511267718859 the:0.1750183128762511 in:0.05985905158728054 :0.1993436953348763 +two:0.6178652191018589 more:0.27892225601505555 moro:0.06728100489603785 other:0.01808451173909067 :0.01784700824795711 +would:0.7247627943562727 can:0.19143052792162782 may:0.05479917778349666 will:0.0184538304465864 :0.010553669492016271 +before:0.012013683897296658 they:0.006171707548934287 it:0.0045527777499771134 fifteen:0.004523114899005503 :0.9727387159047864 +the:0.41980479691029554 from:0.3013454846986279 by:0.04786361513673806 a:0.04583965707575731 :0.18514644617858125 +indeed:0.14367568340241776 possible:0.0641679190229716 not:0.05311680973286429 complete:0.042993627759989855 :0.6960459600817565 +past:0.04236947421790198 last:0.033876371153332877 next:0.03387367512278453 first:0.018524997906213612 :0.871355481599767 +the:0.8423249806242474 tho:0.04349606213559894 tbe:0.025837535957125755 building:0.01090310838785989 :0.077438312895168 +was:0.458940443542558 married:0.2297689088687259 is:0.1193286802569904 became:0.0798488665542757 :0.11211310077744997 +rank:0.05357156391104836 construction:0.050725942686782974 honor:0.040958775029771764 principles:0.01905538990322683 :0.8356883284691698 +of:0.8232315949280787 and:0.05366479546992647 tbe:0.038278951982456885 the:0.023968707494210005 :0.06085595012532791 +and:0.055683789320292845 fairly:0.05204208725811471 paid:0.04520342042060676 many:0.025424069928601654 :0.8216466330723842 +of:0.3176793872087495 which:0.21834836239083674 and:0.14757793196191618 that:0.031476899786350966 :0.2849174186521464 +of:0.5968383009296359 the:0.14940782287499169 or:0.13036279072254986 by:0.04921647875584814 :0.07417460671697429 +whom:0.2701862307200705 what:0.25196574898555996 that:0.24148773490559092 which:0.09026463741023945 :0.14609564797853924 +We:0.6367693368536321 which:0.07282167611410242 that:0.0554291708691588 and:0.03309665401313252 :0.20188316214997423 +o'clock,:0.7816124105117556 o'clock:0.20513404813297678 and:0.00037650176845895435 held:0.0003308838185866219 :0.012546155768222074 +in:0.36538413518290114 the:0.10686465480398824 with:0.06346299568721862 and:0.028200528293961847 :0.4360876860319302 +by:0.21175984922047042 for:0.1874456613493878 in:0.17830223080297505 of:0.17395026054813906 :0.24854199807902763 +a:0.8413742199659998 one:0.11779377378183614 u:0.0018881762743341508 ti:0.0006949670399487238 :0.03824886293788129 +they:0.2989699844168681 you:0.20799644963528993 we:0.11236319177197077 I:0.07750462921997385 :0.30316574495589743 +last:0.05189353950005991 past:0.04821031485887191 of:0.041191073305702944 the:0.03511055562208648 :0.8235945167132787 +a:0.584565375607871 per:0.11041251581868772 of:0.09836473361320157 for:0.07041464070594311 :0.13624273425429645 +of:0.21968260128984468 The:0.10948390603870779 and:0.07671032253526597 the:0.054757000258684185 :0.5393661698774974 +Mr.:0.15421759568082843 and:0.14426895393312233 his:0.0888751531184173 the:0.07506192830961372 :0.5375763689580181 +was:0.2669908142214956 thus:0.21624494072388095 had:0.059318277088086714 is:0.053477158906818076 :0.4039688090597188 +for:0.43143185557305935 and:0.07125327262812217 of:0.006200424282880373 on:0.004939393755126423 :0.4861750537608119 +of:0.5527448591037794 and:0.10982940856950626 for:0.03772826562793555 to:0.025341176399608485 :0.2743562902991703 +the:0.47911798414004236 way:0.1844762465557056 way,:0.07603230897794404 these:0.023750921967755047 :0.23662253835855288 +scarcely:0.6079014862210363 not:0.3830916400781144 also:0.006459266078698816 ever:0.000868797516648557 :0.0016788101055019177 +country.:0.1820727380209968 state.:0.10784409791118818 city.:0.05245797271036916 land.:0.04655464059723623 :0.6110705507602096 +the:0.03208700490582436 other:0.026238223355027412 great:0.01986782564378633 re-:0.015675543055865444 :0.9061314030394964 +a:0.17496212070404063 the:0.13539388447445216 for:0.06313782012751461 their:0.06192087281272191 :0.5645853018812707 +the:0.013486413816293367 ;:0.008849276849510241 and:0.008768672272000302 team:0.006989011371571858 :0.9619066256906242 +County:0.3371769015558007 county:0.1526271102043948 ty:0.04273875651770541 and:0.01651590966186746 :0.4509413220602317 +of:0.7198553475989197 an:0.07938745348651292 is:0.07384835967569559 with:0.06608474965788545 :0.060824089580986285 +at:0.6467994967429127 only:0.09414833550432605 for:0.08457434883555366 that:0.07996918252005808 :0.09450863639714947 +and:0.19884178013037393 in:0.16706790536433125 of:0.14206506794415674 to:0.058168860725594566 :0.4338563858355435 +that:0.8300757155206023 he:0.1323617170891524 she:0.007046287228624748 there:0.006020628206633757 :0.02449565195498678 +of:0.14395187497203057 and:0.14379441973276663 to:0.08001549344505438 the:0.0410110072640803 :0.5912272045860681 +the:0.49304232373022855 this:0.09596029532105967 our:0.07596039911426015 their:0.05325462848504983 :0.28178235334940177 +held:0.33516435977511977 proved:0.12155651945114304 line:0.0049671701888728435 given:0.003545196921344861 :0.5347667536635194 +own:0.40509365554793875 city:0.147821439974508 former:0.08471127785214289 old:0.06794510971972209 :0.2944285169056882 +not:0.35967220940729966 to:0.23407545379364925 also:0.19446118695253647 on:0.060874821138317894 :0.1509163287081967 +been:0.30482079826112257 a:0.09608347407978703 the:0.06049158121906101 not:0.03781805617538354 :0.5007860902646458 +the:0.9021508608376336 a:0.030326125871193092 tho:0.023108855055962312 his:0.012101382898435598 :0.0323127753367756 +such:0.4779680756339837 rate:0.019568026651285538 article:0.010709015205343923 one,:0.009750978580282819 :0.4820039039291039 +the:0.16567132784461316 a:0.09750624092300263 of:0.0959110612089624 The:0.09522206175499423 :0.5456893082684275 +the:0.326286271847119 a:0.1538283884300725 and:0.052857713141032596 at:0.04307839746972834 :0.4239492291120478 +sum:0.028388654964891416 city:0.016566287645967764 number:0.01634691817279001 use:0.015042598747664494 :0.9236555404686863 +case:0.21682503465741412 beautiful:0.20330117247077695 place,:0.17969059396967665 dark:0.07971863901135497 :0.3204645598907772 +about:0.3175589102323891 over:0.2978344284656855 to:0.18078366325510803 into:0.0987250779803734 :0.105097920066444 +a:0.30662576486145304 to:0.11440628498692004 going:0.11136254286118373 on:0.10658397672530916 :0.36102143056513397 +up:0.23280626141170313 out:0.13073142380766178 about:0.13064110369142276 over:0.12951052150426573 :0.37631068958494657 +The:0.6925574659377741 This:0.030212796798634492 She:0.02063439329306407 In:0.017086150486497493 :0.23950919348402977 +the:0.32844717091997633 in:0.17024932960369862 was:0.07899042246419168 do:0.07623406915872943 :0.3460790078534039 +of:0.2748325184155688 and:0.14240998252403136 the:0.05834535644592961 to:0.025917143275094312 :0.4984949993393759 +years:0.5021813312423139 millions:0.07170206041148568 miles:0.035564130344547897 of:0.012433342085744549 :0.37811913591590796 +together:0.4072335857666272 up:0.31690909409816054 down:0.05435124230899359 hand:0.04027470315486775 :0.18123137467135086 +the:0.11616760944403831 his:0.09369672869902795 a:0.045990970852804944 to:0.03944609217514992 :0.7046985988289789 +floor:0.1937609841800399 same:0.12458807817330728 matter:0.10056073947152275 city:0.08797799283554278 :0.49311220533958733 +of:0.0965283855414658 and:0.08723794291684552 the:0.05123889886421795 a:0.024132069392506037 :0.7408627032849646 +We:0.9999972471830091 you:7.816341065779688e-07 by:4.578387725549651e-07 that:4.5476088520583203e-07 :1.0585832265515852e-06 +the:0.11940485905835703 and:0.10305751948220465 of:0.06603662411936218 are:0.037938676229746005 :0.6735623211103301 +the:0.3518904425831596 of:0.03623937010242528 in­:0.022924200788636814 other:0.02229480632090176 :0.5666511802048765 +or:0.9828277737678791 much:0.007409758465321084 nor:0.0003719791223587014 with:0.0002081398877646849 :0.009182348756676449 +to:0.8804800871107549 and:0.026563652405220125 g:0.016338063848889306 by:0.011130326229151383 :0.06548787040598429 +of:0.10925607537147328 the:0.0947764861142959 or:0.06624783140258758 and:0.05659114280413681 :0.6731284643075066 +Mrs.:0.10260224893044917 and:0.07637598799240004 the:0.06735870212313196 Miss:0.0667612699129091 :0.6869017910411098 +were:0.8867475719423576 the:0.0358478304309764 many:0.023478786598202375 of:0.017983423700286674 :0.03594238732817691 +the:0.9728373147004469 a:0.00918805178695177 tho:0.0071661528451968624 some:0.0019630996022795937 :0.0088453810651249 +p:0.39915448459550523 o'clock:0.1882789930071076 p.:0.14340759546868814 a:0.12095893536403217 :0.14819999156466696 +is:0.6582613689950992 was:0.14605921268518718 a:0.04095474853255322 Is:0.03617802880936194 :0.11854664097779828 +meet:0.0987498315133622 hold:0.09306519551455679 lit:0.03064944889064246 carry:0.02923271864044983 :0.7483028054409888 +and:0.03272175354513943 it:0.017450693305427405 in:0.016275842325123236 life.:0.015879353803801368 :0.9176723570205086 +and:0.32091473759226746 as:0.23946540600805527 or:0.05592636553251514 but:0.01910656039062203 :0.36458693047654006 +hand:0.21736358980567866 arm:0.13783690482223232 ':0.13283685593905897 him:0.05666548447958106 :0.455297164953449 +side:0.7625251923293164 part:0.09019678289945934 surface:0.0891655489517716 sides:0.024189004665818616 :0.033923471153634054 +of:0.7091688202179035 to:0.08050479844053511 in:0.0653909080147726 and:0.0341290562074462 :0.11080641711934262 +of:0.5578462034981926 and:0.1115562589895631 in:0.06458319780443979 with:0.06339749132530213 :0.20261684838250255 +or:0.8222445204821952 without:0.057942007723672674 and:0.05243623112713047 the:0.03565186425454304 :0.03172537641245874 +of:0.10897811024973914 The:0.101176178104307 the:0.09406597465848188 and:0.07061362390122716 :0.6251661130862447 +pay:0.13923541643400605 keep:0.10753536929050515 make:0.09502248761469245 by:0.0904231822134931 :0.5677835444473033 +right:0.15368601500307832 success:0.0038740482704150616 get:0.0031774122883953854 death:0.0030473579931959236 :0.8362151664449153 +and:0.10678521045607128 of:0.06191852063036421 the:0.05609896510598143 a:0.04125455337274999 :0.7339427504348331 +do:0.27434168399463 give:0.09158248044006195 admit:0.08709244323061667 have:0.06635376539881374 :0.4806296269358777 +":0.0473222470434368 f:0.042776732278341424 I:0.018927230204308795 .:0.017778277305082118 :0.8731955131688308 +it:0.44623714363341077 there:0.1474814774306079 he:0.11358895779273565 the:0.1131139945166589 :0.17957842662658677 +the:0.80817204132025 a:0.04330659279560803 tho:0.041035765392552846 tbe:0.014389532290198168 :0.09309606820139092 +in:0.7836669174183369 rapid:0.026754605193200526 the:0.021723767041360444 to:0.014399958000819942 :0.15345475234628225 +is:0.27968877407392834 continued:0.17817892143193884 failed:0.08671207734718987 began:0.08364696131569621 :0.3717732658312467 +had:0.7621945619701251 has:0.2347887568714413 and:0.0007700119507170329 was:0.000703603502752337 :0.0015430657049642041 +,:0.07591518660767319 and:0.07525402800979847 the:0.04175958940227114 of:0.041056519441068036 :0.7660146765391891 +was:0.8989677500264796 have:0.01959570105830984 were:0.01181234988924589 they:0.006581198158361173 :0.06304300086760362 +is:0.7204085597141583 Is:0.11567985618418562 was:0.11131427155249626 ia:0.02739623968337932 :0.025201072865780487 +and:0.14829551405210073 to:0.048159452564473564 10,:0.039910948182129515 11:0.037818623056040925 :0.7258154621452554 +ago:0.8695037440304795 old:0.01967277439208757 old,:0.015072555763519412 ago,:0.012687365310557763 :0.08306356050335571 +prayer:0.031128168912059717 pain:0.026365322306709543 the:0.016442191437184527 a:0.01609958673376829 :0.9099647306102778 +-:0.33161352513050574 The:0.16082102745704943 the:0.1503140090617013 for:0.027087950576096413 :0.3301634877746472 +no:0.21394640858238614 many:0.13569564326370448 two:0.07772630678722653 several:0.07727679327916247 :0.49535484808752034 +the:0.7284646759367714 this:0.04226048259361782 tho:0.03888963113630407 that:0.025704432929209407 :0.16468077740409748 +Is:0.11228880546357571 is:0.1058015078079819 has:0.030730910007722417 should:0.030443450499767828 :0.720735326220952 +and:0.29605755252081434 of:0.15270286132777622 to:0.10765981720134643 on:0.08196605480345155 :0.3616137141466115 +principal:0.4596257906125495 members:0.04046893308633928 one:0.026517415860412206 that:0.02294276228456783 :0.4504450981561312 +have:0.18849790911290087 not:0.1438462338510985 be:0.0650039072987951 entirely:0.04333162365556357 :0.5593203260816421 +a:0.45747773029085714 an:0.08146950650404142 case:0.024101999023040607 manner:0.017099811319473888 :0.41985095286258695 +short:0.9607277002897544 the:0.007491708952408851 long:0.006310881424052834 second:0.004212443417664127 :0.021257265916119723 +city.:0.02922479939507146 street.:0.019557644356711406 south:0.019372462809951606 place.:0.013142353885771538 :0.9187027395524939 +department:0.40298508479322437 developed:0.05073831547060864 are:0.02529168649587051 of:0.022415375802473284 :0.49856953743782323 +been:0.4424450067686932 lived:0.08811625840513719 passed:0.04912730618542059 come:0.04272868239613899 :0.37758274624461 +life.:0.031268602922654064 others.:0.008043210227884495 every:0.007948035139750917 time.:0.0020016610199315834 :0.950738490689779 +will:0.2607689711195231 and:0.10151822474309388 I:0.0432035181193118 but:0.03569868820328462 :0.5588105978147866 +sales:0.07348814551482175 and:0.060149731950285085 of:0.05013437622200687 bushels:0.04430089517080488 :0.7719268511420814 +him.:0.018753282070218192 up.:0.009023962455359276 out.:0.008441262116724833 all.:0.008087014430584115 :0.9556944789271136 +was:0.08565968203197169 think:0.07129902844266346 saw:0.06236329517678645 heard:0.06185013177109491 :0.7188278625774837 +carrying:0.13407442481867837 as:0.12833800221147165 took:0.1011950130173198 got:0.07601610588619499 :0.5603764540663352 +most:0.06657050598107962 world.:0.03237698906315455 various:0.017015845427475623 the:0.01602661649552228 :0.8680100430327677 +know:0.07736638684953491 great:0.0739737143207199 faithful:0.04434780853334294 regular:0.042949146448261144 :0.7613629438481411 +the:0.2460770505601431 a:0.22672885200746234 to:0.08206109795268071 an:0.04634624412237971 :0.39878675535733404 +green:0.19571824216069386 to:0.18957462098203032 in:0.185287885434439 made:0.14168893399140364 :0.2877303174314333 +the:0.5263784316857139 said:0.3147399447238902 a:0.08713308870384459 on:0.04664436912632249 :0.02510416576022878 +permitted:0.904959294077081 finished:0.017518534290568957 an:0.01727922857267175 entirely:0.016166265418794377 :0.04407667764088387 +sound:0.13783075386635507 eye:0.02038235710686895 practice:0.013698988232321633 I:0.012450190230530572 :0.8156377105639239 +when:0.4737106175829617 if:0.11537910583314065 than:0.06906592141000373 that:0.029699839113318437 :0.31214451606057564 +stream:0.21460864235290114 well:0.12203122652806259 character:0.03738578342786235 spot:0.007005666307401876 :0.618968681383772 +and:0.14799648244841376 meet:0.0566232848907164 to:0.032036975230489116 the:0.030850307465403935 :0.7324929499649767 +the:0.43539902717350853 that:0.03643196851465886 this:0.012165051136976714 every:0.011719270717107667 :0.5042846824577484 +not:0.9572036502943331 the:0.018218861654436654 any:0.007389834576528911 no:0.005737305330424838 :0.011450348144276557 +the:0.47909907834230225 to:0.04540259243015019 an:0.018516623021624747 a:0.017484741545805472 :0.4394969646601173 +block:0.461841588453172 township:0.15592173404652712 Township:0.14536401309833957 the:0.11503260363466909 :0.12184006076729229 +months:0.16119931977897942 re-:0.06290317193703074 and:0.030820403557426636 of:0.026786202096524044 :0.718290902630039 +the:0.2349985577037232 to:0.18514149147566045 and:0.08751454530384235 his:0.07188543702929966 :0.4204599684874742 +own:0.3013614094830303 military:0.01947711184570458 present:0.007582113294757444 laws:0.005887941708032089 :0.6656914236684756 +reports:0.011640962905062353 life,:0.005277896264170547 place:0.0041522686445801555 life:0.0037117278473663114 :0.9752171443388207 +of:0.5829693940634593 that:0.08672524790367482 and:0.05799445098363669 in:0.04296286030049224 :0.2293480467487371 +of:0.3070048184944366 and:0.09579031311326681 the:0.04769672715260009 in:0.042499702472522854 :0.5070084387671736 +two:0.8942796752420448 more:0.06856160567450222 three:0.0153131973064989 the:0.01226513906689121 :0.00958038271006313 +and:0.00015819611813872974 City,:7.505814349330562e-05 Mr.:5.0151354451424464e-05 brought:4.8028667694144625e-05 :0.9996685657162223 +of:0.7586008194977971 told:0.012140642113021568 asked:0.009296615930161822 to:0.007704112678897967 :0.2122578097801216 +i:0.9033369287138768 the:0.01857089176036309 are:0.011876143727831792 and:0.010501512655137685 :0.05571452314279061 +public:0.029215682302099418 the:0.027129997926431317 same:0.02217347948696866 said:0.020196645083871225 :0.9012841952006292 +complete:0.35898440510177604 the:0.1260612755352143 faithful:0.10267936729194069 correct:0.03723341872232555 :0.3750415333487434 +last:0.8407376436823419 .,:0.06960207446876615 night,:0.03344468024320684 work:0.011044315126816596 :0.04517128647886841 +each:0.12178102643507757 which:0.09975009259686866 them:0.06950728225478897 wheat:0.06100717153338504 :0.6479544271798797 +public:0.5666776181224471 his:0.01081657063449131 popular:0.009471493284756254 the:0.007100622025537058 :0.40593369593276823 +of:0.23833494996464086 the:0.1635985954348678 to:0.1028168038816712 and:0.09251651538102934 :0.4027331353377909 +or:0.5725412948760618 to:0.01560038141699483 broke:0.01213217877232694 at:0.006882644647835819 :0.39284350028678083 +the:0.1648848750477823 and:0.06501311662046198 was:0.05548873423983684 a:0.054781360195994715 :0.6598319138959242 +and:0.22597086955166493 that:0.221818024001701 to:0.1301536809429048 but:0.12151662646096457 :0.3005407990427647 +protect:0.21291120079131715 form:0.0640100761190909 people:0.035277053293931035 extend:0.012982190891152458 :0.6748194789045083 +down:0.2495541562913772 first,:0.14649134175597195 to:0.08937774188792211 following:0.08851650024680334 :0.4260602598179253 +cross:0.10327789771661468 big:0.09590657888225079 James:0.0695008848227299 coun-:0.04744473083206705 :0.6838699077463374 +Just:0.11699784609883937 is:0.11470993132633053 hand:0.06200333573938166 succeeded:0.045616591700374645 :0.6606722951350738 +Mrs.:0.3917867598110429 and:0.08687281412653855 Capt.:0.043975043441057404 of:0.038461020912055284 :0.4389043617093058 +one:0.4001266065235229 some:0.18445742155543376 con:0.024343689139838275 many:0.013051888996991416 :0.3780203937842135 +for:0.640103628740728 that:0.08478067066860966 to:0.057635062047054555 with:0.04484670114589724 :0.1726339373977105 +soon:6.323114692388923e-06 well.:5.463088831087517e-06 early:1.0915994918969755e-06 quickly:1.0544546644677611e-06 :0.9999860677423201 +to:0.4022989785864486 may:0.1188570740474644 will:0.09820778223073307 should:0.06797880525380087 :0.31265735988155324 +of:0.19983899991589257 the:0.17138897418343882 to:0.14662378592038808 by:0.1278789764567844 :0.354269263523496 +furnished:0.07914801621617538 saw:0.043432091354757306 make:0.02339116669108658 made:0.022513060038628598 :0.8315156656993521 +the:0.3274499064388737 other:0.11699805778013246 persons:0.043303597341322046 of:0.039381201602169506 :0.47286723683750226 +put:0.3085896403871438 been:0.19704954239729527 turned:0.15936033020617438 taken:0.10254862947920304 :0.2324518575301834 +but:0.027946371454187127 course,:0.015279513253014809 purpose:0.014645170343564964 government,:0.01291528850214483 :0.9292136564470883 +it:0.49042156538763604 It:0.18104633754101154 you:0.1237245657930694 the:0.05837700456354614 :0.14643052671473689 +with:0.40595007260205374 has:0.18284106421209803 In:0.15977735424619197 of:0.12941596018015872 :0.1220155487594975 +voting:0.23392266442941578 the:0.17309386015844427 to:0.0910871697717464 north:0.09101937633500871 :0.41087692930538483 +once:0.22747737389206357 For:0.17692421798172842 about:0.09585087628948903 for:0.07975181093560782 :0.41999572090111115 +the:0.5237938255706532 a:0.15557621329025267 A:0.06207620658460847 The:0.037438302979753285 :0.22111545157473228 +said:0.8160470381644821 farm:0.01195848640964129 same:0.007980752742704867 the:0.00667535555768302 :0.1573383671254886 +and:0.1942517159757816 is:0.17150741013089651 which:0.12486609245923733 it:0.11123340162771153 :0.3981413798063732 +far:0.13330226514770382 will:0.10817708824981745 If:0.03238984715266327 are:0.019436654865177386 :0.7066941445846381 +The:0.4887650133725935 Mr.:0.25112557052887124 Its:0.07685972085003227 and:0.04779981687464222 :0.13544987837386074 +of:0.13675775421515246 and:0.1328315972090451 is:0.07696698040333295 with:0.07574843261973678 :0.5776952355527326 +of:0.4755838178341062 oi:0.3215639489752149 in:0.14823649489744778 The:0.03479552192878379 :0.0198202163644475 +things:0.02347903440541079 people.:0.016890105355702945 years.:0.008344031667456108 people:0.0022471264632639727 :0.9490397021081661 +and:0.21156592602495702 of:0.06503086550059607 the:0.06502840637343468 or:0.054282174574111934 :0.6040926275269002 +sort:0.23084366952407984 man:0.1253616584487287 style:0.12377112749181071 capable:0.04887991489605889 :0.4711436296393218 +J.:0.51553237696839 B.:0.22564532183998645 T.:0.09635558021889021 E.:0.05446580602669183 :0.10800091494604155 +been:0.24011541618821947 no:0.1297423686408957 of:0.07043632248793381 his:0.0422923803141575 :0.5174135123687935 +at:0.9134492545582589 a:0.04192117213762631 that:0.012177488261980455 in:0.008393978383871355 :0.024058106658262933 +The:0.2735082078181418 the:0.2708523521513046 A:0.08048713256870851 This:0.053956975437799155 :0.3211953320240459 +believe:0.392437279388989 forget:0.3550527334370341 allow:0.052172076626626714 always:0.03868987204619225 :0.16164803850115816 +of:0.19441063510658 -:0.014410599704629342 to:0.00866027220204715 face:0.008011365914926754 :0.7745071270718167 +dollars,:0.05630682916073625 deep:0.008747962034334467 ;:0.008721726308209521 Congress:0.008195447920636666 :0.9180280345760831 +of:0.33422544158020073 Let:0.22601985983615344 or:0.12886296170732583 to:0.11966538883746379 :0.19122634803885621 +worst:0.09012363074513845 duty:0.07374548780374565 money:0.04822839361598584 treasury:0.04581556876560154 :0.7420869190695286 +of:0.6791023047835455 was:0.09143050006864865 is:0.057474298739405905 herein:0.043238153851221726 :0.12875474255717814 +of:0.19951046972975284 and:0.06484371357200469 the:0.0499760843779093 named:0.04108890365218289 :0.6445808286681504 +per:0.1113394599885076 the:0.07821661597256716 was:0.051361725227913324 and:0.047229882767621696 :0.7118523160433903 +of:0.8950503605074023 and:0.0955483802331794 ot:0.0013634132803450078 in:0.0011550353691581498 :0.0068828106099152655 +to:0.9727337102696321 will:0.0060267914144596126 shall:0.004866035023802306 must:0.0030894014475987964 :0.013284061844507157 +men:0.08099898728066215 people:0.06757219947436326 gentlemen:0.039039312908955986 lands:0.03165069444713056 :0.7807388058888881 +when:0.22121280219554498 and:0.1643294114479546 that:0.1405583591077951 while:0.12495400199562821 :0.3489454252530771 +to:0.21320030746539884 day:0.10860543864500945 and:0.09083303474887769 by:0.051351030951914275 :0.5360101881887996 +regular:0.7471148551698332 the:0.10067190882459214 a:0.015792416655659593 tho:0.0053621080261598 :0.13105871132375524 +a:0.789326625810209 the:0.15532253449055616 said:0.02325287533290102 its:0.017751800907712632 :0.014346163458621202 +particularly:0.3613782550456008 information:0.1031641107800761 policy:0.09048027937445813 country:0.07192035424128476 :0.3730570005585802 +only:0.3535526334636313 not:0.1259866051678067 all:0.11056844050713428 hardly:0.08648209866458649 :0.3234102221968413 +the:0.5040739787871541 a:0.03811598639882446 such:0.031042051735658098 Fort:0.029079300703060584 :0.3976886823753028 +of:0.7317150664523023 in:0.18336180651346154 to:0.06424593176585791 iu:0.010596602947557552 :0.010080592320820684 +me.:0.13636324530256197 .:0.014299813841498265 death.:0.013110787212564734 and:0.013035078645629465 :0.8231910749977455 +in:0.30543162812671176 of:0.2406550963305748 and:0.1314153453658874 for:0.1271566470144262 :0.19534128316239976 +and:0.12937453008090968 started:0.04310040150067162 ed:0.04241814623838585 charged:0.036476884761319016 :0.7486300374187139 +the:0.36459646786678435 a:0.26363776009201556 this:0.16285872833300646 first:0.11079074872717258 :0.09811629498102117 +of:0.5173053235864126 who:0.05087425985682623 and:0.03129673544218313 the:0.02116940848916244 :0.3793542726254157 +a:0.3865403433679736 the:0.31820318517325585 an:0.0591668642028693 his:0.030460027835507004 :0.20562957942039442 +the:0.2569109119444098 he:0.08296541811256027 a:0.07037507675550549 more:0.06144698975087125 :0.5283016034366532 +where:0.6383018209713215 until:0.3591705211730699 and:0.00018119321756616903 ;:0.00013243352722394264 :0.0022140311108185674 +A.:0.015733832832961484 life.:0.005943160068480572 side:0.0045282931962335885 name:0.0042169162937379994 :0.9695777976085863 +streets,:0.08690960578674986 better:0.0397902871092945 officers:0.03359927895540982 best:0.028686452528632816 :0.8110143756199131 +charge:0.8310295066160563 that:0.051931409031007826 a:0.0021639734813361827 full:0.0018922875912069045 :0.11298282328039276 +with:0.7457688970574686 for:0.09401827345111567 to:0.0395898573761726 given:0.034160313777823616 :0.0864626583374193 +to:0.3008984608490205 will:0.13381882395947364 and:0.10503411419797962 trouble:0.0880031502639659 :0.37224545072956045 +of:0.3038031330383472 to:0.12354086533997774 in:0.11025791749532758 and:0.08627627415883313 :0.37612180996751426 +there:0.8131438663063788 tor:0.0643106277596525 There:0.05829217332117651 It:0.017439453403392764 :0.04681387920939938 +time,:0.1216192348927275 act,:0.053019277750555115 time:0.0299215697537267 do,:0.01616424279110194 :0.7792756748118886 +due:0.1364354072436036 unknown:0.05222052507519934 devoted:0.04371568150822136 confined:0.03100143940960914 :0.7366269467633666 +and:0.7073272320257191 an:0.013660884768438844 in¬:0.01230559389880048 In:0.008381505942437157 :0.2583247833646044 +one,:0.2749643658471185 system:0.07139707540047512 against:0.037016544291465135 for:0.03074653070845881 :0.5858754837524823 +three:0.3394969597120665 four:0.19794504780189265 200:0.01040742492896622 white:0.006742556377100058 :0.44540801117997453 +be:0.3240086793036693 the:0.24579988336072958 he:0.03433177113421838 tie:0.03278380770115882 :0.3630758585002241 +out:0.9879642069704377 put:0.0015689535904717105 hold:0.00097757042392047 some:0.00033128119721630123 :0.009157987817953765 +old:0.05699999418856915 execution:0.03307646078297568 immense:0.025908524410846547 almost:0.022727426130272576 :0.861287594487336 +miles:0.3592880560534788 feet:0.004888536876303812 months:0.002594142205298099 acres:0.002256040338474026 :0.6309732245264453 +the:0.9525170882097044 that:0.010691866044763139 and:0.008047656004532694 The:0.00767344151008143 :0.021069948230918345 +as:0.25176229865902017 and:0.17321752397578077 is:0.13142295641214105 are:0.08431660214900584 :0.3592806188040522 +happy:0.1750632529208287 great:0.10256939507207781 public:0.0777789480301727 forced:0.0562543731223165 :0.5883340308546045 +million:0.2822306452290237 few:0.2202849892922307 number:0.13643714414526795 part:0.10014058077122605 :0.26090664056225166 +or:0.11337899851476894 men:0.05244058963446271 houses:0.01871057942229449 of:0.018063935471065384 :0.7974058969574084 +drove:0.22873694292823535 gave:0.19861058151737535 took:0.03863536712533671 has:0.027965494080592013 :0.5060516143484606 +satisfactory:0.14524245995133442 thorough:0.004537403762332076 distant:0.0024646407794910695 perfect:0.002255680760700978 :0.8454998147461413 +and:0.08520777819921228 of:0.05114912143712104 aged:0.04776717864588972 the:0.04211780688254673 :0.7737581148352302 +of:0.7950302671869144 and:0.06086155963060617 to:0.035533859683467756 old:0.0287685382131439 :0.07980577528586796 +of:0.32764810711584497 in:0.16486801741933926 for:0.14506618282440145 to:0.10445754065320922 :0.257960151987205 +cattle:0.27707929835360595 heat:0.26313241865856346 owners:0.023663551951738058 physical:0.022167328958911155 :0.4139574020771813 +of:0.3501855021442903 and:0.16791128940444786 that:0.10054289555059052 in:0.08087781811224505 :0.3004824947884263 +country.:0.0017808999335408196 day.:0.0011872418247776085 work.:0.0004891935492658868 red:0.00029127463937093153 :0.996251390053045 +to:0.2606809026533857 and:0.2503751343562983 in:0.15765346477004147 ar:0.11415388823728383 :0.21713660998299075 +day:0.3300688327376874 average:0.14596871529669797 rate:0.1113005320147501 side:0.02400181233397487 :0.3886601076168896 +and:0.1024857369168953 that:0.04746353077364185 tbat:0.037693584177412066 And:0.0362759269708767 :0.776081221161174 +editor:0.9999942182626573 day:4.2903030322272537e-07 sheep:4.260756621965138e-07 ground:4.173625571141014e-07 :4.509268819907376e-06 +of:0.032207710368068784 a:0.015367987032231644 to:0.010101416677738723 and:0.007316693360722128 :0.9350061925612386 +French:0.22123976021407277 English:0.09108411634753164 Russian:0.06909586822509436 British:0.03286650286602394 :0.5857137523472772 +day:0.8668756150463546 from:0.0334976092427801 time:0.010296448830839203 when:0.00839933622494535 :0.08093099065508086 +and:0.13840282622213224 to:0.09757507812240265 of:0.07836602346375707 the:0.033414654952968276 :0.6522414172387396 +total:0.1930835224861083 rate:0.14742002074771127 cost:0.07518936694670317 taxes:0.048017603833899004 :0.5362894859855784 +time.:0.0920380889709301 .:0.02989570144930108 —:0.02092534524515367 and:0.0038312474356342404 :0.853309616898981 +the:0.2150681415815645 also:0.18909837617817246 tbe:0.16288723784187573 their:0.08438264246374484 :0.34856360193464253 +hard:0.004949874970855839 one:0.0029943900478819428 difficult:0.0029275250965878795 pleasant:0.002817688888611084 :0.9863105209960632 +been:0.45575309829901905 a:0.10852580379972782 the:0.04115109030562252 no:0.0355976396477509 :0.3589723679478797 +but:0.37123964236955487 But:0.3041747987115315 against:0.10971751889948587 that:0.0943789631236789 :0.1204890768957489 +a:0.19979402353018083 some:0.07630421695217075 to:0.022144499991537087 grand:0.020623125851120513 :0.6811341336749908 +Dakota:0.034697285739293586 shall:0.008726144256774107 the:0.006960530665427145 said:0.005856100029844313 :0.943759939308661 +a:0.3608596511732049 going:0.2563628838699324 all:0.20190859941407854 the:0.1036512877330636 :0.07721757780972058 +of:0.25213482905988915 about:0.16980999697440682 on:0.13284355647298457 upon:0.12976690350812964 :0.3154447139845899 +that:0.42942899667691437 said:0.23102994690032452 and:0.12157516365521157 but:0.07666558975073229 :0.14130030301681729 +of:0.17375158312893563 and:0.08510529975264577 in:0.05138042932547299 to:0.024223410649522208 :0.6655392771434234 +must:0.2770561179047964 that:0.22993248946755918 bill:0.01404133596504441 platform:0.011026515388855018 :0.46794354127374505 +want:0.025245856960597928 know,:0.012387287033885351 came:0.008918929525112416 have,:0.008614585456539021 :0.9448333410238652 +and:0.09232625504690102 of:0.048132433688419414 the:0.046201127703075925 to:0.027188516329370253 :0.7861516672322334 +in-:0.3584657628353411 re:0.18425590501953198 this:0.16068689703511654 the:0.06678503272952624 :0.22980640238048425 +the:0.17603602563286588 a:0.037853671187549454 other:0.02636816376876691 of:0.022952594662253443 :0.7367895447485645 +and:0.9993113292624701 for:8.305759085706915e-05 it:8.03750441287901e-05 he:3.136475714220865e-05 :0.0004938733454018184 +is:0.714319619701901 Is:0.2105784700645819 was:0.05220994839298471 la:0.016191594810255675 :0.006700367030276712 +me:0.10302711922776935 that:0.03869731586285139 the:0.02985781082012516 him:0.015106087006884794 :0.8133116670823693 +back:0.23582948543634516 down:0.20583858564279497 up:0.19410036174186387 out:0.1842275482503896 :0.1800040189286064 +the:0.430971113097518 that:0.09815442112191892 a:0.09664850158596427 his:0.05541902121933787 :0.3188069429752609 +state,:0.06670034326877253 ing:0.025602335536967603 ful:0.021037983282446437 case,:0.011894503036235087 :0.8747648348755782 +the:0.890174713293679 tho:0.02815296991378796 a:0.006325425027186745 be:0.005464803867946331 :0.06988208789740007 +meeting:0.08443434533302613 year:0.0670267091508502 murder:0.06329928205169327 trial:0.035930272029035086 :0.7493093914353953 +he:0.32673495085093185 you:0.21030536958868 it:0.14380821254327697 they:0.06420750389837854 :0.2549439631187326 +the:0.7110302337026656 a:0.0754075526826506 said:0.07153011416677885 this:0.05152251646826835 :0.09050958297963664 +day:0.06575957551511268 year:0.036198725669113516 tion:0.032557764774683466 and:0.020940651285523165 :0.8445432827555672 +great:0.024997941208824457 whole:0.02423073652975144 the:0.02103136171870233 first:0.01847243923285138 :0.9112675213098703 +of:0.38492341775250083 in:0.1373822478121364 on:0.09671930532596457 to:0.07166879978990368 :0.3093062293194945 +the:0.4012309015683536 a:0.3355568667457587 40:0.10615294640810918 strong:0.02198954073232523 :0.1350697445454532 +took:0.35531695876376157 .:0.2410434666064956 .,:0.03927600303005736 Hall:0.004697471115862001 :0.35966610048382364