Instructions to use iproskurina/bebeshka with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iproskurina/bebeshka with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="iproskurina/bebeshka")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("iproskurina/bebeshka") model = AutoModelForMaskedLM.from_pretrained("iproskurina/bebeshka") - Notebooks
- Google Colab
- Kaggle
| { | |
| "version": "1.0", | |
| "truncation": { | |
| "direction": "Right", | |
| "max_length": 128, | |
| "strategy": "LongestFirst", | |
| "stride": 0 | |
| }, | |
| "padding": { | |
| "strategy": "BatchLongest", | |
| "direction": "Right", | |
| "pad_to_multiple_of": null, | |
| "pad_id": 1, | |
| "pad_type_id": 0, | |
| "pad_token": "<pad>" | |
| }, | |
| "added_tokens": [ | |
| { | |
| "id": 0, | |
| "content": "<mask>", | |
| "single_word": false, | |
| "lstrip": true, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 1, | |
| "content": "<pad>", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 2, | |
| "content": "<unk>", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 3, | |
| "content": "<s>", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 4, | |
| "content": "</s>", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| } | |
| ], | |
| "normalizer": { | |
| "type": "Lowercase" | |
| }, | |
| "pre_tokenizer": { | |
| "type": "ByteLevel", | |
| "add_prefix_space": false, | |
| "trim_offsets": true, | |
| "use_regex": true | |
| }, | |
| "post_processor": { | |
| "type": "RobertaProcessing", | |
| "sep": [ | |
| "</s>", | |
| 4 | |
| ], | |
| "cls": [ | |
| "<s>", | |
| 3 | |
| ], | |
| "trim_offsets": true, | |
| "add_prefix_space": false | |
| }, | |
| "decoder": { | |
| "type": "ByteLevel", | |
| "add_prefix_space": true, | |
| "trim_offsets": true, | |
| "use_regex": true | |
| }, | |
| "model": { | |
| "type": "BPE", | |
| "dropout": null, | |
| "unk_token": "<unk>", | |
| "continuing_subword_prefix": null, | |
| "end_of_word_suffix": null, | |
| "fuse_unk": false, | |
| "vocab": { | |
| "<mask>": 0, | |
| "<pad>": 1, | |
| "<unk>": 2, | |
| "<s>": 3, | |
| "</s>": 4, | |
| "!": 5, | |
| "\"": 6, | |
| "#": 7, | |
| "$": 8, | |
| "%": 9, | |
| "&": 10, | |
| "'": 11, | |
| "(": 12, | |
| ")": 13, | |
| "*": 14, | |
| "+": 15, | |
| ",": 16, | |
| "-": 17, | |
| ".": 18, | |
| "/": 19, | |
| "0": 20, | |
| "1": 21, | |
| "2": 22, | |
| "3": 23, | |
| "4": 24, | |
| "5": 25, | |
| "6": 26, | |
| "7": 27, | |
| "8": 28, | |
| "9": 29, | |
| ":": 30, | |
| ";": 31, | |
| "<": 32, | |
| "=": 33, | |
| ">": 34, | |
| "?": 35, | |
| "@": 36, | |
| "[": 37, | |
| "\\": 38, | |
| "]": 39, | |
| "^": 40, | |
| "_": 41, | |
| "`": 42, | |
| "a": 43, | |
| "b": 44, | |
| "c": 45, | |
| "d": 46, | |
| "e": 47, | |
| "f": 48, | |
| "g": 49, | |
| "h": 50, | |
| "i": 51, | |
| "j": 52, | |
| "k": 53, | |
| "l": 54, | |
| "m": 55, | |
| "n": 56, | |
| "o": 57, | |
| "p": 58, | |
| "q": 59, | |
| "r": 60, | |
| "s": 61, | |
| "t": 62, | |
| "u": 63, | |
| "v": 64, | |
| "w": 65, | |
| "x": 66, | |
| "y": 67, | |
| "z": 68, | |
| "{": 69, | |
| "|": 70, | |
| "}": 71, | |
| "~": 72, | |
| "¡": 73, | |
| "¢": 74, | |
| "£": 75, | |
| "¤": 76, | |
| "¥": 77, | |
| "¦": 78, | |
| "§": 79, | |
| "¨": 80, | |
| "©": 81, | |
| "ª": 82, | |
| "«": 83, | |
| "¬": 84, | |
| "®": 85, | |
| "¯": 86, | |
| "°": 87, | |
| "±": 88, | |
| "²": 89, | |
| "³": 90, | |
| "´": 91, | |
| "µ": 92, | |
| "¶": 93, | |
| "·": 94, | |
| "¸": 95, | |
| "¹": 96, | |
| "º": 97, | |
| "»": 98, | |
| "¼": 99, | |
| "½": 100, | |
| "¾": 101, | |
| "¿": 102, | |
| "Â": 103, | |
| "Ã": 104, | |
| "Ä": 105, | |
| "Å": 106, | |
| "Æ": 107, | |
| "Ç": 108, | |
| "È": 109, | |
| "É": 110, | |
| "Ê": 111, | |
| "Ë": 112, | |
| "Ì": 113, | |
| "Î": 114, | |
| "Ï": 115, | |
| "Ð": 116, | |
| "Ñ": 117, | |
| "Ò": 118, | |
| "Ó": 119, | |
| "Õ": 120, | |
| "Ö": 121, | |
| "×": 122, | |
| "Ø": 123, | |
| "Ù": 124, | |
| "Ú": 125, | |
| "Û": 126, | |
| "à": 127, | |
| "á": 128, | |
| "â": 129, | |
| "ã": 130, | |
| "ä": 131, | |
| "å": 132, | |
| "æ": 133, | |
| "ç": 134, | |
| "è": 135, | |
| "é": 136, | |
| "ê": 137, | |
| "ë": 138, | |
| "ì": 139, | |
| "í": 140, | |
| "ï": 141, | |
| "ð": 142, | |
| "ĉ": 143, | |
| "Ċ": 144, | |
| "Ġ": 145, | |
| "ġ": 146, | |
| "Ģ": 147, | |
| "ģ": 148, | |
| "Ĥ": 149, | |
| "ĥ": 150, | |
| "Ħ": 151, | |
| "ħ": 152, | |
| "Ĩ": 153, | |
| "ĩ": 154, | |
| "Ī": 155, | |
| "ī": 156, | |
| "Ĭ": 157, | |
| "ĭ": 158, | |
| "Į": 159, | |
| "į": 160, | |
| "İ": 161, | |
| "ı": 162, | |
| "IJ": 163, | |
| "ij": 164, | |
| "Ĵ": 165, | |
| "ĵ": 166, | |
| "Ķ": 167, | |
| "ķ": 168, | |
| "ĸ": 169, | |
| "Ĺ": 170, | |
| "ĺ": 171, | |
| "Ļ": 172, | |
| "ļ": 173, | |
| "Ľ": 174, | |
| "ľ": 175, | |
| "Ŀ": 176, | |
| "ŀ": 177, | |
| "Ł": 178, | |
| "ł": 179, | |
| "Ń": 180, | |
| "Ġt": 181, | |
| "he": 182, | |
| "Ġa": 183, | |
| "Ġi": 184, | |
| "Ġw": 185, | |
| "Ġthe": 186, | |
| "Ġs": 187, | |
| "re": 188, | |
| "Ġo": 189, | |
| "in": 190, | |
| "ou": 191, | |
| "ha": 192, | |
| "er": 193, | |
| "Ġb": 194, | |
| "Ġc": 195, | |
| "Ġm": 196, | |
| "nd": 197, | |
| "on": 198, | |
| "Ġf": 199, | |
| "Ġd": 200, | |
| "Ġy": 201, | |
| "Ġp": 202, | |
| "ing": 203, | |
| "or": 204, | |
| "Ġto": 205, | |
| "ed": 206, | |
| "ll": 207, | |
| "an": 208, | |
| "en": 209, | |
| "Ġl": 210, | |
| "es": 211, | |
| "Ġyou": 212, | |
| "Ġg": 213, | |
| "Ġand": 214, | |
| "Ġof": 215, | |
| "Ġin": 216, | |
| "Ġn": 217, | |
| "is": 218, | |
| "it": 219, | |
| "ar": 220, | |
| "at": 221, | |
| "ĠĊ": 222, | |
| "hat": 223, | |
| "as": 224, | |
| "Ġhe": 225, | |
| "om": 226, | |
| "Ġh": 227, | |
| "Ġit": 228, | |
| "ic": 229, | |
| "ow": 230, | |
| "ve": 231, | |
| "le": 232, | |
| "Ġha": 233, | |
| "Ġth": 234, | |
| "ot": 235, | |
| "Ġbe": 236, | |
| "al": 237, | |
| "Ġe": 238, | |
| "Ġthat": 239, | |
| "us": 240, | |
| "'s": 241, | |
| "Ġis": 242, | |
| "Ġwe": 243, | |
| "ut": 244, | |
| "et": 245, | |
| "Ġon": 246, | |
| "ay": 247, | |
| "ion": 248, | |
| "Ġre": 249, | |
| "id": 250, | |
| "Ġr": 251, | |
| "gh": 252, | |
| "Ġwas": 253, | |
| "ent": 254, | |
| "ld": 255, | |
| "Ġk": 256, | |
| "Ġst": 257, | |
| "ac": 258, | |
| "ver": 259, | |
| "Ġfor": 260, | |
| "am": 261, | |
| "im": 262, | |
| "Ġu": 263, | |
| "..": 264, | |
| "ly": 265, | |
| "st": 266, | |
| "ir": 267, | |
| "ad": 268, | |
| "Ġ-": 269, | |
| "ur": 270, | |
| "se": 271, | |
| "Ġ.": 272, | |
| "Ġj": 273, | |
| "oo": 274, | |
| "ght": 275, | |
| "'t": 276, | |
| "Ġan": 277, | |
| "Ġme": 278, | |
| "Ġwh": 279, | |
| "Ġdo": 280, | |
| "ke": 281, | |
| "ith": 282, | |
| "Ġas": 283, | |
| "Ġwith": 284, | |
| "all": 285, | |
| "Ġse": 286, | |
| "ro": 287, | |
| "Ġthis": 288, | |
| "Ġwhat": 289, | |
| "Ġli": 290, | |
| "ce": 291, | |
| "ct": 292, | |
| "her": 293, | |
| "Ġso": 294, | |
| "ill": 295, | |
| "ter": 296, | |
| "ch": 297, | |
| "Ġgo": 298, | |
| "Ġare": 299, | |
| "Ġnot": 300, | |
| "ri": 301, | |
| "Ġat": 302, | |
| "ome": 303, | |
| "Ġ\"": 304, | |
| "Ġhave": 305, | |
| "Ġ1": 306, | |
| "il": 307, | |
| "ight": 308, | |
| "Ġthey": 309, | |
| "Ġbut": 310, | |
| "ould": 311, | |
| "Ġne": 312, | |
| "ant": 313, | |
| "ust": 314, | |
| "Ġde": 315, | |
| "op": 316, | |
| "Ġfr": 317, | |
| "ation": 318, | |
| "th": 319, | |
| "Ġkn": 320, | |
| "ain": 321, | |
| "Ġhis": 322, | |
| "Ġno": 323, | |
| "Ġwhe": 324, | |
| "Ġal": 325, | |
| "and": 326, | |
| "Ġcan": 327, | |
| "Ġthere": 328, | |
| "Ġall": 329, | |
| "un": 330, | |
| "Ġ,": 331, | |
| "ge": 332, | |
| "Ġmo": 333, | |
| "ea": 334, | |
| "Ġmy": 335, | |
| "ul": 336, | |
| "Ġshe": 337, | |
| "Ġknow": 338, | |
| "...": 339, | |
| "Ġsh": 340, | |
| "Ġab": 341, | |
| "ol": 342, | |
| "Ġsu": 343, | |
| "pp": 344, | |
| "Ġv": 345, | |
| "Ġyour": 346, | |
| "Ġor": 347, | |
| "out": 348, | |
| "Ġby": 349, | |
| "Ġdon": 350, | |
| "Ġone": 351, | |
| "est": 352, | |
| "Ġ?": 353, | |
| "Ġcon": 354, | |
| "Ġfrom": 355, | |
| "Ġcom": 356, | |
| "ĠĠ": 357, | |
| "ers": 358, | |
| "ie": 359, | |
| "qu": 360, | |
| "ist": 361, | |
| "art": 362, | |
| "Ġ2": 363, | |
| "um": 364, | |
| "Ġ(": 365, | |
| "ess": 366, | |
| "Ġher": 367, | |
| "Ġtr": 368, | |
| "han": 369, | |
| "ab": 370, | |
| "Ġup": 371, | |
| "red": 372, | |
| "Ġwor": 373, | |
| "os": 374, | |
| "Ġsa": 375, | |
| "Ġhad": 376, | |
| "ig": 377, | |
| "ally": 378, | |
| "Ġlike": 379, | |
| "Ġpl": 380, | |
| "Ġhim": 381, | |
| "'re": 382, | |
| "Ġout": 383, | |
| "fe": 384, | |
| "ate": 385, | |
| "very": 386, | |
| "Ġpro": 387, | |
| "Ġus": 388, | |
| "Ġex": 389, | |
| "nt": 390, | |
| "ook": 391, | |
| "Ġget": 392, | |
| "Ġif": 393, | |
| "ack": 394, | |
| "res": 395, | |
| "ood": 396, | |
| "Ġsp": 397, | |
| "ame": 398, | |
| "Ġjust": 399, | |
| "Ġwho": 400, | |
| "ive": 401, | |
| "Ġwere": 402, | |
| "Ġte": 403, | |
| "Ġabout": 404, | |
| "ap": 405, | |
| "ck": 406, | |
| "'m": 407, | |
| "our": 408, | |
| "ake": 409, | |
| "ink": 410, | |
| "âĢ": 411, | |
| "one": 412, | |
| "Ġdid": 413, | |
| "ast": 414, | |
| "Ġhere": 415, | |
| "ong": 416, | |
| "ind": 417, | |
| "ound": 418, | |
| "el": 419, | |
| "Ġman": 420, | |
| "ity": 421, | |
| "em": 422, | |
| "ard": 423, | |
| "ort": 424, | |
| "if": 425, | |
| "Ġar": 426, | |
| "Ġwhen": 427, | |
| "ry": 428, | |
| "ich": 429, | |
| "Ġwell": 430, | |
| "Ġch": 431, | |
| "ies": 432, | |
| "Ġsome": 433, | |
| "Ġwill": 434, | |
| "Ġnow": 435, | |
| "Ġ19": 436, | |
| "Ġright": 437, | |
| "Ġun": 438, | |
| "Ġbr": 439, | |
| "Ġlo": 440, | |
| "Ġle": 441, | |
| "ak": 442, | |
| "Ġwould": 443, | |
| "Ġco": 444, | |
| "eah": 445, | |
| "Ġthem": 446, | |
| "Ġ'": 447, | |
| "ber": 448, | |
| "Ġoh": 449, | |
| "Ġtim": 450, | |
| "Ġhow": 451, | |
| "Ġyeah": 452, | |
| "ine": 453, | |
| "Ġwant": 454, | |
| "Ġany": 455, | |
| "ag": 456, | |
| "Ġthink": 457, | |
| "Ġ20": 458, | |
| "ud": 459, | |
| "ous": 460, | |
| "'ll": 461, | |
| "ven": 462, | |
| "Ġpe": 463, | |
| "Ġint": 464, | |
| "Ġam": 465, | |
| "Ġsee": 466, | |
| "Ġwhich": 467, | |
| "Ġthen": 468, | |
| "Ġlook": 469, | |
| "Ġgot": 470, | |
| "ore": 471, | |
| "Ġbec": 472, | |
| "ment": 473, | |
| "Ġhas": 474, | |
| "Ġtw": 475, | |
| "hing": 476, | |
| "Ġag": 477, | |
| "Ġcl": 478, | |
| "Ġfe": 479, | |
| "Ġgr": 480, | |
| "own": 481, | |
| "ther": 482, | |
| "Ġpr": 483, | |
| "Ġro": 484, | |
| "use": 485, | |
| "itt": 486, | |
| "ice": 487, | |
| "ough": 488, | |
| "Ġsay": 489, | |
| "Ġsaid": 490, | |
| "Ġen": 491, | |
| "Ġaf": 492, | |
| "ide": 493, | |
| "ip": 494, | |
| "ia": 495, | |
| "ep": 496, | |
| "Ġtime": 497, | |
| "mp": 498, | |
| "Ġ=": 499, | |
| "Ġthan": 500, | |
| "iv": 501, | |
| "Ġcome": 502, | |
| "Ġgood": 503, | |
| "way": 504, | |
| "Ġbo": 505, | |
| "Ġbeen": 506, | |
| "Ġqu": 507, | |
| "ian": 508, | |
| "Ġtheir": 509, | |
| "ure": 510, | |
| "are": 511, | |
| "Ġwhere": 512, | |
| "ear": 513, | |
| "ace": 514, | |
| "Ġlet": 515, | |
| "ick": 516, | |
| "ople": 517, | |
| "so": 518, | |
| "Ġmore": 519, | |
| "Ġer": 520, | |
| "Ġpeople": 521, | |
| "ause": 522, | |
| "'ve": 523, | |
| "Ġother": 524, | |
| "ect": 525, | |
| "Ġmar": 526, | |
| "na": 527, | |
| "Ġcould": 528, | |
| "ra": 529, | |
| "Ġoff": 530, | |
| "lf": 531, | |
| "Ġgoing": 532, | |
| "ish": 533, | |
| "Ġsc": 534, | |
| "reat": 535, | |
| "Ġover": 536, | |
| "age": 537, | |
| "Ġback": 538, | |
| "ree": 539, | |
| "Ġvery": 540, | |
| "Ġfir": 541, | |
| "Ġbl": 542, | |
| "Ġok": 543, | |
| "Ġtwo": 544, | |
| "end": 545, | |
| "Ġad": 546, | |
| "ite": 547, | |
| "other": 548, | |
| "act": 549, | |
| "Ġcha": 550, | |
| "Ġthing": 551, | |
| "ose": 552, | |
| "Ġpart": 553, | |
| "ass": 554, | |
| "nder": 555, | |
| "Ġwork": 556, | |
| "Ġcomp": 557, | |
| "ount": 558, | |
| "Ġfirst": 559, | |
| "Ġtoo": 560, | |
| "ble": 561, | |
| "Ġevery": 562, | |
| "Ġnew": 563, | |
| "ary": 564, | |
| "we": 565, | |
| "ue": 566, | |
| "Ġyes": 567, | |
| "od": 568, | |
| "Ġbecause": 569, | |
| "Ġjo": 570, | |
| "orn": 571, | |
| "Ġpo": 572, | |
| "omet": 573, | |
| "Ġdown": 574, | |
| "ire": 575, | |
| "Ġmay": 576, | |
| "Ġinto": 577, | |
| "ans": 578, | |
| "Ġafter": 579, | |
| "ated": 580, | |
| "Ġway": 581, | |
| "pt": 582, | |
| "ase": 583, | |
| "ions": 584, | |
| "Ġalso": 585, | |
| "hed": 586, | |
| "Ġcall": 587, | |
| "ci": 588, | |
| "the": 589, | |
| "Ġour": 590, | |
| "alk": 591, | |
| "Ġyear": 592, | |
| "00": 593, | |
| "Ġokay": 594, | |
| "Ġonly": 595, | |
| "co": 596, | |
| "ade": 597, | |
| "ord": 598, | |
| "Ġgu": 599, | |
| "Ġsomet": 600, | |
| "iz": 601, | |
| "ittle": 602, | |
| "Ġwhy": 603, | |
| "Ġagain": 604, | |
| "Ġact": 605, | |
| "Ġac": 606, | |
| "ub": 607, | |
| "Ġlittle": 608, | |
| "ĠĠĠĠ": 609, | |
| "ater": 610, | |
| "Ġbet": 611, | |
| "Ġper": 612, | |
| "Ġfl": 613, | |
| "ach": 614, | |
| "Ġtake": 615, | |
| "Ġthese": 616, | |
| "Ġday": 617, | |
| "per": 618, | |
| "ved": 619, | |
| "--": 620, | |
| "ance": 621, | |
| "ild": 622, | |
| "Ġplay": 623, | |
| "Ġdis": 624, | |
| "ought": 625, | |
| "Ġbu": 626, | |
| "wn": 627, | |
| "Ġcar": 628, | |
| "urn": 629, | |
| "Ġcomm": 630, | |
| "Ġcont": 631, | |
| "Ġsha": 632, | |
| "amp": 633, | |
| "ĠâĢ": 634, | |
| "Ġreally": 635, | |
| "ren": 636, | |
| "ty": 637, | |
| "Ġpre": 638, | |
| "ff": 639, | |
| "Ġmake": 640, | |
| "Ġtell": 641, | |
| "av": 642, | |
| "Ġfo": 643, | |
| "Ġmu": 644, | |
| "Ġneed": 645, | |
| "Ġshould": 646, | |
| "ving": 647, | |
| "Ġser": 648, | |
| "ress": 649, | |
| "cl": 650, | |
| "Ġput": 651, | |
| "ile": 652, | |
| "Ġdoes": 653, | |
| "ang": 654, | |
| "ence": 655, | |
| "orm": 656, | |
| "Ġapp": 657, | |
| "Ġwr": 658, | |
| "self": 659, | |
| ".\"": 660, | |
| "Ġthr": 661, | |
| "able": 662, | |
| "ory": 663, | |
| "Ġ`": 664, | |
| "Ġunder": 665, | |
| "fore": 666, | |
| "Ġla": 667, | |
| "les": 668, | |
| "Ġhapp": 669, | |
| "Ġcr": 670, | |
| "be": 671, | |
| "Ġind": 672, | |
| "thing": 673, | |
| "ft": 674, | |
| "Ġsomething": 675, | |
| "int": 676, | |
| "ical": 677, | |
| "Ġeven": 678, | |
| "iss": 679, | |
| "Ġ[": 680, | |
| "uck": 681, | |
| "ens": 682, | |
| "ather": 683, | |
| "ict": 684, | |
| "ied": 685, | |
| "Ġmuch": 686, | |
| "ign": 687, | |
| "Ġ201": 688, | |
| "Ġdr": 689, | |
| "Ġres": 690, | |
| "Ġsm": 691, | |
| "Ġmean": 692, | |
| "man": 693, | |
| "og": 694, | |
| "ult": 695, | |
| "Ġcount": 696, | |
| "Ġrep": 697, | |
| "Ġgon": 698, | |
| "Ġlong": 699, | |
| "Ġgonna": 700, | |
| "ates": 701, | |
| "land": 702, | |
| "Ġits": 703, | |
| "ool": 704, | |
| "Ġbefore": 705, | |
| "Ġnever": 706, | |
| "ail": 707, | |
| "Ġgreat": 708, | |
| "Ġmade": 709, | |
| "Ġho": 710, | |
| "Ġrem": 711, | |
| "Ġmany": 712, | |
| "Ġtalk": 713, | |
| "Ġimp": 714, | |
| "ks": 715, | |
| "ys": 716, | |
| "Ġhel": 717, | |
| "Ġdidn": 718, | |
| "'d": 719, | |
| "Ġmost": 720, | |
| "ne": 721, | |
| "ations": 722, | |
| "ath": 723, | |
| "Ġke": 724, | |
| "Ġ''": 725, | |
| "Ġ``": 726, | |
| "ons": 727, | |
| "te": 728, | |
| "Ġexp": 729, | |
| "ious": 730, | |
| "Ġchan": 731, | |
| "ting": 732, | |
| "iver": 733, | |
| "Ġbel": 734, | |
| "ited": 735, | |
| "Ġlife": 736, | |
| "Ġhand": 737, | |
| "ady": 738, | |
| "Ġ3": 739, | |
| "Ġmin": 740, | |
| "vel": 741, | |
| "Ġmr": 742, | |
| "Ġma": 743, | |
| "ull": 744, | |
| "Ġthose": 745, | |
| "ually": 746, | |
| "Ġhar": 747, | |
| "Ġuh": 748, | |
| "ouse": 749, | |
| "Ġthree": 750, | |
| "ily": 751, | |
| "Ġlea": 752, | |
| "Ġstr": 753, | |
| "ors": 754, | |
| "Ġdif": 755, | |
| "ition": 756, | |
| "Ġhi": 757, | |
| "ves": 758, | |
| "Ġstill": 759, | |
| "day": 760, | |
| "Ġthrough": 761, | |
| "au": 762, | |
| "Ġear": 763, | |
| "Ġold": 764, | |
| "Ġyears": 765, | |
| "tain": 766, | |
| "ward": 767, | |
| "Ġcour": 768, | |
| "Ġhelp": 769, | |
| "Ġdes": 770, | |
| "Ġworld": 771, | |
| "Ġgive": 772, | |
| "ix": 773, | |
| "Ġph": 774, | |
| "Ġ!": 775, | |
| "Ġthought": 776, | |
| "Ġlove": 777, | |
| "rent": 778, | |
| "Ġthings": 779, | |
| "ise": 780, | |
| "âĢĿ": 781, | |
| "ĠâĢľ": 782, | |
| "Ġpres": 783, | |
| "ug": 784, | |
| "ful": 785, | |
| "Ġshow": 786, | |
| "mm": 787, | |
| "get": 788, | |
| "Ġple": 789, | |
| "Ġ200": 790, | |
| "ces": 791, | |
| "cess": 792, | |
| "Ġlast": 793, | |
| "ried": 794, | |
| "Ġsch": 795, | |
| "Ġche": 796, | |
| "Ġstart": 797, | |
| "Ġfound": 798, | |
| "ial": 799, | |
| "Ġmust": 800, | |
| "Ġask": 801, | |
| "ps": 802, | |
| "llow": 803, | |
| "Ġwar": 804, | |
| "gin": 805, | |
| "Ġwent": 806, | |
| "Ġaway": 807, | |
| "Ġcame": 808, | |
| "ince": 809, | |
| "der": 810, | |
| "Ġhome": 811, | |
| "du": 812, | |
| "Ġwa": 813, | |
| "Ġfind": 814, | |
| "Ġused": 815, | |
| "Ġatt": 816, | |
| "Ġbeing": 817, | |
| "Ġpol": 818, | |
| "Ġmat": 819, | |
| "Ġcalled": 820, | |
| "Ġform": 821, | |
| "Ġpar": 822, | |
| "ction": 823, | |
| "oney": 824, | |
| "Ġdoing": 825, | |
| "oss": 826, | |
| "oth": 827, | |
| "Ġend": 828, | |
| "Ġsl": 829, | |
| "tern": 830, | |
| "Ġrec": 831, | |
| "ents": 832, | |
| "Ġspe": 833, | |
| "Ġsuch": 834, | |
| "Ġmon": 835, | |
| "riend": 836, | |
| "Ġchar": 837, | |
| "ings": 838, | |
| "Ġsy": 839, | |
| "Ġgod": 840, | |
| "Ġop": 841, | |
| "eric": 842, | |
| "hes": 843, | |
| "Ġfam": 844, | |
| "Ġbig": 845, | |
| "Ġel": 846, | |
| "Ġwom": 847, | |
| "\".": 848, | |
| "Ġown": 849, | |
| "Ġfin": 850, | |
| "xt": 851, | |
| "ced": 852, | |
| "Ġnight": 853, | |
| "Ġreg": 854, | |
| "Ġcap": 855, | |
| "ng": 856, | |
| "Ġid": 857, | |
| "ope": 858, | |
| "Ġeng": 859, | |
| "lic": 860, | |
| "Ġname": 861, | |
| "Ġhouse": 862, | |
| "ened": 863, | |
| "Ġsame": 864, | |
| "Ġtry": 865, | |
| "form": 866, | |
| "Ġcare": 867, | |
| "up": 868, | |
| "gan": 869, | |
| "Ġcity": 870, | |
| "als": 871, | |
| "Ġlot": 872, | |
| "Ġgen": 873, | |
| "Ġkind": 874, | |
| "Ġsure": 875, | |
| "ave": 876, | |
| "Ġmom": 877, | |
| "irl": 878, | |
| "Ġwon": 879, | |
| "Ġdiffe": 880, | |
| "Ġchild": 881, | |
| "Ġpers": 882, | |
| "Ġrel": 883, | |
| "ody": 884, | |
| "ib": 885, | |
| "Ġanother": 886, | |
| "Ġhey": 887, | |
| "ways": 888, | |
| "gr": 889, | |
| "Ġsw": 890, | |
| "Ġturn": 891, | |
| "Ġcons": 892, | |
| "Ġsupp": 893, | |
| "Ġhead": 894, | |
| "Ġnum": 895, | |
| "Ġgl": 896, | |
| "Ġerm": 897, | |
| "Ġkill": 898, | |
| "ever": 899, | |
| "Ġplace": 900, | |
| "Ġameric": 901, | |
| "Ġfeel": 902, | |
| "Ġmight": 903, | |
| "Ġtak": 904, | |
| "Ġz": 905, | |
| "ts": 906, | |
| "Ġcent": 907, | |
| "ning": 908, | |
| "body": 909, | |
| "Ġschool": 910, | |
| "Ġdist": 911, | |
| "Ġ18": 912, | |
| "Ġfriend": 913, | |
| "ye": 914, | |
| "air": 915, | |
| "Ġkeep": 916, | |
| "Ġed": 917, | |
| "mo": 918, | |
| "Ġuse": 919, | |
| "Ġfour": 920, | |
| "Ġ4": 921, | |
| "Ġstop": 922, | |
| "Ġset": 923, | |
| "Ġthank": 924, | |
| "br": 925, | |
| "dy": 926, | |
| "sh": 927, | |
| "Ġev": 928, | |
| "ock": 929, | |
| "Ġnor": 930, | |
| "Ġaround": 931, | |
| "outh": 932, | |
| "ased": 933, | |
| "Ġmus": 934, | |
| "Ġele": 935, | |
| "ute": 936, | |
| "Ġplease": 937, | |
| "ational": 938, | |
| "Ġalways": 939, | |
| "Ġhu": 940, | |
| "ating": 941, | |
| "uring": 942, | |
| "Ġsur": 943, | |
| "Ġgirl": 944, | |
| "rest": 945, | |
| ").": 946, | |
| "Ġwhile": 947, | |
| "Ġanything": 948, | |
| "cond": 949, | |
| "ember": 950, | |
| "io": 951, | |
| "mber": 952, | |
| "my": 953, | |
| "ower": 954, | |
| "Ġbetter": 955, | |
| "\",": 956, | |
| "Ġking": 957, | |
| "Ġnothing": 958, | |
| "ah": 959, | |
| "Ġter": 960, | |
| "Ġleft": 961, | |
| "Ġsor": 962, | |
| "ss": 963, | |
| "ms": 964, | |
| "Ġwait": 965, | |
| "Ġmet": 966, | |
| "Ġdep": 967, | |
| "mb": 968, | |
| "Ġmoney": 969, | |
| "Ġstates": 970, | |
| "Ġinst": 971, | |
| "Ġrun": 972, | |
| "Ġacc": 973, | |
| "Ġcle": 974, | |
| "Ġreal": 975, | |
| "),": 976, | |
| "led": 977, | |
| "Ġent": 978, | |
| "pe": 979, | |
| "Ġsecond": 980, | |
| "Ġunited": 981, | |
| "é": 982, | |
| "Ġinv": 983, | |
| "ween": 984, | |
| "âĻ": 985, | |
| "ton": 986, | |
| "ank": 987, | |
| "Ġbelie": 988, | |
| "Ġ5": 989, | |
| "Ġlist": 990, | |
| "ular": 991, | |
| "Ġbit": 992, | |
| "clud": 993, | |
| "Ġfar": 994, | |
| "Ġmak": 995, | |
| "Ġbetween": 996, | |
| "Ġhigh": 997, | |
| "Ġins": 998, | |
| "atch": 999, | |
| "Ġdifferent": 1000, | |
| "Ġob": 1001, | |
| "Ġsir": 1002, | |
| "Ġbus": 1003, | |
| "Ġsub": 1004, | |
| "Ġtold": 1005, | |
| "Ġdone": 1006, | |
| "ible": 1007, | |
| "ics": 1008, | |
| "Ġword": 1009, | |
| "ness": 1010, | |
| "Ġstud": 1011, | |
| "oup": 1012, | |
| "Ġnext": 1013, | |
| "de": 1014, | |
| "Ġperson": 1015, | |
| "Ġever": 1016, | |
| "Ġmen": 1017, | |
| "Ġpoint": 1018, | |
| "Ġcol": 1019, | |
| "Ġstate": 1020, | |
| "ĠâĻ": 1021, | |
| "aught": 1022, | |
| "Ġunt": 1023, | |
| "Ġsorry": 1024, | |
| "Ġbre": 1025, | |
| "fect": 1026, | |
| "Ġwater": 1027, | |
| "ters": 1028, | |
| "ird": 1029, | |
| "ident": 1030, | |
| "Ġfather": 1031, | |
| "Ġmiss": 1032, | |
| "Ġboth": 1033, | |
| "az": 1034, | |
| "Ġ|": 1035, | |
| "Ġsing": 1036, | |
| "no": 1037, | |
| "Ġret": 1038, | |
| "cial": 1039, | |
| ",\"": 1040, | |
| "Ġbook": 1041, | |
| "Ġknown": 1042, | |
| "ual": 1043, | |
| "Ġass": 1044, | |
| "Ġbest": 1045, | |
| "Ġgre": 1046, | |
| "Ġcoll": 1047, | |
| "Ġfollow": 1048, | |
| "Ġadd": 1049, | |
| "ell": 1050, | |
| "Ġeach": 1051, | |
| "ier": 1052, | |
| "Ġdec": 1053, | |
| "hn": 1054, | |
| "ames": 1055, | |
| "Ġtook": 1056, | |
| "ason": 1057, | |
| "ĠâĻª": 1058, | |
| "ished": 1059, | |
| "Ġsim": 1060, | |
| "ger": 1061, | |
| "Ġmother": 1062, | |
| "ars": 1063, | |
| "Ġonce": 1064, | |
| "ject": 1065, | |
| "Ġlater": 1066, | |
| "Ġactually": 1067, | |
| "Ġ199": 1068, | |
| "ten": 1069, | |
| "ph": 1070, | |
| "Ġinclud": 1071, | |
| "ivers": 1072, | |
| "Ġpass": 1073, | |
| "Ġuntil": 1074, | |
| "yes": 1075, | |
| "Ġpop": 1076, | |
| "Ġlight": 1077, | |
| "Ġlar": 1078, | |
| "Ġsince": 1079, | |
| "Ġcourse": 1080, | |
| "Ġ;": 1081, | |
| "cy": 1082, | |
| "cre": 1083, | |
| "âĢĻ": 1084, | |
| "right": 1085, | |
| "Ġduring": 1086, | |
| "ner": 1087, | |
| "ale": 1088, | |
| "ities": 1089, | |
| "ative": 1090, | |
| "Ġprodu": 1091, | |
| "Ġhell": 1092, | |
| "Ġseem": 1093, | |
| "ont": 1094, | |
| "Ġmed": 1095, | |
| "ling": 1096, | |
| "cept": 1097, | |
| "olog": 1098, | |
| "ew": 1099, | |
| "its": 1100, | |
| "eak": 1101, | |
| "Ġnumber": 1102, | |
| "ged": 1103, | |
| "Ġeverything": 1104, | |
| "Ġwee": 1105, | |
| "Ġgener": 1106, | |
| "Ġsaw": 1107, | |
| "Ġboy": 1108, | |
| "Ġcommun": 1109, | |
| "ric": 1110, | |
| "Ġ--": 1111, | |
| "Ġsmall": 1112, | |
| "cer": 1113, | |
| "Ġbar": 1114, | |
| "vie": 1115, | |
| "Ġfun": 1116, | |
| "Ġdoesn": 1117, | |
| "oun": 1118, | |
| "Ġdad": 1119, | |
| "ins": 1120, | |
| "ash": 1121, | |
| "ctor": 1122, | |
| "Ġjohn": 1123, | |
| "vern": 1124, | |
| "ross": 1125, | |
| "Ġopen": 1126, | |
| "Ġmm": 1127, | |
| "Ġyoung": 1128, | |
| "Ġstand": 1129, | |
| "ision": 1130, | |
| "Ġmaybe": 1131, | |
| "stand": 1132, | |
| "ures": 1133, | |
| "Ġfamily": 1134, | |
| "Ġinter": 1135, | |
| "ime": 1136, | |
| "Ġstay": 1137, | |
| "me": 1138, | |
| "row": 1139, | |
| "ote": 1140, | |
| "Ġsouth": 1141, | |
| "ork": 1142, | |
| "here": 1143, | |
| "Ġchr": 1144, | |
| "Ġpub": 1145, | |
| "Ġtoday": 1146, | |
| "Ġenough": 1147, | |
| "uary": 1148, | |
| "Ġloc": 1149, | |
| "osed": 1150, | |
| "Ġnorth": 1151, | |
| "Ġroom": 1152, | |
| "less": 1153, | |
| "Ġhum": 1154, | |
| "Ġagainst": 1155, | |
| "Ġwanted": 1156, | |
| "Ġfive": 1157, | |
| "Ġart": 1158, | |
| "Ġap": 1159, | |
| "Ġelse": 1160, | |
| "Ġwithout": 1161, | |
| "ark": 1162, | |
| "iet": 1163, | |
| "Ġsix": 1164, | |
| "Ġbad": 1165, | |
| "ny": 1166, | |
| "Ġdire": 1167, | |
| "Ġsit": 1168, | |
| "Ġamerican": 1169, | |
| "Ġair": 1170, | |
| "ane": 1171, | |
| "Ġson": 1172, | |
| "Ġleave": 1173, | |
| "Ġ6": 1174, | |
| "Ġfact": 1175, | |
| "Ġnice": 1176, | |
| "Ġmil": 1177, | |
| "gether": 1178, | |
| "Ġmain": 1179, | |
| "Ġtogether": 1180, | |
| "lo": 1181, | |
| "Ġcur": 1182, | |
| "ru": 1183, | |
| "ution": 1184, | |
| "ott": 1185, | |
| "vers": 1186, | |
| "Ġmind": 1187, | |
| "Ġinte": 1188, | |
| "li": 1189, | |
| "Ġgovern": 1190, | |
| "Ġhist": 1191, | |
| "Ġhard": 1192, | |
| "Ġbro": 1193, | |
| "Ġisn": 1194, | |
| "uc": 1195, | |
| "ream": 1196, | |
| "Ġ_": 1197, | |
| "Ġtrans": 1198, | |
| "Ġproble": 1199, | |
| "uth": 1200, | |
| "Ġpri": 1201, | |
| "Ġeas": 1202, | |
| "Ġhold": 1203, | |
| "Ġste": 1204, | |
| "Ġtri": 1205, | |
| "Ġsk": 1206, | |
| "ific": 1207, | |
| "Ġrest": 1208, | |
| "Ġseen": 1209, | |
| "Ġquite": 1210, | |
| "Ġmusic": 1211, | |
| "Ġmove": 1212, | |
| "Ġfew": 1213, | |
| "Ġsays": 1214, | |
| "Ġread": 1215, | |
| "Ġbecame": 1216, | |
| "Ġcal": 1217, | |
| "Ġmeet": 1218, | |
| "Ġland": 1219, | |
| "Ġtown": 1220, | |
| "ably": 1221, | |
| "Ġlive": 1222, | |
| "Ġside": 1223, | |
| "Ġunivers": 1224, | |
| "ned": 1225, | |
| "aw": 1226, | |
| "Ġger": 1227, | |
| "Ġpret": 1228, | |
| "Ġfil": 1229, | |
| "Ġhear": 1230, | |
| "Ġsign": 1231, | |
| "Ġthough": 1232, | |
| "ung": 1233, | |
| "ines": 1234, | |
| "Ġlooking": 1235, | |
| "Ġtimes": 1236, | |
| "Ġprov": 1237, | |
| "Ġcoming": 1238, | |
| "Ġteam": 1239, | |
| "Ġimport": 1240, | |
| "son": 1241, | |
| "cc": 1242, | |
| "Ġkid": 1243, | |
| "Ġcor": 1244, | |
| "ertain": 1245, | |
| "ister": 1246, | |
| "Ġchildren": 1247, | |
| "ired": 1248, | |
| "gg": 1249, | |
| "Ġnat": 1250, | |
| "Ġcompan": 1251, | |
| "iness": 1252, | |
| "Ġemp": 1253, | |
| "Ġge": 1254, | |
| "ury": 1255, | |
| "Ġbab": 1256, | |
| "Ġremember": 1257, | |
| "Ġbelieve": 1258, | |
| "Ġlaw": 1259, | |
| "Ġunderstand": 1260, | |
| "Ġdied": 1261, | |
| "Ġ198": 1262, | |
| "Ġface": 1263, | |
| "Ġquest": 1264, | |
| "Ġdeath": 1265, | |
| "Ġmorn": 1266, | |
| "Ġwalk": 1267, | |
| "ism": 1268, | |
| "Ġwoman": 1269, | |
| "Ġext": 1270, | |
| "Ġhur": 1271, | |
| "che": 1272, | |
| "ina": 1273, | |
| "19": 1274, | |
| "ared": 1275, | |
| "Ġyet": 1276, | |
| "Ġsle": 1277, | |
| "Ġpa": 1278, | |
| "har": 1279, | |
| "ted": 1280, | |
| "pect": 1281, | |
| "Ġpat": 1282, | |
| "pl": 1283, | |
| "eter": 1284, | |
| "Ġbas": 1285, | |
| "ense": 1286, | |
| "ised": 1287, | |
| "Ġwo": 1288, | |
| "Ġbuild": 1289, | |
| "Ġmill": 1290, | |
| "Ġdri": 1291, | |
| "Ġes": 1292, | |
| "Ġhappened": 1293, | |
| "Ġwhole": 1294, | |
| "Ġmorning": 1295, | |
| "ife": 1296, | |
| "Ġdays": 1297, | |
| "Ġgetting": 1298, | |
| "Ġline": 1299, | |
| "Ġjob": 1300, | |
| "Ġinterest": 1301, | |
| "ral": 1302, | |
| "Ġwin": 1303, | |
| "Ġfore": 1304, | |
| "ron": 1305, | |
| "sel": 1306, | |
| "Ġpower": 1307, | |
| "Ġ...": 1308, | |
| "Ġconf": 1309, | |
| "Ġem": 1310, | |
| "Ġnear": 1311, | |
| "Ġposs": 1312, | |
| "ta": 1313, | |
| "Ġcountry": 1314, | |
| "ient": 1315, | |
| "Ġfuck": 1316, | |
| "uff": 1317, | |
| "ital": 1318, | |
| "ither": 1319, | |
| "Ġbrother": 1320, | |
| "Ġgame": 1321, | |
| "Ġrele": 1322, | |
| "Ġcounty": 1323, | |
| "ments": 1324, | |
| "stem": 1325, | |
| "Ġheard": 1326, | |
| "Ġfoot": 1327, | |
| "Ġ8": 1328, | |
| "Ġsort": 1329, | |
| "Ġhaving": 1330, | |
| "ho": 1331, | |
| "Ġlead": 1332, | |
| "Ġasked": 1333, | |
| "Ġrecord": 1334, | |
| "bo": 1335, | |
| "by": 1336, | |
| "Ġeyes": 1337, | |
| "Ġsoon": 1338, | |
| "Ġprob": 1339, | |
| "Ġplan": 1340, | |
| "Ġchrist": 1341, | |
| "hip": 1342, | |
| "Ġhimself": 1343, | |
| "Ġhalf": 1344, | |
| "Ġheart": 1345, | |
| "Ġeat": 1346, | |
| "ball": 1347, | |
| "Ġty": 1348, | |
| "Ġgi": 1349, | |
| "Ġshall": 1350, | |
| "Ġ7": 1351, | |
| "rew": 1352, | |
| "ield": 1353, | |
| "Ġans": 1354, | |
| "Ġdead": 1355, | |
| "Ġah": 1356, | |
| "Ġwind": 1357, | |
| "aut": 1358, | |
| "ists": 1359, | |
| "Ġserv": 1360, | |
| "Ġoffic": 1361, | |
| "000": 1362, | |
| "Ġpay": 1363, | |
| "Ġsong": 1364, | |
| "ange": 1365, | |
| "ready": 1366, | |
| "ized": 1367, | |
| "Ġra": 1368, | |
| "ying": 1369, | |
| "Ġ197": 1370, | |
| "Ġblack": 1371, | |
| "Ġgave": 1372, | |
| "ants": 1373, | |
| "Ġsystem": 1374, | |
| "ience": 1375, | |
| "Ġalready": 1376, | |
| "Ġhowever": 1377, | |
| "ets": 1378, | |
| "Ġstre": 1379, | |
| "anna": 1380, | |
| "Ġ10": 1381, | |
| "Ġupon": 1382, | |
| "Ġcase": 1383, | |
| "Ġspeak": 1384, | |
| "Ġborn": 1385, | |
| "Ġhour": 1386, | |
| "lish": 1387, | |
| "Ġimportant": 1388, | |
| "aster": 1389, | |
| "oc": 1390, | |
| "Ġguy": 1391, | |
| "Ġbring": 1392, | |
| "Ġill": 1393, | |
| "Ġnational": 1394, | |
| "Ġwrong": 1395, | |
| "ined": 1396, | |
| "uss": 1397, | |
| "vent": 1398, | |
| "Ġca": 1399, | |
| "ize": 1400, | |
| "you": 1401, | |
| "Ġwatch": 1402, | |
| "Ġexc": 1403, | |
| "Ġprof": 1404, | |
| "Ġknew": 1405, | |
| "Ġfull": 1406, | |
| "Ġwomen": 1407, | |
| "Ġuniversity": 1408, | |
| "Ġmaj": 1409, | |
| "ene": 1410, | |
| "imes": 1411, | |
| "tle": 1412, | |
| "Ġref": 1413, | |
| "Ġsound": 1414, | |
| "Ġsn": 1415, | |
| "ik": 1416, | |
| "to": 1417, | |
| "Ġconst": 1418, | |
| "wards": 1419, | |
| "ues": 1420, | |
| "?\"": 1421, | |
| "mor": 1422, | |
| "Ġsaying": 1423, | |
| "Ġ9": 1424, | |
| "Ġdiv": 1425, | |
| "Ġorder": 1426, | |
| "most": 1427, | |
| "Ġround": 1428, | |
| "Ġtalking": 1429, | |
| "Ġred": 1430, | |
| "Ġsomeone": 1431, | |
| "Ġreturn": 1432, | |
| "Ġmark": 1433, | |
| "Ġsqu": 1434, | |
| "Ġinc": 1435, | |
| "Ġcertain": 1436, | |
| "ison": 1437, | |
| "oh": 1438, | |
| "Ġori": 1439, | |
| "Ġprom": 1440, | |
| "gt": 1441, | |
| "Ġhon": 1442, | |
| "Ġfine": 1443, | |
| "pped": 1444, | |
| "Ġmeans": 1445, | |
| "velop": 1446, | |
| "Ġcontin": 1447, | |
| "Ġpresident": 1448, | |
| "Ġwhite": 1449, | |
| "Ġfight": 1450, | |
| "Ġdoor": 1451, | |
| "Ġtrying": 1452, | |
| "Ġalong": 1453, | |
| "hy": 1454, | |
| "Ġbat": 1455, | |
| ".âĢĿ": 1456, | |
| "Ġbegan": 1457, | |
| "rib": 1458, | |
| "Ġmonth": 1459, | |
| "Ġleg": 1460, | |
| "Ġx": 1461, | |
| "Ġdef": 1462, | |
| "Ġequ": 1463, | |
| "Ġclass": 1464, | |
| "ives": 1465, | |
| "ster": 1466, | |
| "wer": 1467, | |
| "where": 1468, | |
| "ched": 1469, | |
| "Ġoften": 1470, | |
| "ows": 1471, | |
| "Ġparty": 1472, | |
| "Ġcomple": 1473, | |
| "Ġstarted": 1474, | |
| "Ġpretty": 1475, | |
| "ered": 1476, | |
| "Ġprot": 1477, | |
| "Ġfall": 1478, | |
| "Ġlisten": 1479, | |
| "Ġhands": 1480, | |
| "Ġtop": 1481, | |
| "ains": 1482, | |
| "Ġinf": 1483, | |
| "Ġ*": 1484, | |
| "Ġten": 1485, | |
| "ically": 1486, | |
| "ural": 1487, | |
| "Ġgone": 1488, | |
| "ided": 1489, | |
| "ages": 1490, | |
| "Ġlear": 1491, | |
| "Ġchange": 1492, | |
| "aughter": 1493, | |
| "Ġstory": 1494, | |
| "Ġwanna": 1495, | |
| "Ġpur": 1496, | |
| "Ġwife": 1497, | |
| "ĠĠĠĠĠĠĠĠ": 1498, | |
| "Ġdevelop": 1499, | |
| "Ġmid": 1500, | |
| "Ġidea": 1501, | |
| "Ġbreak": 1502, | |
| "Ġhat": 1503, | |
| "Ġprobably": 1504, | |
| "Ġsent": 1505, | |
| "den": 1506, | |
| "Ġbed": 1507, | |
| "une": 1508, | |
| "Ġ15": 1509, | |
| "cle": 1510, | |
| "Ġgerman": 1511, | |
| "arch": 1512, | |
| "Ġarea": 1513, | |
| "Ġdan": 1514, | |
| "ility": 1515, | |
| "Ġsho": 1516, | |
| "side": 1517, | |
| "Ġearly": 1518, | |
| "Ġless": 1519, | |
| "Ġ196": 1520, | |
| "Ġswe": 1521, | |
| "cted": 1522, | |
| "rap": 1523, | |
| "Ġpap": 1524, | |
| "20": 1525, | |
| "Ġcreat": 1526, | |
| "Ġju": 1527, | |
| "Ġshort": 1528, | |
| "Ġmatter": 1529, | |
| "Ġvo": 1530, | |
| "rop": 1531, | |
| "Ġgroup": 1532, | |
| "Ġhappen": 1533, | |
| "Ġsleep": 1534, | |
| "ately": 1535, | |
| "Ġbusiness": 1536, | |
| "Ġsat": 1537, | |
| "rict": 1538, | |
| "Ġplayed": 1539, | |
| "Ġready": 1540, | |
| "pr": 1541, | |
| "Ġgovernment": 1542, | |
| "Ġdrink": 1543, | |
| "Ġbeaut": 1544, | |
| "ured": 1545, | |
| "Ġhor": 1546, | |
| "Ġgoes": 1547, | |
| "amed": 1548, | |
| "Ġbaby": 1549, | |
| "Ġaw": 1550, | |
| "ĠâĢĵ": 1551, | |
| "Ġanim": 1552, | |
| "ump": 1553, | |
| "Ġlost": 1554, | |
| "Ġ17": 1555, | |
| "Ġnews": 1556, | |
| "Ġhistory": 1557, | |
| "ional": 1558, | |
| "Ġcut": 1559, | |
| "Ġmic": 1560, | |
| "Ġwasn": 1561, | |
| "Ġcond": 1562, | |
| "Ġblood": 1563, | |
| "Ġguys": 1564, | |
| "Ġmoment": 1565, | |
| "Ġta": 1566, | |
| "iter": 1567, | |
| "Ġfire": 1568, | |
| "Ġcompany": 1569, | |
| "Ġdou": 1570, | |
| "Ġable": 1571, | |
| "Ġpolit": 1572, | |
| "Ġmaking": 1573, | |
| "igh": 1574, | |
| "Ġisland": 1575, | |
| "ides": 1576, | |
| "Ġpresent": 1577, | |
| "Ġhello": 1578, | |
| "Ġtre": 1579, | |
| "Ġtrue": 1580, | |
| "Ġproblem": 1581, | |
| "ator": 1582, | |
| "Ġship": 1583, | |
| "Ġton": 1584, | |
| "Ġdel": 1585, | |
| "Ġmer": 1586, | |
| "Ġbur": 1587, | |
| "Ġsal": 1588, | |
| "Ġpain": 1589, | |
| "Ġexpl": 1590, | |
| "iam": 1591, | |
| "Ġfree": 1592, | |
| "gn": 1593, | |
| "Ġalmost": 1594, | |
| "Ġlarge": 1595, | |
| "con": 1596, | |
| "raw": 1597, | |
| "Ġenglish": 1598, | |
| "ats": 1599, | |
| "Ġexamp": 1600, | |
| "Ġpartic": 1601, | |
| "Ġjan": 1602, | |
| "rence": 1603, | |
| "Ġim": 1604, | |
| "Ġhaven": 1605, | |
| "ches": 1606, | |
| "Ġsuc": 1607, | |
| "Ġadm": 1608, | |
| "Ġsometimes": 1609, | |
| "een": 1610, | |
| "Ġval": 1611, | |
| "ler": 1612, | |
| "Ġhope": 1613, | |
| "Ġgold": 1614, | |
| "Ġexper": 1615, | |
| "not": 1616, | |
| "lt": 1617, | |
| "Ġorigin": 1618, | |
| "Ġcontro": 1619, | |
| "Ġve": 1620, | |
| "âĢĵ": 1621, | |
| "Ġvar": 1622, | |
| "apan": 1623, | |
| "Ġhot": 1624, | |
| "ices": 1625, | |
| "ges": 1626, | |
| "Ġvis": 1627, | |
| "Ġwest": 1628, | |
| "Ġoper": 1629, | |
| "ĠĠĠ": 1630, | |
| "Ġcomes": 1631, | |
| "Ġadv": 1632, | |
| "Ġthanks": 1633, | |
| "Ġweek": 1634, | |
| "Ġest": 1635, | |
| "cent": 1636, | |
| "Ġbrit": 1637, | |
| "Ġage": 1638, | |
| "Ġstation": 1639, | |
| "Ġgeneral": 1640, | |
| "ention": 1641, | |
| "ilt": 1642, | |
| "Ġyourself": 1643, | |
| "Ġpick": 1644, | |
| "Ġpie": 1645, | |
| "Ġeight": 1646, | |
| "ma": 1647, | |
| "Ġwouldn": 1648, | |
| "Ġgrand": 1649, | |
| "Ġworking": 1650, | |
| "ained": 1651, | |
| "Ġlooked": 1652, | |
| "Ġrock": 1653, | |
| "Ġmag": 1654, | |
| "Ġrom": 1655, | |
| "aces": 1656, | |
| "ries": 1657, | |
| "ush": 1658, | |
| "Ġbody": 1659, | |
| "Ġclear": 1660, | |
| "Ġjack": 1661, | |
| "ians": 1662, | |
| "Ġball": 1663, | |
| "Ġdeal": 1664, | |
| "Ġpublic": 1665, | |
| "gy": 1666, | |
| "!\"": 1667, | |
| "Ġocc": 1668, | |
| "Ġintern": 1669, | |
| "Ġ#": 1670, | |
| "ama": 1671, | |
| "Ġjapan": 1672, | |
| "Ġsol": 1673, | |
| "what": 1674, | |
| "ract": 1675, | |
| "Ġbecome": 1676, | |
| "Ġmur": 1677, | |
| "Ġlang": 1678, | |
| "Ġpos": 1679, | |
| "Ġfilm": 1680, | |
| "ok": 1681, | |
| "Ġroad": 1682, | |
| "Ġchur": 1683, | |
| "ulation": 1684, | |
| "Ġclose": 1685, | |
| "Ġdistrict": 1686, | |
| "ley": 1687, | |
| "ond": 1688, | |
| "Ġgiven": 1689, | |
| "Ġtele": 1690, | |
| "Ġdam": 1691, | |
| "Ġago": 1692, | |
| "Ġopp": 1693, | |
| "Ġsil": 1694, | |
| "Ġmrs": 1695, | |
| "ham": 1696, | |
| "Ġfood": 1697, | |
| "Ġdisc": 1698, | |
| "Ġfre": 1699, | |
| "Ġspec": 1700, | |
| "Ġsever": 1701, | |
| "Ġpen": 1702, | |
| "Ġhappy": 1703, | |
| "Ġmovie": 1704, | |
| "Ġce": 1705, | |
| "Ġdog": 1706, | |
| "Ġalb": 1707, | |
| "Ġav": 1708, | |
| "Ġbegin": 1709, | |
| "Ġfriends": 1710, | |
| "und": 1711, | |
| "ze": 1712, | |
| "Ġsun": 1713, | |
| "gram": 1714, | |
| "Ġdev": 1715, | |
| "Ġfrance": 1716, | |
| "Ġlate": 1717, | |
| "used": 1718, | |
| "Ġwonder": 1719, | |
| "Ġquestion": 1720, | |
| "Ġstar": 1721, | |
| "arent": 1722, | |
| "Ġport": 1723, | |
| "Ġtra": 1724, | |
| "Ġ194": 1725, | |
| "ns": 1726, | |
| "Ġlooks": 1727, | |
| "Ġstuff": 1728, | |
| "ering": 1729, | |
| "Ġorgan": 1730, | |
| "Ġmyself": 1731, | |
| "enty": 1732, | |
| "ney": 1733, | |
| "Ġbrought": 1734, | |
| "Ġguess": 1735, | |
| "Ġeur": 1736, | |
| "hind": 1737, | |
| "ino": 1738, | |
| "Ġann": 1739, | |
| "Ġhit": 1740, | |
| "Ġ16": 1741, | |
| "Ġprofess": 1742, | |
| "Ġpast": 1743, | |
| "Ġhuh": 1744, | |
| "Ġmarch": 1745, | |
| "Ġbill": 1746, | |
| "Ġhuman": 1747, | |
| "Ġpict": 1748, | |
| "Ġlangu": 1749, | |
| "Ġrece": 1750, | |
| "Ġquick": 1751, | |
| "Ġ12": 1752, | |
| "Ġseveral": 1753, | |
| "Ġfront": 1754, | |
| "jo": 1755, | |
| "ots": 1756, | |
| "Ġreleased": 1757, | |
| "Âł": 1758, | |
| "ief": 1759, | |
| "Ġbehind": 1760, | |
| "Ġleast": 1761, | |
| "Ġkilled": 1762, | |
| "Ġwords": 1763, | |
| "born": 1764, | |
| "Ġcaptain": 1765, | |
| "Ġcourt": 1766, | |
| "Ġcamp": 1767, | |
| "utes": 1768, | |
| "ety": 1769, | |
| "Ġrad": 1770, | |
| "Ġmajor": 1771, | |
| "Ġreason": 1772, | |
| "Ġdaughter": 1773, | |
| "Ġexact": 1774, | |
| "Ġprogram": 1775, | |
| "Ġtaken": 1776, | |
| "iting": 1777, | |
| "ese": 1778, | |
| "Ġseries": 1779, | |
| "Ġtemp": 1780, | |
| "Ġmad": 1781, | |
| "alth": 1782, | |
| "ring": 1783, | |
| "ards": 1784, | |
| "Ġinform": 1785, | |
| "Ġrather": 1786, | |
| "Ġtaking": 1787, | |
| "Ġjanuary": 1788, | |
| "Ġeither": 1789, | |
| "mon": 1790, | |
| "Ġsold": 1791, | |
| "Ġvir": 1792, | |
| "Ġexample": 1793, | |
| "iful": 1794, | |
| "Ġcommon": 1795, | |
| "la": 1796, | |
| "Ġdet": 1797, | |
| "Ġyork": 1798, | |
| "ey": 1799, | |
| "Ġum": 1800, | |
| "Ġalright": 1801, | |
| "ple": 1802, | |
| "Ġmakes": 1803, | |
| "Ġband": 1804, | |
| "go": 1805, | |
| "Ġreport": 1806, | |
| "selves": 1807, | |
| "haps": 1808, | |
| "Ġdesign": 1809, | |
| "Ġsea": 1810, | |
| "Ġcharac": 1811, | |
| "ived": 1812, | |
| "Ġcat": 1813, | |
| "Ġsuper": 1814, | |
| "Ġ195": 1815, | |
| "iously": 1816, | |
| "Ġfig": 1817, | |
| "Ġ&": 1818, | |
| "Ġallow": 1819, | |
| "Ġcheck": 1820, | |
| "Ġir": 1821, | |
| "Ġprin": 1822, | |
| "com": 1823, | |
| "port": 1824, | |
| "ology": 1825, | |
| "Ġdream": 1826, | |
| "ee": 1827, | |
| "Ġaust": 1828, | |
| "Ġvill": 1829, | |
| "Ġmarried": 1830, | |
| "Ġpark": 1831, | |
| "Ġdepart": 1832, | |
| "Ġchurch": 1833, | |
| "hu": 1834, | |
| "Ġcost": 1835, | |
| "Ġmillion": 1836, | |
| "men": 1837, | |
| "Ġfa": 1838, | |
| "Ġalone": 1839, | |
| "ii": 1840, | |
| "Ġda": 1841, | |
| "Ġtrain": 1842, | |
| "ude": 1843, | |
| "Ġriver": 1844, | |
| "Ġstrong": 1845, | |
| "Ġliving": 1846, | |
| "Ġothers": 1847, | |
| "Ġcop": 1848, | |
| "iqu": 1849, | |
| "Ġcir": 1850, | |
| "oud": 1851, | |
| "Ġsupport": 1852, | |
| "Ġpoor": 1853, | |
| "Ġfif": 1854, | |
| "ls": 1855, | |
| "aced": 1856, | |
| "Ġtou": 1857, | |
| "ien": 1858, | |
| "Ġpal": 1859, | |
| "Ġspecial": 1860, | |
| "Ġstep": 1861, | |
| "Ġcouldn": 1862, | |
| "Ġattack": 1863, | |
| "bs": 1864, | |
| "Ġperhaps": 1865, | |
| "Ġabs": 1866, | |
| "ality": 1867, | |
| "Ġlay": 1868, | |
| "Ġlady": 1869, | |
| "Ġsuccess": 1870, | |
| "fic": 1871, | |
| "Ġturned": 1872, | |
| "Ġgeor": 1873, | |
| "head": 1874, | |
| "Ġhund": 1875, | |
| "Ġmount": 1876, | |
| "rench": 1877, | |
| "Ġearth": 1878, | |
| "but": 1879, | |
| "elt": 1880, | |
| "Ġmess": 1881, | |
| "Ġcos": 1882, | |
| "Ġsumm": 1883, | |
| "Ġthird": 1884, | |
| ",âĢĿ": 1885, | |
| "Ġeveryone": 1886, | |
| "Ġresp": 1887, | |
| "Ġye": 1888, | |
| "Ġhundred": 1889, | |
| "ped": 1890, | |
| "Ġtest": 1891, | |
| "ones": 1892, | |
| "itten": 1893, | |
| "ium": 1894, | |
| "Ġbeautiful": 1895, | |
| "par": 1896, | |
| "let": 1897, | |
| "Ġcoun": 1898, | |
| "gue": 1899, | |
| "ament": 1900, | |
| "Ġthinking": 1901, | |
| "Ġelect": 1902, | |
| "Ġ0": 1903, | |
| "Ġwall": 1904, | |
| "Ġeast": 1905, | |
| "Ġwithin": 1906, | |
| "ove": 1907, | |
| "app": 1908, | |
| "atic": 1909, | |
| "Ġsecre": 1910, | |
| "Ġeurope": 1911, | |
| "Ġdear": 1912, | |
| "lly": 1913, | |
| "Ġalbum": 1914, | |
| "Ġhy": 1915, | |
| "Ġgrow": 1916, | |
| "Ġreco": 1917, | |
| "dle": 1918, | |
| "Ġusually": 1919, | |
| "Ġoffice": 1920, | |
| "ford": 1921, | |
| "Ġperform": 1922, | |
| "eng": 1923, | |
| "mbers": 1924, | |
| "Ġfair": 1925, | |
| "Ġdoctor": 1926, | |
| "Ġcre": 1927, | |
| "band": 1928, | |
| "Ġsweet": 1929, | |
| "ully": 1930, | |
| "Ġfur": 1931, | |
| "Ġdie": 1932, | |
| "osp": 1933, | |
| "Ġ$": 1934, | |
| "Ġphil": 1935, | |
| "Ġcross": 1936, | |
| "Ġbritish": 1937, | |
| "els": 1938, | |
| "Ġstreet": 1939, | |
| "umb": 1940, | |
| "ert": 1941, | |
| "morrow": 1942, | |
| "Ġtot": 1943, | |
| "Ġamong": 1944, | |
| "ape": 1945, | |
| "Ġgreen": 1946, | |
| "Ġinside": 1947, | |
| "Ġcast": 1948, | |
| "Ġjud": 1949, | |
| "idge": 1950, | |
| "ement": 1951, | |
| "Ġcolle": 1952, | |
| "ndon": 1953, | |
| "Ġvict": 1954, | |
| "Ġgun": 1955, | |
| "Ġnamed": 1956, | |
| "Ġconn": 1957, | |
| "Ġplaying": 1958, | |
| "Ġsept": 1959, | |
| "zy": 1960, | |
| "ently": 1961, | |
| "Ġbuilding": 1962, | |
| "Ġje": 1963, | |
| "Ġseven": 1964, | |
| "Ġimm": 1965, | |
| "Ġcoup": 1966, | |
| "Ġappro": 1967, | |
| "ffect": 1968, | |
| "Ġtrou": 1969, | |
| "Ġrob": 1970, | |
| "Ġbir": 1971, | |
| "Ġsend": 1972, | |
| "Ġexpect": 1973, | |
| "ior": 1974, | |
| "Ġchamp": 1975, | |
| "Ġfootball": 1976, | |
| "Ġheld": 1977, | |
| "Ġanswer": 1978, | |
| "itting": 1979, | |
| "Ġclub": 1980, | |
| "Ġresult": 1981, | |
| "Ġservice": 1982, | |
| "Ġmor": 1983, | |
| "Ġexactly": 1984, | |
| "Ġwants": 1985, | |
| "ograp": 1986, | |
| "Ġfrench": 1987, | |
| "hern": 1988, | |
| "Ġteac": 1989, | |
| "Ġpolice": 1990, | |
| "Ġsingle": 1991, | |
| "Ġwood": 1992, | |
| "Ġdark": 1993, | |
| "Ġlord": 1994, | |
| "Ġground": 1995, | |
| "erv": 1996, | |
| "ider": 1997, | |
| "ming": 1998, | |
| "Ġoutside": 1999, | |
| "Ġbuilt": 2000, | |
| "Ġminute": 2001, | |
| "Ġacross": 2002, | |
| "ril": 2003, | |
| "Ġlad": 2004, | |
| "Ġrequ": 2005, | |
| "Ġgotta": 2006, | |
| "Ġfollowing": 2007, | |
| "ances": 2008, | |
| "Ġ11": 2009, | |
| "Ġseason": 2010, | |
| "Ġtwenty": 2011, | |
| "Ġusing": 2012, | |
| "su": 2013, | |
| "Ġlab": 2014, | |
| "Ġang": 2015, | |
| "Ġmembers": 2016, | |
| "lished": 2017, | |
| "Ġaug": 2018, | |
| "Ġdece": 2019, | |
| "Ġbuy": 2020, | |
| "Ġlocal": 2021, | |
| "aged": 2022, | |
| "Ġdest": 2023, | |
| "Ġwhatever": 2024, | |
| "oke": 2025, | |
| "bert": 2026, | |
| "ĠĠĊ": 2027, | |
| "Ġran": 2028, | |
| "Ġeffect": 2029, | |
| "Ġpossible": 2030, | |
| "Ġsus": 2031, | |
| "Ġmonths": 2032, | |
| "ead": 2033, | |
| "Ġhus": 2034, | |
| "Ġseptember": 2035, | |
| "Ġbird": 2036, | |
| "Ġcra": 2037, | |
| "Ġminutes": 2038, | |
| "Ġeverybody": 2039, | |
| "ob": 2040, | |
| "Ġconcer": 2041, | |
| "Ġvide": 2042, | |
| "Ġoct": 2043, | |
| "estern": 2044, | |
| "Ġjuly": 2045, | |
| "vered": 2046, | |
| "key": 2047, | |
| "Ġtomorrow": 2048, | |
| "Ġappear": 2049, | |
| "Ġauth": 2050, | |
| "Ġlow": 2051, | |
| "unt": 2052, | |
| "fully": 2053, | |
| "Ġanyone": 2054, | |
| "Ġshut": 2055, | |
| "Ġver": 2056, | |
| "oor": 2057, | |
| "Ġhen": 2058, | |
| "Ġincluding": 2059, | |
| "ination": 2060, | |
| "Ġhair": 2061, | |
| "Ġwhether": 2062, | |
| "vision": 2063, | |
| "Ġnorm": 2064, | |
| "unk": 2065, | |
| "Ġtreat": 2066, | |
| "Ġru": 2067, | |
| "Ġtech": 2068, | |
| "Ġtried": 2069, | |
| "ald": 2070, | |
| "Ġsecret": 2071, | |
| "Ġrepres": 2072, | |
| "Ġpull": 2073, | |
| "Ġarm": 2074, | |
| "Ġpress": 2075, | |
| "ency": 2076, | |
| "Ġvie": 2077, | |
| "Ġvoice": 2078, | |
| "Ġblue": 2079, | |
| "Ġpopulation": 2080, | |
| "Ġ193": 2081, | |
| "Ġcry": 2082, | |
| "ousand": 2083, | |
| "Ġeasy": 2084, | |
| "Ġtill": 2085, | |
| "aim": 2086, | |
| "cha": 2087, | |
| "Ġlondon": 2088, | |
| "ov": 2089, | |
| "Ġmot": 2090, | |
| "Ġmass": 2091, | |
| "Ġmod": 2092, | |
| "Ġbox": 2093, | |
| "Ġpet": 2094, | |
| "Ġlevel": 2095, | |
| "dom": 2096, | |
| "Ġmember": 2097, | |
| "ober": 2098, | |
| "Ġthousand": 2099, | |
| "Ġlanguage": 2100, | |
| "Ġwritten": 2101, | |
| "iving": 2102, | |
| "well": 2103, | |
| "anc": 2104, | |
| "Ġhill": 2105, | |
| "Ġcold": 2106, | |
| "Ġfell": 2107, | |
| "ipp": 2108, | |
| "Ġfield": 2109, | |
| "bit": 2110, | |
| "Ġforg": 2111, | |
| "Ġjune": 2112, | |
| "Ġlau": 2113, | |
| "come": 2114, | |
| "fort": 2115, | |
| "gress": 2116, | |
| "Ġdepartment": 2117, | |
| "Ġaugust": 2118, | |
| "sc": 2119, | |
| "Ġcollege": 2120, | |
| "Ġfelt": 2121, | |
| "Ġboys": 2122, | |
| "Ġworks": 2123, | |
| "anger": 2124, | |
| "Ġengland": 2125, | |
| "gest": 2126, | |
| "ached": 2127, | |
| "Ġ13": 2128, | |
| "Ġeduc": 2129, | |
| "Ġlived": 2130, | |
| "Ġprocess": 2131, | |
| "Ġview": 2132, | |
| "Ġdav": 2133, | |
| "Ġproper": 2134, | |
| "Ġrepl": 2135, | |
| "Ġmine": 2136, | |
| "Ġtour": 2137, | |
| "Ġital": 2138, | |
| "Ġ14": 2139, | |
| "Ġhig": 2140, | |
| "Ġtable": 2141, | |
| "view": 2142, | |
| "ases": 2143, | |
| "Ġcomplete": 2144, | |
| "Ġchance": 2145, | |
| "Ġanyway": 2146, | |
| "Ġparticular": 2147, | |
| "Ġshit": 2148, | |
| "Ġarmy": 2149, | |
| "Ġcentury": 2150, | |
| "Ġpost": 2151, | |
| "unch": 2152, | |
| "Ġdin": 2153, | |
| "Ġworry": 2154, | |
| "Ġgets": 2155, | |
| "Ġprotect": 2156, | |
| "Ġhusband": 2157, | |
| "||": 2158, | |
| "Ġbased": 2159, | |
| "Ġformer": 2160, | |
| "Ġseems": 2161, | |
| "ified": 2162, | |
| "ature": 2163, | |
| "ept": 2164, | |
| "Ġinformation": 2165, | |
| "ana": 2166, | |
| "Ġevent": 2167, | |
| "Ġgames": 2168, | |
| "Ġpract": 2169, | |
| "Ġdefe": 2170, | |
| "vember": 2171, | |
| "Ġant": 2172, | |
| "Ġinstead": 2173, | |
| "Ġmaster": 2174, | |
| "Ġrail": 2175, | |
| "Ġcareer": 2176, | |
| "Ġfav": 2177, | |
| "Ġgar": 2178, | |
| "Ġep": 2179, | |
| "Ġapril": 2180, | |
| "Ġtrad": 2181, | |
| "Ġsister": 2182, | |
| "itions": 2183, | |
| "chan": 2184, | |
| "iod": 2185, | |
| "Ġregion": 2186, | |
| "Ġclean": 2187, | |
| "read": 2188, | |
| "Ġcommand": 2189, | |
| "Ġwish": 2190, | |
| "Ġwrite": 2191, | |
| "ories": 2192, | |
| "eared": 2193, | |
| "Ġwear": 2194, | |
| "Ġsud": 2195, | |
| "Ġcurrent": 2196, | |
| "Ġhours": 2197, | |
| "Ġconnect": 2198, | |
| "for": 2199, | |
| "Ġlives": 2200, | |
| "Ġworked": 2201, | |
| "Ġris": 2202, | |
| "Ġstra": 2203, | |
| "hm": 2204, | |
| "Ġsomebody": 2205, | |
| "Ġpriv": 2206, | |
| "soci": 2207, | |
| "Ġcook": 2208, | |
| "Ġnet": 2209, | |
| "Ġcouple": 2210, | |
| "Ġoctober": 2211, | |
| "hen": 2212, | |
| "Ġpaper": 2213, | |
| "Ġtechn": 2214, | |
| "rie": 2215, | |
| "Ġforget": 2216, | |
| "Ġtit": 2217, | |
| "Ġtelevision": 2218, | |
| "ο": 2219, | |
| "Ġcannot": 2220, | |
| "bruary": 2221, | |
| "Ġones": 2222, | |
| "Ġdiffic": 2223, | |
| "sy": 2224, | |
| "Ġtrust": 2225, | |
| "huh": 2226, | |
| "Ġlim": 2227, | |
| "Ġlie": 2228, | |
| "Ġtruth": 2229, | |
| "Ġprop": 2230, | |
| "Ġauthor": 2231, | |
| "Ġfast": 2232, | |
| "Ġ30": 2233, | |
| "Ġinvol": 2234, | |
| "Ġcam": 2235, | |
| "oint": 2236, | |
| "Ġdecember": 2237, | |
| "Ġhang": 2238, | |
| "Ġwrote": 2239, | |
| "though": 2240, | |
| "Ġknows": 2241, | |
| "kes": 2242, | |
| "king": 2243, | |
| "Ġvi": 2244, | |
| "uct": 2245, | |
| "Ġnovember": 2246, | |
| "aint": 2247, | |
| "Ġbirth": 2248, | |
| "....": 2249, | |
| "Ġsoci": 2250, | |
| "lling": 2251, | |
| "itch": 2252, | |
| "cil": 2253, | |
| "Ġsense": 2254, | |
| "Ġaren": 2255, | |
| "Ġrepresent": 2256, | |
| "Ġcult": 2257, | |
| "asure": 2258, | |
| "ike": 2259, | |
| "Ġrelig": 2260, | |
| "Ġamerica": 2261, | |
| "Ġdeep": 2262, | |
| "Ġfeet": 2263, | |
| "Ġtur": 2264, | |
| "Ġsen": 2265, | |
| "Ġric": 2266, | |
| "Ġphone": 2267, | |
| "Ġassoci": 2268, | |
| "Ġdress": 2269, | |
| "Ġcompet": 2270, | |
| "Ġcontrol": 2271, | |
| "Ġciv": 2272, | |
| "iding": 2273, | |
| "Ġdi": 2274, | |
| "lu": 2275, | |
| "Ġjames": 2276, | |
| "Ġtonight": 2277, | |
| "af": 2278, | |
| "airs": 2279, | |
| "yal": 2280, | |
| "Ġbull": 2281, | |
| "Ġindian": 2282, | |
| "ec": 2283, | |
| "Ġchanged": 2284, | |
| "Ġcup": 2285, | |
| "Ġparent": 2286, | |
| "Ġ2013": 2287, | |
| "Ġvers": 2288, | |
| "ery": 2289, | |
| "raid": 2290, | |
| "Ġpeter": 2291, | |
| "Ġdesc": 2292, | |
| "yed": 2293, | |
| "work": 2294, | |
| "gu": 2295, | |
| "Ġdraw": 2296, | |
| "Ġperiod": 2297, | |
| "Ġgeorge": 2298, | |
| "Ġexcept": 2299, | |
| "Ġterm": 2300, | |
| "Ġfebruary": 2301, | |
| "Ġkids": 2302, | |
| "Ġaward": 2303, | |
| "Ġber": 2304, | |
| "Ġmoved": 2305, | |
| "Ġsex": 2306, | |
| "ization": 2307, | |
| "Ġfly": 2308, | |
| "urs": 2309, | |
| "Ġdaddy": 2310, | |
| "Ġfail": 2311, | |
| "Ġshoot": 2312, | |
| "ula": 2313, | |
| "Ġdisco": 2314, | |
| "eth": 2315, | |
| "Ġlonger": 2316, | |
| "ship": 2317, | |
| "Ġbott": 2318, | |
| "avy": 2319, | |
| "Ġinde": 2320, | |
| "Ġluck": 2321, | |
| "Ġgent": 2322, | |
| "Ġsupposed": 2323, | |
| "idence": 2324, | |
| "Ġspace": 2325, | |
| "Ġdar": 2326, | |
| "Ġsocial": 2327, | |
| "ended": 2328, | |
| "Ġdirect": 2329, | |
| "Ġvideo": 2330, | |
| "Ġshot": 2331, | |
| "ida": 2332, | |
| "Ġsec": 2333, | |
| "ival": 2334, | |
| "Ġcharacter": 2335, | |
| "itive": 2336, | |
| "Ġgirls": 2337, | |
| "Ġhealth": 2338, | |
| "oose": 2339, | |
| "Ġvol": 2340, | |
| "yr": 2341, | |
| "Ġben": 2342, | |
| "room": 2343, | |
| "Ġlat": 2344, | |
| "Ġfrank": 2345, | |
| "ration": 2346, | |
| "Ġmal": 2347, | |
| "Ġrev": 2348, | |
| "Ġalthough": 2349, | |
| "Ġsudden": 2350, | |
| "ding": 2351, | |
| "Ġnine": 2352, | |
| "Ġthemselves": 2353, | |
| "ging": 2354, | |
| "Ġwel": 2355, | |
| "Ġchair": 2356, | |
| "Ġ202": 2357, | |
| "Ġaccord": 2358, | |
| "Ġsar": 2359, | |
| "Ġafraid": 2360, | |
| "irty": 2361, | |
| "Ġperfect": 2362, | |
| "Ġproject": 2363, | |
| "Ġroman": 2364, | |
| "Ġinternational": 2365, | |
| "sp": 2366, | |
| "wh": 2367, | |
| "Ġcommune": 2368, | |
| "Ġmiddle": 2369, | |
| "fer": 2370, | |
| "yn": 2371, | |
| "Ġrunning": 2372, | |
| "ata": 2373, | |
| "ille": 2374, | |
| "Ġpicture": 2375, | |
| "cr": 2376, | |
| "ka": 2377, | |
| "Ġ2010": 2378, | |
| "Ġvillage": 2379, | |
| "Ġhoney": 2380, | |
| "Ġtree": 2381, | |
| "Ġincre": 2382, | |
| "Ġtrouble": 2383, | |
| "Ġdro": 2384, | |
| "ument": 2385, | |
| "Ġcollect": 2386, | |
| "Ġhurt": 2387, | |
| "Ġtouch": 2388, | |
| "rodu": 2389, | |
| "cially": 2390, | |
| "lex": 2391, | |
| "Ġforce": 2392, | |
| "Ġdem": 2393, | |
| "mer": 2394, | |
| "Ġden": 2395, | |
| "Ġwilliam": 2396, | |
| "cing": 2397, | |
| "Ġletter": 2398, | |
| "Ġbud": 2399, | |
| "ony": 2400, | |
| "Ġfucking": 2401, | |
| "hael": 2402, | |
| "that": 2403, | |
| "Ġkept": 2404, | |
| "Ġabove": 2405, | |
| "bur": 2406, | |
| "Ġcried": 2407, | |
| "Ġhorse": 2408, | |
| "Ġpopular": 2409, | |
| "Ġcivil": 2410, | |
| "Ġcorn": 2411, | |
| "Ġhosp": 2412, | |
| "Ġesc": 2413, | |
| "Ġafric": 2414, | |
| "more": 2415, | |
| "rog": 2416, | |
| "Ġtype": 2417, | |
| "Ġneeds": 2418, | |
| "Ġpot": 2419, | |
| "Ġvirgin": 2420, | |
| "Ġmoder": 2421, | |
| "Ġhop": 2422, | |
| "Ġarri": 2423, | |
| "yl": 2424, | |
| "Ġ25": 2425, | |
| "conom": 2426, | |
| "Ġspir": 2427, | |
| "Ġcrit": 2428, | |
| "Ġdue": 2429, | |
| "Ġaccept": 2430, | |
| "ffe": 2431, | |
| "Ġfut": 2432, | |
| "Ġseemed": 2433, | |
| "Ġreceived": 2434, | |
| "bers": 2435, | |
| "Ġsand": 2436, | |
| "Ġbear": 2437, | |
| "uation": 2438, | |
| "Ġbeat": 2439, | |
| "Ġjim": 2440, | |
| "ption": 2441, | |
| "Ġcomput": 2442, | |
| "Ġbroad": 2443, | |
| "emy": 2444, | |
| "Ġleague": 2445, | |
| "Ġeye": 2446, | |
| "Ġengine": 2447, | |
| "Ġwaiting": 2448, | |
| "Ġinvest": 2449, | |
| "Ġnar": 2450, | |
| "Ġclot": 2451, | |
| "Ġburn": 2452, | |
| "hard": 2453, | |
| "Ġrul": 2454, | |
| "Ġcho": 2455, | |
| "Ġentire": 2456, | |
| "Ġmult": 2457, | |
| "Ġcapital": 2458, | |
| "Ġgentle": 2459, | |
| "Ġfurther": 2460, | |
| "Ġiss": 2461, | |
| "Ġrespect": 2462, | |
| "Ġhall": 2463, | |
| "oof": 2464, | |
| "ilar": 2465, | |
| "Ġsan": 2466, | |
| "Ġbal": 2467, | |
| "Ġrese": 2468, | |
| "Ġcountries": 2469, | |
| "Ġrain": 2470, | |
| "Ġur": 2471, | |
| "ublic": 2472, | |
| "ission": 2473, | |
| "Ġsave": 2474, | |
| "ada": 2475, | |
| "Ġplayer": 2476, | |
| "Ġimag": 2477, | |
| "ffic": 2478, | |
| "Ġcirc": 2479, | |
| "lant": 2480, | |
| "Ġled": 2481, | |
| "Ġeconom": 2482, | |
| "Ġdut": 2483, | |
| "Ġworth": 2484, | |
| "Ġmhm": 2485, | |
| "Ġphys": 2486, | |
| "Ġexcuse": 2487, | |
| "Ġstraight": 2488, | |
| "ky": 2489, | |
| "Ġmommy": 2490, | |
| "ray": 2491, | |
| "Ġpound": 2492, | |
| "Ġstat": 2493, | |
| "Ġstri": 2494, | |
| "Ġslow": 2495, | |
| "Ġban": 2496, | |
| "Ġunion": 2497, | |
| "Ġsugg": 2498, | |
| "owers": 2499, | |
| "Ġmist": 2500, | |
| "amb": 2501, | |
| "Ġsurpr": 2502, | |
| "Ġpiece": 2503, | |
| "Ġmis": 2504, | |
| "Ġmart": 2505, | |
| "Ġproduct": 2506, | |
| "Ġitself": 2507, | |
| "Ġqueen": 2508, | |
| "Ġinclude": 2509, | |
| "Ġposition": 2510, | |
| "Ġsuggest": 2511, | |
| "line": 2512, | |
| "Ġphot": 2513, | |
| "Ġcreated": 2514, | |
| "Ġpan": 2515, | |
| "Ġcool": 2516, | |
| "Ġain": 2517, | |
| "eral": 2518, | |
| "Ġfamous": 2519, | |
| "Ġring": 2520, | |
| "Ġmilit": 2521, | |
| "Ġsummer": 2522, | |
| "ken": 2523, | |
| "how": 2524, | |
| "uel": 2525, | |
| "Ġtakes": 2526, | |
| "Ġnort": 2527, | |
| "Ġfunny": 2528, | |
| "Ġsout": 2529, | |
| "Ġmary": 2530, | |
| "Ġrepublic": 2531, | |
| "Ġfort": 2532, | |
| "ror": 2533, | |
| "olute": 2534, | |
| "Ġboard": 2535, | |
| "Ġbooks": 2536, | |
| "bt": 2537, | |
| "Ġchief": 2538, | |
| "Ġdifficult": 2539, | |
| "ret": 2540, | |
| "18": 2541, | |
| "Ġcatch": 2542, | |
| "Ġrecogn": 2543, | |
| "ax": 2544, | |
| "Ġcarry": 2545, | |
| "10": 2546, | |
| "Ġnon": 2547, | |
| "Ġfill": 2548, | |
| "eal": 2549, | |
| "Ġenjo": 2550, | |
| "Ġfuture": 2551, | |
| "Ġcause": 2552, | |
| "Ġcomb": 2553, | |
| "Ġamount": 2554, | |
| "Ġcentral": 2555, | |
| "Ġfeeling": 2556, | |
| "Ġaud": 2557, | |
| "Ġdrive": 2558, | |
| "acy": 2559, | |
| "Ġarch": 2560, | |
| "Ġlaugh": 2561, | |
| "Ġevening": 2562, | |
| "oul": 2563, | |
| "ially": 2564, | |
| "Ġsafe": 2565, | |
| "Ġaccording": 2566, | |
| "omin": 2567, | |
| "Ġjour": 2568, | |
| "Ġaustral": 2569, | |
| "Ġchampions": 2570, | |
| "Ġhospital": 2571, | |
| "Ġshar": 2572, | |
| "Ġkiss": 2573, | |
| "Ġlu": 2574, | |
| "ference": 2575, | |
| "Ġcover": 2576, | |
| "Ġpolic": 2577, | |
| "Ġwhose": 2578, | |
| "edi": 2579, | |
| "Ġweeks": 2580, | |
| "yle": 2581, | |
| "ston": 2582, | |
| "Ġtrack": 2583, | |
| "Ġhung": 2584, | |
| "Ġ24": 2585, | |
| "Ġbene": 2586, | |
| "olution": 2587, | |
| "Ġfer": 2588, | |
| "Ġserved": 2589, | |
| "Ġcertainly": 2590, | |
| "Ġstood": 2591, | |
| "Ġbye": 2592, | |
| "Ġlos": 2593, | |
| "Ġrole": 2594, | |
| "Ġdecided": 2595, | |
| "Ġforest": 2596, | |
| "Ġlou": 2597, | |
| "Ġglad": 2598, | |
| "Ġ]": 2599, | |
| "Ġfix": 2600, | |
| "oon": 2601, | |
| "Ġdoll": 2602, | |
| "rian": 2603, | |
| "Ġdavid": 2604, | |
| "Ġthrow": 2605, | |
| "Ġhun": 2606, | |
| "Ġtelling": 2607, | |
| "gar": 2608, | |
| "Ġsail": 2609, | |
| "Ġpaul": 2610, | |
| "omb": 2611, | |
| "Ġexist": 2612, | |
| "Ġmatch": 2613, | |
| "Ġpassed": 2614, | |
| "Ġgard": 2615, | |
| "Ġobject": 2616, | |
| "Ġsimilar": 2617, | |
| "lled": 2618, | |
| "Ġfigure": 2619, | |
| "Ġmeant": 2620, | |
| "Ġproblems": 2621, | |
| "Ġsubject": 2622, | |
| "zz": 2623, | |
| "Ġaut": 2624, | |
| "Ġprison": 2625, | |
| "Ġfinal": 2626, | |
| "lin": 2627, | |
| "Ġgrad": 2628, | |
| "Ġange": 2629, | |
| "Ġmeeting": 2630, | |
| "Ġrelations": 2631, | |
| "Ġcommunity": 2632, | |
| "Ġbattle": 2633, | |
| "Ġshop": 2634, | |
| "Ġquiet": 2635, | |
| "pecially": 2636, | |
| "Ġwow": 2637, | |
| "Ġteacher": 2638, | |
| "Ġmater": 2639, | |
| "Ġmodern": 2640, | |
| "sha": 2641, | |
| "Ġfinally": 2642, | |
| "Ġcenter": 2643, | |
| "Ġprovince": 2644, | |
| "Ġmichael": 2645, | |
| "Ġabsolute": 2646, | |
| "ai": 2647, | |
| "Ġahead": 2648, | |
| "Ġneg": 2649, | |
| "Ġcrazy": 2650, | |
| "ergy": 2651, | |
| "Ġruss": 2652, | |
| "Ġnobody": 2653, | |
| "Ġsoft": 2654, | |
| "Ġcontinu": 2655, | |
| "Ġstick": 2656, | |
| "Ġfish": 2657, | |
| "Ġanimals": 2658, | |
| "riage": 2659, | |
| "like": 2660, | |
| "Ġbow": 2661, | |
| "Ġtyp": 2662, | |
| "Ġsick": 2663, | |
| "Ġfed": 2664, | |
| "akes": 2665, | |
| "Ġindia": 2666, | |
| "Ġprev": 2667, | |
| "Ġdanger": 2668, | |
| "Ġnin": 2669, | |
| "Ġmouth": 2670, | |
| "Ġherself": 2671, | |
| "Ġord": 2672, | |
| "teen": 2673, | |
| "Ġlearn": 2674, | |
| "Ġparents": 2675, | |
| "Ġhol": 2676, | |
| "Ġviol": 2677, | |
| "Ġfamil": 2678, | |
| "Ġtom": 2679, | |
| "Ġreturned": 2680, | |
| "Ġrich": 2681, | |
| "Ġagre": 2682, | |
| "Ġfollowed": 2683, | |
| "Ġet": 2684, | |
| "Ġbag": 2685, | |
| "Ġsad": 2686, | |
| "iment": 2687, | |
| "do": 2688, | |
| "agon": 2689, | |
| "ked": 2690, | |
| "Ġsam": 2691, | |
| "Ġplaces": 2692, | |
| "Ġindust": 2693, | |
| "Ġfem": 2694, | |
| "Ġwhom": 2695, | |
| "ceed": 2696, | |
| "Ġ192": 2697, | |
| "Ġsuppose": 2698, | |
| "Ġspecies": 2699, | |
| "cause": 2700, | |
| "Ġexpress": 2701, | |
| "Ġglass": 2702, | |
| "Ġbreat": 2703, | |
| "Ġinteresting": 2704, | |
| "ping": 2705, | |
| "inal": 2706, | |
| "Ġself": 2707, | |
| "Ġsociety": 2708, | |
| "Ġmoving": 2709, | |
| "Ġwild": 2710, | |
| "Ġmach": 2711, | |
| "Ġclos": 2712, | |
| "Ġkingdom": 2713, | |
| "Ġjapanese": 2714, | |
| "itor": 2715, | |
| "Ġscience": 2716, | |
| "Ġsport": 2717, | |
| "Ġparts": 2718, | |
| "Ġhost": 2719, | |
| "Ġbeginning": 2720, | |
| "Ġespecially": 2721, | |
| "Ġestab": 2722, | |
| "reme": 2723, | |
| "Ġpeace": 2724, | |
| "por": 2725, | |
| "Ġken": 2726, | |
| "Ġopened": 2727, | |
| "Ġdefin": 2728, | |
| "Ġgermany": 2729, | |
| "Ġquickly": 2730, | |
| "Ġhm": 2731, | |
| "Ġcolor": 2732, | |
| "Ġoriginal": 2733, | |
| "inois": 2734, | |
| "bed": 2735, | |
| "iff": 2736, | |
| "ager": 2737, | |
| "nel": 2738, | |
| "Ġ100": 2739, | |
| "Ġhappens": 2740, | |
| "Ġhenry": 2741, | |
| "Ġfle": 2742, | |
| "Ġ2011": 2743, | |
| "Ġwal": 2744, | |
| "empt": 2745, | |
| "Ġflor": 2746, | |
| "ole": 2747, | |
| "ising": 2748, | |
| "Ġsepar": 2749, | |
| "Ġbes": 2750, | |
| "Ġtowards": 2751, | |
| "Ġseat": 2752, | |
| "Ġcoast": 2753, | |
| "Ġfellow": 2754, | |
| "Ġterri": 2755, | |
| "Ġsitting": 2756, | |
| "Ġbell": 2757, | |
| "Ġcouncil": 2758, | |
| "Ġq": 2759, | |
| "cher": 2760, | |
| "Ġmir": 2761, | |
| "Ġdisapp": 2762, | |
| "Ġmarket": 2763, | |
| "Ġcab": 2764, | |
| "Ġclim": 2765, | |
| "Ġfloor": 2766, | |
| "Ġleaving": 2767, | |
| "Ġhistor": 2768, | |
| "Ġ2006": 2769, | |
| "Ġbank": 2770, | |
| "Ġannoun": 2771, | |
| "Ġspend": 2772, | |
| "Ġofficer": 2773, | |
| "Ġeducation": 2774, | |
| "ays": 2775, | |
| "med": 2776, | |
| "âĢĶ": 2777, | |
| "Ġbecom": 2778, | |
| "Ġillinois": 2779, | |
| "Ġenv": 2780, | |
| "ician": 2781, | |
| "Ġ2012": 2782, | |
| "Ġanybody": 2783, | |
| "Ġpolitical": 2784, | |
| "Ġmum": 2785, | |
| "Ġnecess": 2786, | |
| "Ġident": 2787, | |
| "nes": 2788, | |
| "ville": 2789, | |
| "Ġthou": 2790, | |
| "Ġneigh": 2791, | |
| "Ġfeat": 2792, | |
| "ode": 2793, | |
| "Ġactiv": 2794, | |
| "ĠĠĠĠĠĠ": 2795, | |
| "Ġindeed": 2796, | |
| "Ġrid": 2797, | |
| "Ġstudents": 2798, | |
| "Ġtax": 2799, | |
| "Ġradio": 2800, | |
| "ga": 2801, | |
| "Ġjer": 2802, | |
| "Ġfinished": 2803, | |
| "Ġnature": 2804, | |
| "Ġtotal": 2805, | |
| "Ġice": 2806, | |
| "Ġsearch": 2807, | |
| "Ġvirginia": 2808, | |
| "Ġdu": 2809, | |
| "Ġgiving": 2810, | |
| "Ġegg": 2811, | |
| "Ġroyal": 2812, | |
| "wered": 2813, | |
| "Ġbi": 2814, | |
| "Ġobs": 2815, | |
| "Ġstrange": 2816, | |
| "Ġquestions": 2817, | |
| "Ġpaid": 2818, | |
| "Ġbrown": 2819, | |
| "Ġlock": 2820, | |
| "Ġaff": 2821, | |
| "Ġfear": 2822, | |
| "Ġinflu": 2823, | |
| "hel": 2824, | |
| "Ġaccount": 2825, | |
| "itted": 2826, | |
| "iers": 2827, | |
| "ishing": 2828, | |
| "Ġmiles": 2829, | |
| "Ġnatural": 2830, | |
| "ica": 2831, | |
| "Ġdance": 2832, | |
| "bor": 2833, | |
| "Ġcro": 2834, | |
| "Ġ21": 2835, | |
| "ires": 2836, | |
| "Ġfing": 2837, | |
| "Ġrose": 2838, | |
| "Ġconsider": 2839, | |
| "Ġfund": 2840, | |
| "Ġwashing": 2841, | |
| "Ġforward": 2842, | |
| "Ġanswered": 2843, | |
| "Ġdevelopment": 2844, | |
| "Ġminister": 2845, | |
| "cast": 2846, | |
| "Ġtar": 2847, | |
| "Ġtv": 2848, | |
| "Ġbelong": 2849, | |
| "Ġmention": 2850, | |
| "Ġexperience": 2851, | |
| "Ġalex": 2852, | |
| "Ġliter": 2853, | |
| "ades": 2854, | |
| "Ġlose": 2855, | |
| "Ġquar": 2856, | |
| "Ġwelcome": 2857, | |
| "ply": 2858, | |
| "Ġterms": 2859, | |
| "cip": 2860, | |
| "ift": 2861, | |
| "iforn": 2862, | |
| "Ġprivate": 2863, | |
| "Ġcand": 2864, | |
| "Ġpersonal": 2865, | |
| "Ġstage": 2866, | |
| "_,": 2867, | |
| "Ġfat": 2868, | |
| "Ġbase": 2869, | |
| "Ġblock": 2870, | |
| "Ġaction": 2871, | |
| "Ġkey": 2872, | |
| "Ġvarious": 2873, | |
| "Ġdestro": 2874, | |
| "Ġspirit": 2875, | |
| "Ġbor": 2876, | |
| "Ġclaim": 2877, | |
| "Ġcaliforn": 2878, | |
| "Ġreached": 2879, | |
| "ume": 2880, | |
| "Ġprince": 2881, | |
| "ored": 2882, | |
| "time": 2883, | |
| "Ġwestern": 2884, | |
| "Ġfac": 2885, | |
| "Ġjes": 2886, | |
| "uk": 2887, | |
| "Ġapart": 2888, | |
| "Ġrespons": 2889, | |
| "Ġchampionship": 2890, | |
| "ya": 2891, | |
| "Ġcard": 2892, | |
| "Ġjump": 2893, | |
| "Ġ(\"": 2894, | |
| "Ġways": 2895, | |
| "Ġnumbers": 2896, | |
| "Ġtravel": 2897, | |
| "Ġsomewhere": 2898, | |
| "epend": 2899, | |
| "ex": 2900, | |
| "Ġstudy": 2901, | |
| "Ġyours": 2902, | |
| "Ġplant": 2903, | |
| "Ġuncle": 2904, | |
| ".,": 2905, | |
| "Ġwed": 2906, | |
| "light": 2907, | |
| "Ġintrodu": 2908, | |
| "abad": 2909, | |
| "Ġcalifornia": 2910, | |
| "inc": 2911, | |
| "itional": 2912, | |
| "fo": 2913, | |
| "rit": 2914, | |
| "Ġii": 2915, | |
| "Ġrout": 2916, | |
| "Ġvan": 2917, | |
| "Ġ23": 2918, | |
| "Ġpublished": 2919, | |
| "Ġprim": 2920, | |
| "Ġthom": 2921, | |
| "Ġmedic": 2922, | |
| "ivid": 2923, | |
| "Ġwat": 2924, | |
| "Ġdirector": 2925, | |
| "Ġdra": 2926, | |
| "Ġdick": 2927, | |
| "Ġ50": 2928, | |
| "xic": 2929, | |
| "Ġdepend": 2930, | |
| "Ġenergy": 2931, | |
| "Ġbob": 2932, | |
| "Ġsimple": 2933, | |
| "Ġwindow": 2934, | |
| "kn": 2935, | |
| "lect": 2936, | |
| "Ġplat": 2937, | |
| "Ġequal": 2938, | |
| "Ġmaterial": 2939, | |
| "fr": 2940, | |
| "Ġooh": 2941, | |
| "Ġcaught": 2942, | |
| "Ġmc": 2943, | |
| "Ġallowed": 2944, | |
| "17": 2945, | |
| "Ġchristian": 2946, | |
| "Ġdiscuss": 2947, | |
| "gen": 2948, | |
| "uit": 2949, | |
| "Ġcens": 2950, | |
| "Ġserious": 2951, | |
| "Ġthus": 2952, | |
| "Ġchap": 2953, | |
| "ensive": 2954, | |
| "Ġrichard": 2955, | |
| "15": 2956, | |
| "inct": 2957, | |
| "Ġsurv": 2958, | |
| "Ġshows": 2959, | |
| "Ġobv": 2960, | |
| "Ġdinner": 2961, | |
| "ams": 2962, | |
| "Ġsuff": 2963, | |
| "Ġanymore": 2964, | |
| "Ġdamn": 2965, | |
| "itz": 2966, | |
| "Ġdrug": 2967, | |
| "itution": 2968, | |
| "Ġdoc": 2969, | |
| "Ġseeing": 2970, | |
| "Ġindepend": 2971, | |
| "cious": 2972, | |
| "Ġ..": 2973, | |
| "Ġmun": 2974, | |
| "Ġpack": 2975, | |
| "aff": 2976, | |
| "cient": 2977, | |
| "Ġclothes": 2978, | |
| "Ġdise": 2979, | |
| "ius": 2980, | |
| "inist": 2981, | |
| "Ġvisit": 2982, | |
| "Ġprofessional": 2983, | |
| "off": 2984, | |
| "yer": 2985, | |
| "Ġpage": 2986, | |
| "âĢİ": 2987, | |
| "Ġinvolved": 2988, | |
| "Ġhero": 2989, | |
| "Ġboat": 2990, | |
| "Ġforgot": 2991, | |
| "tr": 2992, | |
| "ero": 2993, | |
| "iron": 2994, | |
| "Ġplus": 2995, | |
| "Ġcell": 2996, | |
| "Ġalive": 2997, | |
| "Ġspan": 2998, | |
| "Ġlocated": 2999, | |
| "Ġgives": 3000, | |
| "Ġscott": 3001, | |
| "Ġepis": 3002, | |
| "Ġut": 3003, | |
| "ago": 3004, | |
| "Ġwriting": 3005, | |
| "Ġimmedi": 3006, | |
| "Ġroll": 3007, | |
| "Ġsuddenly": 3008, | |
| "wood": 3009, | |
| "Ġgas": 3010, | |
| "idered": 3011, | |
| "hood": 3012, | |
| "Ġpun": 3013, | |
| "Ġ)": 3014, | |
| "Ġflorida": 3015, | |
| "bon": 3016, | |
| "Ġox": 3017, | |
| "ites": 3018, | |
| "iel": 3019, | |
| "istic": 3020, | |
| "Ġow": 3021, | |
| "Ġvalue": 3022, | |
| "Ġtea": 3023, | |
| "het": 3024, | |
| "Ġsour": 3025, | |
| "Ġsize": 3026, | |
| "Ġmel": 3027, | |
| "Ġmilitary": 3028, | |
| "Ġenc": 3029, | |
| "Ġ2014": 3030, | |
| "Ġstanding": 3031, | |
| "ruction": 3032, | |
| "hod": 3033, | |
| "?âĢĿ": 3034, | |
| "Ġsounds": 3035, | |
| "fl": 3036, | |
| "Ġgree": 3037, | |
| "Ġscient": 3038, | |
| "Ġprincess": 3039, | |
| "iny": 3040, | |
| "Ġconv": 3041, | |
| "Ġsnow": 3042, | |
| "Ġtor": 3043, | |
| "Ġnone": 3044, | |
| "ara": 3045, | |
| "Ġblow": 3046, | |
| "Ġcy": 3047, | |
| "Ġneeded": 3048, | |
| "Ġtitle": 3049, | |
| "\")": 3050, | |
| "14": 3051, | |
| "Ġide": 3052, | |
| "Ġ01": 3053, | |
| "Ġfavor": 3054, | |
| "Ġspeed": 3055, | |
| "Ġbridge": 3056, | |
| "Ġsituation": 3057, | |
| "ength": 3058, | |
| "Ġba": 3059, | |
| "Ġsquare": 3060, | |
| "face": 3061, | |
| "Ġattention": 3062, | |
| "llen": 3063, | |
| "Äģ": 3064, | |
| "Ġhonest": 3065, | |
| "Ġheavy": 3066, | |
| "ids": 3067, | |
| "action": 3068, | |
| "Ġdemo": 3069, | |
| "gre": 3070, | |
| "Ġmac": 3071, | |
| "Ġpurp": 3072, | |
| "Ġappeared": 3073, | |
| "ails": 3074, | |
| "Ġextra": 3075, | |
| "of": 3076, | |
| "Ġconsidered": 3077, | |
| "Ġadded": 3078, | |
| "Ġstup": 3079, | |
| "olic": 3080, | |
| "Ġspent": 3081, | |
| "house": 3082, | |
| "Ġarms": 3083, | |
| "Ġaddress": 3084, | |
| "Ġcensus": 3085, | |
| "12": 3086, | |
| "Ġmix": 3087, | |
| "Ġabsolutely": 3088, | |
| "Ġdig": 3089, | |
| "irt": 3090, | |
| "Ġdecl": 3091, | |
| "Ġcapt": 3092, | |
| "inary": 3093, | |
| "Ġmanage": 3094, | |
| "Ġresearch": 3095, | |
| "Ġstone": 3096, | |
| "Ġjoin": 3097, | |
| "ground": 3098, | |
| "erve": 3099, | |
| "Ġpsy": 3100, | |
| "cus": 3101, | |
| "Ġbought": 3102, | |
| "Ġmax": 3103, | |
| "Ġstopped": 3104, | |
| "hem": 3105, | |
| "aining": 3106, | |
| "Ġsongs": 3107, | |
| "Ġdate": 3108, | |
| "Ġ2007": 3109, | |
| "str": 3110, | |
| "Ġ2016": 3111, | |
| "Ġmultip": 3112, | |
| "icip": 3113, | |
| "Ġearl": 3114, | |
| "Ġcomputer": 3115, | |
| "val": 3116, | |
| "Ġexec": 3117, | |
| "Ġproduced": 3118, | |
| "Ġbroke": 3119, | |
| "bour": 3120, | |
| "Ġsens": 3121, | |
| "Ġancient": 3122, | |
| "asons": 3123, | |
| "Ġgrou": 3124, | |
| "Ġprep": 3125, | |
| "Ġgrew": 3126, | |
| "Ġenviron": 3127, | |
| "west": 3128, | |
| "Ġod": 3129, | |
| "Ġ26": 3130, | |
| "Ġmarriage": 3131, | |
| "Ġofficial": 3132, | |
| "Ġspeaking": 3133, | |
| "Ġmurder": 3134, | |
| "Ġou": 3135, | |
| "Ġnames": 3136, | |
| "iday": 3137, | |
| "Ġsell": 3138, | |
| "Ġ190": 3139, | |
| "Ġ22": 3140, | |
| "Ġshouldn": 3141, | |
| "Ġindivid": 3142, | |
| "bl": 3143, | |
| "Ġboss": 3144, | |
| "Ġavail": 3145, | |
| "Ġpu": 3146, | |
| "Ġattempt": 3147, | |
| "field": 3148, | |
| "Ġjew": 3149, | |
| "Ġwound": 3150, | |
| "Ġwide": 3151, | |
| "pper": 3152, | |
| "ket": 3153, | |
| "mas": 3154, | |
| "Ġsimply": 3155, | |
| "ca": 3156, | |
| "Ġtrade": 3157, | |
| "Ġpromise": 3158, | |
| "Ġdoubt": 3159, | |
| "van": 3160, | |
| "Ġdry": 3161, | |
| "ises": 3162, | |
| "Ġacad": 3163, | |
| "Ġstruct": 3164, | |
| "ique": 3165, | |
| "Ġinit": 3166, | |
| "Ġanimal": 3167, | |
| "Ġstupid": 3168, | |
| "Ġhurry": 3169, | |
| "Ġredu": 3170, | |
| "tered": 3171, | |
| "Ġopport": 3172, | |
| "Ġcamer": 3173, | |
| "Ġpossib": 3174, | |
| "Ġdivision": 3175, | |
| "rief": 3176, | |
| "Ġfool": 3177, | |
| "uted": 3178, | |
| "Ġmeaning": 3179, | |
| "Ġgroups": 3180, | |
| "á": 3181, | |
| "Ġbeha": 3182, | |
| "oops": 3183, | |
| "aven": 3184, | |
| "hic": 3185, | |
| "Ġlower": 3186, | |
| "ators": 3187, | |
| "Ġrights": 3188, | |
| "ipe": 3189, | |
| "ners": 3190, | |
| "Ġoil": 3191, | |
| "Ġmountain": 3192, | |
| "Ġcompletely": 3193, | |
| "Ġrelationship": 3194, | |
| "bye": 3195, | |
| "Ġcow": 3196, | |
| "ria": 3197, | |
| "Ġbang": 3198, | |
| "Ġeff": 3199, | |
| "Ġrobert": 3200, | |
| "Ġcorre": 3201, | |
| "Ġemb": 3202, | |
| "Ġrap": 3203, | |
| "Ġsevent": 3204, | |
| "Ġbrand": 3205, | |
| "Ġbelow": 3206, | |
| "iques": 3207, | |
| "Ġtherefore": 3208, | |
| "min": 3209, | |
| "this": 3210, | |
| "Ġarg": 3211, | |
| "Ġopportun": 3212, | |
| "Ġpath": 3213, | |
| "Ġlake": 3214, | |
| "Ġrace": 3215, | |
| "ological": 3216, | |
| "Ġtall": 3217, | |
| "Ġinj": 3218, | |
| "Ġbroken": 3219, | |
| "Ġhate": 3220, | |
| "ify": 3221, | |
| "Ġwatching": 3222, | |
| "Ġaha": 3223, | |
| "Ġfan": 3224, | |
| "Ġamaz": 3225, | |
| "Ġguard": 3226, | |
| "Ġemplo": 3227, | |
| "cul": 3228, | |
| "Ġbran": 3229, | |
| "gl": 3230, | |
| "Ġdemocr": 3231, | |
| "Ġplays": 3232, | |
| "Ġimpro": 3233, | |
| "Ġcharles": 3234, | |
| "Ġpoints": 3235, | |
| "Ġnearly": 3236, | |
| "Ġfres": 3237, | |
| "Ġhigher": 3238, | |
| "Ġasking": 3239, | |
| "Ġsouthern": 3240, | |
| "Ġreach": 3241, | |
| "cell": 3242, | |
| "illa": 3243, | |
| "Ġcarried": 3244, | |
| "Ġversion": 3245, | |
| "Ġol": 3246, | |
| "Ġoly": 3247, | |
| "Ġbright": 3248, | |
| "nday": 3249, | |
| "lebr": 3250, | |
| "Ġscot": 3251, | |
| "Ġdifference": 3252, | |
| "Ġincluded": 3253, | |
| "Ġnorthern": 3254, | |
| "wise": 3255, | |
| "Ġdeter": 3256, | |
| "Ġcontract": 3257, | |
| "Ġhous": 3258, | |
| "Ġrat": 3259, | |
| "Ġlargest": 3260, | |
| "Ġrecords": 3261, | |
| "ffee": 3262, | |
| "ests": 3263, | |
| "Ġmoon": 3264, | |
| "Ġmovement": 3265, | |
| "Ġthirty": 3266, | |
| "Ġalan": 3267, | |
| "Ġenvironment": 3268, | |
| "don": 3269, | |
| "dered": 3270, | |
| "Ġwit": 3271, | |
| "Ġrac": 3272, | |
| "Ġloved": 3273, | |
| "Ġbey": 3274, | |
| "Ġactor": 3275, | |
| "Ġunless": 3276, | |
| "Ġprime": 3277, | |
| "board": 3278, | |
| "Ġtick": 3279, | |
| "Ġlength": 3280, | |
| "ipped": 3281, | |
| "Ġaccess": 3282, | |
| "Ġnormal": 3283, | |
| "que": 3284, | |
| "Ġchick": 3285, | |
| "Ġ2009": 3286, | |
| "Ġ28": 3287, | |
| "13": 3288, | |
| "Ġvall": 3289, | |
| "Ġregular": 3290, | |
| "Ġcust": 3291, | |
| "uses": 3292, | |
| "urity": 3293, | |
| "ability": 3294, | |
| "Ġpray": 3295, | |
| "Ġrefer": 3296, | |
| "Ġpsych": 3297, | |
| "Ġsight": 3298, | |
| "Ġlying": 3299, | |
| "Ġcongress": 3300, | |
| "ively": 3301, | |
| "Ġfaith": 3302, | |
| "Ġsac": 3303, | |
| "Ġknock": 3304, | |
| "astic": 3305, | |
| "Ġcareful": 3306, | |
| "Ġwonderful": 3307, | |
| "Ġshare": 3308, | |
| "Ġ2008": 3309, | |
| "Ġcelebr": 3310, | |
| "wor": 3311, | |
| "Ġsite": 3312, | |
| "aves": 3313, | |
| "Ġregard": 3314, | |
| "now": 3315, | |
| "nal": 3316, | |
| "old": 3317, | |
| "Ġbath": 3318, | |
| "ena": 3319, | |
| "Ġ2015": 3320, | |
| "Ġmethod": 3321, | |
| "ura": 3322, | |
| "Ġwarm": 3323, | |
| "mus": 3324, | |
| "Ġjose": 3325, | |
| "itely": 3326, | |
| "Ġjoined": 3327, | |
| "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 3328, | |
| "Ġstorm": 3329, | |
| "Ġcoffee": 3330, | |
| "Ġprincip": 3331, | |
| "mar": 3332, | |
| "Ġtalked": 3333, | |
| "Ġbay": 3334, | |
| "Ġmov": 3335, | |
| "Ġstarting": 3336, | |
| "Ġmilk": 3337, | |
| "Ġcastle": 3338, | |
| "50": 3339, | |
| "Ġwil": 3340, | |
| "Ġevidence": 3341, | |
| "Ġhom": 3342, | |
| "Ġarr": 3343, | |
| "part": 3344, | |
| "Ġpyr": 3345, | |
| "itude": 3346, | |
| "Ġappoint": 3347, | |
| "Ġdesp": 3348, | |
| "ruct": 3349, | |
| "Ġbloody": 3350, | |
| "night": 3351, | |
| "Ġmarry": 3352, | |
| "Ġoccur": 3353, | |
| "Ġwashington": 3354, | |
| "ü": 3355, | |
| "terday": 3356, | |
| "Ġmodel": 3357, | |
| "Ġbeg": 3358, | |
| "Ġprofessor": 3359, | |
| "Ġ40": 3360, | |
| "Ġreview": 3361, | |
| "Ġmas": 3362, | |
| "Ġareas": 3363, | |
| "ension": 3364, | |
| "ledge": 3365, | |
| "Ġbirthday": 3366, | |
| "Ġcrow": 3367, | |
| "Ġjesus": 3368, | |
| "za": 3369, | |
| "Ġtraining": 3370, | |
| "Ġbottom": 3371, | |
| "can": 3372, | |
| "Ġprice": 3373, | |
| "Ġcaused": 3374, | |
| "Ġtemper": 3375, | |
| "Ġ2022": 3376, | |
| "ki": 3377, | |
| "Ġcases": 3378, | |
| "Ġlines": 3379, | |
| "illy": 3380, | |
| "antly": 3381, | |
| "Ġ2000": 3382, | |
| "Ġassociation": 3383, | |
| "Ġfeed": 3384, | |
| "Ġmedia": 3385, | |
| "Ġtrees": 3386, | |
| "Ġach": 3387, | |
| "Ġspring": 3388, | |
| "aper": 3389, | |
| "Ġscene": 3390, | |
| "Ġthomas": 3391, | |
| "play": 3392, | |
| "asion": 3393, | |
| "Ġheaven": 3394, | |
| "ba": 3395, | |
| "Ġ27": 3396, | |
| "Ġempire": 3397, | |
| "Ġhappening": 3398, | |
| "Ġgall": 3399, | |
| "Ġthreat": 3400, | |
| "Ġhonor": 3401, | |
| "hest": 3402, | |
| "aps": 3403, | |
| "Ġchina": 3404, | |
| "Ġyesterday": 3405, | |
| "Ġchem": 3406, | |
| "gle": 3407, | |
| "Ġfit": 3408, | |
| "Ġneck": 3409, | |
| "Ġgarden": 3410, | |
| "Ġder": 3411, | |
| "uts": 3412, | |
| "there": 3413, | |
| "Ġinterested": 3414, | |
| "Ġess": 3415, | |
| "Ġassist": 3416, | |
| "né": 3417, | |
| "Ġdata": 3418, | |
| "Ġweren": 3419, | |
| "Ġfamilies": 3420, | |
| "Ġleader": 3421, | |
| "Ġpush": 3422, | |
| "Ġstories": 3423, | |
| "pping": 3424, | |
| "Ġsymp": 3425, | |
| "iction": 3426, | |
| "Ġschools": 3427, | |
| "Ġparis": 3428, | |
| "Ġservices": 3429, | |
| "Ġmovies": 3430, | |
| "Ġtast": 3431, | |
| "Ġoce": 3432, | |
| "Ġdrop": 3433, | |
| "Ġbrain": 3434, | |
| "Ġble": 3435, | |
| "Ġwinter": 3436, | |
| "Ġcath": 3437, | |
| "Ġcoach": 3438, | |
| "augh": 3439, | |
| "Ġgovernor": 3440, | |
| "Ġbirds": 3441, | |
| "Ġhuge": 3442, | |
| "Ġeuropean": 3443, | |
| "Ġdouble": 3444, | |
| "Ġavailable": 3445, | |
| "hib": 3446, | |
| "Ġfarm": 3447, | |
| "Ġadminist": 3448, | |
| "Ġtend": 3449, | |
| "Ġlovely": 3450, | |
| "year": 3451, | |
| "Ġstore": 3452, | |
| "Ġtext": 3453, | |
| "Ġafrica": 3454, | |
| "Ġcontinued": 3455, | |
| "bles": 3456, | |
| "set": 3457, | |
| "Ġeating": 3458, | |
| "phone": 3459, | |
| "Ġdescrib": 3460, | |
| "Ġrub": 3461, | |
| "Ġshowed": 3462, | |
| "Ġformed": 3463, | |
| "Ġdeveloped": 3464, | |
| "aded": 3465, | |
| "Ġfounded": 3466, | |
| "oted": 3467, | |
| "Ġkick": 3468, | |
| "Ġflight": 3469, | |
| "Ġforeign": 3470, | |
| "arily": 3471, | |
| "Ġarrest": 3472, | |
| "ously": 3473, | |
| "osop": 3474, | |
| "Ġ2005": 3475, | |
| "Ġjul": 3476, | |
| "Ġscared": 3477, | |
| "Ġdisp": 3478, | |
| "200": 3479, | |
| "bi": 3480, | |
| "Ġcrew": 3481, | |
| "erson": 3482, | |
| "Ġaustralia": 3483, | |
| "lam": 3484, | |
| "Ġtired": 3485, | |
| "Ġmuse": 3486, | |
| "Ġfest": 3487, | |
| "iced": 3488, | |
| "Ġsmell": 3489, | |
| "Ġhelped": 3490, | |
| "Ġfourth": 3491, | |
| "Ġannounced": 3492, | |
| "Ġiron": 3493, | |
| "Ġmexic": 3494, | |
| "Ġrule": 3495, | |
| "under": 3496, | |
| "Ġweak": 3497, | |
| "hold": 3498, | |
| "hi": 3499, | |
| "Ġfol": 3500, | |
| "Ġstars": 3501, | |
| "Ġimpress": 3502, | |
| "Ġkit": 3503, | |
| "Ġ29": 3504, | |
| "Ġletters": 3505, | |
| "Ġskin": 3506, | |
| "Ġspoke": 3507, | |
| "Ġpercent": 3508, | |
| "Ġputting": 3509, | |
| "Ġaccom": 3510, | |
| "Ġchoice": 3511, | |
| "Ġstyle": 3512, | |
| "ils": 3513, | |
| "Ġcomfort": 3514, | |
| "Ġworse": 3515, | |
| "Ġproduction": 3516, | |
| "Ġpieces": 3517, | |
| "lim": 3518, | |
| "Ġaver": 3519, | |
| "usion": 3520, | |
| "Ġkar": 3521, | |
| "Ġanne": 3522, | |
| "net": 3523, | |
| "Ġchanges": 3524, | |
| "Ġprize": 3525, | |
| "Ġoffe": 3526, | |
| "Ġspl": 3527, | |
| "Ġsecurity": 3528, | |
| "Ġforces": 3529, | |
| "Ġanal": 3530, | |
| "iled": 3531, | |
| "Ġoffer": 3532, | |
| "Ġdemand": 3533, | |
| "Ġeh": 3534, | |
| "Ġflowers": 3535, | |
| "Ġmostly": 3536, | |
| "Ġpalace": 3537, | |
| "Ġitalian": 3538, | |
| "ek": 3539, | |
| "she": 3540, | |
| "Ġnovel": 3541, | |
| "oles": 3542, | |
| "Ġbon": 3543, | |
| "Ġemer": 3544, | |
| "oid": 3545, | |
| "Ġtwel": 3546, | |
| "Ġcharge": 3547, | |
| "Ġafterno": 3548, | |
| "Ġcalling": 3549, | |
| "Ġended": 3550, | |
| "Ġslight": 3551, | |
| "Ġwalked": 3552, | |
| "Ġvac": 3553, | |
| "Ġfinish": 3554, | |
| "Ġimmediately": 3555, | |
| "iot": 3556, | |
| "Ġcode": 3557, | |
| "reng": 3558, | |
| "Ġspecific": 3559, | |
| "Ġformula": 3560, | |
| "Ġdistance": 3561, | |
| "Ġlearned": 3562, | |
| "Ġmem": 3563, | |
| "Ġclosed": 3564, | |
| "Ġexplain": 3565, | |
| "Ġenjoy": 3566, | |
| "Ġeffort": 3567, | |
| "16": 3568, | |
| "Ġtheory": 3569, | |
| "Ġyellow": 3570, | |
| "round": 3571, | |
| "ĠÂ": 3572, | |
| "ales": 3573, | |
| "Ġnote": 3574, | |
| "aph": 3575, | |
| "chen": 3576, | |
| "Ġride": 3577, | |
| "Ġsuit": 3578, | |
| "Ġmunicip": 3579, | |
| "Ġsoul": 3580, | |
| "cket": 3581, | |
| "Ġphilosop": 3582, | |
| "iation": 3583, | |
| "ips": 3584, | |
| "Ġoppos": 3585, | |
| "Ġjudge": 3586, | |
| "Ġimagine": 3587, | |
| "Ġbenef": 3588, | |
| "aur": 3589, | |
| "Ġ:": 3590, | |
| "Ġund": 3591, | |
| "aign": 3592, | |
| "just": 3593, | |
| "oms": 3594, | |
| "Ġreve": 3595, | |
| "Ġcommitt": 3596, | |
| "Ġsky": 3597, | |
| "Ġraised": 3598, | |
| "Ġfighting": 3599, | |
| "Ġtruck": 3600, | |
| "Ġflat": 3601, | |
| "Ġangry": 3602, | |
| "oy": 3603, | |
| "Ġhan": 3604, | |
| "ste": 3605, | |
| "Ġdisease": 3606, | |
| "Ġwhoa": 3607, | |
| "Ġamb": 3608, | |
| "Ġmessage": 3609, | |
| "Ġolymp": 3610, | |
| "Ġdecision": 3611, | |
| "Ġterrible": 3612, | |
| "ram": 3613, | |
| "Ġafternoon": 3614, | |
| "Ġcit": 3615, | |
| "Ġlikely": 3616, | |
| "Ġiran": 3617, | |
| "Ġdom": 3618, | |
| "Ġevents": 3619, | |
| "Ġmuseum": 3620, | |
| "ential": 3621, | |
| "Ġpictures": 3622, | |
| "Ġintell": 3623, | |
| "Ġcarol": 3624, | |
| "Ġought": 3625, | |
| "Ġspread": 3626, | |
| "aking": 3627, | |
| "Ġhotel": 3628, | |
| "Ġearlier": 3629, | |
| "Ġcontinue": 3630, | |
| "Ġpolitician": 3631, | |
| "rel": 3632, | |
| "Ġcampaign": 3633, | |
| "Ġcreate": 3634, | |
| "Ġcred": 3635, | |
| "Ġpig": 3636, | |
| "Ġlee": 3637, | |
| "Ġpolicy": 3638, | |
| "Ġtail": 3639, | |
| "Ġplatform": 3640, | |
| "Ġideas": 3641, | |
| "wa": 3642, | |
| "Ġnative": 3643, | |
| "ental": 3644, | |
| "Ġenemy": 3645, | |
| "Ġbusy": 3646, | |
| "Ġartic": 3647, | |
| "Ġjoy": 3648, | |
| "Ġdun": 3649, | |
| "Ġaffect": 3650, | |
| "Ġlots": 3651, | |
| "Ġbrothers": 3652, | |
| "Ġocean": 3653, | |
| "Ġelection": 3654, | |
| "Ġemot": 3655, | |
| "Ġfrog": 3656, | |
| "Ġyouth": 3657, | |
| "Ġbeach": 3658, | |
| "Ġven": 3659, | |
| "istan": 3660, | |
| "Ġbasket": 3661, | |
| "Ġissue": 3662, | |
| "isf": 3663, | |
| "Ġcomed": 3664, | |
| "Ġspanish": 3665, | |
| "back": 3666, | |
| "Ġcas": 3667, | |
| "Ġcities": 3668, | |
| "Ġbelieved": 3669, | |
| "Ġsection": 3670, | |
| "Ġfemale": 3671, | |
| "Ġnick": 3672, | |
| "Ġweap": 3673, | |
| "Ġcentre": 3674, | |
| "Ġparli": 3675, | |
| "Ġnecessary": 3676, | |
| "Ġbeyond": 3677, | |
| "ech": 3678, | |
| "ateg": 3679, | |
| "Ġinvestig": 3680, | |
| "Ġnetwork": 3681, | |
| "western": 3682, | |
| "bell": 3683, | |
| "Ġleaves": 3684, | |
| "Ġstreng": 3685, | |
| "ushed": 3686, | |
| "Ġagree": 3687, | |
| "Ġinstit": 3688, | |
| "Ġcommunic": 3689, | |
| "Ġlegs": 3690, | |
| "30": 3691, | |
| "Ġast": 3692, | |
| "Ġlink": 3693, | |
| "ables": 3694, | |
| "Ġsettle": 3695, | |
| "aries": 3696, | |
| "Ġcommer": 3697, | |
| "Ġray": 3698, | |
| "Ġcontact": 3699, | |
| "Ġholding": 3700, | |
| "ilities": 3701, | |
| "Ġitaly": 3702, | |
| "Ġforth": 3703, | |
| "Ġenter": 3704, | |
| "Ġparliament": 3705, | |
| "Ġweight": 3706, | |
| "ript": 3707, | |
| "berg": 3708, | |
| "Ġarrived": 3709, | |
| "Ġknowledge": 3710, | |
| "Ġcovered": 3711, | |
| "Ġpir": 3712, | |
| "Ġgrant": 3713, | |
| "ography": 3714, | |
| "Ġvalley": 3715, | |
| ".'": 3716, | |
| "Ġbound": 3717, | |
| "Ġfred": 3718, | |
| "Ġkore": 3719, | |
| "Ġreading": 3720, | |
| "Ġfresh": 3721, | |
| "Ġprint": 3722, | |
| "Ġperm": 3723, | |
| "Ġ2004": 3724, | |
| "Ġopin": 3725, | |
| "Ġfifty": 3726, | |
| "Ġpurpose": 3727, | |
| "Ġya": 3728, | |
| "Ġattract": 3729, | |
| "ashion": 3730, | |
| "Ġrelease": 3731, | |
| "ocol": 3732, | |
| "ences": 3733, | |
| "Ġneither": 3734, | |
| "Ġspot": 3735, | |
| "Ġminus": 3736, | |
| "Ġmedical": 3737, | |
| "Ġrailway": 3738, | |
| "Ġmachine": 3739, | |
| "with": 3740, | |
| "Ġwalking": 3741, | |
| "Ġextreme": 3742, | |
| "Ġsilver": 3743, | |
| "burg": 3744, | |
| "Ġescape": 3745, | |
| "pir": 3746, | |
| "isions": 3747, | |
| "Ġcorner": 3748, | |
| "ening": 3749, | |
| "uten": 3750, | |
| "sequ": 3751, | |
| "ube": 3752, | |
| "Ġfault": 3753, | |
| "Ġtwelve": 3754, | |
| "pa": 3755, | |
| "Ġstaff": 3756, | |
| "Ġestablished": 3757, | |
| "Ġsin": 3758, | |
| "ari": 3759, | |
| "Ġtwice": 3760, | |
| "Ġscre": 3761, | |
| "Ġaunt": 3762, | |
| "erved": 3763, | |
| "Ġweather": 3764, | |
| "Ġ189": 3765, | |
| "Ġaccident": 3766, | |
| "Ġeastern": 3767, | |
| "atlant": 3768, | |
| "Ġteach": 3769, | |
| "Ġsports": 3770, | |
| "bing": 3771, | |
| "Ġrab": 3772, | |
| "iling": 3773, | |
| "Ġswim": 3774, | |
| "Ġdetect": 3775, | |
| "Ġkent": 3776, | |
| "Ġthroughout": 3777, | |
| "Ġcalm": 3778, | |
| "Ġsignific": 3779, | |
| "Ġsystems": 3780, | |
| "nie": 3781, | |
| "Ġsuccessful": 3782, | |
| "Ġladies": 3783, | |
| "Ġpractice": 3784, | |
| "Ġted": 3785, | |
| "atives": 3786, | |
| "Ġtex": 3787, | |
| "Ġcommittee": 3788, | |
| "car": 3789, | |
| "uments": 3790, | |
| "11": 3791, | |
| "Ġforced": 3792, | |
| "Ġmemor": 3793, | |
| "Ġcompl": 3794, | |
| "Ġtrip": 3795, | |
| "Ġdefinitely": 3796, | |
| "pan": 3797, | |
| "sey": 3798, | |
| "Ġcanada": 3799, | |
| "esty": 3800, | |
| "Ġconvers": 3801, | |
| "wr": 3802, | |
| "Ġloss": 3803, | |
| "Ġlift": 3804, | |
| "Ġsinger": 3805, | |
| "ji": 3806, | |
| "Ġforty": 3807, | |
| "Ġmike": 3808, | |
| "Ġgro": 3809, | |
| "Ġplayers": 3810, | |
| "Ġnewsp": 3811, | |
| "Ġobviously": 3812, | |
| "hol": 3813, | |
| "ato": 3814, | |
| "Ġ186": 3815, | |
| "ients": 3816, | |
| "laugh": 3817, | |
| "Ġliked": 3818, | |
| "Ġmyster": 3819, | |
| "Ġshown": 3820, | |
| "Ġhasn": 3821, | |
| "Ġresour": 3822, | |
| "Ġ2001": 3823, | |
| "rupt": 3824, | |
| "Ġoriginally": 3825, | |
| "Ġdefend": 3826, | |
| "Ġliber": 3827, | |
| "Ġ()": 3828, | |
| "Ġ2020": 3829, | |
| "éné": 3830, | |
| "Ġopening": 3831, | |
| "Ġdirection": 3832, | |
| "Ġcorrect": 3833, | |
| "Ġscotland": 3834, | |
| "bar": 3835, | |
| "Ġrate": 3836, | |
| "Ġ2018": 3837, | |
| "Ġjoseph": 3838, | |
| "atory": 3839, | |
| "tering": 3840, | |
| "Ġsmart": 3841, | |
| "Ġgodd": 3842, | |
| "Ġdirected": 3843, | |
| "gree": 3844, | |
| "Ġrepe": 3845, | |
| "ini": 3846, | |
| "Ġnation": 3847, | |
| "asant": 3848, | |
| "Ġstock": 3849, | |
| "cks": 3850, | |
| "Ġchristmas": 3851, | |
| "iverse": 3852, | |
| "Ġlouis": 3853, | |
| "Ġthee": 3854, | |
| "Ġbord": 3855, | |
| "izing": 3856, | |
| "Ġdogs": 3857, | |
| "Ġcurrently": 3858, | |
| "ja": 3859, | |
| "ó": 3860, | |
| "Ġly": 3861, | |
| "Ġinno": 3862, | |
| "Ġcommission": 3863, | |
| "Ġpatient": 3864, | |
| "Ġsoldiers": 3865, | |
| "Ġachie": 3866, | |
| "Ġchat": 3867, | |
| "Ġcart": 3868, | |
| "Ġpin": 3869, | |
| "vert": 3870, | |
| "Ġlog": 3871, | |
| "Ġtells": 3872, | |
| "Ġsymb": 3873, | |
| "Ġdriving": 3874, | |
| "ses": 3875, | |
| "Ġbrief": 3876, | |
| "Ġham": 3877, | |
| "oop": 3878, | |
| "Ġcompos": 3879, | |
| "Ġjoe": 3880, | |
| "Ġreligious": 3881, | |
| "Ġaverage": 3882, | |
| "ented": 3883, | |
| "Ġtony": 3884, | |
| "known": 3885, | |
| "Ġopt": 3886, | |
| "stairs": 3887, | |
| "Ġshr": 3888, | |
| "Ġacqu": 3889, | |
| "vere": 3890, | |
| "iety": 3891, | |
| "Ġelectric": 3892, | |
| "Ġlucky": 3893, | |
| "zen": 3894, | |
| "see": 3895, | |
| "inese": 3896, | |
| "Ġeventually": 3897, | |
| "Ġculture": 3898, | |
| "âĢİ.": 3899, | |
| "Ġcrime": 3900, | |
| "Ġtechnology": 3901, | |
| "Ġepisode": 3902, | |
| "énées": 3903, | |
| "vi": 3904, | |
| "iles": 3905, | |
| "Ġalt": 3906, | |
| "Ġkinds": 3907, | |
| "Ġconstitution": 3908, | |
| "Ġreligion": 3909, | |
| "Ġrules": 3910, | |
| "Ġpounds": 3911, | |
| "Ġdeterm": 3912, | |
| "Ġpyrénées": 3913, | |
| "Ġpac": 3914, | |
| "Ġhide": 3915, | |
| "ification": 3916, | |
| "Ġwis": 3917, | |
| "Ġscr": 3918, | |
| "Ġcharl": 3919, | |
| "eg": 3920, | |
| "fast": 3921, | |
| "Ġnan": 3922, | |
| "Ġcalls": 3923, | |
| "Ġmale": 3924, | |
| "Ġmedicine": 3925, | |
| "atlantiques": 3926, | |
| "Ġcharacters": 3927, | |
| "Ġindustry": 3928, | |
| "Ġbomb": 3929, | |
| "aled": 3930, | |
| "Ġaddition": 3931, | |
| "Ġvictim": 3932, | |
| "Ġsant": 3933, | |
| "Ġsaint": 3934, | |
| "ado": 3935, | |
| "Ġanywhere": 3936, | |
| "Ġfirm": 3937, | |
| "Ġmemory": 3938, | |
| "Ġstudent": 3939, | |
| "Ġsigned": 3940, | |
| "Ġdangerous": 3941, | |
| "Ġmut": 3942, | |
| "oned": 3943, | |
| "aching": 3944, | |
| "Ġplants": 3945, | |
| "Ġchallen": 3946, | |
| "hedron": 3947, | |
| "over": 3948, | |
| "Ġduck": 3949, | |
| "Ġdropped": 3950, | |
| "Ġopportunity": 3951, | |
| "tt": 3952, | |
| "Ġnose": 3953, | |
| "anda": 3954, | |
| "iar": 3955, | |
| "Ġbless": 3956, | |
| "Ġteams": 3957, | |
| "Ġdiscovered": 3958, | |
| "Ġuses": 3959, | |
| "Ġbiggest": 3960, | |
| "Ġgrowing": 3961, | |
| "Ġdollars": 3962, | |
| "Ġspr": 3963, | |
| "Ġgolden": 3964, | |
| "rs": 3965, | |
| "Ġproud": 3966, | |
| "Ġgreater": 3967, | |
| "Ġgentlemen": 3968, | |
| "Ġsides": 3969, | |
| "Ġislands": 3970, | |
| "Ġfran": 3971, | |
| "ograph": 3972, | |
| "Ġna": 3973, | |
| "Ġsmaller": 3974, | |
| "ö": 3975, | |
| "Ġwine": 3976, | |
| "Ġrough": 3977, | |
| "Ġwhis": 3978, | |
| "Ġfranc": 3979, | |
| "Ġplanet": 3980, | |
| "Ġslowly": 3981, | |
| "uce": 3982, | |
| "Ġsurface": 3983, | |
| "Ġvictor": 3984, | |
| "ulations": 3985, | |
| "Ġprem": 3986, | |
| "Ġsmith": 3987, | |
| "Ġtransl": 3988, | |
| "Ġemper": 3989, | |
| "Ġhors": 3990, | |
| "Ġremain": 3991, | |
| "mmy": 3992, | |
| "Ġbasically": 3993, | |
| "why": 3994, | |
| "ÃŃ": 3995, | |
| "Ġpred": 3996, | |
| "itect": 3997, | |
| "Ġthy": 3998, | |
| "Ġperformance": 3999, | |
| "Ġchic": 4000, | |
| "Ġentered": 4001, | |
| "Ġmicro": 4002, | |
| "vin": 4003, | |
| "Ġcars": 4004, | |
| "Ġ2017": 4005, | |
| "Ġelected": 4006, | |
| "Ġsatisf": 4007, | |
| "Ġfro": 4008, | |
| "itation": 4009, | |
| "Ġheat": 4010, | |
| "Ġbutter": 4011, | |
| "Ġarab": 4012, | |
| "Ġacting": 4013, | |
| "Ġ1980": 4014, | |
| ".--": 4015, | |
| "ession": 4016, | |
| "Ġchinese": 4017, | |
| "Ġolder": 4018, | |
| "Ġentertain": 4019, | |
| "Ġtotally": 4020, | |
| "Ġhighest": 4021, | |
| "Ġmistake": 4022, | |
| "Ġrange": 4023, | |
| "Ġpositive": 4024, | |
| "Ġnegative": 4025, | |
| "ios": 4026, | |
| "oved": 4027, | |
| "Ġwake": 4028, | |
| "iden": 4029, | |
| "Ġuk": 4030, | |
| "ols": 4031, | |
| "Ġmissing": 4032, | |
| "Ġdescri": 4033, | |
| "Ġfederal": 4034, | |
| "isters": 4035, | |
| "Ġhook": 4036, | |
| "ills": 4037, | |
| "Ġnotice": 4038, | |
| "Ġsecretary": 4039, | |
| "cons": 4040, | |
| "hal": 4041, | |
| "Ġbac": 4042, | |
| "using": 4043, | |
| "enth": 4044, | |
| "road": 4045, | |
| "isted": 4046, | |
| "aker": 4047, | |
| "Ġmission": 4048, | |
| "Ġrisk": 4049, | |
| "Ġcritic": 4050, | |
| "Ġorders": 4051, | |
| "Ġyo": 4052, | |
| "ola": 4053, | |
| "Ġholy": 4054, | |
| "Ġtransport": 4055, | |
| "Ġeasily": 4056, | |
| "ighs": 4057, | |
| "ban": 4058, | |
| "kins": 4059, | |
| "nament": 4060, | |
| "Ġdeb": 4061, | |
| "ander": 4062, | |
| "icks": 4063, | |
| "Ġapparent": 4064, | |
| "Ġ1990": 4065, | |
| "Ġdreams": 4066, | |
| "mans": 4067, | |
| "Ġfashion": 4068, | |
| "eds": 4069, | |
| "Ġsaf": 4070, | |
| "Ġsurround": 4071, | |
| "Ġarchitect": 4072, | |
| "ris": 4073, | |
| "Ġawards": 4074, | |
| "Ġsid": 4075, | |
| "Ġjen": 4076, | |
| "Ġgrown": 4077, | |
| "Ġfunction": 4078, | |
| "Ġcatholic": 4079, | |
| "Ġparticularly": 4080, | |
| "ees": 4081, | |
| "who": 4082, | |
| "ask": 4083, | |
| "asing": 4084, | |
| "igg": 4085, | |
| "Ġzero": 4086, | |
| "Ġwearing": 4087, | |
| "Ġnap": 4088, | |
| "ibility": 4089, | |
| "Ġmagaz": 4090, | |
| "._": 4091, | |
| "ores": 4092, | |
| "ware": 4093, | |
| "ossible": 4094, | |
| "Ġcondition": 4095, | |
| "Ġacademy": 4096, | |
| ",--": 4097, | |
| "yan": 4098, | |
| "Ġboo": 4099, | |
| "Ġlack": 4100, | |
| "Ġchoose": 4101, | |
| "host": 4102, | |
| "!âĢĿ": 4103, | |
| "Ġscar": 4104, | |
| "Ġdarling": 4105, | |
| "Ġtheat": 4106, | |
| "Ġgal": 4107, | |
| "Ġmanager": 4108, | |
| "Ġedge": 4109, | |
| "Ġexpected": 4110, | |
| "Ġhouses": 4111, | |
| "ining": 4112, | |
| "Ġpil": 4113, | |
| "Ġpoly": 4114, | |
| "Ġprogress": 4115, | |
| "Ġcontrib": 4116, | |
| "Ġlaid": 4117, | |
| "Ġincludes": 4118, | |
| "Ġrevolution": 4119, | |
| "Ġgradu": 4120, | |
| "Ġwitness": 4121, | |
| "nds": 4122, | |
| "Ġhid": 4123, | |
| "Ġremained": 4124, | |
| "Ġhonour": 4125, | |
| "Ġduty": 4126, | |
| "Ġreform": 4127, | |
| "Ġros": 4128, | |
| "Ġconference": 4129, | |
| "Ġsmile": 4130, | |
| "Ġbread": 4131, | |
| "Ġfrequ": 4132, | |
| "imate": 4133, | |
| "Ġque": 4134, | |
| "Ġfocus": 4135, | |
| "Ġfinan": 4136, | |
| "Ġstudio": 4137, | |
| "Ġthro": 4138, | |
| "Ġdegree": 4139, | |
| "ulf": 4140, | |
| "Ġsword": 4141, | |
| "Ġsett": 4142, | |
| "Ġagreed": 4143, | |
| "Ġcrowd": 4144, | |
| "dé": 4145, | |
| "sa": 4146, | |
| "Ġthinks": 4147, | |
| "Ġjournal": 4148, | |
| "bel": 4149, | |
| "Ġbast": 4150, | |
| "Ġloud": 4151, | |
| "Ġnic": 4152, | |
| "Ġbitch": 4153, | |
| "Ġlawyer": 4154, | |
| "Ġclearly": 4155, | |
| "Ġtun": 4156, | |
| "Ġgy": 4157, | |
| "Ġcolour": 4158, | |
| "Ġgenerally": 4159, | |
| "Ġjackson": 4160, | |
| "Ġeggs": 4161, | |
| "look": 4162, | |
| "att": 4163, | |
| "Ġappre": 4164, | |
| "Ġchannel": 4165, | |
| "Ġ188": 4166, | |
| "Ġindividual": 4167, | |
| "Ġvote": 4168, | |
| "Ġmountains": 4169, | |
| "Ġtypes": 4170, | |
| "sec": 4171, | |
| "Ġfruit": 4172, | |
| "Ġgrey": 4173, | |
| "Ġofficers": 4174, | |
| "Ġstrength": 4175, | |
| "Ġlibr": 4176, | |
| "Ġindic": 4177, | |
| "Ġmaintain": 4178, | |
| "Ġparticip": 4179, | |
| "Ġmotor": 4180, | |
| "Ġroute": 4181, | |
| "Ġcompanies": 4182, | |
| "Ġempty": 4183, | |
| "Ġmajesty": 4184, | |
| "Ġwrest": 4185, | |
| "Ġgri": 4186, | |
| "Ġeld": 4187, | |
| "Ġsinging": 4188, | |
| "eh": 4189, | |
| "Ġdim": 4190, | |
| "Ġatlant": 4191, | |
| "Ġhole": 4192, | |
| "Ġbesides": 4193, | |
| "Ġwedding": 4194, | |
| "utenant": 4195, | |
| "bu": 4196, | |
| "utions": 4197, | |
| "Ġshout": 4198, | |
| "istry": 4199, | |
| "Ġagent": 4200, | |
| "Ġpoll": 4201, | |
| "Ġdistrib": 4202, | |
| "Ġlarger": 4203, | |
| "Ġdrunk": 4204, | |
| "Ġsouthwestern": 4205, | |
| "Ġsusp": 4206, | |
| "Ġbroadcast": 4207, | |
| "Ġquarter": 4208, | |
| "Ġfestival": 4209, | |
| "sm": 4210, | |
| "Ġjustice": 4211, | |
| "Ġactress": 4212, | |
| "Ġbigger": 4213, | |
| "Ġpicked": 4214, | |
| "Ġissues": 4215, | |
| "Ġyep": 4216, | |
| "Ġworried": 4217, | |
| "Ġprovide": 4218, | |
| "da": 4219, | |
| "Ġtape": 4220, | |
| "Ġwet": 4221, | |
| "Ġplaced": 4222, | |
| "eless": 4223, | |
| "Ġbod": 4224, | |
| "Ġscreen": 4225, | |
| "Ġtight": 4226, | |
| "Ġdiam": 4227, | |
| "arr": 4228, | |
| "raft": 4229, | |
| "lands": 4230, | |
| "Ġspeech": 4231, | |
| "Ġbreath": 4232, | |
| "uf": 4233, | |
| "lected": 4234, | |
| "ili": 4235, | |
| "ishop": 4236, | |
| "Ġlegal": 4237, | |
| "Ġfreed": 4238, | |
| "Ġcitiz": 4239, | |
| "mn": 4240, | |
| "sing": 4241, | |
| "va": 4242, | |
| "Ġdyn": 4243, | |
| "Ġpleasure": 4244, | |
| "Ġconditions": 4245, | |
| "Ġsource": 4246, | |
| "Ġpak": 4247, | |
| "Ġweird": 4248, | |
| "Ġconcept": 4249, | |
| "Ġimpossible": 4250, | |
| "Ġforms": 4251, | |
| "Ġpressure": 4252, | |
| "Ġlies": 4253, | |
| "Ġ2003": 4254, | |
| "Ġcompetition": 4255, | |
| "Ġmentioned": 4256, | |
| "ita": 4257, | |
| "Ġairport": 4258, | |
| "Ġpowerful": 4259, | |
| "Ġcere": 4260, | |
| "iant": 4261, | |
| "Ġwaste": 4262, | |
| "Ġwriter": 4263, | |
| "Ġkilling": 4264, | |
| "Ġships": 4265, | |
| "Ġinfluence": 4266, | |
| "Ġcash": 4267, | |
| "Ġnav": 4268, | |
| "Ġalco": 4269, | |
| "Ġspain": 4270, | |
| "Ġpoet": 4271, | |
| "Ġserve": 4272, | |
| "Ġdrag": 4273, | |
| "Ġflying": 4274, | |
| "fficient": 4275, | |
| "die": 4276, | |
| "lor": 4277, | |
| "win": 4278, | |
| "Ġjun": 4279, | |
| "Ġplans": 4280, | |
| "Ġrelated": 4281, | |
| "Ġcustom": 4282, | |
| "Ġtexas": 4283, | |
| "Ġash": 4284, | |
| "Ġvot": 4285, | |
| "Ġscream": 4286, | |
| "bered": 4287, | |
| "Ġgreatest": 4288, | |
| "Ġdesigned": 4289, | |
| "Ġchicago": 4290, | |
| "Ġwol": 4291, | |
| "Ġgir": 4292, | |
| "Ġrot": 4293, | |
| "Ġkil": 4294, | |
| "Ġgoal": 4295, | |
| "ties": 4296, | |
| "viet": 4297, | |
| "Ġtaught": 4298, | |
| "Ġremind": 4299, | |
| "Ġstandard": 4300, | |
| "Ġleading": 4301, | |
| "rig": 4302, | |
| "Ġtroops": 4303, | |
| "Ġexcell": 4304, | |
| "Ġaware": 4305, | |
| "Ġlieutenant": 4306, | |
| "Ġjimmy": 4307, | |
| "Ġhorses": 4308, | |
| "rey": 4309, | |
| "Ġmainly": 4310, | |
| "Ġcomplex": 4311, | |
| "Ġoperation": 4312, | |
| "Ġfeatures": 4313, | |
| "anced": 4314, | |
| "Ġreven": 4315, | |
| "Ġexam": 4316, | |
| "Ġemperor": 4317, | |
| "cu": 4318, | |
| "itar": 4319, | |
| "Ġresults": 4320, | |
| "Ġtarget": 4321, | |
| "owa": 4322, | |
| "Ġadult": 4323, | |
| "Ġsubst": 4324, | |
| "rison": 4325, | |
| "hand": 4326, | |
| "Ġdrew": 4327, | |
| "Ġthick": 4328, | |
| "Ġshock": 4329, | |
| "Ġetc": 4330, | |
| "Ġbecomes": 4331, | |
| "war": 4332, | |
| "è": 4333, | |
| "Ġeth": 4334, | |
| "Ġcorpor": 4335, | |
| "Ġprotest": 4336, | |
| "Ġreported": 4337, | |
| "iences": 4338, | |
| "Ġmob": 4339, | |
| "Ġwilling": 4340, | |
| "Ġmont": 4341, | |
| "Ġpapers": 4342, | |
| "gypt": 4343, | |
| "Ġoccup": 4344, | |
| "Ġfinger": 4345, | |
| "Ġkitchen": 4346, | |
| "Ġrussian": 4347, | |
| "Ġpair": 4348, | |
| "Ġjac": 4349, | |
| "istics": 4350, | |
| "Ġorganization": 4351, | |
| "Ġreplaced": 4352, | |
| "dr": 4353, | |
| "aming": 4354, | |
| "Ġ(,": 4355, | |
| "Ġteeth": 4356, | |
| "Ġapplic": 4357, | |
| "Ġ2002": 4358, | |
| "Ġheads": 4359, | |
| "book": 4360, | |
| "Ġpure": 4361, | |
| "aging": 4362, | |
| "they": 4363, | |
| "Ġartist": 4364, | |
| "Ġfilled": 4365, | |
| "Ġmeasure": 4366, | |
| "Ġcrim": 4367, | |
| "Ġproperty": 4368, | |
| "Ġafrican": 4369, | |
| "Ġamazing": 4370, | |
| ";/": 4371, | |
| "Ġstuck": 4372, | |
| "Ġmechan": 4373, | |
| "...?": 4374, | |
| "Ġotherwise": 4375, | |
| "Ġapple": 4376, | |
| "Ġmissed": 4377, | |
| "Ġ2021": 4378, | |
| "Ġmanagement": 4379, | |
| "kin": 4380, | |
| "Ġfright": 4381, | |
| "Ġrome": 4382, | |
| "Ġrank": 4383, | |
| "Ġsake": 4384, | |
| "Ġuniverse": 4385, | |
| "Ġfox": 4386, | |
| "Ġappl": 4387, | |
| "Ġevil": 4388, | |
| "Ġinstr": 4389, | |
| "Ġperformed": 4390, | |
| "asc": 4391, | |
| "Ġbreakfast": 4392, | |
| "cies": 4393, | |
| "ni": 4394, | |
| "Ġghost": 4395, | |
| "Ġplain": 4396, | |
| "Ġleaders": 4397, | |
| "Ġrare": 4398, | |
| "Ġmeat": 4399, | |
| "Ġsup": 4400, | |
| "Ġprevent": 4401, | |
| "Ġstarts": 4402, | |
| "Ġrecorded": 4403, | |
| "Ġcrying": 4404, | |
| "Ġoffered": 4405, | |
| "Ġcoo": 4406, | |
| "leep": 4407, | |
| "Ġmetal": 4408, | |
| "Ġadmir": 4409, | |
| "Ġreplied": 4410, | |
| "mark": 4411, | |
| "Ġfal": 4412, | |
| "Ġpit": 4413, | |
| "Ġga": 4414, | |
| "Ġegypt": 4415, | |
| "ulous": 4416, | |
| "Ġload": 4417, | |
| "Ġwindows": 4418, | |
| "Ġsleeping": 4419, | |
| "Ġfailed": 4420, | |
| "Ġchapter": 4421, | |
| "Ġlearning": 4422, | |
| "Ġstructure": 4423, | |
| "Ġdescribed": 4424, | |
| "Ġsom": 4425, | |
| "Ġweb": 4426, | |
| "Ġpartner": 4427, | |
| "Ġshad": 4428, | |
| "igned": 4429, | |
| "Ġrecently": 4430, | |
| "Ġ1970": 4431, | |
| "Ġsurprise": 4432, | |
| "Ġtro": 4433, | |
| "Ġrh": 4434, | |
| "ppy": 4435, | |
| "Ġschol": 4436, | |
| "Ġattend": 4437, | |
| "Ġtraditional": 4438, | |
| "Ġcircum": 4439, | |
| "Ġrand": 4440, | |
| "cend": 4441, | |
| "Ġsaved": 4442, | |
| "Ġlights": 4443, | |
| "Ġsoldier": 4444, | |
| "Ġcopy": 4445, | |
| "Ġfant": 4446, | |
| "Ġauthority": 4447, | |
| "Ġcamera": 4448, | |
| "Ġlunch": 4449, | |
| "Ġworst": 4450, | |
| "Ġunit": 4451, | |
| "Ġblind": 4452, | |
| "Ġafterwards": 4453, | |
| "Ġstrug": 4454, | |
| "Ġforever": 4455, | |
| "Ġpainting": 4456, | |
| "Ġbecoming": 4457, | |
| "Ġfrancis": 4458, | |
| "Ġsilly": 4459, | |
| "Ġmi": 4460, | |
| "ashed": 4461, | |
| "alled": 4462, | |
| "Ġinterview": 4463, | |
| "Ġdirectly": 4464, | |
| "Ġindependent": 4465, | |
| "Ġgreek": 4466, | |
| "phan": 4467, | |
| "Ġcancer": 4468, | |
| "Ġopinion": 4469, | |
| "tw": 4470, | |
| "onel": 4471, | |
| "iano": 4472, | |
| "Ġkeeping": 4473, | |
| "Ġshoes": 4474, | |
| "Ġteaching": 4475, | |
| "Ġconcerned": 4476, | |
| "Ġeconomic": 4477, | |
| "hered": 4478, | |
| "Ġfaces": 4479, | |
| "Ġroof": 4480, | |
| "Ġlic": 4481, | |
| "Ġmere": 4482, | |
| "Ġshape": 4483, | |
| "Ġconserv": 4484, | |
| "gas": 4485, | |
| "Ġtong": 4486, | |
| "Ġreasons": 4487, | |
| "Ġdragon": 4488, | |
| "Ġhandle": 4489, | |
| "Ġconstruction": 4490, | |
| "partement": 4491, | |
| "Ġtaste": 4492, | |
| "mend": 4493, | |
| "Ġqual": 4494, | |
| "Ġgiant": 4495, | |
| "after": 4496, | |
| "craft": 4497, | |
| "mic": 4498, | |
| "Ġtan": 4499, | |
| "Ġglo": 4500, | |
| "Ġsatur": 4501, | |
| "Ġbeauty": 4502, | |
| "Ġimage": 4503, | |
| "département": 4504, | |
| "ona": 4505, | |
| "Ġlion": 4506, | |
| "ulty": 4507, | |
| "Ġaged": 4508, | |
| "Ġ2019": 4509, | |
| "yeh": 4510, | |
| "Ġsurprised": 4511, | |
| "ux": 4512, | |
| "apt": 4513, | |
| "Ġchuck": 4514, | |
| "Ġeasier": 4515, | |
| "Ġburied": 4516, | |
| "foot": 4517, | |
| "Ġmunicipality": 4518, | |
| "Ġmort": 4519, | |
| "Ġram": 4520, | |
| "uries": 4521, | |
| "Ġcontent": 4522, | |
| "Ġcrown": 4523, | |
| "Ġtournament": 4524, | |
| "col": 4525, | |
| "Ġturns": 4526, | |
| "Ġproduce": 4527, | |
| "Ġdivided": 4528, | |
| "pro": 4529, | |
| "Ġmate": 4530, | |
| "aches": 4531, | |
| "Ġcarl": 4532, | |
| "Ġrealize": 4533, | |
| "Ġconstant": 4534, | |
| "Ġcabin": 4535, | |
| "Ġappreci": 4536, | |
| "wan": 4537, | |
| "ĠâĢĶ": 4538, | |
| "law": 4539, | |
| "Ġconsum": 4540, | |
| "Ġstudied": 4541, | |
| "Ġpossibly": 4542, | |
| "Ġgor": 4543, | |
| "Ġsequ": 4544, | |
| "new": 4545, | |
| "ker": 4546, | |
| "had": 4547, | |
| "Ġfis": 4548, | |
| "Ġtower": 4549, | |
| "Ġlikes": 4550, | |
| "Ġsoviet": 4551, | |
| "Ġexcl": 4552, | |
| "Ġruns": 4553, | |
| "Ġmultiple": 4554, | |
| "nam": 4555, | |
| "Ġpope": 4556, | |
| "Ġasse": 4557, | |
| "rial": 4558, | |
| "Ġordered": 4559, | |
| "aked": 4560, | |
| "Ġseconds": 4561, | |
| "Ġbuildings": 4562, | |
| "Ġdrinking": 4563, | |
| "bc": 4564, | |
| "down": 4565, | |
| "hr": 4566, | |
| "Ġbub": 4567, | |
| "Ġprove": 4568, | |
| "Ġchocol": 4569, | |
| "Ġcrack": 4570, | |
| "Ġreality": 4571, | |
| "Ġdecide": 4572, | |
| "Ġcommander": 4573, | |
| "Ġbranch": 4574, | |
| ";&": 4575, | |
| "Ġscrew": 4576, | |
| "Ġpocket": 4577, | |
| "Ġmayor": 4578, | |
| "Ġ187": 4579, | |
| "Ġpretend": 4580, | |
| "Ġsilence": 4581, | |
| "Ġprepared": 4582, | |
| "hamm": 4583, | |
| "iance": 4584, | |
| "Ġminor": 4585, | |
| "Ġbelief": 4586, | |
| "Ġnarr": 4587, | |
| "Ġiowa": 4588, | |
| "Ġdirty": 4589, | |
| "lla": 4590, | |
| "Ġrural": 4591, | |
| "Ġlaws": 4592, | |
| "Ġincrease": 4593, | |
| "Ġax": 4594, | |
| "oman": 4595, | |
| "Ġcontr": 4596, | |
| "Ġ1999": 4597, | |
| "Ġplanning": 4598, | |
| "Ġlabor": 4599, | |
| "Ġdocument": 4600, | |
| "Ġign": 4601, | |
| "rer": 4602, | |
| "Ġspok": 4603, | |
| "rences": 4604, | |
| "Ġjourney": 4605, | |
| "friend": 4606, | |
| "Ġrum": 4607, | |
| "imately": 4608, | |
| "stood": 4609, | |
| "Ġdelight": 4610, | |
| "Ġrequest": 4611, | |
| "Ġphysical": 4612, | |
| "Ġhungry": 4613, | |
| "Ġninet": 4614, | |
| "cise": 4615, | |
| "jan": 4616, | |
| "Ġtal": 4617, | |
| "iger": 4618, | |
| "Ġadvent": 4619, | |
| "Ġmama": 4620, | |
| "Ġdor": 4621, | |
| "Ġdemon": 4622, | |
| "Ġorange": 4623, | |
| "Ġarts": 4624, | |
| "Ġourselves": 4625, | |
| "Ġactual": 4626, | |
| "Ġmap": 4627, | |
| "Ġgrass": 4628, | |
| "Ġseriously": 4629, | |
| "Ġswear": 4630, | |
| "Ġcircle": 4631, | |
| "Ġjeff": 4632, | |
| "Ġmexico": 4633, | |
| "Ġonto": 4634, | |
| "Ġrow": 4635, | |
| "Ġcub": 4636, | |
| "Ġasleep": 4637, | |
| "Ġvice": 4638, | |
| "Ġterrit": 4639, | |
| "Ġrang": 4640, | |
| "Ġprior": 4641, | |
| "Ġlistening": 4642, | |
| "Ġapparently": 4643, | |
| "Ġwheel": 4644, | |
| "Ġcosts": 4645, | |
| "Ġthroat": 4646, | |
| "'.": 4647, | |
| "Ġlect": 4648, | |
| "Ġcru": 4649, | |
| "ucky": 4650, | |
| "Ġfinding": 4651, | |
| "ucle": 4652, | |
| "Ġpromised": 4653, | |
| "Ġfavour": 4654, | |
| "Ġencour": 4655, | |
| "Ġsplit": 4656, | |
| "Ġfinancial": 4657, | |
| "Ġcrick": 4658, | |
| "Ġhumans": 4659, | |
| "Ġsucceed": 4660, | |
| "Ġcomedy": 4661, | |
| "Ġsher": 4662, | |
| "Ġdare": 4663, | |
| "Ġgrave": 4664, | |
| "Ġremem": 4665, | |
| "Ġturning": 4666, | |
| "Ġcolon": 4667, | |
| "Ġlanguages": 4668, | |
| "Ġprograms": 4669, | |
| "Ġsuspect": 4670, | |
| "amm": 4671, | |
| "Ġmusical": 4672, | |
| ".]": 4673, | |
| "Ġloves": 4674, | |
| "cles": 4675, | |
| "Ġseparate": 4676, | |
| "Ġmagazine": 4677, | |
| "hab": 4678, | |
| "Ġgay": 4679, | |
| "ami": 4680, | |
| "Ġaltern": 4681, | |
| "Ġ31": 4682, | |
| "Ġprevious": 4683, | |
| "Ġsafety": 4684, | |
| "ima": 4685, | |
| "asty": 4686, | |
| "Ġstudies": 4687, | |
| "Ġmartin": 4688, | |
| "Ġgang": 4689, | |
| "ette": 4690, | |
| "Ġsunday": 4691, | |
| "lom": 4692, | |
| "ost": 4693, | |
| "ann": 4694, | |
| "isl": 4695, | |
| "Ġflo": 4696, | |
| "Ġserge": 4697, | |
| "Ġstayed": 4698, | |
| "ault": 4699, | |
| "Ġdude": 4700, | |
| "Ġsmoke": 4701, | |
| "fortun": 4702, | |
| "Ġwash": 4703, | |
| "Ġfifth": 4704, | |
| "Ġlosing": 4705, | |
| "Ġfavorite": 4706, | |
| "Ġstream": 4707, | |
| "Ġbrave": 4708, | |
| "ansas": 4709, | |
| "Ġactive": 4710, | |
| "Ġsweetie": 4711, | |
| "Ġaudience": 4712, | |
| "Ġlaughing": 4713, | |
| "...\"": 4714, | |
| "igan": 4715, | |
| "azz": 4716, | |
| "Ġstreets": 4717, | |
| "Ġrocks": 4718, | |
| "bre": 4719, | |
| "Ġhaw": 4720, | |
| "Ġthrew": 4721, | |
| "Ġupper": 4722, | |
| "iform": 4723, | |
| "Ġcarter": 4724, | |
| "Ġremark": 4725, | |
| "Ġlocation": 4726, | |
| "Ġoccasion": 4727, | |
| "Ġforgive": 4728, | |
| "Ġsharp": 4729, | |
| "Ġren": 4730, | |
| "Ġdoct": 4731, | |
| "ef": 4732, | |
| "has": 4733, | |
| "Ġcous": 4734, | |
| "aret": 4735, | |
| "Ġreact": 4736, | |
| "Ġunits": 4737, | |
| "Ġexchan": 4738, | |
| "Ġfalling": 4739, | |
| "Ġ1960": 4740, | |
| "Ġhast": 4741, | |
| "Ġfeels": 4742, | |
| "Ġtreatment": 4743, | |
| "Ġchicken": 4744, | |
| "Ġsaturday": 4745, | |
| "Ġaye": 4746, | |
| "Ġhorn": 4747, | |
| "Ġitem": 4748, | |
| "Ġislam": 4749, | |
| "Ġeverywhere": 4750, | |
| "Ġears": 4751, | |
| "Ġtransfer": 4752, | |
| "Ġstret": 4753, | |
| "Ġdevil": 4754, | |
| "ufact": 4755, | |
| "rain": 4756, | |
| "Ġrise": 4757, | |
| "Ġjail": 4758, | |
| "Ġshore": 4759, | |
| "Ġcla": 4760, | |
| "Ġadam": 4761, | |
| "Ġstruck": 4762, | |
| "Ġpattern": 4763, | |
| "urance": 4764, | |
| "ops": 4765, | |
| "Ġhardly": 4766, | |
| "Ġpolitics": 4767, | |
| "Ġneighbor": 4768, | |
| "Ġappointed": 4769, | |
| "Ġdomin": 4770, | |
| "utive": 4771, | |
| "Ġfriday": 4772, | |
| "Ġplane": 4773, | |
| "Ġodd": 4774, | |
| "yeah": 4775, | |
| "ĠÃ": 4776, | |
| "Ġwick": 4777, | |
| "Ġbul": 4778, | |
| "Ġamend": 4779, | |
| "Ġgrab": 4780, | |
| "Ġrequired": 4781, | |
| "60": 4782, | |
| "Ġinn": 4783, | |
| "antic": 4784, | |
| "Ġdelic": 4785, | |
| "Ġmanufact": 4786, | |
| "ardon": 4787, | |
| "Ġamericans": 4788, | |
| "Ġthousands": 4789, | |
| "Ġindiana": 4790, | |
| "ox": 4791, | |
| "oring": 4792, | |
| "Ġexhib": 4793, | |
| "Ġgoodbye": 4794, | |
| "Ġangeles": 4795, | |
| "Ġsignificant": 4796, | |
| "Ġsymbol": 4797, | |
| "40": 4798, | |
| "Ġtiny": 4799, | |
| "Ġkh": 4800, | |
| "Ġknowing": 4801, | |
| "ĠâĢĺ": 4802, | |
| "Ġ--&": 4803, | |
| "Ġay": 4804, | |
| "Ġbother": 4805, | |
| "Ġjane": 4806, | |
| "rif": 4807, | |
| "Ġclock": 4808, | |
| "Ġdrama": 4809, | |
| "Ġjobs": 4810, | |
| "Ġarrange": 4811, | |
| "ern": 4812, | |
| "Ġthir": 4813, | |
| "Ġdebut": 4814, | |
| "when": 4815, | |
| "Ġtoward": 4816, | |
| "arm": 4817, | |
| "Ġcanad": 4818, | |
| "Ġtrick": 4819, | |
| "Ġquality": 4820, | |
| "Ġrelax": 4821, | |
| "Ġkenned": 4822, | |
| "Ġlibrary": 4823, | |
| "Ġassemb": 4824, | |
| "oured": 4825, | |
| "Ġec": 4826, | |
| "Ġjos": 4827, | |
| "Ġsugar": 4828, | |
| "Ġmanaged": 4829, | |
| "Ġscore": 4830, | |
| "Ġflag": 4831, | |
| "clock": 4832, | |
| "Ġtrial": 4833, | |
| "Ġfixed": 4834, | |
| "Ġdemocratic": 4835, | |
| "des": 4836, | |
| "Ġhmm": 4837, | |
| "Ġrent": 4838, | |
| "Ġscen": 4839, | |
| "Ġhelping": 4840, | |
| "Ġrecent": 4841, | |
| "Ġfalls": 4842, | |
| "Ġcandid": 4843, | |
| "Ġdestroyed": 4844, | |
| "Ġdrugs": 4845, | |
| "rb": 4846, | |
| "Ġnucle": 4847, | |
| "Ġadvant": 4848, | |
| "Ġintroduced": 4849, | |
| "Ġslightly": 4850, | |
| "americ": 4851, | |
| "Ġconvent": 4852, | |
| "ordin": 4853, | |
| "Ġmatters": 4854, | |
| "Ġsteal": 4855, | |
| "Ġappears": 4856, | |
| "Ġintellig": 4857, | |
| "Ġtommy": 4858, | |
| "Ġell": 4859, | |
| "Ġpleased": 4860, | |
| "Ġstatement": 4861, | |
| "Ġillust": 4862, | |
| "Ġrapid": 4863, | |
| "orter": 4864, | |
| "Ġult": 4865, | |
| "Ġknight": 4866, | |
| "Ġorche": 4867, | |
| "Ġproceed": 4868, | |
| "Ġdressed": 4869, | |
| "Ġbishop": 4870, | |
| "Ġlimited": 4871, | |
| "Ġaccepted": 4872, | |
| "father": 4873, | |
| "Ġpic": 4874, | |
| "Ġmeas": 4875, | |
| "Ġsem": 4876, | |
| "Ġshowing": 4877, | |
| "Ġrelative": 4878, | |
| "awa": 4879, | |
| "Ġimprove": 4880, | |
| "Ġalcohol": 4881, | |
| "Ġgoods": 4882, | |
| "Ġworkers": 4883, | |
| "Ġharm": 4884, | |
| "Ġ1996": 4885, | |
| "Ġdaniel": 4886, | |
| "Ġkennedy": 4887, | |
| "gor": 4888, | |
| "Ġfought": 4889, | |
| "Ġfaster": 4890, | |
| "Ġpad": 4891, | |
| "Ġgate": 4892, | |
| "Ġves": 4893, | |
| "Ġhadn": 4894, | |
| "Ġbackground": 4895, | |
| "Ġ60": 4896, | |
| "Ġsteel": 4897, | |
| "sed": 4898, | |
| "Ġheight": 4899, | |
| "vey": 4900, | |
| "Ġunfortun": 4901, | |
| "Ġlaug": 4902, | |
| "Ġretired": 4903, | |
| "Ġgrandma": 4904, | |
| "Ġrequire": 4905, | |
| "Ġresponsible": 4906, | |
| "ias": 4907, | |
| "Ġtemperature": 4908, | |
| "Ġchocolate": 4909, | |
| "ushing": 4910, | |
| "Ġcoat": 4911, | |
| "ivity": 4912, | |
| "Ġ1997": 4913, | |
| "Ġpropos": 4914, | |
| "Ġduke": 4915, | |
| "Ġbasketball": 4916, | |
| "Ġdepress": 4917, | |
| "Ġdaily": 4918, | |
| "Ġbottle": 4919, | |
| "Ġinstitute": 4920, | |
| "met": 4921, | |
| "may": 4922, | |
| "Ġbare": 4923, | |
| "rier": 4924, | |
| "Ġdrum": 4925, | |
| "Ġwalls": 4926, | |
| "Ġguns": 4927, | |
| "Ġdiet": 4928, | |
| "Ġstro": 4929, | |
| "Ġcoal": 4930, | |
| "Ġunderstood": 4931, | |
| "Ġyounger": 4932, | |
| "Ġproducts": 4933, | |
| "Ġfingers": 4934, | |
| "uly": 4935, | |
| "Ġasia": 4936, | |
| "Ġflower": 4937, | |
| "Ġcredit": 4938, | |
| "Ġpha": 4939, | |
| "Ġkal": 4940, | |
| "keep": 4941, | |
| "illed": 4942, | |
| "Ġadop": 4943, | |
| "Ġcomplic": 4944, | |
| "Ġflow": 4945, | |
| "Ġ1998": 4946, | |
| ",'": 4947, | |
| "Ġded": 4948, | |
| "Ġhal": 4949, | |
| "chuck": 4950, | |
| "Ġvehic": 4951, | |
| "hetic": 4952, | |
| "lig": 4953, | |
| "Ġhind": 4954, | |
| "Ġkr": 4955, | |
| "Ġkat": 4956, | |
| "ctions": 4957, | |
| "Ġsav": 4958, | |
| "Ġnumer": 4959, | |
| "Ġbush": 4960, | |
| "Ġbasic": 4961, | |
| "Ġconfir": 4962, | |
| "Ġmagic": 4963, | |
| "Ġapproach": 4964, | |
| "Ġgentleman": 4965, | |
| "25": 4966, | |
| "Ġcards": 4967, | |
| "Ġnur": 4968, | |
| "Ġnurs": 4969, | |
| "lection": 4970, | |
| "Ġraise": 4971, | |
| "Ġcounter": 4972, | |
| "Ġscottish": 4973, | |
| "laughter": 4974, | |
| "tery": 4975, | |
| "Ġtrave": 4976, | |
| "Ġclimate": 4977, | |
| "heast": 4978, | |
| "reg": 4979, | |
| "imp": 4980, | |
| "Ġ185": 4981, | |
| "Ġinspect": 4982, | |
| "Ġassum": 4983, | |
| "Ġvictory": 4984, | |
| "while": 4985, | |
| "80": 4986, | |
| "ev": 4987, | |
| "lict": 4988, | |
| "water": 4989, | |
| "itan": 4990, | |
| "Ġkim": 4991, | |
| "Ġlege": 4992, | |
| "achus": 4993, | |
| "Ġends": 4994, | |
| "Ġswed": 4995, | |
| "Ġbritain": 4996, | |
| "Ġtemple": 4997, | |
| "Ġpulled": 4998, | |
| "ipping": 4999, | |
| "Ġlaughed": 5000, | |
| "Ġll": 5001, | |
| "Ġpow": 5002, | |
| "Ġnomin": 5003, | |
| "ota": 5004, | |
| "Ġath": 5005, | |
| "Ġsale": 5006, | |
| "fection": 5007, | |
| "Ġprefer": 5008, | |
| "Ġsurely": 5009, | |
| "Ġcolonel": 5010, | |
| "Ġchemical": 5011, | |
| "Ġdying": 5012, | |
| "Ġpink": 5013, | |
| "Ġpowers": 5014, | |
| "stra": 5015, | |
| "Ġnoticed": 5016, | |
| "Ġquit": 5017, | |
| "Ġdisplay": 5018, | |
| "Ġdetails": 5019, | |
| "Ġsteps": 5020, | |
| "Ġcollection": 5021, | |
| "Ġopposite": 5022, | |
| "\"?": 5023, | |
| "put": 5024, | |
| "rated": 5025, | |
| "Ġtha": 5026, | |
| "aring": 5027, | |
| "Ġkitt": 5028, | |
| "Ġchos": 5029, | |
| "Ġflu": 5030, | |
| "Ġsignal": 5031, | |
| "Ġadvice": 5032, | |
| "Ġbodies": 5033, | |
| "rid": 5034, | |
| "Ġos": 5035, | |
| "icide": 5036, | |
| "imum": 5037, | |
| "Ġtrail": 5038, | |
| "Ġcarbon": 5039, | |
| "Ġremains": 5040, | |
| "Ġkiller": 5041, | |
| "Ġrussia": 5042, | |
| "Ġdespite": 5043, | |
| "Ġnewspaper": 5044, | |
| "Ġsergeant": 5045, | |
| "good": 5046, | |
| "ett": 5047, | |
| "abor": 5048, | |
| "Ġuniform": 5049, | |
| "Ġcloud": 5050, | |
| "Ġbuck": 5051, | |
| "Ġspeaker": 5052, | |
| "Ġpreviously": 5053, | |
| "eder": 5054, | |
| "Ġstan": 5055, | |
| "Ġshel": 5056, | |
| "Ġswitch": 5057, | |
| "Ġrepublican": 5058, | |
| "Ġfreedom": 5059, | |
| "Ġsab": 5060, | |
| "Ġja": 5061, | |
| "Ġcomment": 5062, | |
| "Ġlaura": 5063, | |
| "Ġelement": 5064, | |
| "Ġsolution": 5065, | |
| "gers": 5066, | |
| "ller": 5067, | |
| "Ġliqu": 5068, | |
| "Ġdram": 5069, | |
| "Ġsalt": 5070, | |
| "Ġshooting": 5071, | |
| "Ġentirely": 5072, | |
| "Ġdutch": 5073, | |
| "Ġresources": 5074, | |
| "rate": 5075, | |
| "Ġrick": 5076, | |
| "Ġanth": 5077, | |
| "Ġmanner": 5078, | |
| "Ġscale": 5079, | |
| "Ġmatches": 5080, | |
| "Ġrestaur": 5081, | |
| "Ġbringing": 5082, | |
| "Ġanx": 5083, | |
| "Ġrecom": 5084, | |
| "Ġpete": 5085, | |
| "Ġlatin": 5086, | |
| "atherine": 5087, | |
| "Ġweeke": 5088, | |
| "Ġcontinues": 5089, | |
| "Ġmajority": 5090, | |
| "Ġceremon": 5091, | |
| "Ġbun": 5092, | |
| "cel": 5093, | |
| "Ġusual": 5094, | |
| "Ġguil": 5095, | |
| "Ġmedal": 5096, | |
| "Ġinterp": 5097, | |
| "Ġcauses": 5098, | |
| "Ġdefeated": 5099, | |
| "23": 5100, | |
| "gil": 5101, | |
| "Ġremoved": 5102, | |
| "Ġwars": 5103, | |
| "Ġeliz": 5104, | |
| "Ġglob": 5105, | |
| "Ġprovided": 5106, | |
| "Ġprotection": 5107, | |
| "Ġspoken": 5108, | |
| "Ġcanadian": 5109, | |
| "Ġloose": 5110, | |
| "Ġjon": 5111, | |
| "Ġmaria": 5112, | |
| "Ġsusan": 5113, | |
| "Ġtradition": 5114, | |
| "Ġcloser": 5115, | |
| "stein": 5116, | |
| "idents": 5117, | |
| "ache": 5118, | |
| "Ġshell": 5119, | |
| "Ġsomewhat": 5120, | |
| "Ġmetro": 5121, | |
| "Ġawful": 5122, | |
| "Ġdamage": 5123, | |
| "Ġautom": 5124, | |
| "oe": 5125, | |
| "pet": 5126, | |
| "Ġmail": 5127, | |
| "Ġdip": 5128, | |
| "oma": 5129, | |
| "rol": 5130, | |
| "Ġlips": 5131, | |
| "Ġnotes": 5132, | |
| "ysis": 5133, | |
| "Ġnorthwest": 5134, | |
| "Ġbudget": 5135, | |
| "Ġconversation": 5136, | |
| "ige": 5137, | |
| "uyeh": 5138, | |
| "ndered": 5139, | |
| "onse": 5140, | |
| "Ġafford": 5141, | |
| "aren": 5142, | |
| "Ġappeal": 5143, | |
| "Ġhighly": 5144, | |
| "199": 5145, | |
| "Ġmich": 5146, | |
| "etts": 5147, | |
| "Ġjam": 5148, | |
| "Ġwinning": 5149, | |
| "sels": 5150, | |
| "Ġcompleted": 5151, | |
| "Ġreceive": 5152, | |
| "Ġconnected": 5153, | |
| "Ġnineteen": 5154, | |
| "Ġtough": 5155, | |
| "heart": 5156, | |
| "Ġaim": 5157, | |
| "Ġcateg": 5158, | |
| "Ġfired": 5159, | |
| "Ġjoke": 5160, | |
| "Ġresist": 5161, | |
| "Ġimper": 5162, | |
| "Ġattacked": 5163, | |
| "Ġkoh": 5164, | |
| "Ġmuslim": 5165, | |
| "Ġavoid": 5166, | |
| "Ġarticle": 5167, | |
| "Ġsettled": 5168, | |
| "Ġcooper": 5169, | |
| "mad": 5170, | |
| "Ġtam": 5171, | |
| "Ġknife": 5172, | |
| "Ġcontains": 5173, | |
| "Ġexpensive": 5174, | |
| "Ġgods": 5175, | |
| "Ġ1995": 5176, | |
| "Ġforgotten": 5177, | |
| "24": 5178, | |
| "ahedron": 5179, | |
| "Ġwha": 5180, | |
| "Ġwings": 5181, | |
| "Ġcu": 5182, | |
| "Ġnavy": 5183, | |
| "Ġug": 5184, | |
| "irk": 5185, | |
| "Ġsees": 5186, | |
| "Ġunlike": 5187, | |
| "Ġcock": 5188, | |
| "Ġgrace": 5189, | |
| "Ġpra": 5190, | |
| "Ġproof": 5191, | |
| "Ġ1994": 5192, | |
| "Ġappearance": 5193, | |
| "Ġchairman": 5194, | |
| "Ġbastard": 5195, | |
| "hammad": 5196, | |
| "ckey": 5197, | |
| "Ġtang": 5198, | |
| "Ġlis": 5199, | |
| "amin": 5200, | |
| "Ġexer": 5201, | |
| "--\"": 5202, | |
| "Ġfeelings": 5203, | |
| "Ġjean": 5204, | |
| "Ġsexual": 5205, | |
| "laughs": 5206, | |
| "Ġtheatre": 5207, | |
| "Ġdiamond": 5208, | |
| "cont": 5209, | |
| "sighs": 5210, | |
| "eaks": 5211, | |
| "Ġpresence": 5212, | |
| "Ġmathem": 5213, | |
| "Ġcalcul": 5214, | |
| "Ġhanging": 5215, | |
| "ylvan": 5216, | |
| "ij": 5217, | |
| "uals": 5218, | |
| "Ġpill": 5219, | |
| "Ġgain": 5220, | |
| "Ġhans": 5221, | |
| "ira": 5222, | |
| "Ġquant": 5223, | |
| "Ġshame": 5224, | |
| "Ġshakes": 5225, | |
| "Ġuseful": 5226, | |
| "Ġsetting": 5227, | |
| "Ġadmit": 5228, | |
| "Ġgeorg": 5229, | |
| "Ġsenior": 5230, | |
| "Ġstatus": 5231, | |
| "Ġhistorical": 5232, | |
| "Ġcommercial": 5233, | |
| "nic": 5234, | |
| "vad": 5235, | |
| "Ġupstairs": 5236, | |
| "Ġblank": 5237, | |
| "Ġchest": 5238, | |
| "Ġcircumst": 5239, | |
| "Ġguilty": 5240, | |
| "mit": 5241, | |
| "Ġpant": 5242, | |
| "ingu": 5243, | |
| "aning": 5244, | |
| "arian": 5245, | |
| "iana": 5246, | |
| "Ġinternet": 5247, | |
| "Ġdiscip": 5248, | |
| "Ġvirt": 5249, | |
| "Ġsenate": 5250, | |
| "Ġexcellent": 5251, | |
| "enced": 5252, | |
| "Ġnerv": 5253, | |
| "Ġ35": 5254, | |
| "Ġnathan": 5255, | |
| "Ġextremely": 5256, | |
| "inger": 5257, | |
| "Ġshirt": 5258, | |
| "Ġtears": 5259, | |
| "Ġchain": 5260, | |
| "Ġearn": 5261, | |
| "Ġlegisl": 5262, | |
| "Ġballs": 5263, | |
| "Ġchampion": 5264, | |
| "Ġactivity": 5265, | |
| "achusetts": 5266, | |
| "non": 5267, | |
| "thur": 5268, | |
| "Ġability": 5269, | |
| "estic": 5270, | |
| "Ġspin": 5271, | |
| "Ġcheese": 5272, | |
| "Ġnormally": 5273, | |
| "Ġdrawing": 5274, | |
| "70": 5275, | |
| "ez": 5276, | |
| "rant": 5277, | |
| "Ġpartners": 5278, | |
| "ĠĠĠĠĠĠĠ": 5279, | |
| "Ġadvance": 5280, | |
| "Ġeffects": 5281, | |
| "Ġescap": 5282, | |
| "Ġpunish": 5283, | |
| "Ġtay": 5284, | |
| "Ġdust": 5285, | |
| "Ġlit": 5286, | |
| "Ġkings": 5287, | |
| "Ġneighbour": 5288, | |
| "Ġsupreme": 5289, | |
| "rick": 5290, | |
| "will": 5291, | |
| "Ġped": 5292, | |
| "Ġnoise": 5293, | |
| "Ġagric": 5294, | |
| "Ġharry": 5295, | |
| "Ġkeeps": 5296, | |
| "Ġhurric": 5297, | |
| "Ġfifteen": 5298, | |
| "Ġperfectly": 5299, | |
| "Ġtongue": 5300, | |
| "tles": 5301, | |
| "lle": 5302, | |
| "Ġhug": 5303, | |
| "etch": 5304, | |
| "emic": 5305, | |
| "Ġuns": 5306, | |
| "Ġmassachusetts": 5307, | |
| "Ġachieve": 5308, | |
| "Ġwid": 5309, | |
| "Ġdaw": 5310, | |
| "Ġthin": 5311, | |
| "Ġsole": 5312, | |
| "Ġmyth": 5313, | |
| "Ġsomehow": 5314, | |
| "tained": 5315, | |
| "Ġdesire": 5316, | |
| "Ġowned": 5317, | |
| "place": 5318, | |
| "Ġdancing": 5319, | |
| "Ġtraffic": 5320, | |
| "Ġaustralian": 5321, | |
| "Ġphilosophy": 5322, | |
| "Ġsust": 5323, | |
| "any": 5324, | |
| "Ġlt": 5325, | |
| "izes": 5326, | |
| "Ġcarefully": 5327, | |
| "mond": 5328, | |
| "Ġsuggested": 5329, | |
| "Ġagricult": 5330, | |
| "Äĩ": 5331, | |
| "Ġari": 5332, | |
| "Ġbeer": 5333, | |
| "Ġplenty": 5334, | |
| "Ġhelps": 5335, | |
| "Ġapolog": 5336, | |
| "Ġdriver": 5337, | |
| "Ġbullet": 5338, | |
| "Ġbowl": 5339, | |
| "Ġdraft": 5340, | |
| "Ġpakistan": 5341, | |
| "ylvania": 5342, | |
| "bow": 5343, | |
| "Ġcream": 5344, | |
| "Ġlin": 5345, | |
| "Ġlone": 5346, | |
| "Ġplot": 5347, | |
| "Ġshoulder": 5348, | |
| "Ġconsist": 5349, | |
| "Ġcolum": 5350, | |
| "Ġcolumb": 5351, | |
| "Ġpassing": 5352, | |
| "Ġfully": 5353, | |
| "Ġcarolina": 5354, | |
| "fall": 5355, | |
| "his": 5356, | |
| "Ġfrances": 5357, | |
| "Ġbrook": 5358, | |
| "Ġhearing": 5359, | |
| "Ġdetail": 5360, | |
| "Ġchosen": 5361, | |
| "nis": 5362, | |
| "Ġtap": 5363, | |
| "Ġpiano": 5364, | |
| "Ġinha": 5365, | |
| "Ġthor": 5366, | |
| "ros": 5367, | |
| "Ġparties": 5368, | |
| "Ġmatt": 5369, | |
| "Ġhighway": 5370, | |
| "Ġsigns": 5371, | |
| "Ġplanned": 5372, | |
| "Ġteachers": 5373, | |
| "Ġexpression": 5374, | |
| "Ġandrew": 5375, | |
| "bey": 5376, | |
| "Ġsteam": 5377, | |
| "Ġconnection": 5378, | |
| "Ġflew": 5379, | |
| "Ġbenefit": 5380, | |
| "door": 5381, | |
| "ti": 5382, | |
| "Ġgift": 5383, | |
| "Ġconcent": 5384, | |
| "intend": 5385, | |
| "Ġ32": 5386, | |
| "Ġaddons": 5387, | |
| "Ġtransform": 5388, | |
| "Ġbreaking": 5389, | |
| "Ġmagn": 5390, | |
| "Ġhyp": 5391, | |
| "Ġninety": 5392, | |
| "Ġscientists": 5393, | |
| "wers": 5394, | |
| "Ġluc": 5395, | |
| "Ġkansas": 5396, | |
| "Ġdoors": 5397, | |
| "eare": 5398, | |
| "Ġwhenever": 5399, | |
| "agan": 5400, | |
| "Ġboom": 5401, | |
| "Ġboston": 5402, | |
| "Ġmarsha": 5403, | |
| "Ġwrit": 5404, | |
| "Ġdeput": 5405, | |
| "Ġmotion": 5406, | |
| "Ġterritory": 5407, | |
| "Ġmichigan": 5408, | |
| "Ġate": 5409, | |
| "Ġbutton": 5410, | |
| "Ġexpand": 5411, | |
| "Ġadministration": 5412, | |
| "mat": 5413, | |
| "uh": 5414, | |
| "à¤": 5415, | |
| "Ġsed": 5416, | |
| "ulate": 5417, | |
| "Ġsixty": 5418, | |
| "Ġexcited": 5419, | |
| "Ġpresented": 5420, | |
| "Ġoperations": 5421, | |
| "Ġstrike": 5422, | |
| "nat": 5423, | |
| "lement": 5424, | |
| "Ġker": 5425, | |
| "Ġsheep": 5426, | |
| "Ġbraz": 5427, | |
| "Ġgran": 5428, | |
| "Ġterror": 5429, | |
| "Ġdiag": 5430, | |
| "Ġsarah": 5431, | |
| "enger": 5432, | |
| "Ġles": 5433, | |
| "Ġnom": 5434, | |
| "olved": 5435, | |
| "abeth": 5436, | |
| "Ġupset": 5437, | |
| "Ġmanip": 5438, | |
| "Ġbrad": 5439, | |
| "Ġ1992": 5440, | |
| "Ġawarded": 5441, | |
| "Ġoccurred": 5442, | |
| "rom": 5443, | |
| "Ġfurn": 5444, | |
| "Ġsevere": 5445, | |
| "ague": 5446, | |
| "Ġamy": 5447, | |
| "Ġ1991": 5448, | |
| "Ġpassion": 5449, | |
| "Ġartists": 5450, | |
| "Ġunderstanding": 5451, | |
| "mes": 5452, | |
| "onia": 5453, | |
| "Ġnaz": 5454, | |
| "Ġross": 5455, | |
| "acle": 5456, | |
| "Ġfold": 5457, | |
| "Ġhockey": 5458, | |
| "ception": 5459, | |
| "Ġhunting": 5460, | |
| "Ġprimary": 5461, | |
| "Ġolympics": 5462, | |
| "Ġinnocent": 5463, | |
| "Ġcitizens": 5464, | |
| "ko": 5465, | |
| "Ġnations": 5466, | |
| "Ġstations": 5467, | |
| "Ġgray": 5468, | |
| "Ġregional": 5469, | |
| "Ġfailure": 5470, | |
| "Ġeconomy": 5471, | |
| "Ġcarrying": 5472, | |
| "Ġbeside": 5473, | |
| "Ġliterature": 5474, | |
| "rance": 5475, | |
| "Ġtie": 5476, | |
| "Ġire": 5477, | |
| "Ġbeth": 5478, | |
| "Ġwebs": 5479, | |
| "Ġreaction": 5480, | |
| "unched": 5481, | |
| "Ġadvert": 5482, | |
| "Ġjoint": 5483, | |
| "Ġchanging": 5484, | |
| "Ġstaying": 5485, | |
| "speak": 5486, | |
| "itzer": 5487, | |
| "Ġchallenge": 5488, | |
| "Ġadvantage": 5489, | |
| "ares": 5490, | |
| "Ġpardon": 5491, | |
| "Ġwend": 5492, | |
| "Ġohio": 5493, | |
| "Ġzeal": 5494, | |
| "Ġinstance": 5495, | |
| "Ġviolence": 5496, | |
| "Ġwatched": 5497, | |
| "km": 5498, | |
| "Ġfu": 5499, | |
| "Ġdish": 5500, | |
| "llo": 5501, | |
| "isy": 5502, | |
| "Ġspect": 5503, | |
| "Ġbrill": 5504, | |
| "lfriend": 5505, | |
| "Ġimpact": 5506, | |
| "Ġdivor": 5507, | |
| "Ġexamples": 5508, | |
| "Ġvariety": 5509, | |
| "Ġsilent": 5510, | |
| "Ġshan": 5511, | |
| "Ġsamp": 5512, | |
| "Ġmand": 5513, | |
| "then": 5514, | |
| "Ġ1993": 5515, | |
| "Ġresponse": 5516, | |
| "Ġincreased": 5517, | |
| "Ġnarrow": 5518, | |
| "Ġcousin": 5519, | |
| "peare": 5520, | |
| "Ġpier": 5521, | |
| "Ġcongr": 5522, | |
| "quar": 5523, | |
| "eman": 5524, | |
| "Ġpoison": 5525, | |
| "Ġprepar": 5526, | |
| "Ġowner": 5527, | |
| "Ġapprox": 5528, | |
| "Ġhills": 5529, | |
| "Ġrepresented": 5530, | |
| "Ġlatter": 5531, | |
| ".)": 5532, | |
| "bes": 5533, | |
| "Ġcig": 5534, | |
| "Ġhiding": 5535, | |
| "resp": 5536, | |
| "Ġunique": 5537, | |
| "Ġbride": 5538, | |
| "Ġsteve": 5539, | |
| "Ġpossess": 5540, | |
| "Ġclasses": 5541, | |
| "Ġanti": 5542, | |
| "Ġscientific": 5543, | |
| "dd": 5544, | |
| "Ġiii": 5545, | |
| "Ġdave": 5546, | |
| "Ġkhan": 5547, | |
| "ching": 5548, | |
| "Ġblame": 5549, | |
| "Ġcontain": 5550, | |
| "Ġdesper": 5551, | |
| "Ġfigures": 5552, | |
| "Ġgrowth": 5553, | |
| "Ġholiday": 5554, | |
| "Ġpacific": 5555, | |
| "gun": 5556, | |
| "san": 5557, | |
| "Ġsoph": 5558, | |
| "Ġinsurance": 5559, | |
| "Ġkidding": 5560, | |
| "Ġpurcha": 5561, | |
| "Ġmixed": 5562, | |
| "Ġfancy": 5563, | |
| "giluyeh": 5564, | |
| "Ġkohgiluyeh": 5565, | |
| "bra": 5566, | |
| "æ": 5567, | |
| "Ġstom": 5568, | |
| "ila": 5569, | |
| "Ġplate": 5570, | |
| "Ġshared": 5571, | |
| "Ġ45": 5572, | |
| "Ġrespond": 5573, | |
| "Ġhundreds": 5574, | |
| "Ġdeclared": 5575, | |
| "Ġrabbit": 5576, | |
| "Ġwise": 5577, | |
| "Ġcraw": 5578, | |
| "Ġrhy": 5579, | |
| "Ġali": 5580, | |
| "Ġguitar": 5581, | |
| "Ġthoughts": 5582, | |
| "Ġbasis": 5583, | |
| "Ġremembered": 5584, | |
| "Ġhurricane": 5585, | |
| "21": 5586, | |
| "29": 5587, | |
| "verse": 5588, | |
| "Ġwave": 5589, | |
| "Ġsupply": 5590, | |
| "shire": 5591, | |
| "Ġ90": 5592, | |
| "Ġemerg": 5593, | |
| "Ġaven": 5594, | |
| "erves": 5595, | |
| "Ġonline": 5596, | |
| "Ġstated": 5597, | |
| "Ġjones": 5598, | |
| "Ġunknown": 5599, | |
| "Ġmaz": 5600, | |
| "Ġcheer": 5601, | |
| "Ġchris": 5602, | |
| "Ġfilms": 5603, | |
| "Ġpenns": 5604, | |
| "Ġfields": 5605, | |
| "Ġcricket": 5606, | |
| "tar": 5607, | |
| "Ġalp": 5608, | |
| "Ġvia": 5609, | |
| "Ġconscious": 5610, | |
| "Ġproducer": 5611, | |
| "Ġ70": 5612, | |
| "Ġdeliver": 5613, | |
| "Ġdrove": 5614, | |
| "unting": 5615, | |
| "Ġagency": 5616, | |
| "Ġcourage": 5617, | |
| "Ġagreement": 5618, | |
| "Ġiv": 5619, | |
| "Ġmile": 5620, | |
| "ani": 5621, | |
| "Ġgil": 5622, | |
| "Ġinqu": 5623, | |
| "olk": 5624, | |
| "Ġfallen": 5625, | |
| "Ġassociated": 5626, | |
| "Ġindependence": 5627, | |
| "Ġfolk": 5628, | |
| "Ġcomfortable": 5629, | |
| "hire": 5630, | |
| "mun": 5631, | |
| "norm": 5632, | |
| "Ġais": 5633, | |
| "ulated": 5634, | |
| "Ġworship": 5635, | |
| "Ġshake": 5636, | |
| "Ġedward": 5637, | |
| "Ġjohnson": 5638, | |
| "Ġsolid": 5639, | |
| "Ġdisappeared": 5640, | |
| "Ġexecutive": 5641, | |
| "Ġkentucky": 5642, | |
| "american": 5643, | |
| "Ġbrazil": 5644, | |
| "Ġireland": 5645, | |
| "was": 5646, | |
| "leg": 5647, | |
| "Ġbutt": 5648, | |
| "Ġvoc": 5649, | |
| "Ġsched": 5650, | |
| "angle": 5651, | |
| "inson": 5652, | |
| "Ġconflict": 5653, | |
| "Ġcondu": 5654, | |
| "Ġbillion": 5655, | |
| "Ġelectron": 5656, | |
| "Ġentertainment": 5657, | |
| "gust": 5658, | |
| "Ġak": 5659, | |
| "Ġpale": 5660, | |
| "Ġheav": 5661, | |
| "Ġasian": 5662, | |
| "Ġsyn": 5663, | |
| "Ġeleven": 5664, | |
| "Ġpriest": 5665, | |
| "Ġsales": 5666, | |
| "sued": 5667, | |
| "Ġlabour": 5668, | |
| "Ġdestroy": 5669, | |
| "\").": 5670, | |
| "Ġtrop": 5671, | |
| "Ġrein": 5672, | |
| "Ġriding": 5673, | |
| "lyn": 5674, | |
| "Ġconqu": 5675, | |
| "Ġgoodness": 5676, | |
| "Ġevolution": 5677, | |
| "Ġsettlement": 5678, | |
| "_.": 5679, | |
| "Ġneare": 5680, | |
| "oph": 5681, | |
| "Ġpros": 5682, | |
| "Ġgraph": 5683, | |
| "Ġidiot": 5684, | |
| "Ġinstruct": 5685, | |
| "Ġprovin": 5686, | |
| "Ġincred": 5687, | |
| "ropri": 5688, | |
| "Ġexperiment": 5689, | |
| "Ġveget": 5690, | |
| "Ġmaterials": 5691, | |
| "Ġexchange": 5692, | |
| "lies": 5693, | |
| "stone": 5694, | |
| "Ġseek": 5695, | |
| "Ġfollows": 5696, | |
| "Ġvari": 5697, | |
| "Ġdrawn": 5698, | |
| "from": 5699, | |
| "Ġshakespeare": 5700, | |
| "Ġfate": 5701, | |
| "Ġrug": 5702, | |
| "Ġkong": 5703, | |
| "Ġflash": 5704, | |
| "Ġdiss": 5705, | |
| "Ġinvited": 5706, | |
| "Ġtowns": 5707, | |
| "Ġpatients": 5708, | |
| "Ġconfeder": 5709, | |
| "Ġvalu": 5710, | |
| "Ġcaptured": 5711, | |
| "Ġweekend": 5712, | |
| "Ġinhabit": 5713, | |
| "Ġpennsylvania": 5714, | |
| "ds": 5715, | |
| "Ġwitch": 5716, | |
| "Ġbite": 5717, | |
| "Ġfile": 5718, | |
| "Ġseasons": 5719, | |
| "Ġsuck": 5720, | |
| "Ġserving": 5721, | |
| "Ġdistinct": 5722, | |
| "Ġproposed": 5723, | |
| "Ġsenator": 5724, | |
| "Ġtied": 5725, | |
| "Ġaspect": 5726, | |
| "Ġconsequ": 5727, | |
| "Ġarthur": 5728, | |
| "Ġdesert": 5729, | |
| "Ġslept": 5730, | |
| "Ġfairly": 5731, | |
| "Ġappreciate": 5732, | |
| "Ġnervous": 5733, | |
| "cos": 5734, | |
| "Ġtask": 5735, | |
| "Ġsisters": 5736, | |
| "eding": 5737, | |
| "Ġselling": 5738, | |
| "Ġunf": 5739, | |
| "Ġexped": 5740, | |
| "Ġbilly": 5741, | |
| "Ġjersey": 5742, | |
| "Ġsidney": 5743, | |
| "pes": 5744, | |
| "Ġbunch": 5745, | |
| "Ġnest": 5746, | |
| "Ġrig": 5747, | |
| "Ġdeli": 5748, | |
| "Ġcontest": 5749, | |
| "Ġorganis": 5750, | |
| "Ġactivities": 5751, | |
| "Ġweapons": 5752, | |
| "dge": 5753, | |
| "Ġbid": 5754, | |
| "Ġcake": 5755, | |
| "Ġpul": 5756, | |
| "ala": 5757, | |
| "Ġguest": 5758, | |
| "Ġclever": 5759, | |
| "Ġtempor": 5760, | |
| "Ġsupported": 5761, | |
| "Ġarmed": 5762, | |
| "Ġordinary": 5763, | |
| "Ġborder": 5764, | |
| "Å«": 5765, | |
| "Ġtone": 5766, | |
| "Ġsons": 5767, | |
| "Ġlas": 5768, | |
| "Ġgather": 5769, | |
| "ito": 5770, | |
| "Ġwealth": 5771, | |
| "Ġreck": 5772, | |
| "Ġsuffe": 5773, | |
| "rael": 5774, | |
| "Ġbug": 5775, | |
| "icted": 5776, | |
| "Ġpaying": 5777, | |
| "Ġturkey": 5778, | |
| "Ġdisappear": 5779, | |
| "Ġbaseball": 5780, | |
| "Ġassistant": 5781, | |
| "Ä«": 5782, | |
| "Ġfame": 5783, | |
| "Ġhamm": 5784, | |
| "Ġaband": 5785, | |
| "Ġboyfriend": 5786, | |
| "Ġsquared": 5787, | |
| "Ġ1950": 5788, | |
| "Ġbuddy": 5789, | |
| "Ġarrested": 5790, | |
| "Ġfalse": 5791, | |
| "inity": 5792, | |
| "inda": 5793, | |
| "Ġchose": 5794, | |
| "Ġstring": 5795, | |
| "Ġfoundation": 5796, | |
| "burgh": 5797, | |
| "Ġwounded": 5798, | |
| "Ġembarr": 5799, | |
| "Ġweapon": 5800, | |
| "Ġglobal": 5801, | |
| "eration": 5802, | |
| "otic": 5803, | |
| "entially": 5804, | |
| "Ġka": 5805, | |
| "Ġstad": 5806, | |
| "Ġlif": 5807, | |
| "Ġsum": 5808, | |
| "Ġviet": 5809, | |
| "Ġpregn": 5810, | |
| "Ġapply": 5811, | |
| "bridge": 5812, | |
| "Ġjuice": 5813, | |
| "Ġmerc": 5814, | |
| "Ġopera": 5815, | |
| "Ġgirlfriend": 5816, | |
| "Ġembarrass": 5817, | |
| "je": 5818, | |
| "uther": 5819, | |
| "Ġalice": 5820, | |
| "Ġages": 5821, | |
| "Ġfeature": 5822, | |
| "Ġoldest": 5823, | |
| "Ġeaten": 5824, | |
| "Ġbegins": 5825, | |
| "Ġconcert": 5826, | |
| "Ġwilliams": 5827, | |
| "mother": 5828, | |
| "hens": 5829, | |
| "Ġdow": 5830, | |
| "Ġhabit": 5831, | |
| "Ġroles": 5832, | |
| "Ġsoil": 5833, | |
| "Ġmarg": 5834, | |
| "boy": 5835, | |
| "Ġfamiliar": 5836, | |
| "Ġfeatured": 5837, | |
| "Ġapartment": 5838, | |
| "Ġargument": 5839, | |
| "Ġkorea": 5840, | |
| "Ġassembly": 5841, | |
| "Ġstomach": 5842, | |
| "lock": 5843, | |
| "inent": 5844, | |
| "onic": 5845, | |
| "Ġron": 5846, | |
| "Ġbrings": 5847, | |
| "Ġintegr": 5848, | |
| "Ġpromot": 5849, | |
| "Ġlimit": 5850, | |
| "Ġdetermined": 5851, | |
| "Ġwendy": 5852, | |
| "28": 5853, | |
| "miss": 5854, | |
| "vis": 5855, | |
| "wide": 5856, | |
| "Ġwoods": 5857, | |
| "Ġhoping": 5858, | |
| "bled": 5859, | |
| "cest": 5860, | |
| "yt": 5861, | |
| "your": 5862, | |
| "Ġeve": 5863, | |
| "Ġemm": 5864, | |
| "Ġwithd": 5865, | |
| "Ġatm": 5866, | |
| "Ġrealized": 5867, | |
| "Ġridic": 5868, | |
| "chuckles": 5869, | |
| "gi": 5870, | |
| "heim": 5871, | |
| "Ġtrains": 5872, | |
| "Ġroot": 5873, | |
| "Ġacid": 5874, | |
| "Ġwondering": 5875, | |
| "Ġorchestra": 5876, | |
| "Ġemergency": 5877, | |
| "bury": 5878, | |
| "Ġryan": 5879, | |
| "odes": 5880, | |
| "Ġharder": 5881, | |
| "Ġadditional": 5882, | |
| "Ġrooms": 5883, | |
| "Ġestate": 5884, | |
| "Ġtreated": 5885, | |
| "Ġburned": 5886, | |
| "Ġsoftware": 5887, | |
| "Ġdisappoint": 5888, | |
| "Ġaffairs": 5889, | |
| "Ġresponsibility": 5890, | |
| "Ġcriminal": 5891, | |
| "Ġcircumstances": 5892, | |
| "Ġcongrat": 5893, | |
| "Ġsuffered": 5894, | |
| "rical": 5895, | |
| "vation": 5896, | |
| "Ġtag": 5897, | |
| "Ġfab": 5898, | |
| "Ġmole": 5899, | |
| "Ġhyd": 5900, | |
| "Ġlabel": 5901, | |
| "Ġengineering": 5902, | |
| "Ġexistence": 5903, | |
| "Ġangel": 5904, | |
| "Ġgoddess": 5905, | |
| "27": 5906, | |
| "ora": 5907, | |
| "Ġspell": 5908, | |
| "Ġcapac": 5909, | |
| "Ġ1989": 5910, | |
| "Ġ80": 5911, | |
| "Ġmadam": 5912, | |
| "Ġugly": 5913, | |
| "cal": 5914, | |
| "Ġbeast": 5915, | |
| "Ġrice": 5916, | |
| "Ġunus": 5917, | |
| "Ġbrid": 5918, | |
| "Ġcheap": 5919, | |
| "Ġengaged": 5920, | |
| "Ġlevels": 5921, | |
| "Ġcritical": 5922, | |
| "Ġlegend": 5923, | |
| "Ġpeak": 5924, | |
| "urb": 5925, | |
| "urt": 5926, | |
| "cho": 5927, | |
| "Ġdeck": 5928, | |
| "Ġspare": 5929, | |
| "Ġchamber": 5930, | |
| "Ġcompared": 5931, | |
| "box": 5932, | |
| "Ġsquad": 5933, | |
| "Ġportug": 5934, | |
| "Ġrailroad": 5935, | |
| "Ġwales": 5936, | |
| "Ġseventy": 5937, | |
| "Ġhomes": 5938, | |
| "Ġwoo": 5939, | |
| "isp": 5940, | |
| "Ġvent": 5941, | |
| "Ġfinds": 5942, | |
| "scre": 5943, | |
| "zer": 5944, | |
| "Ġbol": 5945, | |
| "urally": 5946, | |
| "Ġwhist": 5947, | |
| "Ġnoted": 5948, | |
| "Ġholly": 5949, | |
| "chester": 5950, | |
| "osphere": 5951, | |
| "Ġdiscovery": 5952, | |
| "Ġindustrial": 5953, | |
| "rd": 5954, | |
| "Åį": 5955, | |
| "Ġoak": 5956, | |
| "Ġms": 5957, | |
| "Ġlinc": 5958, | |
| "Ġens": 5959, | |
| "Ġflood": 5960, | |
| "Ġhappiness": 5961, | |
| "Ġ1988": 5962, | |
| "Ġsolve": 5963, | |
| "Ġincreasing": 5964, | |
| "Ġelizabeth": 5965, | |
| "34": 5966, | |
| "35": 5967, | |
| "rad": 5968, | |
| "Ġtort": 5969, | |
| "otton": 5970, | |
| "urd": 5971, | |
| "Ġframe": 5972, | |
| "Ġproced": 5973, | |
| "Ġlaunched": 5974, | |
| "Ġcrossed": 5975, | |
| "Ġconcern": 5976, | |
| "Ġdiscover": 5977, | |
| "Ġsuspic": 5978, | |
| "Ġadmiral": 5979, | |
| "iest": 5980, | |
| "â": 5981, | |
| "Ġcher": 5982, | |
| "Ġdies": 5983, | |
| "Ġnit": 5984, | |
| "Ġscript": 5985, | |
| "Ġhandsome": 5986, | |
| "Ġbeneath": 5987, | |
| "Ġenvironmental": 5988, | |
| "Ġinstrument": 5989, | |
| "Ġmood": 5990, | |
| "Ġpool": 5991, | |
| "ano": 5992, | |
| "Ġnut": 5993, | |
| "lend": 5994, | |
| "Ġhay": 5995, | |
| "Ġisrael": 5996, | |
| "Ġmonday": 5997, | |
| "Ġze": 5998, | |
| "ologist": 5999, | |
| "Ġsixth": 6000, | |
| "Ġmillions": 6001, | |
| "Ġwinner": 6002, | |
| "Ġemily": 6003, | |
| "Ġpaint": 6004, | |
| "Ġestablish": 6005, | |
| "Ġamendment": 6006, | |
| "Ġlincol": 6007, | |
| "din": 6008, | |
| "Ġwished": 6009, | |
| "Ġjill": 6010, | |
| "emies": 6011, | |
| "Ġclient": 6012, | |
| "Ġfeather": 6013, | |
| "Ġera": 6014, | |
| "Ġcrash": 6015, | |
| "Ġrecording": 6016, | |
| "Ġdanny": 6017, | |
| "Ġmerry": 6018, | |
| "Ġsuffering": 6019, | |
| "Ġwrestling": 6020, | |
| "gment": 6021, | |
| "Ġlen": 6022, | |
| "acks": 6023, | |
| "Ġelements": 6024, | |
| "Ġ1979": 6025, | |
| "Ġcommonly": 6026, | |
| "Ġfleet": 6027, | |
| "Ġaccompan": 6028, | |
| "iggler": 6029, | |
| "Ġatlantic": 6030, | |
| "gie": 6031, | |
| "Ġyard": 6032, | |
| "omy": 6033, | |
| "etic": 6034, | |
| "Ġancest": 6035, | |
| "Ġgene": 6036, | |
| "Ġgeneration": 6037, | |
| "Ġimportance": 6038, | |
| "Ġrecognized": 6039, | |
| "Ġsympt": 6040, | |
| "Ġzealand": 6041, | |
| "lar": 6042, | |
| "run": 6043, | |
| "spe": 6044, | |
| "Ġstir": 6045, | |
| "chief": 6046, | |
| "Ġ(;": 6047, | |
| "Ġpleasant": 6048, | |
| "Ġfriendly": 6049, | |
| "Ġstands": 6050, | |
| "Ġrising": 6051, | |
| "Ġsurvive": 6052, | |
| "Ġhidden": 6053, | |
| "Ġelder": 6054, | |
| "Ġbrig": 6055, | |
| "amn": 6056, | |
| "Ġ1982": 6057, | |
| "Ġilleg": 6058, | |
| "Ġhorri": 6059, | |
| "Ġphoto": 6060, | |
| "Ġscholar": 6061, | |
| "oses": 6062, | |
| "Ġroger": 6063, | |
| "Ġeras": 6064, | |
| "Ġoverall": 6065, | |
| "Ġnights": 6066, | |
| "Ġfactory": 6067, | |
| "Ġcalvad": 6068, | |
| "Ġdawn": 6069, | |
| "Ġjewish": 6070, | |
| "works": 6071, | |
| "Ġcommunication": 6072, | |
| "Ġlincoln": 6073, | |
| "Ġcalvados": 6074, | |
| "ule": 6075, | |
| "Ġcav": 6076, | |
| "Ġrings": 6077, | |
| "aki": 6078, | |
| "Ġintended": 6079, | |
| "Ġwaited": 6080, | |
| "Ġattended": 6081, | |
| "Ġedition": 6082, | |
| "Ġdecisions": 6083, | |
| "standing": 6084, | |
| "Ġ1984": 6085, | |
| "Ġsentence": 6086, | |
| "Ġstatistics": 6087, | |
| "than": 6088, | |
| "Ġsang": 6089, | |
| "Ġrib": 6090, | |
| "Ġaside": 6091, | |
| "aine": 6092, | |
| "Ġconce": 6093, | |
| "about": 6094, | |
| "ĠĠĠĠĠ": 6095, | |
| "Ġsmo": 6096, | |
| "Ġchart": 6097, | |
| "Ġeighty": 6098, | |
| "Ġdarkness": 6099, | |
| "Ġrecognize": 6100, | |
| "Ġdepends": 6101, | |
| "Ġrepeated": 6102, | |
| "Ġtruly": 6103, | |
| "Ġcompon": 6104, | |
| "Ġmerchan": 6105, | |
| "Ġexplos": 6106, | |
| "Ġdetective": 6107, | |
| "Ġstadium": 6108, | |
| "eping": 6109, | |
| "Ġeric": 6110, | |
| "Ġearned": 6111, | |
| "Ġdescend": 6112, | |
| "197": 6113, | |
| "Ġrefused": 6114, | |
| "Ġadvanced": 6115, | |
| "aimed": 6116, | |
| "Ġfortune": 6117, | |
| "Ġglasses": 6118, | |
| "Ġlocked": 6119, | |
| "Ġefforts": 6120, | |
| "hmm": 6121, | |
| "long": 6122, | |
| "hey": 6123, | |
| "Ġwore": 6124, | |
| "Ġcute": 6125, | |
| "Ġcats": 6126, | |
| "Ġfishing": 6127, | |
| "star": 6128, | |
| "izations": 6129, | |
| "Ġeditor": 6130, | |
| "Ġbreast": 6131, | |
| "Ġofficially": 6132, | |
| "Ġshortly": 6133, | |
| "Ġirish": 6134, | |
| "Ġfairy": 6135, | |
| "Ġlaught": 6136, | |
| "force": 6137, | |
| "which": 6138, | |
| "Ġbudd": 6139, | |
| "Ġoxford": 6140, | |
| "Ġadministr": 6141, | |
| "Ġanalysis": 6142, | |
| "Ġrevenge": 6143, | |
| "Ġmobile": 6144, | |
| "cue": 6145, | |
| "ä": 6146, | |
| "Ġward": 6147, | |
| "ingly": 6148, | |
| "esh": 6149, | |
| "Ġrush": 6150, | |
| "Ġstress": 6151, | |
| "Ġanna": 6152, | |
| "Ġgotten": 6153, | |
| "Ġ1987": 6154, | |
| "Ġdeputy": 6155, | |
| "ras": 6156, | |
| "rich": 6157, | |
| "Ġ{": 6158, | |
| "Ġmental": 6159, | |
| "Ġdread": 6160, | |
| "Ġrefe": 6161, | |
| "Ġko": 6162, | |
| "acing": 6163, | |
| "Ġjr": 6164, | |
| "rose": 6165, | |
| "Ġsof": 6166, | |
| "Ġcore": 6167, | |
| "Ġziggler": 6168, | |
| "Ġgarage": 6169, | |
| "Ġcombination": 6170, | |
| "Ġobvious": 6171, | |
| "Ġdomestic": 6172, | |
| "Ġjacob": 6173, | |
| "Ġdedic": 6174, | |
| "Ġnominated": 6175, | |
| "Ġdump": 6176, | |
| "Ġtoy": 6177, | |
| "Ġdean": 6178, | |
| "Ġplastic": 6179, | |
| "Ġsurre": 6180, | |
| "Ġgardens": 6181, | |
| "Ġshadow": 6182, | |
| "Ġnurse": 6183, | |
| "Ġmathemat": 6184, | |
| "22": 6185, | |
| "lng": 6186, | |
| "rep": 6187, | |
| "Ġbent": 6188, | |
| "Ġbass": 6189, | |
| "iro": 6190, | |
| "Ġshook": 6191, | |
| "ivered": 6192, | |
| "Ġenemies": 6193, | |
| "Ġfactor": 6194, | |
| "Ġnearby": 6195, | |
| "Ġalexander": 6196, | |
| "Ġbrilliant": 6197, | |
| "alous": 6198, | |
| "aman": 6199, | |
| "sect": 6200, | |
| "osh": 6201, | |
| "Ġunable": 6202, | |
| "Ġcompound": 6203, | |
| "----": 6204, | |
| "Ġthrown": 6205, | |
| "Ġunderground": 6206, | |
| "Ġfuneral": 6207, | |
| "Ġ64": 6208, | |
| "Ġsnake": 6209, | |
| "Ġdealing": 6210, | |
| "Ġscarce": 6211, | |
| "Ġlaughter": 6212, | |
| "Ġselected": 6213, | |
| "unts": 6214, | |
| "iece": 6215, | |
| "Ġtheme": 6216, | |
| "Ġbuying": 6217, | |
| "Ġmaid": 6218, | |
| "Ġpointed": 6219, | |
| "Ġjohnny": 6220, | |
| "Ġprogramme": 6221, | |
| "Ġreports": 6222, | |
| "Ġinvestigation": 6223, | |
| "Ġdescription": 6224, | |
| "Ġunfortunately": 6225, | |
| "note": 6226, | |
| "oom": 6227, | |
| "Ġtub": 6228, | |
| "Ġowe": 6229, | |
| "Ġmcc": 6230, | |
| "eps": 6231, | |
| "Ġcruel": 6232, | |
| "198": 6233, | |
| "Ġsorts": 6234, | |
| "Ġconduct": 6235, | |
| "Ġberlin": 6236, | |
| "Ġburning": 6237, | |
| "Ġlecture": 6238, | |
| "Ġmoo": 6239, | |
| "asy": 6240, | |
| "iring": 6241, | |
| "Ġ\"\"": 6242, | |
| "Ġallows": 6243, | |
| "Ġgrav": 6244, | |
| "Ġsmok": 6245, | |
| "Ġattitude": 6246, | |
| "Ġcreating": 6247, | |
| "Ġdelay": 6248, | |
| "greg": 6249, | |
| "Ġfolks": 6250, | |
| "point": 6251, | |
| "Ġtorn": 6252, | |
| "Ġtiger": 6253, | |
| "Ġpity": 6254, | |
| "Ġmoves": 6255, | |
| "aken": 6256, | |
| "Ġgrade": 6257, | |
| "Ġbuff": 6258, | |
| "Ġzone": 6259, | |
| "Ġinsp": 6260, | |
| "Ġretire": 6261, | |
| "Ġvalues": 6262, | |
| "Ġrobin": 6263, | |
| "lis": 6264, | |
| "Å¡": 6265, | |
| "ouri": 6266, | |
| "Ġpages": 6267, | |
| "Ġgib": 6268, | |
| "Ġanton": 6269, | |
| "gery": 6270, | |
| "Ġdefense": 6271, | |
| "Ġtreasure": 6272, | |
| "Ġromantic": 6273, | |
| "Ġeffective": 6274, | |
| "Ġhealthy": 6275, | |
| "Ġromanized": 6276, | |
| "grees": 6277, | |
| "Ġreviews": 6278, | |
| "Ġswimming": 6279, | |
| "Ġwolf": 6280, | |
| "ê¯": 6281, | |
| "imin": 6282, | |
| "ading": 6283, | |
| "Ġdegrees": 6284, | |
| "Ġarrow": 6285, | |
| "Ġkeys": 6286, | |
| "ternal": 6287, | |
| "Ġ1971": 6288, | |
| "Ġequals": 6289, | |
| "adesh": 6290, | |
| "music": 6291, | |
| "500": 6292, | |
| "90": 6293, | |
| "aud": 6294, | |
| "gues": 6295, | |
| "wing": 6296, | |
| "ô": 6297, | |
| "Ġwire": 6298, | |
| "owed": 6299, | |
| "Ġsuicide": 6300, | |
| "Ġwhoever": 6301, | |
| "Ġcommitted": 6302, | |
| "Ġ184": 6303, | |
| "Ġelephan": 6304, | |
| "Ġsimon": 6305, | |
| "Ġspending": 6306, | |
| "Ġlonely": 6307, | |
| "Ġhorrible": 6308, | |
| "ext": 6309, | |
| "lav": 6310, | |
| "Ġcultural": 6311, | |
| "Ġwalter": 6312, | |
| "Ġreferred": 6313, | |
| "Ġrandom": 6314, | |
| "Ġnumerous": 6315, | |
| ".[": 6316, | |
| "tan": 6317, | |
| "Ġbha": 6318, | |
| "Ġthunder": 6319, | |
| "Ġbuzz": 6320, | |
| "Ġbelg": 6321, | |
| "Ġcommunities": 6322, | |
| "Ġexplained": 6323, | |
| "Ġliterally": 6324, | |
| "Ġarrang": 6325, | |
| "Ġmemorial": 6326, | |
| "Ġapplication": 6327, | |
| "Ġdoctors": 6328, | |
| "Ġwand": 6329, | |
| "Ġbrian": 6330, | |
| "Ġcem": 6331, | |
| "Ġpour": 6332, | |
| "Ġhog": 6333, | |
| "ads": 6334, | |
| "Ġperman": 6335, | |
| "Ġmonster": 6336, | |
| "Ġswitzer": 6337, | |
| "Ġ1981": 6338, | |
| "Ġnether": 6339, | |
| "Ġconvin": 6340, | |
| "Ġapplied": 6341, | |
| "Ġcomplicated": 6342, | |
| "38": 6343, | |
| "happy": 6344, | |
| "Ġcale": 6345, | |
| "Ġstab": 6346, | |
| "Ġdozen": 6347, | |
| "aints": 6348, | |
| "umber": 6349, | |
| "apers": 6350, | |
| "aka": 6351, | |
| "Ġmarks": 6352, | |
| "Ġtouched": 6353, | |
| "Ġcryst": 6354, | |
| "Ġbelongs": 6355, | |
| "bal": 6356, | |
| "erg": 6357, | |
| "Ġcou": 6358, | |
| "Ġgoo": 6359, | |
| "Ġproved": 6360, | |
| "Ġchase": 6361, | |
| "Ġ180": 6362, | |
| "196": 6363, | |
| "Ġbern": 6364, | |
| "sen": 6365, | |
| "ĠÎ": 6366, | |
| "Ġcert": 6367, | |
| "Ġtools": 6368, | |
| "Ġstu": 6369, | |
| "Ġvision": 6370, | |
| "Ġhired": 6371, | |
| "Ġequip": 6372, | |
| "Ġvector": 6373, | |
| "Ġmoral": 6374, | |
| "Ġproperly": 6375, | |
| "Ġobserv": 6376, | |
| "Ġbathroom": 6377, | |
| "Ġdescribe": 6378, | |
| "Ġfisher": 6379, | |
| "Ġerasmus": 6380, | |
| "36": 6381, | |
| "mont": 6382, | |
| "Ġwing": 6383, | |
| "Ġcant": 6384, | |
| "Ġmud": 6385, | |
| "Ġprosec": 6386, | |
| "Ġcolors": 6387, | |
| "Ġ1976": 6388, | |
| "Ġcreature": 6389, | |
| "Ġtai": 6390, | |
| "worth": 6391, | |
| "Ġathlet": 6392, | |
| "Ġinstructions": 6393, | |
| "Ġswitzerland": 6394, | |
| "].": 6395, | |
| "hot": 6396, | |
| "rot": 6397, | |
| "Ġtoile": 6398, | |
| "sex": 6399, | |
| "Ġseed": 6400, | |
| "chi": 6401, | |
| "umes": 6402, | |
| "Ġsaving": 6403, | |
| "Ġtwin": 6404, | |
| "Ġrode": 6405, | |
| "Ġpoem": 6406, | |
| "ordon": 6407, | |
| "Ġattorn": 6408, | |
| "Ġlands": 6409, | |
| "Ġincident": 6410, | |
| "Ġpainted": 6411, | |
| "Ġmirror": 6412, | |
| "Ġcycle": 6413, | |
| "Ġprepare": 6414, | |
| "Ġsanta": 6415, | |
| "Ġtropical": 6416, | |
| "Ġmister": 6417, | |
| "Ġyell": 6418, | |
| "Ġsufficient": 6419, | |
| "Ġsplend": 6420, | |
| "Ġloyal": 6421, | |
| "Ġsubt": 6422, | |
| "Ġgermans": 6423, | |
| "Ġ1986": 6424, | |
| "Ġannual": 6425, | |
| "Ġcooking": 6426, | |
| "Ġborrow": 6427, | |
| "Ġcharlie": 6428, | |
| "Ġrestaurant": 6429, | |
| "\"),": 6430, | |
| "Ġvel": 6431, | |
| "Ġment": 6432, | |
| "Ġtomb": 6433, | |
| "ether": 6434, | |
| "iments": 6435, | |
| "Ġatom": 6436, | |
| "ogue": 6437, | |
| "Ġtalks": 6438, | |
| "Ġstronger": 6439, | |
| "Ġturk": 6440, | |
| "Ġsecure": 6441, | |
| "Ġvolume": 6442, | |
| "Ġcritics": 6443, | |
| "Ġdynasty": 6444, | |
| "respond": 6445, | |
| "Ġmazra": 6446, | |
| "Ġridiculous": 6447, | |
| "',": 6448, | |
| "Ġdumb": 6449, | |
| "Ġrud": 6450, | |
| "Ġstol": 6451, | |
| "Ġshir": 6452, | |
| "Ġvic": 6453, | |
| "Ġgram": 6454, | |
| "Ġparish": 6455, | |
| "Ġsingles": 6456, | |
| "Ġburst": 6457, | |
| "Ġexplan": 6458, | |
| "Ġclosely": 6459, | |
| "Ġfortun": 6460, | |
| "Ġiniti": 6461, | |
| "Ġticket": 6462, | |
| "Ġfrancisco": 6463, | |
| "Ġtip": 6464, | |
| "Ġjess": 6465, | |
| "Ġgra": 6466, | |
| "Ġbetty": 6467, | |
| "Ġappropri": 6468, | |
| "Ġbadly": 6469, | |
| "Ġmiller": 6470, | |
| "Ġpresidential": 6471, | |
| "speaking": 6472, | |
| "Ġmazraeh": 6473, | |
| "based": 6474, | |
| "sar": 6475, | |
| "Ġtale": 6476, | |
| "Ġbos": 6477, | |
| "illing": 6478, | |
| "Ġbron": 6479, | |
| "Ġrod": 6480, | |
| "Ġscat": 6481, | |
| "Ġacts": 6482, | |
| "Ġdepos": 6483, | |
| "Ġmarked": 6484, | |
| "Ġinjury": 6485, | |
| "writer": 6486, | |
| "Ġrecommend": 6487, | |
| "Ġwag": 6488, | |
| "nda": 6489, | |
| "Ġfi": 6490, | |
| "Ġtooth": 6491, | |
| "Ġcomposed": 6492, | |
| "Ġphr": 6493, | |
| "Ġpersonally": 6494, | |
| "Ġcollea": 6495, | |
| "Ġreflect": 6496, | |
| "Ġjealous": 6497, | |
| "........": 6498, | |
| "Ġpotential": 6499, | |
| "Ġtypical": 6500, | |
| "Ġmethods": 6501, | |
| "Ġsally": 6502, | |
| "reck": 6503, | |
| "Ġcass": 6504, | |
| "Ġpension": 6505, | |
| "Ġtoys": 6506, | |
| "oto": 6507, | |
| "adel": 6508, | |
| "Ġark": 6509, | |
| "Ġsubsequ": 6510, | |
| "Ġdecor": 6511, | |
| "Ġwinds": 6512, | |
| "Ġoperating": 6513, | |
| "Ġenjoyed": 6514, | |
| "Ġimpression": 6515, | |
| "Ġimperial": 6516, | |
| "hl": 6517, | |
| "Ġfasc": 6518, | |
| "Ġreference": 6519, | |
| "Ġstole": 6520, | |
| "Ġanger": 6521, | |
| "unte": 6522, | |
| "athy": 6523, | |
| "Ġ36": 6524, | |
| "Ġministry": 6525, | |
| "Ġ500": 6526, | |
| "Ġ1985": 6527, | |
| "Ġshopping": 6528, | |
| "Ġhistoric": 6529, | |
| "Ġidentity": 6530, | |
| "Ġprincipal": 6531, | |
| "Ġfart": 6532, | |
| "Ġdub": 6533, | |
| "ashing": 6534, | |
| "ali": 6535, | |
| "Ġmeal": 6536, | |
| "Ġteen": 6537, | |
| "reek": 6538, | |
| "Ġpersons": 6539, | |
| "phy": 6540, | |
| "Ġexciting": 6541, | |
| "Ġgeorgia": 6542, | |
| "Ġsymptoms": 6543, | |
| "cers": 6544, | |
| "some": 6545, | |
| "Ġbones": 6546, | |
| "Ġmons": 6547, | |
| "Ġfans": 6548, | |
| "also": 6549, | |
| "celer": 6550, | |
| "Ġabb": 6551, | |
| "Ġcenturies": 6552, | |
| "Ġaircraft": 6553, | |
| "Ġcorrespond": 6554, | |
| "Ġbabies": 6555, | |
| "Ġhearts": 6556, | |
| "Ġpurple": 6557, | |
| "Ġpalm": 6558, | |
| "Ġcreation": 6559, | |
| "Ġgreece": 6560, | |
| "Ġhonestly": 6561, | |
| "Ġfrightened": 6562, | |
| "mod": 6563, | |
| "Ġbot": 6564, | |
| "Ġgat": 6565, | |
| "uri": 6566, | |
| "Ġshift": 6567, | |
| "Ġclay": 6568, | |
| "Ġacceler": 6569, | |
| "Ġstranger": 6570, | |
| "Ġpassage": 6571, | |
| "ructed": 6572, | |
| "liest": 6573, | |
| "Ġ1964": 6574, | |
| "Ġexperien": 6575, | |
| "Ġcontrovers": 6576, | |
| "Ġvolunte": 6577, | |
| "Ġtracks": 6578, | |
| "Ġobserved": 6579, | |
| "Ġemploy": 6580, | |
| "glas": 6581, | |
| "Ġgoddamn": 6582, | |
| "Ġfantastic": 6583, | |
| "Ġconvention": 6584, | |
| "Ġwebsite": 6585, | |
| "iser": 6586, | |
| "itors": 6587, | |
| "Ġhoward": 6588, | |
| "Ġcrook": 6589, | |
| "Ġregret": 6590, | |
| "Ġinterrupt": 6591, | |
| "Ġfifa": 6592, | |
| "Ġladder": 6593, | |
| "Ġsources": 6594, | |
| "conscious": 6595, | |
| "Ġnarrator": 6596, | |
| "Ġmargaret": 6597, | |
| "Ġatmosphere": 6598, | |
| "Ġequipment": 6599, | |
| "gro": 6600, | |
| "Ġwra": 6601, | |
| "Ġlamp": 6602, | |
| "Ġku": 6603, | |
| "lying": 6604, | |
| "Ġsche": 6605, | |
| "Ġbund": 6606, | |
| "Ġswing": 6607, | |
| "Ġconsult": 6608, | |
| "Ġinstant": 6609, | |
| "Ġ1978": 6610, | |
| "Ġearthqu": 6611, | |
| "Ġsending": 6612, | |
| "Ġinitial": 6613, | |
| "Ġ¶": 6614, | |
| "two": 6615, | |
| "vest": 6616, | |
| "Ġsly": 6617, | |
| "Ġneut": 6618, | |
| "class": 6619, | |
| "Ġputs": 6620, | |
| "Ġdesk": 6621, | |
| "Ġdistingu": 6622, | |
| "Ġauthorities": 6623, | |
| "Ġnuclear": 6624, | |
| "Ġadopted": 6625, | |
| "gent": 6626, | |
| "hus": 6627, | |
| "wich": 6628, | |
| "Ġpor": 6629, | |
| "encies": 6630, | |
| "Ġlung": 6631, | |
| "Ġmos": 6632, | |
| "Ġargu": 6633, | |
| "Ġcommit": 6634, | |
| "Ġcourts": 6635, | |
| "Ġcape": 6636, | |
| "Ġincome": 6637, | |
| "Ġpapa": 6638, | |
| "Ġdifficulty": 6639, | |
| "Ġpuzz": 6640, | |
| "Ġwilson": 6641, | |
| "Ġapproximately": 6642, | |
| "uous": 6643, | |
| "Ġira": 6644, | |
| "Ġtheater": 6645, | |
| "Ġmath": 6646, | |
| "Ġselect": 6647, | |
| "Ġabd": 6648, | |
| "Ġconver": 6649, | |
| "Ġguide": 6650, | |
| "Ġactions": 6651, | |
| "Ġmissouri": 6652, | |
| "Ġassy": 6653, | |
| "Ġexpert": 6654, | |
| "Ġphilipp": 6655, | |
| "rogen": 6656, | |
| "Ġruled": 6657, | |
| "Ġastron": 6658, | |
| "Ġarchitecture": 6659, | |
| "Ġsucceeded": 6660, | |
| "Ġintelligence": 6661, | |
| "hin": 6662, | |
| "po": 6663, | |
| "tim": 6664, | |
| "Ġsink": 6665, | |
| "Ġbible": 6666, | |
| "Ġgaz": 6667, | |
| "Ġbeating": 6668, | |
| "usted": 6669, | |
| "Ġexha": 6670, | |
| "Ġleon": 6671, | |
| "weight": 6672, | |
| "Ġguar": 6673, | |
| "Ġeddie": 6674, | |
| "Ġcurious": 6675, | |
| "Ġ1975": 6676, | |
| "Ġincor": 6677, | |
| "Ġroads": 6678, | |
| "Ġsuperior": 6679, | |
| "Ġpermission": 6680, | |
| "Ġvictims": 6681, | |
| "Ġvictoria": 6682, | |
| "Ġunusual": 6683, | |
| "eur": 6684, | |
| "°": 6685, | |
| "ĠÏ": 6686, | |
| "hew": 6687, | |
| "nde": 6688, | |
| "Ġhong": 6689, | |
| "Ġhunt": 6690, | |
| "utor": 6691, | |
| "Ġstamp": 6692, | |
| "Ġgosh": 6693, | |
| "Ġnotable": 6694, | |
| "Ġshh": 6695, | |
| "Ġspo": 6696, | |
| "Ġclar": 6697, | |
| "Ġindians": 6698, | |
| "Ġ1983": 6699, | |
| "Ġpractical": 6700, | |
| "Ġprisoners": 6701, | |
| "Ġbangl": 6702, | |
| "Ġcongratulations": 6703, | |
| "five": 6704, | |
| "hum": 6705, | |
| "Ġbone": 6706, | |
| "Ġcord": 6707, | |
| "Ġyu": 6708, | |
| "Ġtoast": 6709, | |
| "oty": 6710, | |
| "Ġreject": 6711, | |
| "Ġsel": 6712, | |
| "osis": 6713, | |
| "thew": 6714, | |
| "Ġcontem": 6715, | |
| "Ġlaunch": 6716, | |
| "Ġnaturally": 6717, | |
| "Ġvoices": 6718, | |
| "ropol": 6719, | |
| "Ġstephen": 6720, | |
| "Ġinvestment": 6721, | |
| "Ġcombined": 6722, | |
| "Ġneighborhood": 6723, | |
| "Ġpregnant": 6724, | |
| "yard": 6725, | |
| "Ġ/": 6726, | |
| "Ġmmm": 6727, | |
| "Ġraw": 6728, | |
| "Ġjay": 6729, | |
| "Ġgoals": 6730, | |
| "Ġprefect": 6731, | |
| "Ġcrap": 6732, | |
| "Ġrescue": 6733, | |
| "Ġending": 6734, | |
| "Ġentrance": 6735, | |
| "Ġbarb": 6736, | |
| "Ġconfused": 6737, | |
| "Ġhorror": 6738, | |
| "Ġdevice": 6739, | |
| "Ġproperties": 6740, | |
| "Ġphysics": 6741, | |
| "Ġwaters": 6742, | |
| "Ġoliver": 6743, | |
| "Ġsacred": 6744, | |
| "Ġrevealed": 6745, | |
| "Ġkorean": 6746, | |
| "Ġsurrounded": 6747, | |
| "Ġpilot": 6748, | |
| "Ġliquid": 6749, | |
| "Ġdramatic": 6750, | |
| "100": 6751, | |
| "fire": 6752, | |
| "Ġwaves": 6753, | |
| "Ġreward": 6754, | |
| "Ġcovers": 6755, | |
| "enses": 6756, | |
| "ogether": 6757, | |
| "Ġregions": 6758, | |
| "Ġfriendship": 6759, | |
| "Ġseparated": 6760, | |
| "Ġregarded": 6761, | |
| "Ġexpedition": 6762, | |
| "Ġemma": 6763, | |
| "bage": 6764, | |
| "cour": 6765, | |
| "woman": 6766, | |
| "Ġlan": 6767, | |
| "Ġparall": 6768, | |
| "Ġengage": 6769, | |
| "onto": 6770, | |
| "life": 6771, | |
| "Ġholds": 6772, | |
| "Ġdrinks": 6773, | |
| "Ġmurdered": 6774, | |
| "Ġdevices": 6775, | |
| "Ġchecked": 6776, | |
| "Ġ1930": 6777, | |
| "looking": 6778, | |
| "Ġjunior": 6779, | |
| "quarters": 6780, | |
| "Ġstuart": 6781, | |
| "Ġlap": 6782, | |
| "icy": 6783, | |
| "Ġreign": 6784, | |
| "sters": 6785, | |
| "Ġliver": 6786, | |
| "Ġlily": 6787, | |
| "Ġnep": 6788, | |
| "Ġmode": 6789, | |
| "Ġtrained": 6790, | |
| "Ġmans": 6791, | |
| "Ġleaf": 6792, | |
| "Ġassume": 6793, | |
| "aws": 6794, | |
| "Ġinterests": 6795, | |
| "Ġinfant": 6796, | |
| "Ġvisited": 6797, | |
| "Ġoccas": 6798, | |
| "Ġbalance": 6799, | |
| "Ġconservative": 6800, | |
| "Ġalternative": 6801, | |
| "Ġsweden": 6802, | |
| "Ġnathaniel": 6803, | |
| "26": 6804, | |
| "four": 6805, | |
| "fish": 6806, | |
| "Ġaid": 6807, | |
| "Ġpushed": 6808, | |
| "Ġgig": 6809, | |
| "aria": 6810, | |
| "Ġbegg": 6811, | |
| "Ġrear": 6812, | |
| "Ġspite": 6813, | |
| "ifying": 6814, | |
| "Ġboats": 6815, | |
| "Ġmargin": 6816, | |
| "Ġdisney": 6817, | |
| "Ġremove": 6818, | |
| "Ġhousehold": 6819, | |
| "Ġbits": 6820, | |
| "Ġ1973": 6821, | |
| "Ġdistricts": 6822, | |
| "Ġdefeat": 6823, | |
| "οu": 6824, | |
| "Ġcapture": 6825, | |
| "Ġvehicle": 6826, | |
| "39": 6827, | |
| "rist": 6828, | |
| "Ġsou": 6829, | |
| "Ġcotton": 6830, | |
| "Ġmig": 6831, | |
| "Ġnoble": 6832, | |
| "Ġchop": 6833, | |
| "Ġwanting": 6834, | |
| "Ġguests": 6835, | |
| "Ġdriven": 6836, | |
| "Ġclassic": 6837, | |
| "Ġclothing": 6838, | |
| "Ġmachines": 6839, | |
| "Ġclaimed": 6840, | |
| "hist": 6841, | |
| "Ġdum": 6842, | |
| "Ġlam": 6843, | |
| "Ġlane": 6844, | |
| "Ġgained": 6845, | |
| "itable": 6846, | |
| "oti": 6847, | |
| "Ġrivers": 6848, | |
| "ensions": 6849, | |
| "Ġrelation": 6850, | |
| "Ġskills": 6851, | |
| "Ġleads": 6852, | |
| "Ġ1974": 6853, | |
| "Ġdouglas": 6854, | |
| "Ġmassive": 6855, | |
| "Ġobjects": 6856, | |
| "Ġknocked": 6857, | |
| "Ġdelicious": 6858, | |
| "45": 6859, | |
| "Ġsoup": 6860, | |
| "Ġfoss": 6861, | |
| "Ġeager": 6862, | |
| "Ġclause": 6863, | |
| "Ġshoulders": 6864, | |
| "Ġmaiden": 6865, | |
| "Ġstudying": 6866, | |
| "Ġpersonality": 6867, | |
| "Ġminds": 6868, | |
| "Ġreturning": 6869, | |
| "Ġ1969": 6870, | |
| "Ġopposed": 6871, | |
| "Ġvert": 6872, | |
| "ursday": 6873, | |
| "Ġbanks": 6874, | |
| "Ġjumped": 6875, | |
| "Ġstrugg": 6876, | |
| "Ġaisne": 6877, | |
| "Ġattorney": 6878, | |
| "char": 6879, | |
| "iÄĩ": 6880, | |
| "sch": 6881, | |
| "Ġdale": 6882, | |
| "Ġpump": 6883, | |
| "ancy": 6884, | |
| "Ġnaked": 6885, | |
| "Ġstim": 6886, | |
| "irst": 6887, | |
| "Ġviv": 6888, | |
| "agger": 6889, | |
| "Ġbetray": 6890, | |
| "Ġremaining": 6891, | |
| "Ġideal": 6892, | |
| "pered": 6893, | |
| "ika": 6894, | |
| "Ġviews": 6895, | |
| "Ġphotograph": 6896, | |
| "Ġsatisfied": 6897, | |
| "Ġguarant": 6898, | |
| "Ġknees": 6899, | |
| "Ġbruce": 6900, | |
| "Ġslide": 6901, | |
| "Ġcharged": 6902, | |
| "ibi": 6903, | |
| "Ġdepth": 6904, | |
| "Ġgreg": 6905, | |
| "Ġsitu": 6906, | |
| "Ġmusician": 6907, | |
| "195": 6908, | |
| "Ġsooner": 6909, | |
| "Ġ1940": 6910, | |
| "Ġcops": 6911, | |
| "Ġsuffer": 6912, | |
| "Ġaffected": 6913, | |
| "Ġcorporation": 6914, | |
| "Ġdawson": 6915, | |
| "Ġinhabitants": 6916, | |
| "Ġstolen": 6917, | |
| "cut": 6918, | |
| "lord": 6919, | |
| "ua": 6920, | |
| "ã": 6921, | |
| "Ġbbc": 6922, | |
| "Ġthursday": 6923, | |
| "Ġjury": 6924, | |
| "Ġzoo": 6925, | |
| "Ġsurgery": 6926, | |
| "Ġescaped": 6927, | |
| "37": 6928, | |
| "called": 6929, | |
| "Ġbah": 6930, | |
| "iture": 6931, | |
| "lets": 6932, | |
| "Ġkan": 6933, | |
| "Ġallen": 6934, | |
| "Ġtender": 6935, | |
| "Ġbond": 6936, | |
| "Ġours": 6937, | |
| "Ġowners": 6938, | |
| "Ġrelief": 6939, | |
| "Ġbitter": 6940, | |
| "Ġassign": 6941, | |
| "Ġassault": 6942, | |
| "phia": 6943, | |
| "Ġconfidence": 6944, | |
| "Ġ150": 6945, | |
| "Ġvideos": 6946, | |
| "Ġspiritual": 6947, | |
| "Ġcolumbia": 6948, | |
| "bits": 6949, | |
| "iac": 6950, | |
| "Ġfare": 6951, | |
| "Ġlately": 6952, | |
| "Ġnuts": 6953, | |
| "hers": 6954, | |
| "Ġvul": 6955, | |
| "ieur": 6956, | |
| "Ġprote": 6957, | |
| "Ġacted": 6958, | |
| "Ġdisgust": 6959, | |
| "Ġmatthew": 6960, | |
| "Ġlisted": 6961, | |
| "Ġ1972": 6962, | |
| "Ġcutting": 6963, | |
| "Ġestim": 6964, | |
| "hamed": 6965, | |
| "Ġindex": 6966, | |
| "Ġblocks": 6967, | |
| "Ġindividuals": 6968, | |
| "Ġintellect": 6969, | |
| "Ġstruggle": 6970, | |
| "Ġadventure": 6971, | |
| "Ġinspector": 6972, | |
| "32": 6973, | |
| "mal": 6974, | |
| "tv": 6975, | |
| "vant": 6976, | |
| "Ġpants": 6977, | |
| "Ġlamb": 6978, | |
| "omen": 6979, | |
| "Ġbears": 6980, | |
| "Ġissued": 6981, | |
| "Ġvin": 6982, | |
| "Ġconcl": 6983, | |
| "Ġdeserve": 6984, | |
| "Ġcapable": 6985, | |
| "Ġinsult": 6986, | |
| "Ġprovides": 6987, | |
| "Ġconstit": 6988, | |
| "Ġ1968": 6989, | |
| "Ġcatal": 6990, | |
| "Ġfigured": 6991, | |
| "Ġdaisy": 6992, | |
| "Ġbenefits": 6993, | |
| "Ġpunishment": 6994, | |
| "intendo": 6995, | |
| "fin": 6996, | |
| "pol": 6997, | |
| "à¦": 6998, | |
| "erable": 6999, | |
| "Ġfier": 7000, | |
| "Ġfuel": 7001, | |
| "orage": 7002, | |
| "utation": 7003, | |
| "ateful": 7004, | |
| "ender": 7005, | |
| "Ġpole": 7006, | |
| "Ġchildhood": 7007, | |
| "Ġswall": 7008, | |
| "Ġsteven": 7009, | |
| "Ġimages": 7010, | |
| "Ġengineer": 7011, | |
| "Ġwidely": 7012, | |
| "Ġpossibility": 7013, | |
| "Ġpirates": 7014, | |
| "Ġscenes": 7015, | |
| "Ġdepression": 7016, | |
| "Ġheavily": 7017, | |
| "mail": 7018, | |
| "ser": 7019, | |
| "wick": 7020, | |
| "Ġald": 7021, | |
| "era": 7022, | |
| "Ġdal": 7023, | |
| "Ġlem": 7024, | |
| "arn": 7025, | |
| "iders": 7026, | |
| "Ġforb": 7027, | |
| "ador": 7028, | |
| "three": 7029, | |
| "Ġarc": 7030, | |
| "Ġpride": 7031, | |
| "Ġrober": 7032, | |
| "ffin": 7033, | |
| "Ġstrate": 7034, | |
| "Ġpolish": 7035, | |
| "Ġjacket": 7036, | |
| "engers": 7037, | |
| "Ġcrossing": 7038, | |
| "Ġhoped": 7039, | |
| "Ġdollar": 7040, | |
| "Ġgranted": 7041, | |
| "Ġmystery": 7042, | |
| "Ġceremony": 7043, | |
| "esome": 7044, | |
| "Ġhits": 7045, | |
| "Ġjur": 7046, | |
| "thou": 7047, | |
| "Ġclare": 7048, | |
| "onsense": 7049, | |
| "Ġdelivered": 7050, | |
| "Ġcopies": 7051, | |
| "Ġnecessarily": 7052, | |
| "Ġinitially": 7053, | |
| "Ġnetherlands": 7054, | |
| "99": 7055, | |
| "bird": 7056, | |
| "Ġbum": 7057, | |
| "Ġpent": 7058, | |
| "ati": 7059, | |
| "etime": 7060, | |
| "Ġconclud": 7061, | |
| "apore": 7062, | |
| "Ġnowhere": 7063, | |
| "Ġletting": 7064, | |
| "Ġmeanwhile": 7065, | |
| "Ġmoments": 7066, | |
| "Ġgreet": 7067, | |
| "Ġbaron": 7068, | |
| "Ġinternal": 7069, | |
| "Ġversions": 7070, | |
| "Ġoxy": 7071, | |
| "Ġreduced": 7072, | |
| "Ġemploye": 7073, | |
| "Ġtoilet": 7074, | |
| "Ġstrategy": 7075, | |
| "bb": 7076, | |
| "Ġtu": 7077, | |
| "Ġmit": 7078, | |
| "Ġdur": 7079, | |
| "Ġinfect": 7080, | |
| "Ġni": 7081, | |
| "otte": 7082, | |
| "Ġanch": 7083, | |
| "Ġdebt": 7084, | |
| "Ġcompar": 7085, | |
| "order": 7086, | |
| "Ġmuhammad": 7087, | |
| "Ġrecon": 7088, | |
| "Ġconsists": 7089, | |
| "iami": 7090, | |
| "Ġorganized": 7091, | |
| "Ġalbums": 7092, | |
| "Ġverte": 7093, | |
| "Ġbreathing": 7094, | |
| "chers": 7095, | |
| "Ġbranches": 7096, | |
| "Ġaccompl": 7097, | |
| "zo": 7098, | |
| "Ġpas": 7099, | |
| "isc": 7100, | |
| "Ġhes": 7101, | |
| "Ġalbert": 7102, | |
| "Ġvast": 7103, | |
| "pective": 7104, | |
| "Ġrepresentatives": 7105, | |
| "Ġdiscussion": 7106, | |
| "Ġgraduated": 7107, | |
| "smith": 7108, | |
| "Ġsustain": 7109, | |
| "Ġinspired": 7110, | |
| "Ġcemeter": 7111, | |
| "Ġsought": 7112, | |
| "Ġbou": 7113, | |
| "Ġpip": 7114, | |
| "Ġpiss": 7115, | |
| "Ġnintendo": 7116, | |
| "andie": 7117, | |
| "Ġshiv": 7118, | |
| "Ġgeography": 7119, | |
| "Ġextended": 7120, | |
| "Ġ1945": 7121, | |
| "Ġprofession": 7122, | |
| "Ġquietly": 7123, | |
| "jud": 7124, | |
| "Ġcatherine": 7125, | |
| "Ġmamm": 7126, | |
| "Ġfel": 7127, | |
| "Ġbend": 7128, | |
| "owned": 7129, | |
| "Ġwherever": 7130, | |
| "Ġslave": 7131, | |
| "Ġrecru": 7132, | |
| "Ġsimpl": 7133, | |
| "Ġessentially": 7134, | |
| "Ġmerely": 7135, | |
| "Ġtaiwan": 7136, | |
| "pass": 7137, | |
| "Ġincl": 7138, | |
| "aska": 7139, | |
| "alo": 7140, | |
| "Ġjazz": 7141, | |
| "kel": 7142, | |
| "ressed": 7143, | |
| "Ġimplement": 7144, | |
| "Ġ300": 7145, | |
| "Ġstrateg": 7146, | |
| "aho": 7147, | |
| "Ġmeters": 7148, | |
| "aughters": 7149, | |
| "Ġsingapore": 7150, | |
| "ella": 7151, | |
| "Ġdrives": 7152, | |
| "Ġequation": 7153, | |
| "Ġbedroom": 7154, | |
| "Ġexplore": 7155, | |
| "Ġcontrolled": 7156, | |
| "Ġcattle": 7157, | |
| "Ġelections": 7158, | |
| "Ġargent": 7159, | |
| "Ġpollution": 7160, | |
| "Ġitems": 7161, | |
| "Ġavenue": 7162, | |
| "Ġarranged": 7163, | |
| "adelphia": 7164, | |
| "bach": 7165, | |
| "fly": 7166, | |
| "kh": 7167, | |
| "take": 7168, | |
| "Ġtank": 7169, | |
| "Ġyum": 7170, | |
| "owing": 7171, | |
| "Ġthread": 7172, | |
| "Ġkha": 7173, | |
| "emp": 7174, | |
| "Ġleo": 7175, | |
| "Ġscand": 7176, | |
| "Ġheadquarters": 7177, | |
| "Ġentry": 7178, | |
| "Ġcommunist": 7179, | |
| "certain": 7180, | |
| "Ġbasse": 7181, | |
| "Ġanswers": 7182, | |
| "Ġ1963": 7183, | |
| "Ġtelephone": 7184, | |
| "Ġmaximum": 7185, | |
| "Ġphase": 7186, | |
| "normandie": 7187, | |
| "Ġmouse": 7188, | |
| "Ġrope": 7189, | |
| "Ġanno": 7190, | |
| "Ġsolo": 7191, | |
| "Ġloan": 7192, | |
| "Ġagents": 7193, | |
| "Ġblast": 7194, | |
| "Ġcontext": 7195, | |
| "Ġ37": 7196, | |
| "Ġaccur": 7197, | |
| "Ġeighteen": 7198, | |
| "iii": 7199, | |
| "Ġrevol": 7200, | |
| "Ġrepeat": 7201, | |
| "Ġdemonstr": 7202, | |
| "Ġmerchant": 7203, | |
| "31": 7204, | |
| "vior": 7205, | |
| "Ġtues": 7206, | |
| "Ġmiami": 7207, | |
| "usa": 7208, | |
| "una": 7209, | |
| "Ġuncom": 7210, | |
| "Ġboots": 7211, | |
| "Ġfond": 7212, | |
| "ibly": 7213, | |
| "âĻª": 7214, | |
| "Ġconfess": 7215, | |
| "Ġmurde": 7216, | |
| "Ġphotos": 7217, | |
| "Ġchampionships": 7218, | |
| "Ġarticles": 7219, | |
| "Ġdunno": 7220, | |
| "Ġelectricity": 7221, | |
| "Ġinterpret": 7222, | |
| "lan": 7223, | |
| "Ġott": 7224, | |
| "Ġbike": 7225, | |
| "Ġnonsense": 7226, | |
| "rix": 7227, | |
| "Ġfrag": 7228, | |
| "Ġcod": 7229, | |
| "Ġcoordin": 7230, | |
| "odec": 7231, | |
| "Ġprecise": 7232, | |
| "Ġkevin": 7233, | |
| "Ġregister": 7234, | |
| "Ġillness": 7235, | |
| "Ġmercy": 7236, | |
| "Ġclubs": 7237, | |
| "Ġkissed": 7238, | |
| "Ġaffair": 7239, | |
| "Ġepisodes": 7240, | |
| "Ġdigital": 7241, | |
| "Ġsacrif": 7242, | |
| "Ġbegun": 7243, | |
| "oyd": 7244, | |
| "Ġemotions": 7245, | |
| "Ġtuesday": 7246, | |
| "ran": 7247, | |
| "Ġeag": 7248, | |
| "Ġford": 7249, | |
| "Ġassh": 7250, | |
| "Ġ(_": 7251, | |
| "Ġuseless": 7252, | |
| "ifts": 7253, | |
| "Ġwhereas": 7254, | |
| "Ġprecious": 7255, | |
| "Ġkelly": 7256, | |
| "Ġformation": 7257, | |
| "Ġlistened": 7258, | |
| "Ġalongside": 7259, | |
| "Ġaustria": 7260, | |
| "Ġvillages": 7261, | |
| "iency": 7262, | |
| "nesday": 7263, | |
| "Ġemotional": 7264, | |
| "ón": 7265, | |
| "Ġcomposer": 7266, | |
| "Ġdiplom": 7267, | |
| "Ġcolumn": 7268, | |
| "Ġabandoned": 7269, | |
| "Ġgoogle": 7270, | |
| "Ġcemetery": 7271, | |
| "Ġoption": 7272, | |
| "Ġcin": 7273, | |
| "Ġyards": 7274, | |
| "Ġtool": 7275, | |
| "Ġgordon": 7276, | |
| "astern": 7277, | |
| "Ġstones": 7278, | |
| "Ġliz": 7279, | |
| "Ġneur": 7280, | |
| "Ġpron": 7281, | |
| "avan": 7282, | |
| "Ġsmiled": 7283, | |
| "Ġwarning": 7284, | |
| "Ġmonarch": 7285, | |
| "Ġlandsc": 7286, | |
| "Ġclassical": 7287, | |
| "Ġawesome": 7288, | |
| "Ġadvoc": 7289, | |
| "Ġ1947": 7290, | |
| "Ġsailed": 7291, | |
| "Ġbehavior": 7292, | |
| "Ġvotes": 7293, | |
| "Ġwicked": 7294, | |
| "Ġexplanation": 7295, | |
| "mel": 7296, | |
| "pent": 7297, | |
| "ÅŁ": 7298, | |
| "Ġcreek": 7299, | |
| "Ġdoo": 7300, | |
| "Ġgates": 7301, | |
| "Ġhut": 7302, | |
| "uled": 7303, | |
| "Ġerror": 7304, | |
| "Ġsmiling": 7305, | |
| "Ġformat": 7306, | |
| "Ġregiment": 7307, | |
| "Ġpersu": 7308, | |
| "laus": 7309, | |
| "Ġtoronto": 7310, | |
| "Ġreduce": 7311, | |
| "Ġpirate": 7312, | |
| "Ġaltogether": 7313, | |
| "Ġparallel": 7314, | |
| "uits": 7315, | |
| "´": 7316, | |
| "ãĥ": 7317, | |
| "Ġfulf": 7318, | |
| "Ġdug": 7319, | |
| "Ġdaughters": 7320, | |
| "Ġyor": 7321, | |
| "Ġgross": 7322, | |
| "Ġrag": 7323, | |
| "state": 7324, | |
| "Ġtear": 7325, | |
| "Ġchoo": 7326, | |
| "Ġpond": 7327, | |
| "inton": 7328, | |
| "Ġheaded": 7329, | |
| "Ġmetropol": 7330, | |
| "Ġsites": 7331, | |
| "Ġtries": 7332, | |
| "Ġ1977": 7333, | |
| "Ġpresently": 7334, | |
| "Ġadmitted": 7335, | |
| "Ġwednesday": 7336, | |
| "Ġcategory": 7337, | |
| "rin": 7338, | |
| "Ġtum": 7339, | |
| "Ġtack": 7340, | |
| "Ġtow": 7341, | |
| "Ġinch": 7342, | |
| "Ġinsect": 7343, | |
| "itched": 7344, | |
| "usive": 7345, | |
| "Ġstores": 7346, | |
| "Ġvon": 7347, | |
| "iley": 7348, | |
| "Ġrecy": 7349, | |
| "Ġfinn": 7350, | |
| "Ġswift": 7351, | |
| "Ġinvasion": 7352, | |
| "Ġmaine": 7353, | |
| "Ġdefence": 7354, | |
| "Ġattacks": 7355, | |
| "Ġtesting": 7356, | |
| "Ġamongst": 7357, | |
| "Ġringing": 7358, | |
| "Ġseventh": 7359, | |
| "Ġsplendid": 7360, | |
| "Ġappropriate": 7361, | |
| "Ġgathered": 7362, | |
| "tes": 7363, | |
| "vard": 7364, | |
| "Ġtab": 7365, | |
| "Ġdna": 7366, | |
| "Ġ1920": 7367, | |
| "Ġregist": 7368, | |
| "Ġsurve": 7369, | |
| "Ġcollabor": 7370, | |
| "Ġadding": 7371, | |
| "Ġstepped": 7372, | |
| "Ġmeetings": 7373, | |
| "Ġuniversities": 7374, | |
| "Ġdistribution": 7375, | |
| "Ġcandidate": 7376, | |
| "Ġillegal": 7377, | |
| "lers": 7378, | |
| "rons": 7379, | |
| "sur": 7380, | |
| "ñ": 7381, | |
| "Ġau": 7382, | |
| "Ġale": 7383, | |
| "Ġpitt": 7384, | |
| "Ġpiz": 7385, | |
| "Ġdove": 7386, | |
| "Ġopens": 7387, | |
| "Ġelev": 7388, | |
| "Ġservant": 7389, | |
| "Ġpromoted": 7390, | |
| "Ġpositions": 7391, | |
| "Ġ1944": 7392, | |
| "Ġmorgan": 7393, | |
| "Ġurban": 7394, | |
| "Ġviolent": 7395, | |
| "Ġborough": 7396, | |
| "Ġpicard": 7397, | |
| "Ġrhyth": 7398, | |
| "Ġvaluable": 7399, | |
| "Ġoxygen": 7400, | |
| "och": 7401, | |
| "zing": 7402, | |
| "Ġbc": 7403, | |
| "Ġfaced": 7404, | |
| "Ġpipe": 7405, | |
| "isis": 7406, | |
| "Ġstairs": 7407, | |
| "Ġjung": 7408, | |
| "Ġneat": 7409, | |
| "Ġalf": 7410, | |
| "Ġspar": 7411, | |
| "Ġlover": 7412, | |
| "Ġlew": 7413, | |
| "Ġcole": 7414, | |
| "Ġmars": 7415, | |
| "ava": 7416, | |
| "angers": 7417, | |
| "Ġthrone": 7418, | |
| "Ġchess": 7419, | |
| "Ġfourteen": 7420, | |
| "Ġstops": 7421, | |
| "ounced": 7422, | |
| "Ġpursu": 7423, | |
| "Ġpicking": 7424, | |
| "Ġexpecting": 7425, | |
| "Ġcroat": 7426, | |
| "Ġfrequently": 7427, | |
| "Ġnaval": 7428, | |
| "Ġcapacity": 7429, | |
| "cop": 7430, | |
| "pre": 7431, | |
| "vid": 7432, | |
| "Ġcave": 7433, | |
| "Ġfiction": 7434, | |
| "asp": 7435, | |
| "Ġwashed": 7436, | |
| "Ġspoon": 7437, | |
| "aving": 7438, | |
| "Ġindones": 7439, | |
| "Ġ34": 7440, | |
| "Ġidaho": 7441, | |
| "Ġsubs": 7442, | |
| "crete": 7443, | |
| "Ġ1967": 7444, | |
| "Ġprojects": 7445, | |
| "Ġsubjects": 7446, | |
| "Ġ£": 7447, | |
| "Ġprovinces": 7448, | |
| "33": 7449, | |
| "hs": 7450, | |
| "vor": 7451, | |
| "Ġsi": 7452, | |
| "Ġfid": 7453, | |
| "Ġky": 7454, | |
| "istol": 7455, | |
| "Ġchin": 7456, | |
| "Ġloving": 7457, | |
| "iao": 7458, | |
| "Ġscored": 7459, | |
| "Ġinfin": 7460, | |
| "Ġlargely": 7461, | |
| "Ġexperiences": 7462, | |
| "Ġphiladelphia": 7463, | |
| "Ġhence": 7464, | |
| "Ġexisting": 7465, | |
| "Ġidentified": 7466, | |
| "Ġdocuments": 7467, | |
| "athan": 7468, | |
| "Ġrit": 7469, | |
| "Ġashamed": 7470, | |
| "Ġsheet": 7471, | |
| "Ġpear": 7472, | |
| "Ġgrateful": 7473, | |
| "Ġbold": 7474, | |
| "Ġpartly": 7475, | |
| "Ġreserve": 7476, | |
| "Ġpossession": 7477, | |
| "Ġ1965": 7478, | |
| "Ġchurches": 7479, | |
| "Ġabsor": 7480, | |
| "Ġtechnical": 7481, | |
| "Ġclaims": 7482, | |
| "Ġintroduce": 7483, | |
| "Ġprinciple": 7484, | |
| "aling": 7485, | |
| "thy": 7486, | |
| "Ġscrap": 7487, | |
| "Ġstandards": 7488, | |
| "otted": 7489, | |
| "Ġcorps": 7490, | |
| "Ġoperated": 7491, | |
| "Ġmessages": 7492, | |
| "Ġmodels": 7493, | |
| "Ġlatest": 7494, | |
| "Ġliterary": 7495, | |
| "Ġracing": 7496, | |
| "Ġvacc": 7497, | |
| "Ġadults": 7498, | |
| "Ġsmooth": 7499, | |
| "Ġelephant": 7500, | |
| "iat": 7501, | |
| "Ġairl": 7502, | |
| "Ġdating": 7503, | |
| "Ġandy": 7504, | |
| "atically": 7505, | |
| "Ġthief": 7506, | |
| "Ġrus": 7507, | |
| "gel": 7508, | |
| "uls": 7509, | |
| "Ġenorm": 7510, | |
| "Ġfinance": 7511, | |
| "Ġsets": 7512, | |
| "elled": 7513, | |
| "Ġfreud": 7514, | |
| "going": 7515, | |
| "Ġreplace": 7516, | |
| "Ġresource": 7517, | |
| "Ġthorough": 7518, | |
| "Ġconvinced": 7519, | |
| "Ġexperienced": 7520, | |
| "case": 7521, | |
| "equ": 7522, | |
| "gon": 7523, | |
| "Ġaz": 7524, | |
| "Ġyan": 7525, | |
| "Ġefficient": 7526, | |
| "Ġsoap": 7527, | |
| "Ġtrace": 7528, | |
| "Ġbra": 7529, | |
| "Ġwayne": 7530, | |
| "Ġreputation": 7531, | |
| "Ġbeings": 7532, | |
| "Ġdifferences": 7533, | |
| "Ġlesson": 7534, | |
| "Ġpulling": 7535, | |
| "Ġthreatened": 7536, | |
| "Ġoptim": 7537, | |
| "Ġanthony": 7538, | |
| "cia": 7539, | |
| "fit": 7540, | |
| "master": 7541, | |
| "ui": 7542, | |
| "Ġtube": 7543, | |
| "Ġmd": 7544, | |
| "Ġdio": 7545, | |
| "Ġluther": 7546, | |
| "Ġrilla": 7547, | |
| "Ġtrump": 7548, | |
| "Ġclin": 7549, | |
| "Ġgenius": 7550, | |
| "Ġpatri": 7551, | |
| "Ġdivine": 7552, | |
| "Ġpurposes": 7553, | |
| "Ġnewspapers": 7554, | |
| "Ġincredible": 7555, | |
| "bab": 7556, | |
| "vo": 7557, | |
| "Ġts": 7558, | |
| "Ġwreck": 7559, | |
| "Ġbry": 7560, | |
| "Ġbav": 7561, | |
| "Ġmall": 7562, | |
| "Ġdial": 7563, | |
| "oria": 7564, | |
| "Ġgest": 7565, | |
| "Ġing": 7566, | |
| "Ġinner": 7567, | |
| "Ġseats": 7568, | |
| "orted": 7569, | |
| "Ġclick": 7570, | |
| "cience": 7571, | |
| "velope": 7572, | |
| "Ġformal": 7573, | |
| "Ġmighty": 7574, | |
| "Ġbarn": 7575, | |
| "Ġhopefully": 7576, | |
| "Ġcookie": 7577, | |
| "Ġclimb": 7578, | |
| "Ġlicense": 7579, | |
| "Ġexercise": 7580, | |
| "cur": 7581, | |
| "mouth": 7582, | |
| "Ġsna": 7583, | |
| "Ġgear": 7584, | |
| "itled": 7585, | |
| "icia": 7586, | |
| "eau": 7587, | |
| "Ġcomic": 7588, | |
| "eline": 7589, | |
| "hedral": 7590, | |
| "issa": 7591, | |
| "Ġbelt": 7592, | |
| "Ġstrict": 7593, | |
| "Ġinteract": 7594, | |
| "Ġlanded": 7595, | |
| "Ġhated": 7596, | |
| "Ġ1941": 7597, | |
| "Ġallowing": 7598, | |
| "Ġsupporting": 7599, | |
| "Ġnorman": 7600, | |
| "Ġruin": 7601, | |
| "Ġhunter": 7602, | |
| "Ġmexican": 7603, | |
| "Ġencourage": 7604, | |
| "Ġiraq": 7605, | |
| "sl": 7606, | |
| "Ġbure": 7607, | |
| "Ġdull": 7608, | |
| "ington": 7609, | |
| "Ġworn": 7610, | |
| "ifer": 7611, | |
| "Ġsla": 7612, | |
| "Ġcharges": 7613, | |
| "Ġmedium": 7614, | |
| "Ġprobability": 7615, | |
| "Ġcampbell": 7616, | |
| "Ġphilip": 7617, | |
| "Ġromania": 7618, | |
| "Ġcollected": 7619, | |
| "kyo": 7620, | |
| "Ġbreathe": 7621, | |
| "Ġlisa": 7622, | |
| "Ġdesperate": 7623, | |
| "Ġdedicated": 7624, | |
| "erted": 7625, | |
| "Ġyield": 7626, | |
| "Ġjar": 7627, | |
| "ustration": 7628, | |
| "Ġuser": 7629, | |
| "Ġunconscious": 7630, | |
| "Ġcontained": 7631, | |
| "Ġharrison": 7632, | |
| "gines": 7633, | |
| "Ġrecall": 7634, | |
| "Ġsyd": 7635, | |
| "Ġ48": 7636, | |
| "Ġextent": 7637, | |
| "Ġraj": 7638, | |
| "Ġgrandfather": 7639, | |
| "Ġtests": 7640, | |
| "Ġspirits": 7641, | |
| "Ġsandy": 7642, | |
| "Ġmysterious": 7643, | |
| "Ġpoetry": 7644, | |
| "Ġscreaming": 7645, | |
| "Ġslyne": 7646, | |
| "bet": 7647, | |
| "Ġsung": 7648, | |
| "Ġpunch": 7649, | |
| "Ġgle": 7650, | |
| "Ġnay": 7651, | |
| "Ġbees": 7652, | |
| "Ġstraw": 7653, | |
| "Ġspy": 7654, | |
| "Ġunhappy": 7655, | |
| "Ġlean": 7656, | |
| "Ġguards": 7657, | |
| "Ġmah": 7658, | |
| "shit": 7659, | |
| "Ġevident": 7660, | |
| "Ġinstinct": 7661, | |
| "Ġoblig": 7662, | |
| "Ġrestrict": 7663, | |
| "Ġextend": 7664, | |
| "Ġawake": 7665, | |
| "Ġdeeply": 7666, | |
| "Ġluke": 7667, | |
| "ae": 7668, | |
| "Ġaer": 7669, | |
| "Ġtherap": 7670, | |
| "Ġcd": 7671, | |
| "Ġdign": 7672, | |
| "Ġphen": 7673, | |
| "anium": 7674, | |
| "thr": 7675, | |
| "Ġenvelope": 7676, | |
| "Ġdownstairs": 7677, | |
| "Ġglory": 7678, | |
| "Ġinstitution": 7679, | |
| "Ġretreat": 7680, | |
| "Ġcausing": 7681, | |
| "Ġequival": 7682, | |
| "Ġdeveloping": 7683, | |
| "Ġapproved": 7684, | |
| "Ġangle": 7685, | |
| "Ġjerry": 7686, | |
| "Ġappointment": 7687, | |
| "odecahedron": 7688, | |
| "Ġpicardie": 7689, | |
| ".&": 7690, | |
| "gs": 7691, | |
| "Ġsie": 7692, | |
| "Ġmack": 7693, | |
| "Ġfaint": 7694, | |
| "Ġwhoops": 7695, | |
| "Ġasks": 7696, | |
| "Ġbrut": 7697, | |
| "Ġfever": 7698, | |
| "Ġattached": 7699, | |
| "Ġsixteen": 7700, | |
| "Ġlinear": 7701, | |
| "Ġconfident": 7702, | |
| "Ġcleaning": 7703, | |
| "Ġduties": 7704, | |
| "Ġdiagn": 7705, | |
| "Ġpermanent": 7706, | |
| "Ġmonsieur": 7707, | |
| "Ġscheme": 7708, | |
| "kind": 7709, | |
| "Ġbars": 7710, | |
| "Ġpoo": 7711, | |
| "Ġere": 7712, | |
| "Ġstable": 7713, | |
| "Ġsear": 7714, | |
| "Ġtrap": 7715, | |
| "Ġworldwide": 7716, | |
| "Ġpasses": 7717, | |
| "Ġhurts": 7718, | |
| "Ġsweetheart": 7719, | |
| "Ġpotato": 7720, | |
| "Ġcomputers": 7721, | |
| "Ġlux": 7722, | |
| "Ġprinciples": 7723, | |
| "Ġnickn": 7724, | |
| "Ġmemories": 7725, | |
| "footnote": 7726, | |
| "Ġcabinet": 7727, | |
| "Ġexhibition": 7728, | |
| "Ġadministrative": 7729, | |
| "95": 7730, | |
| "sk": 7731, | |
| "sw": 7732, | |
| "Ġyug": 7733, | |
| "anne": 7734, | |
| "eness": 7735, | |
| "Ġcomr": 7736, | |
| "agne": 7737, | |
| "Ġclark": 7738, | |
| "ixon": 7739, | |
| "lessly": 7740, | |
| "coming": 7741, | |
| "Ġstrongly": 7742, | |
| "Ġrobinson": 7743, | |
| "Ġnegoti": 7744, | |
| "Ġdepending": 7745, | |
| "bourne": 7746, | |
| "Ġliberty": 7747, | |
| "Ġhollywood": 7748, | |
| "wind": 7749, | |
| "Ġip": 7750, | |
| "Ġbom": 7751, | |
| "Ġfake": 7752, | |
| "Ġpint": 7753, | |
| "Ġsty": 7754, | |
| "Ġstern": 7755, | |
| "Ġintent": 7756, | |
| "Ġscout": 7757, | |
| "Ġnewly": 7758, | |
| "Ġcrimes": 7759, | |
| "Ġkeen": 7760, | |
| "Ġexplo": 7761, | |
| "Ġshower": 7762, | |
| "Ġpassenger": 7763, | |
| "Ġairpl": 7764, | |
| "Ġgrandpa": 7765, | |
| "Ġstarred": 7766, | |
| "Ġbeaten": 7767, | |
| "Ġgradually": 7768, | |
| "Ġbobby": 7769, | |
| "Ġregarding": 7770, | |
| "Ġprinted": 7771, | |
| "cri": 7772, | |
| "mi": 7773, | |
| "pers": 7774, | |
| "ç": 7775, | |
| "inter": 7776, | |
| "Ġfc": 7777, | |
| "Ġbee": 7778, | |
| "Ġreaching": 7779, | |
| "Ġridge": 7780, | |
| "stic": 7781, | |
| "ilton": 7782, | |
| "Ġshield": 7783, | |
| "oli": 7784, | |
| "Ġorth": 7785, | |
| "udes": 7786, | |
| "Ġpeasant": 7787, | |
| "Ġgrim": 7788, | |
| "Ġcrisis": 7789, | |
| "Ġfounding": 7790, | |
| "Ġslipped": 7791, | |
| "Ġheading": 7792, | |
| "Ġobst": 7793, | |
| "Ġincom": 7794, | |
| "Ġdefined": 7795, | |
| "Ġportion": 7796, | |
| "Ġruined": 7797, | |
| "Ġprivile": 7798, | |
| "Ġsailing": 7799, | |
| "Ġdefinition": 7800, | |
| "Ġtickets": 7801, | |
| "Ġchemistry": 7802, | |
| "Ġrapidly": 7803, | |
| "Ġconfirmed": 7804, | |
| "cript": 7805, | |
| "found": 7806, | |
| "ghan": 7807, | |
| "lines": 7808, | |
| "lrb": 7809, | |
| "oard": 7810, | |
| "pool": 7811, | |
| "Ġsig": 7812, | |
| "Ġdates": 7813, | |
| "Ġyay": 7814, | |
| "Ġwhit": 7815, | |
| "Ġvit": 7816, | |
| "oslav": 7817, | |
| "berry": 7818, | |
| "agers": 7819, | |
| "Ġpee": 7820, | |
| "ordinary": 7821, | |
| "fulness": 7822, | |
| "Ġslip": 7823, | |
| "Ġelimin": 7824, | |
| "Ġdistant": 7825, | |
| "Ġinvented": 7826, | |
| "Ġuniversal": 7827, | |
| "Ġdivide": 7828, | |
| "Ġjudy": 7829, | |
| "Ġeducational": 7830, | |
| "Ġpanama": 7831, | |
| "Ġlucy": 7832, | |
| "Ġforests": 7833, | |
| "Ġfundament": 7834, | |
| "Ġchristianity": 7835, | |
| "Ġdiseases": 7836, | |
| "Ġinjured": 7837, | |
| "Ġanaly": 7838, | |
| "Ġolympic": 7839, | |
| "Ġemotion": 7840, | |
| "Ġdynam": 7841, | |
| "Ġoccasionally": 7842, | |
| "Ġwriters": 7843, | |
| "rrb": 7844, | |
| "siden": 7845, | |
| "ture": 7846, | |
| "rem": 7847, | |
| "real": 7848, | |
| "Ġgap": 7849, | |
| "Ġselection": 7850, | |
| "opher": 7851, | |
| "...!": 7852, | |
| "Ġintense": 7853, | |
| "Ġmarie": 7854, | |
| "neath": 7855, | |
| "teenth": 7856, | |
| "Ġglen": 7857, | |
| "ologists": 7858, | |
| "Ġchristians": 7859, | |
| "iki": 7860, | |
| "Ġconstantly": 7861, | |
| "nessee": 7862, | |
| "Ġwounds": 7863, | |
| "Ġprayer": 7864, | |
| "Ġblew": 7865, | |
| "Ġoccupied": 7866, | |
| "Ġsemi": 7867, | |
| "Ġphrase": 7868, | |
| "sidenote": 7869, | |
| "Ġbin": 7870, | |
| "Ġmou": 7871, | |
| "Ġrip": 7872, | |
| "Ġconcrete": 7873, | |
| "Ġupd": 7874, | |
| "Ġbru": 7875, | |
| "Ġoffering": 7876, | |
| "Ġadj": 7877, | |
| "Ġactors": 7878, | |
| "Ġdisag": 7879, | |
| "Ġcarriage": 7880, | |
| "cling": 7881, | |
| "mann": 7882, | |
| "Ġwondered": 7883, | |
| "Ġorganizations": 7884, | |
| "Ġ1954": 7885, | |
| "Ġwooden": 7886, | |
| "Ġrepresentative": 7887, | |
| "Ġpolicies": 7888, | |
| "Ġtaxes": 7889, | |
| "Ġvisitors": 7890, | |
| "Ġvacation": 7891, | |
| "Ġmunicipal": 7892, | |
| "Ġplatforms": 7893, | |
| "Ġwishes": 7894, | |
| "Ġdebate": 7895, | |
| "Ġbubble": 7896, | |
| "Ġrenamed": 7897, | |
| "Ġthirteen": 7898, | |
| "Ġvessels": 7899, | |
| "keeper": 7900, | |
| "48": 7901, | |
| "eenth": 7902, | |
| "fuck": 7903, | |
| "oration": 7904, | |
| "Ġlind": 7905, | |
| "acles": 7906, | |
| "Ġseal": 7907, | |
| "Ġmoz": 7908, | |
| "Ġbrush": 7909, | |
| "Ġengines": 7910, | |
| "Ġlax": 7911, | |
| "Ġ38": 7912, | |
| "Ġgenus": 7913, | |
| "Ġyoungest": 7914, | |
| "cca": 7915, | |
| "Ġshoe": 7916, | |
| "Ġ1966": 7917, | |
| "Ġbills": 7918, | |
| "Ġthrowing": 7919, | |
| "Ġjews": 7920, | |
| "Ġopportunities": 7921, | |
| "Ġenterpr": 7922, | |
| "Ġacquired": 7923, | |
| "Ġjournalist": 7924, | |
| "Ġrelatively": 7925, | |
| "Ġearthquake": 7926, | |
| "bby": 7927, | |
| "ders": 7928, | |
| "div": 7929, | |
| "tion": 7930, | |
| "orig": 7931, | |
| "itter": 7932, | |
| "Ġrif": 7933, | |
| "Ġkaren": 7934, | |
| "Ġugh": 7935, | |
| "roll": 7936, | |
| "Ġsciences": 7937, | |
| "Ġadapt": 7938, | |
| "Ġjohan": 7939, | |
| "Ġfounder": 7940, | |
| "Ġpassengers": 7941, | |
| "Ġmovements": 7942, | |
| "Ġemphas": 7943, | |
| "Ġtreaty": 7944, | |
| "Ġdinos": 7945, | |
| "idae": 7946, | |
| "Ġopposition": 7947, | |
| "Ġlifted": 7948, | |
| "Ġsprings": 7949, | |
| "Ġsample": 7950, | |
| "Ġsydney": 7951, | |
| "lad": 7952, | |
| "mission": 7953, | |
| "wear": 7954, | |
| "Ġwins": 7955, | |
| "orous": 7956, | |
| "Ġtoler": 7957, | |
| "Ġloo": 7958, | |
| "Ġgum": 7959, | |
| "isen": 7960, | |
| "Ġrival": 7961, | |
| "Ġseized": 7962, | |
| "Ġconven": 7963, | |
| "Ġhers": 7964, | |
| "ela": 7965, | |
| "Ġbrus": 7966, | |
| "aga": 7967, | |
| "agu": 7968, | |
| "Ġfee": 7969, | |
| "Ġwrites": 7970, | |
| "beh": 7971, | |
| "Ġgreatly": 7972, | |
| "shot": 7973, | |
| "Ġraven": 7974, | |
| "Ġtennessee": 7975, | |
| "chae": 7976, | |
| "Ġinvolve": 7977, | |
| "Ġnortheast": 7978, | |
| "Ġexpressed": 7979, | |
| "Ġprimarily": 7980, | |
| "Ġspecifically": 7981, | |
| "mill": 7982, | |
| "zi": 7983, | |
| "Ġack": 7984, | |
| "Ġosc": 7985, | |
| "Ġyoon": 7986, | |
| "atures": 7987, | |
| "ctic": 7988, | |
| "Ġalgor": 7989, | |
| "Ġaboard": 7990, | |
| "olf": 7991, | |
| "Ġproport": 7992, | |
| "Ġargue": 7993, | |
| "Ġunderneath": 7994, | |
| "ahmad": 7995, | |
| "Ġsorrow": 7996, | |
| "def": 7997, | |
| "Ġservants": 7998, | |
| "Ġprofit": 7999, | |
| "Ġmidnight": 8000, | |
| "Ġanimated": 8001, | |
| "Ġconcerns": 8002, | |
| "Ġarrive": 8003, | |
| "Ġclosing": 8004, | |
| "Ġrollo": 8005, | |
| "Ġseventeen": 8006, | |
| "Ġroughly": 8007, | |
| "Ġinstruments": 8008, | |
| "Ġbubbles": 8009, | |
| "Ġapologize": 8010, | |
| "Ġgravity": 8011, | |
| "47": 8012, | |
| "dog": 8013, | |
| "god": 8014, | |
| "Ġske": 8015, | |
| "only": 8016, | |
| "Ġding": 8017, | |
| "Ġklaus": 8018, | |
| "Ġwheels": 8019, | |
| "Ġallies": 8020, | |
| "Ġholl": 8021, | |
| "Ġremote": 8022, | |
| "Ġ33": 8023, | |
| "Ġmonkey": 8024, | |
| "Ġeval": 8025, | |
| "Ġfacts": 8026, | |
| "Ġlanding": 8027, | |
| "Ġ1956": 8028, | |
| "Ġsoutheast": 8029, | |
| "Ġholes": 8030, | |
| "Ġcells": 8031, | |
| "Ġextraordinary": 8032, | |
| "Ġcelebrated": 8033, | |
| "Ġfranz": 8034, | |
| "Ġgraduate": 8035, | |
| "Ġcustomers": 8036, | |
| "Ġglobe": 8037, | |
| "Ġelectronic": 8038, | |
| "Ġalgorith": 8039, | |
| "iven": 8040, | |
| "tic": 8041, | |
| "Ġdash": 8042, | |
| "Ġpup": 8043, | |
| "Ġtokyo": 8044, | |
| "Ġned": 8045, | |
| "Ġwheat": 8046, | |
| "Ġvain": 8047, | |
| "Ġtraged": 8048, | |
| "Ġspark": 8049, | |
| "Ġarmen": 8050, | |
| "Ġerr": 8051, | |
| "Ġpreced": 8052, | |
| "Ġlaure": 8053, | |
| "ensity": 8054, | |
| "Ġreply": 8055, | |
| "Ġharmon": 8056, | |
| "Ġglance": 8057, | |
| "Ġdeaths": 8058, | |
| "Ġextensive": 8059, | |
| "Ġ75": 8060, | |
| "Ġinches": 8061, | |
| "Ġcreatures": 8062, | |
| "Ġcounsel": 8063, | |
| "Ġdestruction": 8064, | |
| "Ġcircuit": 8065, | |
| "Ġtypically": 8066, | |
| "Ġfaithful": 8067, | |
| "Ġwhispered": 8068, | |
| "Ġfrozen": 8069, | |
| "Ġpowder": 8070, | |
| "Ġmoore": 8071, | |
| "every": 8072, | |
| "nor": 8073, | |
| "pow": 8074, | |
| "pres": 8075, | |
| "uge": 8076, | |
| "á½": 8077, | |
| "Ġtiss": 8078, | |
| "Ġmam": 8079, | |
| "Ġny": 8080, | |
| "omed": 8081, | |
| "icians": 8082, | |
| "stop": 8083, | |
| "Ġalarm": 8084, | |
| "Ġusers": 8085, | |
| "Ġcloth": 8086, | |
| "soft": 8087, | |
| "Ġearliest": 8088, | |
| "Ġlasted": 8089, | |
| "Ġaccused": 8090, | |
| "Ġconstructed": 8091, | |
| "Ġromance": 8092, | |
| "ipper": 8093, | |
| "Ġarrival": 8094, | |
| "Ġrecognition": 8095, | |
| "Ġsurvived": 8096, | |
| "Ġbegged": 8097, | |
| "bus": 8098, | |
| "ridge": 8099, | |
| "inations": 8100, | |
| "Ġfetch": 8101, | |
| "Ġpy": 8102, | |
| "Ġinher": 8103, | |
| "Ġwhoo": 8104, | |
| "ulating": 8105, | |
| "Ġshining": 8106, | |
| "Ġabst": 8107, | |
| "Ġamanda": 8108, | |
| "Ġclown": 8109, | |
| "Ġrolled": 8110, | |
| "Ġcounting": 8111, | |
| "Ġwarri": 8112, | |
| "Ġwax": 8113, | |
| "iolet": 8114, | |
| "Ġassass": 8115, | |
| "Ġmiche": 8116, | |
| "Ġpenny": 8117, | |
| "ancing": 8118, | |
| "Ġcompete": 8119, | |
| "Ġexception": 8120, | |
| "Ġfranklin": 8121, | |
| "Ġhosted": 8122, | |
| "Ġterrif": 8123, | |
| "Ġfaculty": 8124, | |
| "Ġnearer": 8125, | |
| "Ġdownt": 8126, | |
| "Ġprefecture": 8127, | |
| "pher": 8128, | |
| "onne": 8129, | |
| "Ġpushing": 8130, | |
| "Ġrust": 8131, | |
| "sea": 8132, | |
| "Ġalliance": 8133, | |
| "Ġmolly": 8134, | |
| "eable": 8135, | |
| "Ġvig": 8136, | |
| "Ġtrunk": 8137, | |
| "abel": 8138, | |
| "Ġplum": 8139, | |
| "Ġplates": 8140, | |
| "Ġpeas": 8141, | |
| "Ġintention": 8142, | |
| "Ġscary": 8143, | |
| "Ġchand": 8144, | |
| "Ġcray": 8145, | |
| "kshire": 8146, | |
| "Ġsynt": 8147, | |
| "Ġkinda": 8148, | |
| "Ġproducing": 8149, | |
| "Ġ1962": 8150, | |
| "Ġcreative": 8151, | |
| "Ġstarring": 8152, | |
| "Ġhitler": 8153, | |
| "Ġcampus": 8154, | |
| "Ġreasonable": 8155, | |
| "Ġausten": 8156, | |
| "Ġprisoner": 8157, | |
| "Ġbags": 8158, | |
| "Ġidentify": 8159, | |
| "Ġconsiderable": 8160, | |
| "Ġofficials": 8161, | |
| "laughing": 8162, | |
| "Ġethnic": 8163, | |
| "Ġtemporary": 8164, | |
| "75": 8165, | |
| "iy": 8166, | |
| "nings": 8167, | |
| "oes": 8168, | |
| "ois": 8169, | |
| "uate": 8170, | |
| "inction": 8171, | |
| "Ġkang": 8172, | |
| "Ġstew": 8173, | |
| "Ġdock": 8174, | |
| "Ġseas": 8175, | |
| "Ġalien": 8176, | |
| "ema": 8177, | |
| "theless": 8178, | |
| "Ġobtained": 8179, | |
| "Ġelsewhere": 8180, | |
| "Ġtriangle": 8181, | |
| "Ġmerged": 8182, | |
| "Ġvisual": 8183, | |
| "Ġ1948": 8184, | |
| "Ġboring": 8185, | |
| "Ġimmediate": 8186, | |
| "Ġexecution": 8187, | |
| "Ġrelationships": 8188, | |
| "Ġbacter": 8189, | |
| "Ġprotestant": 8190, | |
| "Ġmanufacture": 8191 | |
| }, | |
| "merges": [ | |
| "Ġ t", | |
| "h e", | |
| "Ġ a", | |
| "Ġ i", | |
| "Ġ w", | |
| "Ġt he", | |
| "Ġ s", | |
| "r e", | |
| "Ġ o", | |
| "i n", | |
| "o u", | |
| "h a", | |
| "e r", | |
| "Ġ b", | |
| "Ġ c", | |
| "Ġ m", | |
| "n d", | |
| "o n", | |
| "Ġ f", | |
| "Ġ d", | |
| "Ġ y", | |
| "Ġ p", | |
| "in g", | |
| "o r", | |
| "Ġt o", | |
| "e d", | |
| "l l", | |
| "a n", | |
| "e n", | |
| "Ġ l", | |
| "e s", | |
| "Ġy ou", | |
| "Ġ g", | |
| "Ġa nd", | |
| "Ġo f", | |
| "Ġi n", | |
| "Ġ n", | |
| "i s", | |
| "i t", | |
| "a r", | |
| "a t", | |
| "Ġ Ċ", | |
| "ha t", | |
| "a s", | |
| "Ġ he", | |
| "o m", | |
| "Ġ h", | |
| "Ġi t", | |
| "i c", | |
| "o w", | |
| "v e", | |
| "l e", | |
| "Ġ ha", | |
| "Ġt h", | |
| "o t", | |
| "Ġb e", | |
| "a l", | |
| "Ġ e", | |
| "Ġt hat", | |
| "u s", | |
| "' s", | |
| "Ġi s", | |
| "Ġw e", | |
| "u t", | |
| "e t", | |
| "Ġo n", | |
| "a y", | |
| "i on", | |
| "Ġ re", | |
| "i d", | |
| "Ġ r", | |
| "g h", | |
| "Ġw as", | |
| "en t", | |
| "l d", | |
| "Ġ k", | |
| "Ġs t", | |
| "a c", | |
| "v er", | |
| "Ġf or", | |
| "a m", | |
| "i m", | |
| "Ġ u", | |
| ". .", | |
| "l y", | |
| "s t", | |
| "i r", | |
| "a d", | |
| "Ġ -", | |
| "u r", | |
| "s e", | |
| "Ġ .", | |
| "Ġ j", | |
| "o o", | |
| "gh t", | |
| "' t", | |
| "Ġa n", | |
| "Ġm e", | |
| "Ġw h", | |
| "Ġd o", | |
| "k e", | |
| "it h", | |
| "Ġa s", | |
| "Ġw ith", | |
| "a ll", | |
| "Ġs e", | |
| "r o", | |
| "Ġth is", | |
| "Ġw hat", | |
| "Ġl i", | |
| "c e", | |
| "c t", | |
| "he r", | |
| "Ġs o", | |
| "i ll", | |
| "t er", | |
| "c h", | |
| "Ġg o", | |
| "Ġa re", | |
| "Ġn ot", | |
| "r i", | |
| "Ġa t", | |
| "om e", | |
| "Ġ \"", | |
| "Ġha ve", | |
| "Ġ 1", | |
| "i l", | |
| "i ght", | |
| "Ġthe y", | |
| "Ġb ut", | |
| "ou ld", | |
| "Ġn e", | |
| "an t", | |
| "us t", | |
| "Ġd e", | |
| "o p", | |
| "Ġf r", | |
| "at ion", | |
| "t h", | |
| "Ġk n", | |
| "a in", | |
| "Ġh is", | |
| "Ġn o", | |
| "Ġw he", | |
| "Ġa l", | |
| "a nd", | |
| "Ġc an", | |
| "Ġthe re", | |
| "Ġa ll", | |
| "u n", | |
| "Ġ ,", | |
| "g e", | |
| "Ġm o", | |
| "e a", | |
| "Ġm y", | |
| "u l", | |
| "Ġs he", | |
| "Ġkn ow", | |
| ".. .", | |
| "Ġs h", | |
| "Ġa b", | |
| "o l", | |
| "Ġs u", | |
| "p p", | |
| "Ġ v", | |
| "Ġyou r", | |
| "Ġo r", | |
| "ou t", | |
| "Ġb y", | |
| "Ġd on", | |
| "Ġon e", | |
| "es t", | |
| "Ġ ?", | |
| "Ġc on", | |
| "Ġfr om", | |
| "Ġc om", | |
| "Ġ Ġ", | |
| "er s", | |
| "i e", | |
| "q u", | |
| "is t", | |
| "ar t", | |
| "Ġ 2", | |
| "u m", | |
| "Ġ (", | |
| "es s", | |
| "Ġhe r", | |
| "Ġt r", | |
| "ha n", | |
| "a b", | |
| "Ġu p", | |
| "re d", | |
| "Ġw or", | |
| "o s", | |
| "Ġs a", | |
| "Ġha d", | |
| "i g", | |
| "all y", | |
| "Ġli ke", | |
| "Ġp l", | |
| "Ġh im", | |
| "' re", | |
| "Ġo ut", | |
| "f e", | |
| "at e", | |
| "ver y", | |
| "Ġp ro", | |
| "Ġ us", | |
| "Ġe x", | |
| "n t", | |
| "oo k", | |
| "Ġg et", | |
| "Ġi f", | |
| "ac k", | |
| "re s", | |
| "oo d", | |
| "Ġs p", | |
| "am e", | |
| "Ġj ust", | |
| "Ġwh o", | |
| "i ve", | |
| "Ġwe re", | |
| "Ġt e", | |
| "Ġab out", | |
| "a p", | |
| "c k", | |
| "' m", | |
| "ou r", | |
| "a ke", | |
| "in k", | |
| "â Ģ", | |
| "on e", | |
| "Ġd id", | |
| "as t", | |
| "Ġhe re", | |
| "on g", | |
| "in d", | |
| "ou nd", | |
| "e l", | |
| "Ġm an", | |
| "it y", | |
| "e m", | |
| "ar d", | |
| "or t", | |
| "i f", | |
| "Ġa r", | |
| "Ġwhe n", | |
| "r y", | |
| "ic h", | |
| "Ġwe ll", | |
| "Ġc h", | |
| "i es", | |
| "Ġs ome", | |
| "Ġw ill", | |
| "Ġn ow", | |
| "Ġ1 9", | |
| "Ġr ight", | |
| "Ġu n", | |
| "Ġb r", | |
| "Ġl o", | |
| "Ġl e", | |
| "a k", | |
| "Ġw ould", | |
| "Ġc o", | |
| "ea h", | |
| "Ġthe m", | |
| "Ġ '", | |
| "b er", | |
| "Ġo h", | |
| "Ġt im", | |
| "Ġh ow", | |
| "Ġy eah", | |
| "in e", | |
| "Ġw ant", | |
| "Ġan y", | |
| "a g", | |
| "Ġth ink", | |
| "Ġ2 0", | |
| "u d", | |
| "ou s", | |
| "' ll", | |
| "v en", | |
| "Ġp e", | |
| "Ġin t", | |
| "Ġa m", | |
| "Ġse e", | |
| "Ġwh ich", | |
| "Ġthe n", | |
| "Ġl ook", | |
| "Ġg ot", | |
| "o re", | |
| "Ġbe c", | |
| "m ent", | |
| "Ġha s", | |
| "Ġt w", | |
| "h ing", | |
| "Ġa g", | |
| "Ġc l", | |
| "Ġf e", | |
| "Ġg r", | |
| "ow n", | |
| "t her", | |
| "Ġp r", | |
| "Ġr o", | |
| "us e", | |
| "it t", | |
| "ic e", | |
| "ou gh", | |
| "Ġs ay", | |
| "Ġsa id", | |
| "Ġ en", | |
| "Ġa f", | |
| "id e", | |
| "i p", | |
| "i a", | |
| "e p", | |
| "Ġtim e", | |
| "m p", | |
| "Ġ =", | |
| "Ġt han", | |
| "i v", | |
| "Ġc ome", | |
| "Ġg ood", | |
| "w ay", | |
| "Ġb o", | |
| "Ġbe en", | |
| "Ġ qu", | |
| "i an", | |
| "Ġthe ir", | |
| "u re", | |
| "a re", | |
| "Ġwhe re", | |
| "e ar", | |
| "ac e", | |
| "Ġl et", | |
| "ic k", | |
| "op le", | |
| "s o", | |
| "Ġmo re", | |
| "Ġ er", | |
| "Ġpe ople", | |
| "a use", | |
| "' ve", | |
| "Ġo ther", | |
| "e ct", | |
| "Ġm ar", | |
| "n a", | |
| "Ġc ould", | |
| "r a", | |
| "Ġof f", | |
| "l f", | |
| "Ġgo ing", | |
| "is h", | |
| "Ġs c", | |
| "re at", | |
| "Ġo ver", | |
| "a ge", | |
| "Ġb ack", | |
| "re e", | |
| "Ġ very", | |
| "Ġf ir", | |
| "Ġb l", | |
| "Ġo k", | |
| "Ġtw o", | |
| "e nd", | |
| "Ġa d", | |
| "it e", | |
| "ot her", | |
| "ac t", | |
| "Ġc ha", | |
| "Ġth ing", | |
| "o se", | |
| "Ġp art", | |
| "as s", | |
| "nd er", | |
| "Ġwor k", | |
| "Ġcom p", | |
| "ou nt", | |
| "Ġfir st", | |
| "Ġto o", | |
| "b le", | |
| "Ġe very", | |
| "Ġne w", | |
| "ar y", | |
| "w e", | |
| "u e", | |
| "Ġy es", | |
| "o d", | |
| "Ġbec ause", | |
| "Ġj o", | |
| "or n", | |
| "Ġp o", | |
| "om et", | |
| "Ġd own", | |
| "i re", | |
| "Ġm ay", | |
| "Ġint o", | |
| "an s", | |
| "Ġaf ter", | |
| "at ed", | |
| "Ġw ay", | |
| "p t", | |
| "as e", | |
| "ion s", | |
| "Ġal so", | |
| "he d", | |
| "Ġc all", | |
| "c i", | |
| "t he", | |
| "Ġo ur", | |
| "al k", | |
| "Ġy ear", | |
| "0 0", | |
| "Ġok ay", | |
| "Ġon ly", | |
| "c o", | |
| "ad e", | |
| "or d", | |
| "Ġg u", | |
| "Ġs omet", | |
| "i z", | |
| "itt le", | |
| "Ġwh y", | |
| "Ġag ain", | |
| "Ġa ct", | |
| "Ġa c", | |
| "u b", | |
| "Ġl ittle", | |
| "ĠĠ ĠĠ", | |
| "at er", | |
| "Ġbe t", | |
| "Ġp er", | |
| "Ġf l", | |
| "ac h", | |
| "Ġt ake", | |
| "Ġthe se", | |
| "Ġd ay", | |
| "p er", | |
| "v ed", | |
| "- -", | |
| "an ce", | |
| "i ld", | |
| "Ġpl ay", | |
| "Ġd is", | |
| "ou ght", | |
| "Ġb u", | |
| "w n", | |
| "Ġc ar", | |
| "ur n", | |
| "Ġcom m", | |
| "Ġcon t", | |
| "Ġs ha", | |
| "am p", | |
| "Ġ âĢ", | |
| "Ġre ally", | |
| "re n", | |
| "t y", | |
| "Ġp re", | |
| "f f", | |
| "Ġm ake", | |
| "Ġte ll", | |
| "a v", | |
| "Ġf o", | |
| "Ġm u", | |
| "Ġne ed", | |
| "Ġsh ould", | |
| "v ing", | |
| "Ġs er", | |
| "res s", | |
| "c l", | |
| "Ġp ut", | |
| "i le", | |
| "Ġdo es", | |
| "an g", | |
| "en ce", | |
| "or m", | |
| "Ġa pp", | |
| "Ġw r", | |
| "se lf", | |
| ". \"", | |
| "Ġth r", | |
| "ab le", | |
| "or y", | |
| "Ġ `", | |
| "Ġu nder", | |
| "f ore", | |
| "Ġl a", | |
| "l es", | |
| "Ġha pp", | |
| "Ġc r", | |
| "b e", | |
| "Ġi nd", | |
| "th ing", | |
| "f t", | |
| "Ġsomet hing", | |
| "in t", | |
| "ic al", | |
| "Ġe ven", | |
| "is s", | |
| "Ġ [", | |
| "u ck", | |
| "en s", | |
| "at her", | |
| "ic t", | |
| "i ed", | |
| "Ġmu ch", | |
| "ig n", | |
| "Ġ20 1", | |
| "Ġd r", | |
| "Ġre s", | |
| "Ġs m", | |
| "Ġme an", | |
| "m an", | |
| "o g", | |
| "ul t", | |
| "Ġc ount", | |
| "Ġre p", | |
| "Ġg on", | |
| "Ġl ong", | |
| "Ġgon na", | |
| "at es", | |
| "l and", | |
| "Ġit s", | |
| "oo l", | |
| "Ġbe fore", | |
| "Ġne ver", | |
| "a il", | |
| "Ġg reat", | |
| "Ġm ade", | |
| "Ġh o", | |
| "Ġre m", | |
| "Ġman y", | |
| "Ġt alk", | |
| "Ġi mp", | |
| "k s", | |
| "y s", | |
| "Ġhe l", | |
| "Ġdid n", | |
| "' d", | |
| "Ġmo st", | |
| "n e", | |
| "ation s", | |
| "at h", | |
| "Ġk e", | |
| "Ġ' '", | |
| "Ġ` `", | |
| "on s", | |
| "t e", | |
| "Ġex p", | |
| "i ous", | |
| "Ġc han", | |
| "t ing", | |
| "i ver", | |
| "Ġbe l", | |
| "it ed", | |
| "Ġli fe", | |
| "Ġha nd", | |
| "ad y", | |
| "Ġ 3", | |
| "Ġm in", | |
| "ve l", | |
| "Ġm r", | |
| "Ġm a", | |
| "u ll", | |
| "Ġth ose", | |
| "u ally", | |
| "Ġha r", | |
| "Ġu h", | |
| "ou se", | |
| "Ġth ree", | |
| "i ly", | |
| "Ġl ea", | |
| "Ġst r", | |
| "or s", | |
| "Ġd if", | |
| "it ion", | |
| "Ġh i", | |
| "v es", | |
| "Ġst ill", | |
| "d ay", | |
| "Ġthr ough", | |
| "a u", | |
| "Ġe ar", | |
| "Ġo ld", | |
| "Ġyear s", | |
| "t ain", | |
| "w ard", | |
| "Ġc our", | |
| "Ġhel p", | |
| "Ġd es", | |
| "Ġwor ld", | |
| "Ġg ive", | |
| "i x", | |
| "Ġp h", | |
| "Ġ !", | |
| "Ġth ought", | |
| "Ġlo ve", | |
| "re nt", | |
| "Ġthing s", | |
| "is e", | |
| "âĢ Ŀ", | |
| "ĠâĢ ľ", | |
| "Ġp res", | |
| "u g", | |
| "f ul", | |
| "Ġsh ow", | |
| "m m", | |
| "g et", | |
| "Ġp le", | |
| "Ġ20 0", | |
| "c es", | |
| "c ess", | |
| "Ġl ast", | |
| "ri ed", | |
| "Ġs ch", | |
| "Ġc he", | |
| "Ġst art", | |
| "Ġf ound", | |
| "i al", | |
| "Ġm ust", | |
| "Ġas k", | |
| "p s", | |
| "ll ow", | |
| "Ġw ar", | |
| "g in", | |
| "Ġw ent", | |
| "Ġa way", | |
| "Ġc ame", | |
| "in ce", | |
| "d er", | |
| "Ġh ome", | |
| "d u", | |
| "Ġw a", | |
| "Ġf ind", | |
| "Ġus ed", | |
| "Ġat t", | |
| "Ġbe ing", | |
| "Ġp ol", | |
| "Ġm at", | |
| "Ġcall ed", | |
| "Ġfor m", | |
| "Ġp ar", | |
| "ct ion", | |
| "one y", | |
| "Ġdo ing", | |
| "os s", | |
| "ot h", | |
| "Ġe nd", | |
| "Ġs l", | |
| "ter n", | |
| "Ġre c", | |
| "ent s", | |
| "Ġsp e", | |
| "Ġsu ch", | |
| "Ġm on", | |
| "ri end", | |
| "Ġcha r", | |
| "ing s", | |
| "Ġs y", | |
| "Ġgo d", | |
| "Ġo p", | |
| "er ic", | |
| "he s", | |
| "Ġf am", | |
| "Ġb ig", | |
| "Ġe l", | |
| "Ġw om", | |
| "\" .", | |
| "Ġo wn", | |
| "Ġf in", | |
| "x t", | |
| "c ed", | |
| "Ġn ight", | |
| "Ġre g", | |
| "Ġc ap", | |
| "n g", | |
| "Ġi d", | |
| "op e", | |
| "Ġen g", | |
| "l ic", | |
| "Ġn ame", | |
| "Ġh ouse", | |
| "en ed", | |
| "Ġs ame", | |
| "Ġtr y", | |
| "f orm", | |
| "Ġc are", | |
| "u p", | |
| "g an", | |
| "Ġc ity", | |
| "al s", | |
| "Ġl ot", | |
| "Ġg en", | |
| "Ġk ind", | |
| "Ġsu re", | |
| "a ve", | |
| "Ġm om", | |
| "ir l", | |
| "Ġw on", | |
| "Ġdif fe", | |
| "Ġch ild", | |
| "Ġp ers", | |
| "Ġre l", | |
| "od y", | |
| "i b", | |
| "Ġan other", | |
| "Ġhe y", | |
| "way s", | |
| "g r", | |
| "Ġs w", | |
| "Ġt urn", | |
| "Ġcon s", | |
| "Ġsu pp", | |
| "Ġhe ad", | |
| "Ġn um", | |
| "Ġg l", | |
| "Ġer m", | |
| "Ġk ill", | |
| "e ver", | |
| "Ġpl ace", | |
| "Ġam eric", | |
| "Ġfe el", | |
| "Ġm ight", | |
| "Ġt ak", | |
| "Ġ z", | |
| "t s", | |
| "Ġc ent", | |
| "n ing", | |
| "b ody", | |
| "Ġsch ool", | |
| "Ġd ist", | |
| "Ġ1 8", | |
| "Ġf riend", | |
| "y e", | |
| "a ir", | |
| "Ġke ep", | |
| "Ġ ed", | |
| "m o", | |
| "Ġus e", | |
| "Ġf our", | |
| "Ġ 4", | |
| "Ġst op", | |
| "Ġs et", | |
| "Ġthan k", | |
| "b r", | |
| "d y", | |
| "s h", | |
| "Ġe v", | |
| "o ck", | |
| "Ġn or", | |
| "Ġar ound", | |
| "ou th", | |
| "as ed", | |
| "Ġm us", | |
| "Ġe le", | |
| "ut e", | |
| "Ġple ase", | |
| "ation al", | |
| "Ġal ways", | |
| "Ġh u", | |
| "at ing", | |
| "ur ing", | |
| "Ġs ur", | |
| "Ġg irl", | |
| "re st", | |
| ") .", | |
| "Ġwh ile", | |
| "Ġany thing", | |
| "co nd", | |
| "em ber", | |
| "i o", | |
| "m ber", | |
| "m y", | |
| "ow er", | |
| "Ġbet ter", | |
| "\" ,", | |
| "Ġk ing", | |
| "Ġnot hing", | |
| "a h", | |
| "Ġt er", | |
| "Ġle ft", | |
| "Ġs or", | |
| "s s", | |
| "m s", | |
| "Ġwa it", | |
| "Ġm et", | |
| "Ġde p", | |
| "m b", | |
| "Ġm oney", | |
| "Ġst ates", | |
| "Ġin st", | |
| "Ġr un", | |
| "Ġac c", | |
| "Ġc le", | |
| "Ġre al", | |
| ") ,", | |
| "l ed", | |
| "Ġ ent", | |
| "p e", | |
| "Ġse cond", | |
| "Ġun ited", | |
| "Ã ©", | |
| "Ġin v", | |
| "we en", | |
| "â Ļ", | |
| "t on", | |
| "an k", | |
| "Ġbel ie", | |
| "Ġ 5", | |
| "Ġl ist", | |
| "ul ar", | |
| "Ġb it", | |
| "cl ud", | |
| "Ġf ar", | |
| "Ġm ak", | |
| "Ġbet ween", | |
| "Ġhi gh", | |
| "Ġin s", | |
| "at ch", | |
| "Ġdiffe rent", | |
| "Ġo b", | |
| "Ġs ir", | |
| "Ġb us", | |
| "Ġsu b", | |
| "Ġto ld", | |
| "Ġdon e", | |
| "i ble", | |
| "ic s", | |
| "Ġwor d", | |
| "n ess", | |
| "Ġst ud", | |
| "ou p", | |
| "Ġne xt", | |
| "d e", | |
| "Ġpers on", | |
| "Ġe ver", | |
| "Ġm en", | |
| "Ġpo int", | |
| "Ġc ol", | |
| "Ġst ate", | |
| "Ġ âĻ", | |
| "au ght", | |
| "Ġu nt", | |
| "Ġsor ry", | |
| "Ġb re", | |
| "fe ct", | |
| "Ġw ater", | |
| "ter s", | |
| "ir d", | |
| "id ent", | |
| "Ġf ather", | |
| "Ġm iss", | |
| "Ġb oth", | |
| "a z", | |
| "Ġ |", | |
| "Ġs ing", | |
| "n o", | |
| "Ġre t", | |
| "ci al", | |
| ", \"", | |
| "Ġb ook", | |
| "Ġknow n", | |
| "u al", | |
| "Ġas s", | |
| "Ġb est", | |
| "Ġg re", | |
| "Ġco ll", | |
| "Ġfo llow", | |
| "Ġad d", | |
| "e ll", | |
| "Ġe ach", | |
| "i er", | |
| "Ġde c", | |
| "h n", | |
| "am es", | |
| "Ġtoo k", | |
| "as on", | |
| "ĠâĻ ª", | |
| "is hed", | |
| "Ġs im", | |
| "g er", | |
| "Ġm other", | |
| "ar s", | |
| "Ġon ce", | |
| "j ect", | |
| "Ġl ater", | |
| "Ġact ually", | |
| "Ġ19 9", | |
| "t en", | |
| "p h", | |
| "Ġin clud", | |
| "iver s", | |
| "Ġp ass", | |
| "Ġunt il", | |
| "y es", | |
| "Ġp op", | |
| "Ġli ght", | |
| "Ġl ar", | |
| "Ġs ince", | |
| "Ġcour se", | |
| "Ġ ;", | |
| "c y", | |
| "c re", | |
| "âĢ Ļ", | |
| "ri ght", | |
| "Ġd uring", | |
| "n er", | |
| "a le", | |
| "it ies", | |
| "at ive", | |
| "Ġpro du", | |
| "Ġhe ll", | |
| "Ġse em", | |
| "on t", | |
| "Ġm ed", | |
| "l ing", | |
| "ce pt", | |
| "ol og", | |
| "e w", | |
| "it s", | |
| "ea k", | |
| "Ġnum ber", | |
| "g ed", | |
| "Ġevery thing", | |
| "Ġwe e", | |
| "Ġgen er", | |
| "Ġsa w", | |
| "Ġbo y", | |
| "Ġcomm un", | |
| "r ic", | |
| "Ġ- -", | |
| "Ġsm all", | |
| "c er", | |
| "Ġb ar", | |
| "v ie", | |
| "Ġf un", | |
| "Ġdoes n", | |
| "ou n", | |
| "Ġd ad", | |
| "in s", | |
| "as h", | |
| "ct or", | |
| "Ġjo hn", | |
| "ver n", | |
| "ro ss", | |
| "Ġop en", | |
| "Ġm m", | |
| "Ġyou ng", | |
| "Ġst and", | |
| "is ion", | |
| "Ġmay be", | |
| "st and", | |
| "u res", | |
| "Ġfam ily", | |
| "Ġin ter", | |
| "im e", | |
| "Ġst ay", | |
| "m e", | |
| "r ow", | |
| "ot e", | |
| "Ġs outh", | |
| "or k", | |
| "he re", | |
| "Ġch r", | |
| "Ġp ub", | |
| "Ġto day", | |
| "Ġen ough", | |
| "u ary", | |
| "Ġlo c", | |
| "os ed", | |
| "Ġnor th", | |
| "Ġro om", | |
| "l ess", | |
| "Ġh um", | |
| "Ġagain st", | |
| "Ġwant ed", | |
| "Ġf ive", | |
| "Ġar t", | |
| "Ġa p", | |
| "Ġel se", | |
| "Ġwith out", | |
| "ar k", | |
| "i et", | |
| "Ġs ix", | |
| "Ġb ad", | |
| "n y", | |
| "Ġd ire", | |
| "Ġs it", | |
| "Ġameric an", | |
| "Ġa ir", | |
| "an e", | |
| "Ġs on", | |
| "Ġlea ve", | |
| "Ġ 6", | |
| "Ġf act", | |
| "Ġn ice", | |
| "Ġm il", | |
| "get her", | |
| "Ġm ain", | |
| "Ġto gether", | |
| "l o", | |
| "Ġc ur", | |
| "r u", | |
| "ut ion", | |
| "ot t", | |
| "ver s", | |
| "Ġm ind", | |
| "Ġint e", | |
| "l i", | |
| "Ġgo vern", | |
| "Ġhis t", | |
| "Ġhar d", | |
| "Ġb ro", | |
| "Ġis n", | |
| "u c", | |
| "re am", | |
| "Ġ _", | |
| "Ġtr ans", | |
| "Ġpro ble", | |
| "ut h", | |
| "Ġp ri", | |
| "Ġe as", | |
| "Ġho ld", | |
| "Ġst e", | |
| "Ġt ri", | |
| "Ġs k", | |
| "if ic", | |
| "Ġre st", | |
| "Ġse en", | |
| "Ġqu ite", | |
| "Ġmus ic", | |
| "Ġmo ve", | |
| "Ġfe w", | |
| "Ġsay s", | |
| "Ġre ad", | |
| "Ġbec ame", | |
| "Ġc al", | |
| "Ġme et", | |
| "Ġl and", | |
| "Ġto wn", | |
| "ab ly", | |
| "Ġli ve", | |
| "Ġs ide", | |
| "Ġun ivers", | |
| "n ed", | |
| "a w", | |
| "Ġg er", | |
| "Ġpre t", | |
| "Ġf il", | |
| "Ġhe ar", | |
| "Ġs ign", | |
| "Ġth ough", | |
| "un g", | |
| "in es", | |
| "Ġlook ing", | |
| "Ġtim es", | |
| "Ġpro v", | |
| "Ġcom ing", | |
| "Ġte am", | |
| "Ġimp ort", | |
| "s on", | |
| "c c", | |
| "Ġk id", | |
| "Ġc or", | |
| "er tain", | |
| "is ter", | |
| "Ġchild ren", | |
| "i red", | |
| "g g", | |
| "Ġn at", | |
| "Ġcomp an", | |
| "in ess", | |
| "Ġe mp", | |
| "Ġg e", | |
| "ur y", | |
| "Ġb ab", | |
| "Ġrem ember", | |
| "Ġbelie ve", | |
| "Ġla w", | |
| "Ġunder stand", | |
| "Ġd ied", | |
| "Ġ19 8", | |
| "Ġf ace", | |
| "Ġqu est", | |
| "Ġde ath", | |
| "Ġm orn", | |
| "Ġw alk", | |
| "is m", | |
| "Ġwom an", | |
| "Ġex t", | |
| "Ġh ur", | |
| "c he", | |
| "in a", | |
| "1 9", | |
| "a red", | |
| "Ġy et", | |
| "Ġs le", | |
| "Ġp a", | |
| "ha r", | |
| "t ed", | |
| "p ect", | |
| "Ġp at", | |
| "p l", | |
| "et er", | |
| "Ġb as", | |
| "en se", | |
| "is ed", | |
| "Ġw o", | |
| "Ġbu ild", | |
| "Ġm ill", | |
| "Ġd ri", | |
| "Ġ es", | |
| "Ġhapp ened", | |
| "Ġwho le", | |
| "Ġmorn ing", | |
| "i fe", | |
| "Ġday s", | |
| "Ġget ting", | |
| "Ġl ine", | |
| "Ġjo b", | |
| "Ġinte rest", | |
| "r al", | |
| "Ġw in", | |
| "Ġf ore", | |
| "r on", | |
| "se l", | |
| "Ġp ower", | |
| "Ġ ...", | |
| "Ġcon f", | |
| "Ġe m", | |
| "Ġne ar", | |
| "Ġp oss", | |
| "t a", | |
| "Ġcount ry", | |
| "i ent", | |
| "Ġf uck", | |
| "u ff", | |
| "it al", | |
| "it her", | |
| "Ġbr other", | |
| "Ġg ame", | |
| "Ġre le", | |
| "Ġcount y", | |
| "ment s", | |
| "st em", | |
| "Ġhe ard", | |
| "Ġfo ot", | |
| "Ġ 8", | |
| "Ġs ort", | |
| "Ġha ving", | |
| "h o", | |
| "Ġle ad", | |
| "Ġask ed", | |
| "Ġrec ord", | |
| "b o", | |
| "b y", | |
| "Ġe yes", | |
| "Ġso on", | |
| "Ġpro b", | |
| "Ġpl an", | |
| "Ġchr ist", | |
| "h ip", | |
| "Ġhim self", | |
| "Ġha lf", | |
| "Ġhe art", | |
| "Ġe at", | |
| "b all", | |
| "Ġt y", | |
| "Ġg i", | |
| "Ġsha ll", | |
| "Ġ 7", | |
| "re w", | |
| "ie ld", | |
| "Ġan s", | |
| "Ġde ad", | |
| "Ġa h", | |
| "Ġw ind", | |
| "a ut", | |
| "ist s", | |
| "Ġser v", | |
| "Ġoff ic", | |
| "00 0", | |
| "Ġp ay", | |
| "Ġs ong", | |
| "an ge", | |
| "re ady", | |
| "iz ed", | |
| "Ġr a", | |
| "y ing", | |
| "Ġ19 7", | |
| "Ġbl ack", | |
| "Ġg ave", | |
| "ant s", | |
| "Ġsy stem", | |
| "i ence", | |
| "Ġal ready", | |
| "Ġhow ever", | |
| "et s", | |
| "Ġst re", | |
| "an na", | |
| "Ġ1 0", | |
| "Ġup on", | |
| "Ġc ase", | |
| "Ġsp eak", | |
| "Ġb orn", | |
| "Ġh our", | |
| "l ish", | |
| "Ġimport ant", | |
| "as ter", | |
| "o c", | |
| "Ġgu y", | |
| "Ġbr ing", | |
| "Ġi ll", | |
| "Ġn ational", | |
| "Ġwr ong", | |
| "in ed", | |
| "us s", | |
| "v ent", | |
| "Ġc a", | |
| "iz e", | |
| "y ou", | |
| "Ġw atch", | |
| "Ġex c", | |
| "Ġpro f", | |
| "Ġkn ew", | |
| "Ġf ull", | |
| "Ġwom en", | |
| "Ġunivers ity", | |
| "Ġma j", | |
| "en e", | |
| "im es", | |
| "t le", | |
| "Ġre f", | |
| "Ġs ound", | |
| "Ġs n", | |
| "i k", | |
| "t o", | |
| "Ġcon st", | |
| "ward s", | |
| "u es", | |
| "? \"", | |
| "m or", | |
| "Ġsay ing", | |
| "Ġ 9", | |
| "Ġd iv", | |
| "Ġor der", | |
| "mo st", | |
| "Ġr ound", | |
| "Ġtalk ing", | |
| "Ġre d", | |
| "Ġsome one", | |
| "Ġret urn", | |
| "Ġmar k", | |
| "Ġs qu", | |
| "Ġin c", | |
| "Ġc ertain", | |
| "is on", | |
| "o h", | |
| "Ġo ri", | |
| "Ġpr om", | |
| "g t", | |
| "Ġh on", | |
| "Ġf ine", | |
| "pp ed", | |
| "Ġme ans", | |
| "vel op", | |
| "Ġcont in", | |
| "Ġpres ident", | |
| "Ġwh ite", | |
| "Ġf ight", | |
| "Ġdo or", | |
| "Ġtry ing", | |
| "Ġal ong", | |
| "h y", | |
| "Ġb at", | |
| ". âĢĿ", | |
| "Ġbe gan", | |
| "ri b", | |
| "Ġmon th", | |
| "Ġle g", | |
| "Ġ x", | |
| "Ġde f", | |
| "Ġe qu", | |
| "Ġcl ass", | |
| "iv es", | |
| "st er", | |
| "w er", | |
| "w here", | |
| "c hed", | |
| "Ġof ten", | |
| "ow s", | |
| "Ġpart y", | |
| "Ġcomp le", | |
| "Ġstart ed", | |
| "Ġpret ty", | |
| "e red", | |
| "Ġpr ot", | |
| "Ġf all", | |
| "Ġlist en", | |
| "Ġhand s", | |
| "Ġto p", | |
| "ain s", | |
| "Ġin f", | |
| "Ġ *", | |
| "Ġt en", | |
| "ic ally", | |
| "ur al", | |
| "Ġg one", | |
| "id ed", | |
| "ag es", | |
| "Ġle ar", | |
| "Ġchan ge", | |
| "aught er", | |
| "Ġst ory", | |
| "Ġw anna", | |
| "Ġp ur", | |
| "Ġw ife", | |
| "ĠĠĠĠ ĠĠĠĠ", | |
| "Ġde velop", | |
| "Ġm id", | |
| "Ġid ea", | |
| "Ġbre ak", | |
| "Ġ hat", | |
| "Ġprob ably", | |
| "Ġs ent", | |
| "d en", | |
| "Ġb ed", | |
| "un e", | |
| "Ġ1 5", | |
| "c le", | |
| "Ġger man", | |
| "ar ch", | |
| "Ġare a", | |
| "Ġd an", | |
| "il ity", | |
| "Ġsh o", | |
| "s ide", | |
| "Ġear ly", | |
| "Ġl ess", | |
| "Ġ19 6", | |
| "Ġs we", | |
| "ct ed", | |
| "r ap", | |
| "Ġp ap", | |
| "2 0", | |
| "Ġc reat", | |
| "Ġj u", | |
| "Ġsh ort", | |
| "Ġmat ter", | |
| "Ġv o", | |
| "ro p", | |
| "Ġgr oup", | |
| "Ġhapp en", | |
| "Ġsle ep", | |
| "ate ly", | |
| "Ġbus iness", | |
| "Ġs at", | |
| "r ict", | |
| "Ġplay ed", | |
| "Ġre ady", | |
| "p r", | |
| "Ġgovern ment", | |
| "Ġdr ink", | |
| "Ġbe aut", | |
| "u red", | |
| "Ġh or", | |
| "Ġgo es", | |
| "am ed", | |
| "Ġbab y", | |
| "Ġa w", | |
| "ĠâĢ ĵ", | |
| "Ġan im", | |
| "um p", | |
| "Ġlo st", | |
| "Ġ1 7", | |
| "Ġnew s", | |
| "Ġhist ory", | |
| "ion al", | |
| "Ġc ut", | |
| "Ġm ic", | |
| "Ġwas n", | |
| "Ġco nd", | |
| "Ġbl ood", | |
| "Ġgu ys", | |
| "Ġmom ent", | |
| "Ġt a", | |
| "it er", | |
| "Ġf ire", | |
| "Ġcompan y", | |
| "Ġd ou", | |
| "Ġab le", | |
| "Ġpol it", | |
| "Ġmak ing", | |
| "i gh", | |
| "Ġis land", | |
| "id es", | |
| "Ġpres ent", | |
| "Ġhell o", | |
| "Ġt re", | |
| "Ġtr ue", | |
| "Ġproble m", | |
| "at or", | |
| "Ġsh ip", | |
| "Ġt on", | |
| "Ġde l", | |
| "Ġm er", | |
| "Ġb ur", | |
| "Ġs al", | |
| "Ġp ain", | |
| "Ġexp l", | |
| "i am", | |
| "Ġf ree", | |
| "g n", | |
| "Ġal most", | |
| "Ġlar ge", | |
| "c on", | |
| "ra w", | |
| "Ġeng lish", | |
| "at s", | |
| "Ġex amp", | |
| "Ġpart ic", | |
| "Ġj an", | |
| "ren ce", | |
| "Ġi m", | |
| "Ġha ven", | |
| "c hes", | |
| "Ġsu c", | |
| "Ġad m", | |
| "Ġsomet imes", | |
| "e en", | |
| "Ġv al", | |
| "l er", | |
| "Ġh ope", | |
| "Ġgo ld", | |
| "Ġex per", | |
| "n ot", | |
| "l t", | |
| "Ġori gin", | |
| "Ġcont ro", | |
| "Ġ ve", | |
| "âĢ ĵ", | |
| "Ġv ar", | |
| "ap an", | |
| "Ġh ot", | |
| "ic es", | |
| "g es", | |
| "Ġv is", | |
| "Ġw est", | |
| "Ġo per", | |
| "ĠĠ Ġ", | |
| "Ġcom es", | |
| "Ġad v", | |
| "Ġthan ks", | |
| "Ġwee k", | |
| "Ġ est", | |
| "c ent", | |
| "Ġbr it", | |
| "Ġa ge", | |
| "Ġst ation", | |
| "Ġgener al", | |
| "ent ion", | |
| "il t", | |
| "Ġyour self", | |
| "Ġp ick", | |
| "Ġp ie", | |
| "Ġe ight", | |
| "m a", | |
| "Ġwould n", | |
| "Ġgr and", | |
| "Ġwork ing", | |
| "ain ed", | |
| "Ġlook ed", | |
| "Ġro ck", | |
| "Ġm ag", | |
| "Ġr om", | |
| "ac es", | |
| "ri es", | |
| "us h", | |
| "Ġbo dy", | |
| "Ġcle ar", | |
| "Ġj ack", | |
| "ian s", | |
| "Ġb all", | |
| "Ġde al", | |
| "Ġpub lic", | |
| "g y", | |
| "! \"", | |
| "Ġo cc", | |
| "Ġin tern", | |
| "Ġ #", | |
| "am a", | |
| "Ġj apan", | |
| "Ġso l", | |
| "w hat", | |
| "r act", | |
| "Ġbec ome", | |
| "Ġm ur", | |
| "Ġl ang", | |
| "Ġp os", | |
| "Ġfil m", | |
| "o k", | |
| "Ġro ad", | |
| "Ġch ur", | |
| "ul ation", | |
| "Ġcl ose", | |
| "Ġdist rict", | |
| "le y", | |
| "o nd", | |
| "Ġgi ven", | |
| "Ġte le", | |
| "Ġd am", | |
| "Ġag o", | |
| "Ġo pp", | |
| "Ġs il", | |
| "Ġmr s", | |
| "ha m", | |
| "Ġf ood", | |
| "Ġdis c", | |
| "Ġf re", | |
| "Ġspe c", | |
| "Ġse ver", | |
| "Ġp en", | |
| "Ġhapp y", | |
| "Ġmo vie", | |
| "Ġc e", | |
| "Ġdo g", | |
| "Ġal b", | |
| "Ġa v", | |
| "Ġbe gin", | |
| "Ġfriend s", | |
| "u nd", | |
| "z e", | |
| "Ġs un", | |
| "gr am", | |
| "Ġde v", | |
| "Ġfr ance", | |
| "Ġl ate", | |
| "us ed", | |
| "Ġwo nder", | |
| "Ġquest ion", | |
| "Ġst ar", | |
| "are nt", | |
| "Ġp ort", | |
| "Ġtr a", | |
| "Ġ19 4", | |
| "n s", | |
| "Ġlook s", | |
| "Ġst uff", | |
| "er ing", | |
| "Ġor gan", | |
| "Ġmy self", | |
| "ent y", | |
| "ne y", | |
| "Ġbr ought", | |
| "Ġgu ess", | |
| "Ġe ur", | |
| "h ind", | |
| "in o", | |
| "Ġan n", | |
| "Ġh it", | |
| "Ġ1 6", | |
| "Ġprof ess", | |
| "Ġp ast", | |
| "Ġhu h", | |
| "Ġmar ch", | |
| "Ġb ill", | |
| "Ġhum an", | |
| "Ġp ict", | |
| "Ġlang u", | |
| "Ġre ce", | |
| "Ġqu ick", | |
| "Ġ1 2", | |
| "Ġsever al", | |
| "Ġfr ont", | |
| "j o", | |
| "ot s", | |
| "Ġrele ased", | |
| "Â ł", | |
| "ie f", | |
| "Ġbe hind", | |
| "Ġle ast", | |
| "Ġkill ed", | |
| "Ġword s", | |
| "b orn", | |
| "Ġcap tain", | |
| "Ġcour t", | |
| "Ġc amp", | |
| "ut es", | |
| "et y", | |
| "Ġr ad", | |
| "Ġmaj or", | |
| "Ġre ason", | |
| "Ġd aughter", | |
| "Ġex act", | |
| "Ġpro gram", | |
| "Ġtak en", | |
| "it ing", | |
| "es e", | |
| "Ġser ies", | |
| "Ġte mp", | |
| "Ġm ad", | |
| "al th", | |
| "r ing", | |
| "ard s", | |
| "Ġin form", | |
| "Ġr ather", | |
| "Ġtak ing", | |
| "Ġjan uary", | |
| "Ġe ither", | |
| "m on", | |
| "Ġso ld", | |
| "Ġv ir", | |
| "Ġexamp le", | |
| "if ul", | |
| "Ġcomm on", | |
| "l a", | |
| "Ġd et", | |
| "Ġy ork", | |
| "e y", | |
| "Ġu m", | |
| "Ġal right", | |
| "p le", | |
| "Ġmak es", | |
| "Ġb and", | |
| "g o", | |
| "Ġrep ort", | |
| "sel ves", | |
| "ha ps", | |
| "Ġdes ign", | |
| "Ġse a", | |
| "Ġchar ac", | |
| "iv ed", | |
| "Ġc at", | |
| "Ġsu per", | |
| "Ġ19 5", | |
| "ious ly", | |
| "Ġf ig", | |
| "Ġ &", | |
| "Ġall ow", | |
| "Ġche ck", | |
| "Ġi r", | |
| "Ġpr in", | |
| "c om", | |
| "p ort", | |
| "olog y", | |
| "Ġd ream", | |
| "e e", | |
| "Ġa ust", | |
| "Ġv ill", | |
| "Ġmar ried", | |
| "Ġpar k", | |
| "Ġdep art", | |
| "Ġchur ch", | |
| "h u", | |
| "Ġco st", | |
| "Ġmill ion", | |
| "m en", | |
| "Ġf a", | |
| "Ġal one", | |
| "i i", | |
| "Ġd a", | |
| "Ġtr ain", | |
| "ud e", | |
| "Ġr iver", | |
| "Ġstr ong", | |
| "Ġli ving", | |
| "Ġother s", | |
| "Ġc op", | |
| "i qu", | |
| "Ġc ir", | |
| "ou d", | |
| "Ġsupp ort", | |
| "Ġpo or", | |
| "Ġf if", | |
| "l s", | |
| "ac ed", | |
| "Ġt ou", | |
| "i en", | |
| "Ġp al", | |
| "Ġspe cial", | |
| "Ġst ep", | |
| "Ġcould n", | |
| "Ġatt ack", | |
| "b s", | |
| "Ġper haps", | |
| "Ġab s", | |
| "al ity", | |
| "Ġl ay", | |
| "Ġl ady", | |
| "Ġsuc cess", | |
| "f ic", | |
| "Ġturn ed", | |
| "Ġge or", | |
| "he ad", | |
| "Ġhu nd", | |
| "Ġm ount", | |
| "ren ch", | |
| "Ġear th", | |
| "b ut", | |
| "el t", | |
| "Ġm ess", | |
| "Ġc os", | |
| "Ġsu mm", | |
| "Ġth ird", | |
| ", âĢĿ", | |
| "Ġevery one", | |
| "Ġres p", | |
| "Ġy e", | |
| "Ġhund red", | |
| "p ed", | |
| "Ġt est", | |
| "on es", | |
| "itt en", | |
| "i um", | |
| "Ġbeaut iful", | |
| "p ar", | |
| "le t", | |
| "Ġc oun", | |
| "g ue", | |
| "am ent", | |
| "Ġthink ing", | |
| "Ġele ct", | |
| "Ġ 0", | |
| "Ġw all", | |
| "Ġe ast", | |
| "Ġwith in", | |
| "o ve", | |
| "a pp", | |
| "at ic", | |
| "Ġse cre", | |
| "Ġeur ope", | |
| "Ġde ar", | |
| "ll y", | |
| "Ġalb um", | |
| "Ġh y", | |
| "Ġgr ow", | |
| "Ġre co", | |
| "d le", | |
| "Ġus ually", | |
| "Ġoff ice", | |
| "f ord", | |
| "Ġper form", | |
| "en g", | |
| "mb ers", | |
| "Ġf air", | |
| "Ġdo ctor", | |
| "Ġc re", | |
| "b and", | |
| "Ġswe et", | |
| "ull y", | |
| "Ġf ur", | |
| "Ġd ie", | |
| "os p", | |
| "Ġ $", | |
| "Ġph il", | |
| "Ġc ross", | |
| "Ġbrit ish", | |
| "el s", | |
| "Ġstre et", | |
| "um b", | |
| "er t", | |
| "mor row", | |
| "Ġto t", | |
| "Ġam ong", | |
| "ap e", | |
| "Ġgre en", | |
| "Ġins ide", | |
| "Ġc ast", | |
| "Ġj ud", | |
| "id ge", | |
| "em ent", | |
| "Ġcoll e", | |
| "nd on", | |
| "Ġv ict", | |
| "Ġg un", | |
| "Ġn amed", | |
| "Ġcon n", | |
| "Ġplay ing", | |
| "Ġse pt", | |
| "z y", | |
| "ent ly", | |
| "Ġbuild ing", | |
| "Ġj e", | |
| "Ġse ven", | |
| "Ġi mm", | |
| "Ġc oup", | |
| "Ġapp ro", | |
| "f fect", | |
| "Ġtr ou", | |
| "Ġro b", | |
| "Ġb ir", | |
| "Ġse nd", | |
| "Ġexp ect", | |
| "i or", | |
| "Ġcha mp", | |
| "Ġfoot ball", | |
| "Ġhe ld", | |
| "Ġans wer", | |
| "itt ing", | |
| "Ġcl ub", | |
| "Ġres ult", | |
| "Ġserv ice", | |
| "Ġm or", | |
| "Ġexact ly", | |
| "Ġwant s", | |
| "og rap", | |
| "Ġf rench", | |
| "her n", | |
| "Ġte ac", | |
| "Ġpol ice", | |
| "Ġsing le", | |
| "Ġw ood", | |
| "Ġd ark", | |
| "Ġl ord", | |
| "Ġgr ound", | |
| "er v", | |
| "id er", | |
| "m ing", | |
| "Ġout side", | |
| "Ġbu ilt", | |
| "Ġmin ute", | |
| "Ġac ross", | |
| "ri l", | |
| "Ġl ad", | |
| "Ġre qu", | |
| "Ġgot ta", | |
| "Ġfollow ing", | |
| "an ces", | |
| "Ġ1 1", | |
| "Ġse ason", | |
| "Ġtw enty", | |
| "Ġus ing", | |
| "s u", | |
| "Ġl ab", | |
| "Ġan g", | |
| "Ġme mbers", | |
| "l ished", | |
| "Ġa ug", | |
| "Ġde ce", | |
| "Ġbu y", | |
| "Ġloc al", | |
| "ag ed", | |
| "Ġd est", | |
| "Ġwhat ever", | |
| "o ke", | |
| "ber t", | |
| "Ġ ĠĊ", | |
| "Ġr an", | |
| "Ġe ffect", | |
| "Ġposs ible", | |
| "Ġs us", | |
| "Ġmonth s", | |
| "e ad", | |
| "Ġh us", | |
| "Ġsept ember", | |
| "Ġb ird", | |
| "Ġc ra", | |
| "Ġmin utes", | |
| "Ġevery body", | |
| "o b", | |
| "Ġcon cer", | |
| "Ġv ide", | |
| "Ġo ct", | |
| "es tern", | |
| "Ġju ly", | |
| "ve red", | |
| "ke y", | |
| "Ġto morrow", | |
| "Ġapp ear", | |
| "Ġa uth", | |
| "Ġl ow", | |
| "un t", | |
| "f ully", | |
| "Ġany one", | |
| "Ġsh ut", | |
| "Ġ ver", | |
| "o or", | |
| "Ġhe n", | |
| "Ġinclud ing", | |
| "in ation", | |
| "Ġha ir", | |
| "Ġwhe ther", | |
| "v ision", | |
| "Ġn orm", | |
| "un k", | |
| "Ġt reat", | |
| "Ġr u", | |
| "Ġte ch", | |
| "Ġt ried", | |
| "al d", | |
| "Ġsecre t", | |
| "Ġrep res", | |
| "Ġp ull", | |
| "Ġar m", | |
| "Ġp ress", | |
| "en cy", | |
| "Ġv ie", | |
| "Ġvo ice", | |
| "Ġbl ue", | |
| "Ġpop ulation", | |
| "Ġ19 3", | |
| "Ġc ry", | |
| "ous and", | |
| "Ġeas y", | |
| "Ġt ill", | |
| "a im", | |
| "c ha", | |
| "Ġlo ndon", | |
| "o v", | |
| "Ġm ot", | |
| "Ġm ass", | |
| "Ġmo d", | |
| "Ġbo x", | |
| "Ġp et", | |
| "Ġle vel", | |
| "d om", | |
| "Ġme mber", | |
| "o ber", | |
| "Ġth ousand", | |
| "Ġlangu age", | |
| "Ġwr itten", | |
| "iv ing", | |
| "we ll", | |
| "an c", | |
| "Ġh ill", | |
| "Ġco ld", | |
| "Ġfe ll", | |
| "i pp", | |
| "Ġf ield", | |
| "b it", | |
| "Ġfor g", | |
| "Ġj une", | |
| "Ġla u", | |
| "c ome", | |
| "f ort", | |
| "g ress", | |
| "Ġdepart ment", | |
| "Ġaug ust", | |
| "s c", | |
| "Ġcolle ge", | |
| "Ġf elt", | |
| "Ġbo ys", | |
| "Ġwork s", | |
| "ang er", | |
| "Ġeng land", | |
| "g est", | |
| "ac hed", | |
| "Ġ1 3", | |
| "Ġed uc", | |
| "Ġli ved", | |
| "Ġpro cess", | |
| "Ġvie w", | |
| "Ġd av", | |
| "Ġpro per", | |
| "Ġrep l", | |
| "Ġm ine", | |
| "Ġt our", | |
| "Ġit al", | |
| "Ġ1 4", | |
| "Ġh ig", | |
| "Ġt able", | |
| "vie w", | |
| "as es", | |
| "Ġcomple te", | |
| "Ġchan ce", | |
| "Ġany way", | |
| "Ġpartic ular", | |
| "Ġsh it", | |
| "Ġar my", | |
| "Ġcent ury", | |
| "Ġpo st", | |
| "un ch", | |
| "Ġd in", | |
| "Ġwor ry", | |
| "Ġget s", | |
| "Ġprot ect", | |
| "Ġhus band", | |
| "| |", | |
| "Ġb ased", | |
| "Ġform er", | |
| "Ġseem s", | |
| "if ied", | |
| "at ure", | |
| "ep t", | |
| "Ġinform ation", | |
| "an a", | |
| "Ġev ent", | |
| "Ġg ames", | |
| "Ġpr act", | |
| "Ġde fe", | |
| "ve mber", | |
| "Ġan t", | |
| "Ġinst ead", | |
| "Ġm aster", | |
| "Ġr ail", | |
| "Ġcare er", | |
| "Ġf av", | |
| "Ġg ar", | |
| "Ġe p", | |
| "Ġap ril", | |
| "Ġtr ad", | |
| "Ġs ister", | |
| "it ions", | |
| "c han", | |
| "i od", | |
| "Ġreg ion", | |
| "Ġcle an", | |
| "re ad", | |
| "Ġcomm and", | |
| "Ġw ish", | |
| "Ġwr ite", | |
| "or ies", | |
| "ea red", | |
| "Ġwe ar", | |
| "Ġsu d", | |
| "Ġcur rent", | |
| "Ġhour s", | |
| "Ġconn ect", | |
| "f or", | |
| "Ġli ves", | |
| "Ġwork ed", | |
| "Ġr is", | |
| "Ġst ra", | |
| "h m", | |
| "Ġsome body", | |
| "Ġpri v", | |
| "so ci", | |
| "Ġc ook", | |
| "Ġn et", | |
| "Ġcoup le", | |
| "Ġoct ober", | |
| "he n", | |
| "Ġpap er", | |
| "Ġtech n", | |
| "ri e", | |
| "Ġfor get", | |
| "Ġt it", | |
| "Ġtele vision", | |
| "Î ¿", | |
| "Ġcan not", | |
| "br uary", | |
| "Ġon es", | |
| "Ġdif fic", | |
| "s y", | |
| "Ġtr ust", | |
| "hu h", | |
| "Ġl im", | |
| "Ġli e", | |
| "Ġtr uth", | |
| "Ġpro p", | |
| "Ġauth or", | |
| "Ġf ast", | |
| "Ġ3 0", | |
| "Ġinv ol", | |
| "Ġc am", | |
| "o int", | |
| "Ġdece mber", | |
| "Ġha ng", | |
| "Ġwr ote", | |
| "th ough", | |
| "Ġknow s", | |
| "k es", | |
| "k ing", | |
| "Ġv i", | |
| "u ct", | |
| "Ġno vember", | |
| "ain t", | |
| "Ġbir th", | |
| ".. ..", | |
| "Ġso ci", | |
| "ll ing", | |
| "it ch", | |
| "c il", | |
| "Ġs ense", | |
| "Ġare n", | |
| "Ġrepres ent", | |
| "Ġc ult", | |
| "as ure", | |
| "i ke", | |
| "Ġrel ig", | |
| "Ġameric a", | |
| "Ġde ep", | |
| "Ġfe et", | |
| "Ġt ur", | |
| "Ġs en", | |
| "Ġr ic", | |
| "Ġph one", | |
| "Ġas soci", | |
| "Ġd ress", | |
| "Ġcomp et", | |
| "Ġcontro l", | |
| "Ġc iv", | |
| "id ing", | |
| "Ġd i", | |
| "l u", | |
| "Ġj ames", | |
| "Ġton ight", | |
| "a f", | |
| "air s", | |
| "y al", | |
| "Ġbu ll", | |
| "Ġind ian", | |
| "e c", | |
| "Ġchan ged", | |
| "Ġc up", | |
| "Ġp arent", | |
| "Ġ201 3", | |
| "Ġ vers", | |
| "er y", | |
| "ra id", | |
| "Ġp eter", | |
| "Ġdes c", | |
| "y ed", | |
| "w ork", | |
| "g u", | |
| "Ġd raw", | |
| "Ġper iod", | |
| "Ġgeor ge", | |
| "Ġex cept", | |
| "Ġter m", | |
| "Ġfe bruary", | |
| "Ġkid s", | |
| "Ġa ward", | |
| "Ġb er", | |
| "Ġmo ved", | |
| "Ġse x", | |
| "iz ation", | |
| "Ġf ly", | |
| "ur s", | |
| "Ġdad dy", | |
| "Ġf ail", | |
| "Ġsho ot", | |
| "ul a", | |
| "Ġdis co", | |
| "et h", | |
| "Ġlong er", | |
| "sh ip", | |
| "Ġb ott", | |
| "av y", | |
| "Ġind e", | |
| "Ġl uck", | |
| "Ġg ent", | |
| "Ġsupp osed", | |
| "id ence", | |
| "Ġsp ace", | |
| "Ġd ar", | |
| "Ġso cial", | |
| "end ed", | |
| "Ġdire ct", | |
| "Ġvide o", | |
| "Ġsh ot", | |
| "id a", | |
| "Ġse c", | |
| "iv al", | |
| "Ġcharac ter", | |
| "it ive", | |
| "Ġgirl s", | |
| "Ġhe alth", | |
| "oo se", | |
| "Ġv ol", | |
| "y r", | |
| "Ġb en", | |
| "ro om", | |
| "Ġl at", | |
| "Ġfr ank", | |
| "r ation", | |
| "Ġm al", | |
| "Ġre v", | |
| "Ġal though", | |
| "Ġsud den", | |
| "d ing", | |
| "Ġn ine", | |
| "Ġthem selves", | |
| "g ing", | |
| "Ġwe l", | |
| "Ġcha ir", | |
| "Ġ20 2", | |
| "Ġacc ord", | |
| "Ġs ar", | |
| "Ġaf raid", | |
| "ir ty", | |
| "Ġper fect", | |
| "Ġpro ject", | |
| "Ġrom an", | |
| "Ġintern ational", | |
| "s p", | |
| "w h", | |
| "Ġcommun e", | |
| "Ġmid dle", | |
| "f er", | |
| "y n", | |
| "Ġrun ning", | |
| "at a", | |
| "ill e", | |
| "Ġpict ure", | |
| "c r", | |
| "k a", | |
| "Ġ201 0", | |
| "Ġvill age", | |
| "Ġh oney", | |
| "Ġt ree", | |
| "Ġin cre", | |
| "Ġtrou ble", | |
| "Ġd ro", | |
| "um ent", | |
| "Ġcoll ect", | |
| "Ġhur t", | |
| "Ġtou ch", | |
| "ro du", | |
| "ci ally", | |
| "le x", | |
| "Ġfor ce", | |
| "Ġde m", | |
| "m er", | |
| "Ġd en", | |
| "Ġwill iam", | |
| "c ing", | |
| "Ġlet ter", | |
| "Ġb ud", | |
| "on y", | |
| "Ġfuck ing", | |
| "ha el", | |
| "t hat", | |
| "Ġk ept", | |
| "Ġab ove", | |
| "b ur", | |
| "Ġc ried", | |
| "Ġhor se", | |
| "Ġpop ular", | |
| "Ġciv il", | |
| "Ġc orn", | |
| "Ġh osp", | |
| "Ġes c", | |
| "Ġaf ric", | |
| "m ore", | |
| "ro g", | |
| "Ġty pe", | |
| "Ġneed s", | |
| "Ġp ot", | |
| "Ġvir gin", | |
| "Ġmo der", | |
| "Ġh op", | |
| "Ġar ri", | |
| "y l", | |
| "Ġ2 5", | |
| "con om", | |
| "Ġsp ir", | |
| "Ġcr it", | |
| "Ġd ue", | |
| "Ġac cept", | |
| "f fe", | |
| "Ġf ut", | |
| "Ġseem ed", | |
| "Ġrece ived", | |
| "b ers", | |
| "Ġs and", | |
| "Ġbe ar", | |
| "u ation", | |
| "Ġbe at", | |
| "Ġj im", | |
| "pt ion", | |
| "Ġcomp ut", | |
| "Ġbro ad", | |
| "em y", | |
| "Ġlea gue", | |
| "Ġe ye", | |
| "Ġeng ine", | |
| "Ġwait ing", | |
| "Ġinv est", | |
| "Ġn ar", | |
| "Ġcl ot", | |
| "Ġb urn", | |
| "har d", | |
| "Ġr ul", | |
| "Ġch o", | |
| "Ġent ire", | |
| "Ġm ult", | |
| "Ġcap ital", | |
| "Ġgent le", | |
| "Ġfur ther", | |
| "Ġis s", | |
| "Ġres pect", | |
| "Ġha ll", | |
| "oo f", | |
| "il ar", | |
| "Ġs an", | |
| "Ġb al", | |
| "Ġre se", | |
| "Ġcount ries", | |
| "Ġr ain", | |
| "Ġu r", | |
| "ub lic", | |
| "iss ion", | |
| "Ġsa ve", | |
| "ad a", | |
| "Ġplay er", | |
| "Ġim ag", | |
| "ff ic", | |
| "Ġcir c", | |
| "l ant", | |
| "Ġl ed", | |
| "Ġe conom", | |
| "Ġd ut", | |
| "Ġwor th", | |
| "Ġm hm", | |
| "Ġph ys", | |
| "Ġexc use", | |
| "Ġstra ight", | |
| "k y", | |
| "Ġmom my", | |
| "r ay", | |
| "Ġp ound", | |
| "Ġst at", | |
| "Ġst ri", | |
| "Ġsl ow", | |
| "Ġb an", | |
| "Ġun ion", | |
| "Ġsu gg", | |
| "ow ers", | |
| "Ġm ist", | |
| "am b", | |
| "Ġsur pr", | |
| "Ġpie ce", | |
| "Ġm is", | |
| "Ġm art", | |
| "Ġprodu ct", | |
| "Ġit self", | |
| "Ġqu een", | |
| "Ġinclud e", | |
| "Ġpos ition", | |
| "Ġsugg est", | |
| "l ine", | |
| "Ġph ot", | |
| "Ġcreat ed", | |
| "Ġp an", | |
| "Ġc ool", | |
| "Ġa in", | |
| "er al", | |
| "Ġfam ous", | |
| "Ġr ing", | |
| "Ġmil it", | |
| "Ġsumm er", | |
| "k en", | |
| "h ow", | |
| "u el", | |
| "Ġtak es", | |
| "Ġn ort", | |
| "Ġfun ny", | |
| "Ġs out", | |
| "Ġmar y", | |
| "Ġrep ublic", | |
| "Ġfor t", | |
| "r or", | |
| "ol ute", | |
| "Ġbo ard", | |
| "Ġbook s", | |
| "b t", | |
| "Ġch ief", | |
| "Ġdiffic ult", | |
| "re t", | |
| "1 8", | |
| "Ġc atch", | |
| "Ġreco gn", | |
| "a x", | |
| "Ġcar ry", | |
| "1 0", | |
| "Ġn on", | |
| "Ġf ill", | |
| "e al", | |
| "Ġen jo", | |
| "Ġfut ure", | |
| "Ġc ause", | |
| "Ġcom b", | |
| "Ġam ount", | |
| "Ġcent ral", | |
| "Ġfeel ing", | |
| "Ġa ud", | |
| "Ġdri ve", | |
| "ac y", | |
| "Ġar ch", | |
| "Ġlau gh", | |
| "Ġeven ing", | |
| "ou l", | |
| "i ally", | |
| "Ġsa fe", | |
| "Ġaccord ing", | |
| "om in", | |
| "Ġj our", | |
| "Ġaust ral", | |
| "Ġchamp ions", | |
| "Ġhosp ital", | |
| "Ġsha r", | |
| "Ġk iss", | |
| "Ġl u", | |
| "fe rence", | |
| "Ġco ver", | |
| "Ġpol ic", | |
| "Ġwho se", | |
| "ed i", | |
| "Ġwee ks", | |
| "y le", | |
| "st on", | |
| "Ġtr ack", | |
| "Ġh ung", | |
| "Ġ2 4", | |
| "Ġb ene", | |
| "ol ution", | |
| "Ġf er", | |
| "Ġser ved", | |
| "Ġcertain ly", | |
| "Ġst ood", | |
| "Ġby e", | |
| "Ġl os", | |
| "Ġro le", | |
| "Ġdec ided", | |
| "Ġfore st", | |
| "Ġl ou", | |
| "Ġgl ad", | |
| "Ġ ]", | |
| "Ġf ix", | |
| "o on", | |
| "Ġdo ll", | |
| "ri an", | |
| "Ġdav id", | |
| "Ġthr ow", | |
| "Ġh un", | |
| "Ġtell ing", | |
| "g ar", | |
| "Ġsa il", | |
| "Ġpa ul", | |
| "om b", | |
| "Ġex ist", | |
| "Ġmat ch", | |
| "Ġpass ed", | |
| "Ġg ard", | |
| "Ġob ject", | |
| "Ġsim ilar", | |
| "ll ed", | |
| "Ġfig ure", | |
| "Ġme ant", | |
| "Ġproble ms", | |
| "Ġsub ject", | |
| "z z", | |
| "Ġa ut", | |
| "Ġpr ison", | |
| "Ġfin al", | |
| "l in", | |
| "Ġgr ad", | |
| "Ġan ge", | |
| "Ġmeet ing", | |
| "Ġrel ations", | |
| "Ġcommun ity", | |
| "Ġbat tle", | |
| "Ġsh op", | |
| "Ġqu iet", | |
| "pe cially", | |
| "Ġw ow", | |
| "Ġteac her", | |
| "Ġm ater", | |
| "Ġmoder n", | |
| "s ha", | |
| "Ġfin ally", | |
| "Ġcent er", | |
| "Ġprov ince", | |
| "Ġmic hael", | |
| "Ġabs olute", | |
| "a i", | |
| "Ġa head", | |
| "Ġne g", | |
| "Ġcra zy", | |
| "er gy", | |
| "Ġr uss", | |
| "Ġno body", | |
| "Ġso ft", | |
| "Ġcontin u", | |
| "Ġst ick", | |
| "Ġf ish", | |
| "Ġanim als", | |
| "ri age", | |
| "li ke", | |
| "Ġb ow", | |
| "Ġty p", | |
| "Ġs ick", | |
| "Ġf ed", | |
| "ak es", | |
| "Ġind ia", | |
| "Ġpre v", | |
| "Ġd anger", | |
| "Ġn in", | |
| "Ġm outh", | |
| "Ġher self", | |
| "Ġor d", | |
| "te en", | |
| "Ġlear n", | |
| "Ġparent s", | |
| "Ġh ol", | |
| "Ġvi ol", | |
| "Ġfam il", | |
| "Ġto m", | |
| "Ġreturn ed", | |
| "Ġr ich", | |
| "Ġag re", | |
| "Ġfollow ed", | |
| "Ġe t", | |
| "Ġb ag", | |
| "Ġs ad", | |
| "im ent", | |
| "d o", | |
| "ag on", | |
| "k ed", | |
| "Ġs am", | |
| "Ġpl aces", | |
| "Ġind ust", | |
| "Ġf em", | |
| "Ġwh om", | |
| "ce ed", | |
| "Ġ19 2", | |
| "Ġsupp ose", | |
| "Ġspec ies", | |
| "c ause", | |
| "Ġexp ress", | |
| "Ġgl ass", | |
| "Ġb reat", | |
| "Ġinterest ing", | |
| "p ing", | |
| "in al", | |
| "Ġse lf", | |
| "Ġsoci ety", | |
| "Ġmo ving", | |
| "Ġw ild", | |
| "Ġm ach", | |
| "Ġcl os", | |
| "Ġking dom", | |
| "Ġjapan ese", | |
| "it or", | |
| "Ġsc ience", | |
| "Ġsp ort", | |
| "Ġpart s", | |
| "Ġho st", | |
| "Ġbegin ning", | |
| "Ġes pecially", | |
| "Ġest ab", | |
| "re me", | |
| "Ġpe ace", | |
| "p or", | |
| "Ġk en", | |
| "Ġop ened", | |
| "Ġdef in", | |
| "Ġgerman y", | |
| "Ġquick ly", | |
| "Ġh m", | |
| "Ġcol or", | |
| "Ġorigin al", | |
| "ino is", | |
| "b ed", | |
| "if f", | |
| "ag er", | |
| "n el", | |
| "Ġ1 00", | |
| "Ġhapp ens", | |
| "Ġhen ry", | |
| "Ġf le", | |
| "Ġ201 1", | |
| "Ġw al", | |
| "em pt", | |
| "Ġfl or", | |
| "o le", | |
| "is ing", | |
| "Ġse par", | |
| "Ġb es", | |
| "Ġto wards", | |
| "Ġse at", | |
| "Ġco ast", | |
| "Ġfe llow", | |
| "Ġter ri", | |
| "Ġs itting", | |
| "Ġbe ll", | |
| "Ġcoun cil", | |
| "Ġ q", | |
| "c her", | |
| "Ġm ir", | |
| "Ġdis app", | |
| "Ġmark et", | |
| "Ġc ab", | |
| "Ġcl im", | |
| "Ġfl oor", | |
| "Ġlea ving", | |
| "Ġhist or", | |
| "Ġ200 6", | |
| "Ġb ank", | |
| "Ġann oun", | |
| "Ġsp end", | |
| "Ġoffic er", | |
| "Ġeduc ation", | |
| "ay s", | |
| "m ed", | |
| "âĢ Ķ", | |
| "Ġbec om", | |
| "Ġill inois", | |
| "Ġen v", | |
| "ic ian", | |
| "Ġ201 2", | |
| "Ġany body", | |
| "Ġpolit ical", | |
| "Ġm um", | |
| "Ġne cess", | |
| "Ġid ent", | |
| "n es", | |
| "v ille", | |
| "Ġth ou", | |
| "Ġne igh", | |
| "Ġfe at", | |
| "od e", | |
| "Ġact iv", | |
| "ĠĠĠĠ ĠĠ", | |
| "Ġinde ed", | |
| "Ġr id", | |
| "Ġstud ents", | |
| "Ġta x", | |
| "Ġrad io", | |
| "g a", | |
| "Ġj er", | |
| "Ġfin ished", | |
| "Ġnat ure", | |
| "Ġtot al", | |
| "Ġi ce", | |
| "Ġse arch", | |
| "Ġvirgin ia", | |
| "Ġd u", | |
| "Ġg iving", | |
| "Ġe gg", | |
| "Ġro yal", | |
| "we red", | |
| "Ġb i", | |
| "Ġob s", | |
| "Ġstr ange", | |
| "Ġquest ions", | |
| "Ġpa id", | |
| "Ġbr own", | |
| "Ġlo ck", | |
| "Ġaf f", | |
| "Ġfe ar", | |
| "Ġinf lu", | |
| "he l", | |
| "Ġacc ount", | |
| "itt ed", | |
| "i ers", | |
| "is hing", | |
| "Ġmil es", | |
| "Ġnat ural", | |
| "ic a", | |
| "Ġd ance", | |
| "b or", | |
| "Ġc ro", | |
| "Ġ2 1", | |
| "i res", | |
| "Ġf ing", | |
| "Ġro se", | |
| "Ġcons ider", | |
| "Ġf und", | |
| "Ġwas hing", | |
| "Ġfor ward", | |
| "Ġans wered", | |
| "Ġdevelop ment", | |
| "Ġmin ister", | |
| "c ast", | |
| "Ġt ar", | |
| "Ġt v", | |
| "Ġbel ong", | |
| "Ġm ention", | |
| "Ġexper ience", | |
| "Ġa lex", | |
| "Ġl iter", | |
| "ad es", | |
| "Ġlo se", | |
| "Ġqu ar", | |
| "Ġwel come", | |
| "p ly", | |
| "Ġter ms", | |
| "c ip", | |
| "if t", | |
| "if orn", | |
| "Ġpriv ate", | |
| "Ġc and", | |
| "Ġperson al", | |
| "Ġst age", | |
| "_ ,", | |
| "Ġf at", | |
| "Ġb ase", | |
| "Ġbl ock", | |
| "Ġact ion", | |
| "Ġke y", | |
| "Ġvar ious", | |
| "Ġdest ro", | |
| "Ġspir it", | |
| "Ġb or", | |
| "Ġcl aim", | |
| "Ġcal iforn", | |
| "Ġre ached", | |
| "um e", | |
| "Ġpr ince", | |
| "o red", | |
| "t ime", | |
| "Ġw estern", | |
| "Ġf ac", | |
| "Ġj es", | |
| "u k", | |
| "Ġap art", | |
| "Ġresp ons", | |
| "Ġchampions hip", | |
| "y a", | |
| "Ġc ard", | |
| "Ġj ump", | |
| "Ġ( \"", | |
| "Ġway s", | |
| "Ġnum bers", | |
| "Ġtra vel", | |
| "Ġsome where", | |
| "ep end", | |
| "e x", | |
| "Ġstud y", | |
| "Ġyour s", | |
| "Ġpl ant", | |
| "Ġun cle", | |
| ". ,", | |
| "Ġw ed", | |
| "l ight", | |
| "Ġint rodu", | |
| "ab ad", | |
| "Ġcaliforn ia", | |
| "in c", | |
| "ition al", | |
| "f o", | |
| "r it", | |
| "Ġi i", | |
| "Ġr out", | |
| "Ġv an", | |
| "Ġ2 3", | |
| "Ġpub lished", | |
| "Ġpr im", | |
| "Ġth om", | |
| "Ġmed ic", | |
| "iv id", | |
| "Ġw at", | |
| "Ġdire ctor", | |
| "Ġd ra", | |
| "Ġd ick", | |
| "Ġ5 0", | |
| "x ic", | |
| "Ġdep end", | |
| "Ġen ergy", | |
| "Ġbo b", | |
| "Ġsim ple", | |
| "Ġwind ow", | |
| "k n", | |
| "le ct", | |
| "Ġpl at", | |
| "Ġequ al", | |
| "Ġmater ial", | |
| "f r", | |
| "Ġo oh", | |
| "Ġc aught", | |
| "Ġm c", | |
| "Ġallow ed", | |
| "1 7", | |
| "Ġchrist ian", | |
| "Ġdisc uss", | |
| "g en", | |
| "u it", | |
| "Ġc ens", | |
| "Ġser ious", | |
| "Ġth us", | |
| "Ġcha p", | |
| "ens ive", | |
| "Ġric hard", | |
| "1 5", | |
| "in ct", | |
| "Ġsur v", | |
| "Ġshow s", | |
| "Ġob v", | |
| "Ġdin ner", | |
| "am s", | |
| "Ġsu ff", | |
| "Ġany more", | |
| "Ġdam n", | |
| "it z", | |
| "Ġdr ug", | |
| "it ution", | |
| "Ġdo c", | |
| "Ġsee ing", | |
| "Ġind epend", | |
| "ci ous", | |
| "Ġ ..", | |
| "Ġm un", | |
| "Ġp ack", | |
| "a ff", | |
| "ci ent", | |
| "Ġclot hes", | |
| "Ġdis e", | |
| "i us", | |
| "in ist", | |
| "Ġvis it", | |
| "Ġprofess ional", | |
| "o ff", | |
| "y er", | |
| "Ġp age", | |
| "âĢ İ", | |
| "Ġinvol ved", | |
| "Ġhe ro", | |
| "Ġbo at", | |
| "Ġforg ot", | |
| "t r", | |
| "er o", | |
| "ir on", | |
| "Ġpl us", | |
| "Ġc ell", | |
| "Ġal ive", | |
| "Ġsp an", | |
| "Ġloc ated", | |
| "Ġg ives", | |
| "Ġsc ott", | |
| "Ġep is", | |
| "Ġ ut", | |
| "ag o", | |
| "Ġwr iting", | |
| "Ġimm edi", | |
| "Ġro ll", | |
| "Ġsudden ly", | |
| "w ood", | |
| "Ġg as", | |
| "ide red", | |
| "h ood", | |
| "Ġp un", | |
| "Ġ )", | |
| "Ġflor ida", | |
| "b on", | |
| "Ġo x", | |
| "it es", | |
| "ie l", | |
| "ist ic", | |
| "Ġo w", | |
| "Ġval ue", | |
| "Ġt ea", | |
| "he t", | |
| "Ġs our", | |
| "Ġs ize", | |
| "Ġme l", | |
| "Ġmilit ary", | |
| "Ġen c", | |
| "Ġ201 4", | |
| "Ġstand ing", | |
| "ru ction", | |
| "h od", | |
| "? âĢĿ", | |
| "Ġsound s", | |
| "f l", | |
| "Ġg ree", | |
| "Ġsc ient", | |
| "Ġprin cess", | |
| "in y", | |
| "Ġcon v", | |
| "Ġsn ow", | |
| "Ġt or", | |
| "Ġn one", | |
| "ar a", | |
| "Ġbl ow", | |
| "Ġc y", | |
| "Ġneed ed", | |
| "Ġtit le", | |
| "\" )", | |
| "1 4", | |
| "Ġid e", | |
| "Ġ0 1", | |
| "Ġfav or", | |
| "Ġspe ed", | |
| "Ġbr idge", | |
| "Ġsit uation", | |
| "eng th", | |
| "Ġb a", | |
| "Ġsqu are", | |
| "f ace", | |
| "Ġatt ention", | |
| "ll en", | |
| "Ä ģ", | |
| "Ġhon est", | |
| "Ġhe avy", | |
| "id s", | |
| "act ion", | |
| "Ġde mo", | |
| "g re", | |
| "Ġm ac", | |
| "Ġpur p", | |
| "Ġapp eared", | |
| "ail s", | |
| "Ġext ra", | |
| "o f", | |
| "Ġcons idered", | |
| "Ġadd ed", | |
| "Ġst up", | |
| "ol ic", | |
| "Ġsp ent", | |
| "h ouse", | |
| "Ġar ms", | |
| "Ġadd ress", | |
| "Ġcens us", | |
| "1 2", | |
| "Ġm ix", | |
| "Ġabsolute ly", | |
| "Ġd ig", | |
| "ir t", | |
| "Ġde cl", | |
| "Ġcap t", | |
| "in ary", | |
| "Ġman age", | |
| "Ġrese arch", | |
| "Ġst one", | |
| "Ġjo in", | |
| "gr ound", | |
| "er ve", | |
| "Ġp sy", | |
| "c us", | |
| "Ġb ought", | |
| "Ġma x", | |
| "Ġstop ped", | |
| "he m", | |
| "ain ing", | |
| "Ġsong s", | |
| "Ġd ate", | |
| "Ġ200 7", | |
| "st r", | |
| "Ġ201 6", | |
| "Ġmult ip", | |
| "ic ip", | |
| "Ġear l", | |
| "Ġcomput er", | |
| "v al", | |
| "Ġex ec", | |
| "Ġprodu ced", | |
| "Ġbro ke", | |
| "b our", | |
| "Ġs ens", | |
| "Ġan cient", | |
| "as ons", | |
| "Ġgr ou", | |
| "Ġpre p", | |
| "Ġgre w", | |
| "Ġenv iron", | |
| "w est", | |
| "Ġo d", | |
| "Ġ2 6", | |
| "Ġmar riage", | |
| "Ġoffic ial", | |
| "Ġspeak ing", | |
| "Ġmur der", | |
| "Ġo u", | |
| "Ġn ames", | |
| "id ay", | |
| "Ġse ll", | |
| "Ġ19 0", | |
| "Ġ2 2", | |
| "Ġshould n", | |
| "Ġind ivid", | |
| "b l", | |
| "Ġb oss", | |
| "Ġav ail", | |
| "Ġp u", | |
| "Ġatt empt", | |
| "f ield", | |
| "Ġj ew", | |
| "Ġw ound", | |
| "Ġw ide", | |
| "pp er", | |
| "k et", | |
| "m as", | |
| "Ġsim ply", | |
| "c a", | |
| "Ġtr ade", | |
| "Ġprom ise", | |
| "Ġdou bt", | |
| "v an", | |
| "Ġd ry", | |
| "is es", | |
| "Ġac ad", | |
| "Ġstr uct", | |
| "iqu e", | |
| "Ġin it", | |
| "Ġanim al", | |
| "Ġstup id", | |
| "Ġhur ry", | |
| "Ġre du", | |
| "te red", | |
| "Ġopp ort", | |
| "Ġcam er", | |
| "Ġposs ib", | |
| "Ġdiv ision", | |
| "rie f", | |
| "Ġf ool", | |
| "ut ed", | |
| "Ġmean ing", | |
| "Ġgrou ps", | |
| "Ã ¡", | |
| "Ġbe ha", | |
| "oo ps", | |
| "a ven", | |
| "h ic", | |
| "Ġl ower", | |
| "at ors", | |
| "Ġright s", | |
| "ip e", | |
| "n ers", | |
| "Ġo il", | |
| "Ġmount ain", | |
| "Ġcomplete ly", | |
| "Ġrelations hip", | |
| "b ye", | |
| "Ġc ow", | |
| "ri a", | |
| "Ġb ang", | |
| "Ġe ff", | |
| "Ġro bert", | |
| "Ġcor re", | |
| "Ġe mb", | |
| "Ġr ap", | |
| "Ġse vent", | |
| "Ġbr and", | |
| "Ġbel ow", | |
| "iqu es", | |
| "Ġthere fore", | |
| "m in", | |
| "th is", | |
| "Ġar g", | |
| "Ġopport un", | |
| "Ġp ath", | |
| "Ġl ake", | |
| "Ġr ace", | |
| "olog ical", | |
| "Ġt all", | |
| "Ġin j", | |
| "Ġbro ken", | |
| "Ġhat e", | |
| "if y", | |
| "Ġwatch ing", | |
| "Ġa ha", | |
| "Ġf an", | |
| "Ġam az", | |
| "Ġgu ard", | |
| "Ġemp lo", | |
| "c ul", | |
| "Ġbr an", | |
| "g l", | |
| "Ġdemo cr", | |
| "Ġplay s", | |
| "Ġimp ro", | |
| "Ġchar les", | |
| "Ġpoint s", | |
| "Ġnear ly", | |
| "Ġf res", | |
| "Ġhig her", | |
| "Ġask ing", | |
| "Ġsout hern", | |
| "Ġre ach", | |
| "ce ll", | |
| "ill a", | |
| "Ġcar ried", | |
| "Ġvers ion", | |
| "Ġo l", | |
| "Ġo ly", | |
| "Ġb right", | |
| "nd ay", | |
| "le br", | |
| "Ġsc ot", | |
| "Ġdiffe rence", | |
| "Ġinclud ed", | |
| "Ġnort hern", | |
| "w ise", | |
| "Ġd eter", | |
| "Ġcont ract", | |
| "Ġh ous", | |
| "Ġr at", | |
| "Ġlar gest", | |
| "Ġrecord s", | |
| "ffe e", | |
| "est s", | |
| "Ġmo on", | |
| "Ġmove ment", | |
| "Ġth irty", | |
| "Ġal an", | |
| "Ġenviron ment", | |
| "d on", | |
| "de red", | |
| "Ġw it", | |
| "Ġr ac", | |
| "Ġlo ved", | |
| "Ġbe y", | |
| "Ġact or", | |
| "Ġun less", | |
| "Ġpr ime", | |
| "bo ard", | |
| "Ġt ick", | |
| "Ġl ength", | |
| "i pped", | |
| "Ġac cess", | |
| "Ġnorm al", | |
| "qu e", | |
| "Ġch ick", | |
| "Ġ200 9", | |
| "Ġ2 8", | |
| "1 3", | |
| "Ġv all", | |
| "Ġreg ular", | |
| "Ġc ust", | |
| "us es", | |
| "ur ity", | |
| "ab ility", | |
| "Ġpr ay", | |
| "Ġref er", | |
| "Ġpsy ch", | |
| "Ġs ight", | |
| "Ġl ying", | |
| "Ġcon gress", | |
| "ive ly", | |
| "Ġfa ith", | |
| "Ġs ac", | |
| "Ġkn ock", | |
| "ast ic", | |
| "Ġcare ful", | |
| "Ġwonder ful", | |
| "Ġsha re", | |
| "Ġ200 8", | |
| "Ġce lebr", | |
| "w or", | |
| "Ġs ite", | |
| "av es", | |
| "Ġreg ard", | |
| "n ow", | |
| "n al", | |
| "o ld", | |
| "Ġb ath", | |
| "en a", | |
| "Ġ201 5", | |
| "Ġmet hod", | |
| "ur a", | |
| "Ġwar m", | |
| "m us", | |
| "Ġj ose", | |
| "ite ly", | |
| "Ġjo ined", | |
| "ĠĠĠĠĠĠĠĠ ĠĠĠĠĠĠĠĠ", | |
| "Ġst orm", | |
| "Ġco ffee", | |
| "Ġprin cip", | |
| "m ar", | |
| "Ġtalk ed", | |
| "Ġb ay", | |
| "Ġmo v", | |
| "Ġstart ing", | |
| "Ġmil k", | |
| "Ġcast le", | |
| "5 0", | |
| "Ġw il", | |
| "Ġev idence", | |
| "Ġh om", | |
| "Ġar r", | |
| "p art", | |
| "Ġp yr", | |
| "it ude", | |
| "Ġapp oint", | |
| "Ġdes p", | |
| "ru ct", | |
| "Ġblood y", | |
| "n ight", | |
| "Ġmar ry", | |
| "Ġocc ur", | |
| "Ġwashing ton", | |
| "Ã ¼", | |
| "ter day", | |
| "Ġmod el", | |
| "Ġbe g", | |
| "Ġprofess or", | |
| "Ġ4 0", | |
| "Ġre view", | |
| "Ġm as", | |
| "Ġare as", | |
| "ens ion", | |
| "led ge", | |
| "Ġbirth day", | |
| "Ġcr ow", | |
| "Ġjes us", | |
| "z a", | |
| "Ġtrain ing", | |
| "Ġbott om", | |
| "c an", | |
| "Ġpr ice", | |
| "Ġca used", | |
| "Ġtemp er", | |
| "Ġ202 2", | |
| "k i", | |
| "Ġc ases", | |
| "Ġl ines", | |
| "ill y", | |
| "ant ly", | |
| "Ġ20 00", | |
| "Ġassoci ation", | |
| "Ġfe ed", | |
| "Ġmed ia", | |
| "Ġtre es", | |
| "Ġa ch", | |
| "Ġsp ring", | |
| "ap er", | |
| "Ġsc ene", | |
| "Ġthom as", | |
| "pl ay", | |
| "as ion", | |
| "Ġhe aven", | |
| "b a", | |
| "Ġ2 7", | |
| "Ġemp ire", | |
| "Ġhappen ing", | |
| "Ġg all", | |
| "Ġth reat", | |
| "Ġhon or", | |
| "he st", | |
| "ap s", | |
| "Ġch ina", | |
| "Ġyes terday", | |
| "Ġche m", | |
| "g le", | |
| "Ġf it", | |
| "Ġne ck", | |
| "Ġgard en", | |
| "Ġd er", | |
| "ut s", | |
| "the re", | |
| "Ġinterest ed", | |
| "Ġ ess", | |
| "Ġass ist", | |
| "n é", | |
| "Ġd ata", | |
| "Ġwere n", | |
| "Ġfamil ies", | |
| "Ġlead er", | |
| "Ġp ush", | |
| "Ġst ories", | |
| "pp ing", | |
| "Ġsy mp", | |
| "ict ion", | |
| "Ġschool s", | |
| "Ġpar is", | |
| "Ġserv ices", | |
| "Ġmov ies", | |
| "Ġt ast", | |
| "Ġo ce", | |
| "Ġd rop", | |
| "Ġbr ain", | |
| "Ġb le", | |
| "Ġwin ter", | |
| "Ġc ath", | |
| "Ġco ach", | |
| "au gh", | |
| "Ġgovern or", | |
| "Ġbird s", | |
| "Ġhu ge", | |
| "Ġeurope an", | |
| "Ġdou ble", | |
| "Ġavail able", | |
| "h ib", | |
| "Ġfar m", | |
| "Ġadm inist", | |
| "Ġte nd", | |
| "Ġlove ly", | |
| "y ear", | |
| "Ġst ore", | |
| "Ġte xt", | |
| "Ġafric a", | |
| "Ġcontinu ed", | |
| "b les", | |
| "s et", | |
| "Ġe ating", | |
| "ph one", | |
| "Ġdesc rib", | |
| "Ġr ub", | |
| "Ġshow ed", | |
| "Ġform ed", | |
| "Ġdevelop ed", | |
| "ad ed", | |
| "Ġfound ed", | |
| "ot ed", | |
| "Ġk ick", | |
| "Ġfl ight", | |
| "Ġfore ign", | |
| "ar ily", | |
| "Ġar rest", | |
| "ous ly", | |
| "os op", | |
| "Ġ200 5", | |
| "Ġj ul", | |
| "Ġsc ared", | |
| "Ġdis p", | |
| "2 00", | |
| "b i", | |
| "Ġc rew", | |
| "ers on", | |
| "Ġaustral ia", | |
| "l am", | |
| "Ġt ired", | |
| "Ġm use", | |
| "Ġf est", | |
| "ic ed", | |
| "Ġsm ell", | |
| "Ġhelp ed", | |
| "Ġfour th", | |
| "Ġannoun ced", | |
| "Ġi ron", | |
| "Ġme xic", | |
| "Ġru le", | |
| "u nder", | |
| "Ġwe ak", | |
| "ho ld", | |
| "h i", | |
| "Ġf ol", | |
| "Ġst ars", | |
| "Ġimp ress", | |
| "Ġk it", | |
| "Ġ2 9", | |
| "Ġlet ters", | |
| "Ġsk in", | |
| "Ġsp oke", | |
| "Ġper cent", | |
| "Ġput ting", | |
| "Ġacc om", | |
| "Ġcho ice", | |
| "Ġst yle", | |
| "il s", | |
| "Ġcom fort", | |
| "Ġwor se", | |
| "Ġprodu ction", | |
| "Ġpie ces", | |
| "l im", | |
| "Ġa ver", | |
| "us ion", | |
| "Ġk ar", | |
| "Ġan ne", | |
| "n et", | |
| "Ġchan ges", | |
| "Ġpri ze", | |
| "Ġof fe", | |
| "Ġsp l", | |
| "Ġsec urity", | |
| "Ġfor ces", | |
| "Ġan al", | |
| "il ed", | |
| "Ġoff er", | |
| "Ġdem and", | |
| "Ġe h", | |
| "Ġfl owers", | |
| "Ġmost ly", | |
| "Ġpal ace", | |
| "Ġital ian", | |
| "e k", | |
| "s he", | |
| "Ġno vel", | |
| "ol es", | |
| "Ġb on", | |
| "Ġem er", | |
| "o id", | |
| "Ġtw el", | |
| "Ġchar ge", | |
| "Ġafter no", | |
| "Ġcall ing", | |
| "Ġend ed", | |
| "Ġsl ight", | |
| "Ġwalk ed", | |
| "Ġv ac", | |
| "Ġfin ish", | |
| "Ġimmedi ately", | |
| "i ot", | |
| "Ġco de", | |
| "ren g", | |
| "Ġspec ific", | |
| "Ġform ula", | |
| "Ġdist ance", | |
| "Ġlear ned", | |
| "Ġme m", | |
| "Ġcl osed", | |
| "Ġexpl ain", | |
| "Ġenjo y", | |
| "Ġeff ort", | |
| "1 6", | |
| "Ġthe ory", | |
| "Ġye llow", | |
| "r ound", | |
| "Ġ Â", | |
| "al es", | |
| "Ġnot e", | |
| "ap h", | |
| "che n", | |
| "Ġr ide", | |
| "Ġsu it", | |
| "Ġmun icip", | |
| "Ġs oul", | |
| "ck et", | |
| "Ġphil osop", | |
| "i ation", | |
| "ip s", | |
| "Ġopp os", | |
| "Ġjud ge", | |
| "Ġimag ine", | |
| "Ġbene f", | |
| "a ur", | |
| "Ġ :", | |
| "Ġu nd", | |
| "a ign", | |
| "j ust", | |
| "om s", | |
| "Ġre ve", | |
| "Ġcomm itt", | |
| "Ġsk y", | |
| "Ġra ised", | |
| "Ġfight ing", | |
| "Ġtr uck", | |
| "Ġfl at", | |
| "Ġang ry", | |
| "o y", | |
| "Ġha n", | |
| "st e", | |
| "Ġdise ase", | |
| "Ġwho a", | |
| "Ġam b", | |
| "Ġmess age", | |
| "Ġoly mp", | |
| "Ġdec ision", | |
| "Ġterri ble", | |
| "r am", | |
| "Ġafterno on", | |
| "Ġc it", | |
| "Ġlike ly", | |
| "Ġir an", | |
| "Ġd om", | |
| "Ġev ents", | |
| "Ġmuse um", | |
| "ent ial", | |
| "Ġpict ures", | |
| "Ġint ell", | |
| "Ġcar ol", | |
| "Ġou ght", | |
| "Ġsp read", | |
| "ak ing", | |
| "Ġhot el", | |
| "Ġearl ier", | |
| "Ġcontin ue", | |
| "Ġpolit ician", | |
| "re l", | |
| "Ġcamp aign", | |
| "Ġcre ate", | |
| "Ġc red", | |
| "Ġp ig", | |
| "Ġle e", | |
| "Ġpolic y", | |
| "Ġt ail", | |
| "Ġplat form", | |
| "Ġide as", | |
| "w a", | |
| "Ġn ative", | |
| "ent al", | |
| "Ġen emy", | |
| "Ġbus y", | |
| "Ġart ic", | |
| "Ġjo y", | |
| "Ġd un", | |
| "Ġaf fect", | |
| "Ġlot s", | |
| "Ġbrother s", | |
| "Ġoce an", | |
| "Ġele ction", | |
| "Ġem ot", | |
| "Ġf rog", | |
| "Ġyou th", | |
| "Ġbe ach", | |
| "Ġv en", | |
| "ist an", | |
| "Ġbas ket", | |
| "Ġiss ue", | |
| "is f", | |
| "Ġcom ed", | |
| "Ġspan ish", | |
| "b ack", | |
| "Ġc as", | |
| "Ġc ities", | |
| "Ġbelie ved", | |
| "Ġse ction", | |
| "Ġfem ale", | |
| "Ġn ick", | |
| "Ġwe ap", | |
| "Ġcent re", | |
| "Ġpar li", | |
| "Ġnecess ary", | |
| "Ġbey ond", | |
| "e ch", | |
| "ate g", | |
| "Ġinvest ig", | |
| "Ġnet work", | |
| "w estern", | |
| "be ll", | |
| "Ġlea ves", | |
| "Ġst reng", | |
| "us hed", | |
| "Ġag ree", | |
| "Ġinst it", | |
| "Ġcommun ic", | |
| "Ġleg s", | |
| "3 0", | |
| "Ġa st", | |
| "Ġl ink", | |
| "ab les", | |
| "Ġset tle", | |
| "ar ies", | |
| "Ġcomm er", | |
| "Ġr ay", | |
| "Ġcont act", | |
| "Ġhold ing", | |
| "il ities", | |
| "Ġital y", | |
| "Ġfor th", | |
| "Ġent er", | |
| "Ġparli ament", | |
| "Ġwe ight", | |
| "ri pt", | |
| "ber g", | |
| "Ġarri ved", | |
| "Ġknow ledge", | |
| "Ġco vered", | |
| "Ġp ir", | |
| "Ġgr ant", | |
| "ograp hy", | |
| "Ġvall ey", | |
| ". '", | |
| "Ġb ound", | |
| "Ġf red", | |
| "Ġk ore", | |
| "Ġread ing", | |
| "Ġfres h", | |
| "Ġpr int", | |
| "Ġper m", | |
| "Ġ200 4", | |
| "Ġop in", | |
| "Ġfif ty", | |
| "Ġpurp ose", | |
| "Ġy a", | |
| "Ġatt ract", | |
| "ash ion", | |
| "Ġrele ase", | |
| "oc ol", | |
| "en ces", | |
| "Ġne ither", | |
| "Ġsp ot", | |
| "Ġmin us", | |
| "Ġmed ical", | |
| "Ġrail way", | |
| "Ġmach ine", | |
| "w ith", | |
| "Ġwalk ing", | |
| "Ġext reme", | |
| "Ġsil ver", | |
| "bur g", | |
| "Ġesc ape", | |
| "p ir", | |
| "is ions", | |
| "Ġcorn er", | |
| "en ing", | |
| "ut en", | |
| "se qu", | |
| "ub e", | |
| "Ġfa ult", | |
| "Ġtwel ve", | |
| "p a", | |
| "Ġst aff", | |
| "Ġestab lished", | |
| "Ġs in", | |
| "ar i", | |
| "Ġtw ice", | |
| "Ġsc re", | |
| "Ġa unt", | |
| "er ved", | |
| "Ġwe ather", | |
| "Ġ18 9", | |
| "Ġacc ident", | |
| "Ġeas tern", | |
| "at lant", | |
| "Ġte ach", | |
| "Ġsport s", | |
| "b ing", | |
| "Ġr ab", | |
| "il ing", | |
| "Ġsw im", | |
| "Ġdet ect", | |
| "Ġk ent", | |
| "Ġthrough out", | |
| "Ġcal m", | |
| "Ġsign ific", | |
| "Ġsystem s", | |
| "n ie", | |
| "Ġsuccess ful", | |
| "Ġlad ies", | |
| "Ġpract ice", | |
| "Ġt ed", | |
| "at ives", | |
| "Ġte x", | |
| "Ġcommitt ee", | |
| "c ar", | |
| "um ents", | |
| "1 1", | |
| "Ġfor ced", | |
| "Ġme mor", | |
| "Ġcomp l", | |
| "Ġtri p", | |
| "Ġdefin itely", | |
| "p an", | |
| "se y", | |
| "Ġcan ada", | |
| "est y", | |
| "Ġcon vers", | |
| "w r", | |
| "Ġl oss", | |
| "Ġli ft", | |
| "Ġsing er", | |
| "j i", | |
| "Ġfor ty", | |
| "Ġm ike", | |
| "Ġg ro", | |
| "Ġplay ers", | |
| "Ġnews p", | |
| "Ġobv iously", | |
| "h ol", | |
| "at o", | |
| "Ġ18 6", | |
| "i ents", | |
| "l augh", | |
| "Ġli ked", | |
| "Ġmy ster", | |
| "Ġsh own", | |
| "Ġhas n", | |
| "Ġres our", | |
| "Ġ200 1", | |
| "ru pt", | |
| "Ġorigin ally", | |
| "Ġdefe nd", | |
| "Ġli ber", | |
| "Ġ( )", | |
| "Ġ20 20", | |
| "é né", | |
| "Ġopen ing", | |
| "Ġdire ction", | |
| "Ġcorre ct", | |
| "Ġscot land", | |
| "b ar", | |
| "Ġr ate", | |
| "Ġ201 8", | |
| "Ġjose ph", | |
| "at ory", | |
| "ter ing", | |
| "Ġsm art", | |
| "Ġgod d", | |
| "Ġdire cted", | |
| "g ree", | |
| "Ġrep e", | |
| "in i", | |
| "Ġn ation", | |
| "as ant", | |
| "Ġst ock", | |
| "ck s", | |
| "Ġchrist mas", | |
| "iver se", | |
| "Ġlou is", | |
| "Ġthe e", | |
| "Ġb ord", | |
| "iz ing", | |
| "Ġdog s", | |
| "Ġcurrent ly", | |
| "j a", | |
| "Ã ³", | |
| "Ġl y", | |
| "Ġin no", | |
| "Ġcomm ission", | |
| "Ġpat ient", | |
| "Ġsold iers", | |
| "Ġach ie", | |
| "Ġc hat", | |
| "Ġc art", | |
| "Ġp in", | |
| "ver t", | |
| "Ġlo g", | |
| "Ġtell s", | |
| "Ġsy mb", | |
| "Ġdri ving", | |
| "s es", | |
| "Ġb rief", | |
| "Ġha m", | |
| "oo p", | |
| "Ġcomp os", | |
| "Ġjo e", | |
| "Ġrelig ious", | |
| "Ġaver age", | |
| "ent ed", | |
| "Ġton y", | |
| "kn own", | |
| "Ġo pt", | |
| "st airs", | |
| "Ġsh r", | |
| "Ġac qu", | |
| "ve re", | |
| "iet y", | |
| "Ġelect ric", | |
| "Ġluck y", | |
| "z en", | |
| "se e", | |
| "ines e", | |
| "Ġevent ually", | |
| "Ġcult ure", | |
| "âĢİ .", | |
| "Ġcr ime", | |
| "Ġtechn ology", | |
| "Ġepis ode", | |
| "éné es", | |
| "v i", | |
| "il es", | |
| "Ġal t", | |
| "Ġkind s", | |
| "Ġconst itution", | |
| "Ġrelig ion", | |
| "Ġrul es", | |
| "Ġpound s", | |
| "Ġdeter m", | |
| "Ġpyr énées", | |
| "Ġp ac", | |
| "Ġh ide", | |
| "ific ation", | |
| "Ġw is", | |
| "Ġsc r", | |
| "Ġchar l", | |
| "e g", | |
| "f ast", | |
| "Ġn an", | |
| "Ġcall s", | |
| "Ġma le", | |
| "Ġmedic ine", | |
| "atlant iques", | |
| "Ġcharac ters", | |
| "Ġindust ry", | |
| "Ġb omb", | |
| "al ed", | |
| "Ġadd ition", | |
| "Ġvict im", | |
| "Ġs ant", | |
| "Ġs aint", | |
| "ad o", | |
| "Ġany where", | |
| "Ġfir m", | |
| "Ġmem ory", | |
| "Ġstud ent", | |
| "Ġsign ed", | |
| "Ġdanger ous", | |
| "Ġm ut", | |
| "on ed", | |
| "ac hing", | |
| "Ġpl ants", | |
| "Ġcha llen", | |
| "hed ron", | |
| "o ver", | |
| "Ġd uck", | |
| "Ġdro pped", | |
| "Ġopportun ity", | |
| "t t", | |
| "Ġno se", | |
| "and a", | |
| "i ar", | |
| "Ġbl ess", | |
| "Ġteam s", | |
| "Ġdisco vered", | |
| "Ġus es", | |
| "Ġbig gest", | |
| "Ġgrow ing", | |
| "Ġdoll ars", | |
| "Ġsp r", | |
| "Ġgold en", | |
| "r s", | |
| "Ġpr oud", | |
| "Ġgreat er", | |
| "Ġgentle men", | |
| "Ġs ides", | |
| "Ġisland s", | |
| "Ġfr an", | |
| "ograp h", | |
| "Ġn a", | |
| "Ġsmall er", | |
| "Ã ¶", | |
| "Ġw ine", | |
| "Ġr ough", | |
| "Ġwh is", | |
| "Ġfr anc", | |
| "Ġplan et", | |
| "Ġslow ly", | |
| "u ce", | |
| "Ġsur face", | |
| "Ġvict or", | |
| "ul ations", | |
| "Ġpre m", | |
| "Ġsm ith", | |
| "Ġtrans l", | |
| "Ġemp er", | |
| "Ġh ors", | |
| "Ġrem ain", | |
| "mm y", | |
| "Ġbas ically", | |
| "w hy", | |
| "Ã Ń", | |
| "Ġp red", | |
| "it ect", | |
| "Ġth y", | |
| "Ġperform ance", | |
| "Ġch ic", | |
| "Ġent ered", | |
| "Ġmic ro", | |
| "v in", | |
| "Ġcar s", | |
| "Ġ201 7", | |
| "Ġele cted", | |
| "Ġsat isf", | |
| "Ġf ro", | |
| "it ation", | |
| "Ġhe at", | |
| "Ġbut ter", | |
| "Ġar ab", | |
| "Ġact ing", | |
| "Ġ198 0", | |
| ". --", | |
| "ess ion", | |
| "Ġch inese", | |
| "Ġold er", | |
| "Ġent ertain", | |
| "Ġtot ally", | |
| "Ġhig hest", | |
| "Ġmist ake", | |
| "Ġr ange", | |
| "Ġpos itive", | |
| "Ġneg ative", | |
| "i os", | |
| "o ved", | |
| "Ġw ake", | |
| "id en", | |
| "Ġu k", | |
| "ol s", | |
| "Ġmiss ing", | |
| "Ġdesc ri", | |
| "Ġfed eral", | |
| "is ters", | |
| "Ġh ook", | |
| "ill s", | |
| "Ġnot ice", | |
| "Ġsecret ary", | |
| "c ons", | |
| "ha l", | |
| "Ġb ac", | |
| "us ing", | |
| "ent h", | |
| "ro ad", | |
| "ist ed", | |
| "ak er", | |
| "Ġmiss ion", | |
| "Ġris k", | |
| "Ġcrit ic", | |
| "Ġord ers", | |
| "Ġy o", | |
| "ol a", | |
| "Ġho ly", | |
| "Ġtrans port", | |
| "Ġeas ily", | |
| "igh s", | |
| "b an", | |
| "k ins", | |
| "n ament", | |
| "Ġde b", | |
| "and er", | |
| "ick s", | |
| "Ġapp arent", | |
| "Ġ199 0", | |
| "Ġdream s", | |
| "m ans", | |
| "Ġf ashion", | |
| "ed s", | |
| "Ġsa f", | |
| "Ġsur round", | |
| "Ġarch itect", | |
| "r is", | |
| "Ġa wards", | |
| "Ġs id", | |
| "Ġj en", | |
| "Ġgr own", | |
| "Ġfun ction", | |
| "Ġcath olic", | |
| "Ġparticular ly", | |
| "e es", | |
| "w ho", | |
| "as k", | |
| "as ing", | |
| "ig g", | |
| "Ġz ero", | |
| "Ġwear ing", | |
| "Ġn ap", | |
| "ib ility", | |
| "Ġmag az", | |
| ". _", | |
| "o res", | |
| "w are", | |
| "oss ible", | |
| "Ġcond ition", | |
| "Ġacad emy", | |
| ", --", | |
| "y an", | |
| "Ġb oo", | |
| "Ġl ack", | |
| "Ġch oose", | |
| "ho st", | |
| "! âĢĿ", | |
| "Ġsc ar", | |
| "Ġdar ling", | |
| "Ġthe at", | |
| "Ġg al", | |
| "Ġman ager", | |
| "Ġed ge", | |
| "Ġexpect ed", | |
| "Ġhous es", | |
| "in ing", | |
| "Ġp il", | |
| "Ġpo ly", | |
| "Ġpro gress", | |
| "Ġcont rib", | |
| "Ġla id", | |
| "Ġinclud es", | |
| "Ġrev olution", | |
| "Ġgrad u", | |
| "Ġwit ness", | |
| "nd s", | |
| "Ġh id", | |
| "Ġrem ained", | |
| "Ġhon our", | |
| "Ġdut y", | |
| "Ġre form", | |
| "Ġr os", | |
| "Ġcon ference", | |
| "Ġsm ile", | |
| "Ġbre ad", | |
| "Ġfre qu", | |
| "im ate", | |
| "Ġqu e", | |
| "Ġfo cus", | |
| "Ġfin an", | |
| "Ġstud io", | |
| "Ġth ro", | |
| "Ġde gree", | |
| "ul f", | |
| "Ġsw ord", | |
| "Ġset t", | |
| "Ġagre ed", | |
| "Ġcrow d", | |
| "d é", | |
| "s a", | |
| "Ġthink s", | |
| "Ġjour nal", | |
| "b el", | |
| "Ġb ast", | |
| "Ġl oud", | |
| "Ġn ic", | |
| "Ġbit ch", | |
| "Ġlaw yer", | |
| "Ġclear ly", | |
| "Ġt un", | |
| "Ġg y", | |
| "Ġcol our", | |
| "Ġgener ally", | |
| "Ġjack son", | |
| "Ġegg s", | |
| "l ook", | |
| "at t", | |
| "Ġapp re", | |
| "Ġchan nel", | |
| "Ġ18 8", | |
| "Ġindivid ual", | |
| "Ġv ote", | |
| "Ġmount ains", | |
| "Ġtyp es", | |
| "se c", | |
| "Ġfr uit", | |
| "Ġgre y", | |
| "Ġoffic ers", | |
| "Ġstreng th", | |
| "Ġli br", | |
| "Ġind ic", | |
| "Ġmain tain", | |
| "Ġpartic ip", | |
| "Ġmot or", | |
| "Ġrout e", | |
| "Ġcompan ies", | |
| "Ġemp ty", | |
| "Ġmaj esty", | |
| "Ġw rest", | |
| "Ġg ri", | |
| "Ġe ld", | |
| "Ġsing ing", | |
| "e h", | |
| "Ġd im", | |
| "Ġat lant", | |
| "Ġho le", | |
| "Ġbes ides", | |
| "Ġwed ding", | |
| "uten ant", | |
| "b u", | |
| "ut ions", | |
| "Ġsh out", | |
| "ist ry", | |
| "Ġag ent", | |
| "Ġpo ll", | |
| "Ġdist rib", | |
| "Ġlar ger", | |
| "Ġdr unk", | |
| "Ġsouth western", | |
| "Ġsus p", | |
| "Ġbroad cast", | |
| "Ġquar ter", | |
| "Ġfest ival", | |
| "s m", | |
| "Ġjust ice", | |
| "Ġact ress", | |
| "Ġbig ger", | |
| "Ġpick ed", | |
| "Ġiss ues", | |
| "Ġy ep", | |
| "Ġwor ried", | |
| "Ġprov ide", | |
| "d a", | |
| "Ġt ape", | |
| "Ġwe t", | |
| "Ġpl aced", | |
| "el ess", | |
| "Ġbo d", | |
| "Ġscre en", | |
| "Ġt ight", | |
| "Ġd iam", | |
| "ar r", | |
| "ra ft", | |
| "land s", | |
| "Ġspe ech", | |
| "Ġbreat h", | |
| "u f", | |
| "le cted", | |
| "il i", | |
| "ish op", | |
| "Ġleg al", | |
| "Ġfre ed", | |
| "Ġcit iz", | |
| "m n", | |
| "s ing", | |
| "v a", | |
| "Ġd yn", | |
| "Ġple asure", | |
| "Ġcond itions", | |
| "Ġsour ce", | |
| "Ġp ak", | |
| "Ġwe ird", | |
| "Ġcon cept", | |
| "Ġimp ossible", | |
| "Ġform s", | |
| "Ġpress ure", | |
| "Ġli es", | |
| "Ġ200 3", | |
| "Ġcompet ition", | |
| "Ġmention ed", | |
| "it a", | |
| "Ġair port", | |
| "Ġpower ful", | |
| "Ġce re", | |
| "i ant", | |
| "Ġwas te", | |
| "Ġwr iter", | |
| "Ġkill ing", | |
| "Ġship s", | |
| "Ġinflu ence", | |
| "Ġc ash", | |
| "Ġn av", | |
| "Ġal co", | |
| "Ġsp ain", | |
| "Ġpo et", | |
| "Ġser ve", | |
| "Ġdr ag", | |
| "Ġfly ing", | |
| "ffic ient", | |
| "d ie", | |
| "l or", | |
| "w in", | |
| "Ġj un", | |
| "Ġpl ans", | |
| "Ġrel ated", | |
| "Ġcust om", | |
| "Ġtex as", | |
| "Ġas h", | |
| "Ġv ot", | |
| "Ġsc ream", | |
| "be red", | |
| "Ġgreat est", | |
| "Ġdesign ed", | |
| "Ġchic ago", | |
| "Ġw ol", | |
| "Ġg ir", | |
| "Ġr ot", | |
| "Ġk il", | |
| "Ġgo al", | |
| "t ies", | |
| "v iet", | |
| "Ġt aught", | |
| "Ġrem ind", | |
| "Ġstand ard", | |
| "Ġlead ing", | |
| "ri g", | |
| "Ġtr oops", | |
| "Ġex cell", | |
| "Ġaw are", | |
| "Ġlie utenant", | |
| "Ġjim my", | |
| "Ġhors es", | |
| "re y", | |
| "Ġmain ly", | |
| "Ġcomple x", | |
| "Ġoper ation", | |
| "Ġfeat ures", | |
| "an ced", | |
| "Ġre ven", | |
| "Ġex am", | |
| "Ġemper or", | |
| "c u", | |
| "it ar", | |
| "Ġresult s", | |
| "Ġtar get", | |
| "ow a", | |
| "Ġad ult", | |
| "Ġsub st", | |
| "r ison", | |
| "ha nd", | |
| "Ġd rew", | |
| "Ġth ick", | |
| "Ġsh ock", | |
| "Ġet c", | |
| "Ġbecom es", | |
| "w ar", | |
| "Ã ¨", | |
| "Ġe th", | |
| "Ġcor por", | |
| "Ġprot est", | |
| "Ġreport ed", | |
| "ien ces", | |
| "Ġmo b", | |
| "Ġwill ing", | |
| "Ġmon t", | |
| "Ġpap ers", | |
| "gy pt", | |
| "Ġocc up", | |
| "Ġfing er", | |
| "Ġkit chen", | |
| "Ġruss ian", | |
| "Ġp air", | |
| "Ġj ac", | |
| "ist ics", | |
| "Ġorgan ization", | |
| "Ġrepl aced", | |
| "d r", | |
| "am ing", | |
| "Ġ( ,", | |
| "Ġte eth", | |
| "Ġapp lic", | |
| "Ġ200 2", | |
| "Ġhead s", | |
| "b ook", | |
| "Ġp ure", | |
| "ag ing", | |
| "the y", | |
| "Ġart ist", | |
| "Ġfill ed", | |
| "Ġme asure", | |
| "Ġcr im", | |
| "Ġproper ty", | |
| "Ġafric an", | |
| "Ġamaz ing", | |
| "; /", | |
| "Ġst uck", | |
| "Ġme chan", | |
| "... ?", | |
| "Ġother wise", | |
| "Ġapp le", | |
| "Ġmiss ed", | |
| "Ġ202 1", | |
| "Ġmanage ment", | |
| "k in", | |
| "Ġf right", | |
| "Ġr ome", | |
| "Ġr ank", | |
| "Ġsa ke", | |
| "Ġun iverse", | |
| "Ġfo x", | |
| "Ġapp l", | |
| "Ġev il", | |
| "Ġinst r", | |
| "Ġperform ed", | |
| "as c", | |
| "Ġbreak fast", | |
| "c ies", | |
| "n i", | |
| "Ġg host", | |
| "Ġpl ain", | |
| "Ġlead ers", | |
| "Ġr are", | |
| "Ġme at", | |
| "Ġsu p", | |
| "Ġpre vent", | |
| "Ġstart s", | |
| "Ġrecord ed", | |
| "Ġcry ing", | |
| "Ġoffe red", | |
| "Ġc oo", | |
| "le ep", | |
| "Ġmet al", | |
| "Ġadm ir", | |
| "Ġrepl ied", | |
| "m ark", | |
| "Ġf al", | |
| "Ġp it", | |
| "Ġg a", | |
| "Ġe gypt", | |
| "ul ous", | |
| "Ġlo ad", | |
| "Ġwind ows", | |
| "Ġsleep ing", | |
| "Ġfail ed", | |
| "Ġchap ter", | |
| "Ġlear ning", | |
| "Ġstruct ure", | |
| "Ġdescrib ed", | |
| "Ġs om", | |
| "Ġwe b", | |
| "Ġpart ner", | |
| "Ġsha d", | |
| "ign ed", | |
| "Ġrec ently", | |
| "Ġ197 0", | |
| "Ġsurpr ise", | |
| "Ġt ro", | |
| "Ġr h", | |
| "pp y", | |
| "Ġsch ol", | |
| "Ġatt end", | |
| "Ġtrad itional", | |
| "Ġcirc um", | |
| "Ġr and", | |
| "ce nd", | |
| "Ġsa ved", | |
| "Ġlight s", | |
| "Ġsold ier", | |
| "Ġcop y", | |
| "Ġf ant", | |
| "Ġauthor ity", | |
| "Ġcamer a", | |
| "Ġl unch", | |
| "Ġwor st", | |
| "Ġun it", | |
| "Ġbl ind", | |
| "Ġafter wards", | |
| "Ġstr ug", | |
| "Ġfore ver", | |
| "Ġpain ting", | |
| "Ġbecom ing", | |
| "Ġfranc is", | |
| "Ġs illy", | |
| "Ġm i", | |
| "as hed", | |
| "all ed", | |
| "Ġinter view", | |
| "Ġdirect ly", | |
| "Ġindepend ent", | |
| "Ġgree k", | |
| "p han", | |
| "Ġcan cer", | |
| "Ġopin ion", | |
| "t w", | |
| "one l", | |
| "ian o", | |
| "Ġkeep ing", | |
| "Ġsho es", | |
| "Ġteac hing", | |
| "Ġconcer ned", | |
| "Ġeconom ic", | |
| "he red", | |
| "Ġf aces", | |
| "Ġr oof", | |
| "Ġl ic", | |
| "Ġme re", | |
| "Ġsha pe", | |
| "Ġcons erv", | |
| "g as", | |
| "Ġt ong", | |
| "Ġre asons", | |
| "Ġdr agon", | |
| "Ġhand le", | |
| "Ġconst ruction", | |
| "part ement", | |
| "Ġtast e", | |
| "m end", | |
| "Ġqu al", | |
| "Ġgi ant", | |
| "af ter", | |
| "c raft", | |
| "m ic", | |
| "Ġt an", | |
| "Ġgl o", | |
| "Ġsat ur", | |
| "Ġbeaut y", | |
| "Ġim age", | |
| "dé partement", | |
| "on a", | |
| "Ġl ion", | |
| "ul ty", | |
| "Ġag ed", | |
| "Ġ201 9", | |
| "ye h", | |
| "Ġsurpr ised", | |
| "u x", | |
| "ap t", | |
| "Ġch uck", | |
| "Ġeas ier", | |
| "Ġbur ied", | |
| "fo ot", | |
| "Ġmunicip ality", | |
| "Ġm ort", | |
| "Ġr am", | |
| "ur ies", | |
| "Ġcont ent", | |
| "Ġcr own", | |
| "Ġtour nament", | |
| "c ol", | |
| "Ġturn s", | |
| "Ġprodu ce", | |
| "Ġdiv ided", | |
| "p ro", | |
| "Ġm ate", | |
| "ac hes", | |
| "Ġcar l", | |
| "Ġreal ize", | |
| "Ġconst ant", | |
| "Ġcab in", | |
| "Ġappre ci", | |
| "w an", | |
| "ĠâĢ Ķ", | |
| "l aw", | |
| "Ġcons um", | |
| "Ġstud ied", | |
| "Ġpossib ly", | |
| "Ġg or", | |
| "Ġse qu", | |
| "ne w", | |
| "k er", | |
| "ha d", | |
| "Ġf is", | |
| "Ġto wer", | |
| "Ġli kes", | |
| "Ġso viet", | |
| "Ġex cl", | |
| "Ġrun s", | |
| "Ġmultip le", | |
| "n am", | |
| "Ġp ope", | |
| "Ġas se", | |
| "ri al", | |
| "Ġor dered", | |
| "ak ed", | |
| "Ġsecond s", | |
| "Ġbuild ings", | |
| "Ġdrink ing", | |
| "b c", | |
| "d own", | |
| "h r", | |
| "Ġb ub", | |
| "Ġpro ve", | |
| "Ġch ocol", | |
| "Ġcr ack", | |
| "Ġreal ity", | |
| "Ġdec ide", | |
| "Ġcommand er", | |
| "Ġbran ch", | |
| "; &", | |
| "Ġsc rew", | |
| "Ġpo cket", | |
| "Ġmay or", | |
| "Ġ18 7", | |
| "Ġpret end", | |
| "Ġsil ence", | |
| "Ġprep ared", | |
| "ha mm", | |
| "ian ce", | |
| "Ġmin or", | |
| "Ġbelie f", | |
| "Ġnar r", | |
| "Ġi owa", | |
| "Ġd irty", | |
| "ll a", | |
| "Ġr ural", | |
| "Ġlaw s", | |
| "Ġincre ase", | |
| "Ġa x", | |
| "om an", | |
| "Ġcont r", | |
| "Ġ199 9", | |
| "Ġplan ning", | |
| "Ġlab or", | |
| "Ġdoc ument", | |
| "Ġi gn", | |
| "re r", | |
| "Ġsp ok", | |
| "ren ces", | |
| "Ġjour ney", | |
| "f riend", | |
| "Ġr um", | |
| "im ately", | |
| "st ood", | |
| "Ġdel ight", | |
| "Ġrequ est", | |
| "Ġphys ical", | |
| "Ġhung ry", | |
| "Ġnin et", | |
| "c ise", | |
| "j an", | |
| "Ġt al", | |
| "ig er", | |
| "Ġad vent", | |
| "Ġm ama", | |
| "Ġd or", | |
| "Ġde mon", | |
| "Ġor ange", | |
| "Ġar ts", | |
| "Ġour selves", | |
| "Ġact ual", | |
| "Ġm ap", | |
| "Ġgr ass", | |
| "Ġser iously", | |
| "Ġsw ear", | |
| "Ġcir cle", | |
| "Ġje ff", | |
| "Ġmexic o", | |
| "Ġon to", | |
| "Ġr ow", | |
| "Ġc ub", | |
| "Ġas leep", | |
| "Ġv ice", | |
| "Ġter rit", | |
| "Ġr ang", | |
| "Ġpri or", | |
| "Ġlisten ing", | |
| "Ġapparent ly", | |
| "Ġwhe el", | |
| "Ġcost s", | |
| "Ġthro at", | |
| "' .", | |
| "Ġle ct", | |
| "Ġcr u", | |
| "uck y", | |
| "Ġfind ing", | |
| "uc le", | |
| "Ġprom ised", | |
| "Ġfav our", | |
| "Ġenc our", | |
| "Ġspl it", | |
| "Ġfinan cial", | |
| "Ġcr ick", | |
| "Ġhum ans", | |
| "Ġsuc ceed", | |
| "Ġcomed y", | |
| "Ġs her", | |
| "Ġd are", | |
| "Ġgr ave", | |
| "Ġrem em", | |
| "Ġturn ing", | |
| "Ġcol on", | |
| "Ġlangu ages", | |
| "Ġprogram s", | |
| "Ġsus pect", | |
| "am m", | |
| "Ġmus ical", | |
| ". ]", | |
| "Ġlo ves", | |
| "cl es", | |
| "Ġsepar ate", | |
| "Ġmagaz ine", | |
| "ha b", | |
| "Ġg ay", | |
| "am i", | |
| "Ġal tern", | |
| "Ġ3 1", | |
| "Ġprev ious", | |
| "Ġsaf ety", | |
| "im a", | |
| "ast y", | |
| "Ġstud ies", | |
| "Ġmart in", | |
| "Ġg ang", | |
| "et te", | |
| "Ġsu nday", | |
| "l om", | |
| "o st", | |
| "an n", | |
| "is l", | |
| "Ġfl o", | |
| "Ġser ge", | |
| "Ġstay ed", | |
| "a ult", | |
| "Ġd ude", | |
| "Ġsm oke", | |
| "fort un", | |
| "Ġwas h", | |
| "Ġfif th", | |
| "Ġlos ing", | |
| "Ġfavor ite", | |
| "Ġst ream", | |
| "Ġbr ave", | |
| "ans as", | |
| "Ġact ive", | |
| "Ġsweet ie", | |
| "Ġaud ience", | |
| "Ġlaugh ing", | |
| "... \"", | |
| "ig an", | |
| "az z", | |
| "Ġstre ets", | |
| "Ġrock s", | |
| "b re", | |
| "Ġha w", | |
| "Ġth rew", | |
| "Ġu pper", | |
| "if orm", | |
| "Ġcar ter", | |
| "Ġrem ark", | |
| "Ġloc ation", | |
| "Ġocc asion", | |
| "Ġforg ive", | |
| "Ġshar p", | |
| "Ġre n", | |
| "Ġdo ct", | |
| "e f", | |
| "ha s", | |
| "Ġc ous", | |
| "are t", | |
| "Ġre act", | |
| "Ġun its", | |
| "Ġexc han", | |
| "Ġfall ing", | |
| "Ġ196 0", | |
| "Ġha st", | |
| "Ġfeel s", | |
| "Ġtreat ment", | |
| "Ġchick en", | |
| "Ġsatur day", | |
| "Ġa ye", | |
| "Ġh orn", | |
| "Ġit em", | |
| "Ġis lam", | |
| "Ġevery where", | |
| "Ġear s", | |
| "Ġtrans fer", | |
| "Ġstre t", | |
| "Ġdev il", | |
| "uf act", | |
| "r ain", | |
| "Ġr ise", | |
| "Ġj ail", | |
| "Ġsh ore", | |
| "Ġcl a", | |
| "Ġad am", | |
| "Ġstr uck", | |
| "Ġpat tern", | |
| "ur ance", | |
| "op s", | |
| "Ġhard ly", | |
| "Ġpolit ics", | |
| "Ġneigh bor", | |
| "Ġappoint ed", | |
| "Ġd omin", | |
| "ut ive", | |
| "Ġfr iday", | |
| "Ġpl ane", | |
| "Ġod d", | |
| "y eah", | |
| "Ġ Ã", | |
| "Ġw ick", | |
| "Ġb ul", | |
| "Ġam end", | |
| "Ġgr ab", | |
| "Ġrequ ired", | |
| "6 0", | |
| "Ġin n", | |
| "ant ic", | |
| "Ġde lic", | |
| "Ġman ufact", | |
| "ard on", | |
| "Ġameric ans", | |
| "Ġthousand s", | |
| "Ġindian a", | |
| "o x", | |
| "or ing", | |
| "Ġex hib", | |
| "Ġgood bye", | |
| "Ġange les", | |
| "Ġsignific ant", | |
| "Ġsymb ol", | |
| "4 0", | |
| "Ġt iny", | |
| "Ġk h", | |
| "Ġknow ing", | |
| "ĠâĢ ĺ", | |
| "Ġ-- &", | |
| "Ġa y", | |
| "Ġb other", | |
| "Ġj ane", | |
| "ri f", | |
| "Ġcl ock", | |
| "Ġdr ama", | |
| "Ġjob s", | |
| "Ġarr ange", | |
| "er n", | |
| "Ġth ir", | |
| "Ġde but", | |
| "w hen", | |
| "Ġto ward", | |
| "ar m", | |
| "Ġcan ad", | |
| "Ġtr ick", | |
| "Ġqu ality", | |
| "Ġrel ax", | |
| "Ġken ned", | |
| "Ġlibr ary", | |
| "Ġasse mb", | |
| "ou red", | |
| "Ġe c", | |
| "Ġj os", | |
| "Ġsu gar", | |
| "Ġman aged", | |
| "Ġsc ore", | |
| "Ġfl ag", | |
| "cl ock", | |
| "Ġtri al", | |
| "Ġfix ed", | |
| "Ġdemocr atic", | |
| "d es", | |
| "Ġh mm", | |
| "Ġre nt", | |
| "Ġsc en", | |
| "Ġhelp ing", | |
| "Ġrec ent", | |
| "Ġfall s", | |
| "Ġcand id", | |
| "Ġdestro yed", | |
| "Ġdrug s", | |
| "r b", | |
| "Ġn ucle", | |
| "Ġadv ant", | |
| "Ġintrodu ced", | |
| "Ġslight ly", | |
| "am eric", | |
| "Ġcon vent", | |
| "ord in", | |
| "Ġmat ters", | |
| "Ġste al", | |
| "Ġappear s", | |
| "Ġintell ig", | |
| "Ġto mmy", | |
| "Ġe ll", | |
| "Ġple ased", | |
| "Ġstate ment", | |
| "Ġill ust", | |
| "Ġrap id", | |
| "or ter", | |
| "Ġu lt", | |
| "Ġkn ight", | |
| "Ġor che", | |
| "Ġpro ceed", | |
| "Ġdress ed", | |
| "Ġb ishop", | |
| "Ġlim ited", | |
| "Ġaccept ed", | |
| "f ather", | |
| "Ġp ic", | |
| "Ġme as", | |
| "Ġse m", | |
| "Ġshow ing", | |
| "Ġrel ative", | |
| "aw a", | |
| "Ġimpro ve", | |
| "Ġalco hol", | |
| "Ġgood s", | |
| "Ġwork ers", | |
| "Ġhar m", | |
| "Ġ199 6", | |
| "Ġdan iel", | |
| "Ġkenned y", | |
| "g or", | |
| "Ġf ought", | |
| "Ġf aster", | |
| "Ġp ad", | |
| "Ġg ate", | |
| "Ġv es", | |
| "Ġhad n", | |
| "Ġback ground", | |
| "Ġ6 0", | |
| "Ġste el", | |
| "s ed", | |
| "Ġhe ight", | |
| "ve y", | |
| "Ġun fortun", | |
| "Ġla ug", | |
| "Ġret ired", | |
| "Ġgrand ma", | |
| "Ġrequ ire", | |
| "Ġrespons ible", | |
| "i as", | |
| "Ġtemper ature", | |
| "Ġchocol ate", | |
| "us hing", | |
| "Ġco at", | |
| "iv ity", | |
| "Ġ199 7", | |
| "Ġprop os", | |
| "Ġdu ke", | |
| "Ġbasket ball", | |
| "Ġdep ress", | |
| "Ġda ily", | |
| "Ġbott le", | |
| "Ġinstit ute", | |
| "m et", | |
| "m ay", | |
| "Ġb are", | |
| "ri er", | |
| "Ġdr um", | |
| "Ġwall s", | |
| "Ġgun s", | |
| "Ġd iet", | |
| "Ġst ro", | |
| "Ġco al", | |
| "Ġunder stood", | |
| "Ġyoung er", | |
| "Ġproduct s", | |
| "Ġfing ers", | |
| "u ly", | |
| "Ġas ia", | |
| "Ġfl ower", | |
| "Ġcred it", | |
| "Ġp ha", | |
| "Ġk al", | |
| "ke ep", | |
| "ill ed", | |
| "Ġad op", | |
| "Ġcomp lic", | |
| "Ġfl ow", | |
| "Ġ199 8", | |
| ", '", | |
| "Ġd ed", | |
| "Ġha l", | |
| "ch uck", | |
| "Ġve hic", | |
| "het ic", | |
| "l ig", | |
| "Ġh ind", | |
| "Ġk r", | |
| "Ġk at", | |
| "ct ions", | |
| "Ġsa v", | |
| "Ġnum er", | |
| "Ġbus h", | |
| "Ġbas ic", | |
| "Ġconf ir", | |
| "Ġmag ic", | |
| "Ġappro ach", | |
| "Ġgentle man", | |
| "2 5", | |
| "Ġc ards", | |
| "Ġn ur", | |
| "Ġn urs", | |
| "le ction", | |
| "Ġra ise", | |
| "Ġcoun ter", | |
| "Ġscott ish", | |
| "l aughter", | |
| "ter y", | |
| "Ġtr ave", | |
| "Ġclim ate", | |
| "he ast", | |
| "re g", | |
| "im p", | |
| "Ġ18 5", | |
| "Ġins pect", | |
| "Ġass um", | |
| "Ġvict ory", | |
| "wh ile", | |
| "8 0", | |
| "e v", | |
| "l ict", | |
| "w ater", | |
| "it an", | |
| "Ġk im", | |
| "Ġle ge", | |
| "ach us", | |
| "Ġend s", | |
| "Ġsw ed", | |
| "Ġbrit ain", | |
| "Ġtemp le", | |
| "Ġpull ed", | |
| "ipp ing", | |
| "Ġlaug hed", | |
| "Ġ ll", | |
| "Ġp ow", | |
| "Ġn omin", | |
| "ot a", | |
| "Ġat h", | |
| "Ġsa le", | |
| "fe ction", | |
| "Ġpre fer", | |
| "Ġsure ly", | |
| "Ġcol onel", | |
| "Ġchem ical", | |
| "Ġd ying", | |
| "Ġp ink", | |
| "Ġp owers", | |
| "st ra", | |
| "Ġnot iced", | |
| "Ġqu it", | |
| "Ġdis play", | |
| "Ġdet ails", | |
| "Ġstep s", | |
| "Ġcollect ion", | |
| "Ġoppos ite", | |
| "\" ?", | |
| "p ut", | |
| "r ated", | |
| "Ġt ha", | |
| "ar ing", | |
| "Ġk itt", | |
| "Ġch os", | |
| "Ġfl u", | |
| "Ġsign al", | |
| "Ġadv ice", | |
| "Ġbod ies", | |
| "r id", | |
| "Ġo s", | |
| "ic ide", | |
| "im um", | |
| "Ġtr ail", | |
| "Ġcar bon", | |
| "Ġrem ains", | |
| "Ġkill er", | |
| "Ġruss ia", | |
| "Ġdesp ite", | |
| "Ġnewsp aper", | |
| "Ġserge ant", | |
| "g ood", | |
| "et t", | |
| "ab or", | |
| "Ġun iform", | |
| "Ġcl oud", | |
| "Ġbu ck", | |
| "Ġspeak er", | |
| "Ġprev iously", | |
| "ed er", | |
| "Ġst an", | |
| "Ġshe l", | |
| "Ġsw itch", | |
| "Ġrepublic an", | |
| "Ġfreed om", | |
| "Ġs ab", | |
| "Ġj a", | |
| "Ġcom ment", | |
| "Ġla ura", | |
| "Ġele ment", | |
| "Ġsol ution", | |
| "g ers", | |
| "ll er", | |
| "Ġli qu", | |
| "Ġdr am", | |
| "Ġsal t", | |
| "Ġshoot ing", | |
| "Ġentire ly", | |
| "Ġdut ch", | |
| "Ġresour ces", | |
| "r ate", | |
| "Ġr ick", | |
| "Ġan th", | |
| "Ġman ner", | |
| "Ġsc ale", | |
| "Ġmat ches", | |
| "Ġrest aur", | |
| "Ġbring ing", | |
| "Ġan x", | |
| "Ġrec om", | |
| "Ġpet e", | |
| "Ġlat in", | |
| "ather ine", | |
| "Ġwee ke", | |
| "Ġcontin ues", | |
| "Ġmajor ity", | |
| "Ġcere mon", | |
| "Ġb un", | |
| "ce l", | |
| "Ġus ual", | |
| "Ġgu il", | |
| "Ġmed al", | |
| "Ġinter p", | |
| "Ġca uses", | |
| "Ġdefe ated", | |
| "2 3", | |
| "g il", | |
| "Ġrem oved", | |
| "Ġwar s", | |
| "Ġel iz", | |
| "Ġgl ob", | |
| "Ġprov ided", | |
| "Ġprotect ion", | |
| "Ġspok en", | |
| "Ġcanad ian", | |
| "Ġl oose", | |
| "Ġj on", | |
| "Ġmar ia", | |
| "Ġsus an", | |
| "Ġtrad ition", | |
| "Ġclos er", | |
| "ste in", | |
| "id ents", | |
| "ac he", | |
| "Ġshe ll", | |
| "Ġsome what", | |
| "Ġmet ro", | |
| "Ġaw ful", | |
| "Ġdam age", | |
| "Ġaut om", | |
| "o e", | |
| "p et", | |
| "Ġm ail", | |
| "Ġd ip", | |
| "om a", | |
| "ro l", | |
| "Ġli ps", | |
| "Ġnot es", | |
| "ys is", | |
| "Ġnorth west", | |
| "Ġbud get", | |
| "Ġconvers ation", | |
| "i ge", | |
| "u yeh", | |
| "nd ered", | |
| "on se", | |
| "Ġaf ford", | |
| "are n", | |
| "Ġapp eal", | |
| "Ġhigh ly", | |
| "19 9", | |
| "Ġm ich", | |
| "et ts", | |
| "Ġj am", | |
| "Ġwin ning", | |
| "sel s", | |
| "Ġcomple ted", | |
| "Ġrece ive", | |
| "Ġconnect ed", | |
| "Ġninet een", | |
| "Ġt ough", | |
| "he art", | |
| "Ġa im", | |
| "Ġc ateg", | |
| "Ġf ired", | |
| "Ġjo ke", | |
| "Ġres ist", | |
| "Ġimp er", | |
| "Ġattack ed", | |
| "Ġk oh", | |
| "Ġmus lim", | |
| "Ġav oid", | |
| "Ġartic le", | |
| "Ġsett led", | |
| "Ġcoo per", | |
| "m ad", | |
| "Ġt am", | |
| "Ġkn ife", | |
| "Ġcont ains", | |
| "Ġexp ensive", | |
| "Ġgod s", | |
| "Ġ199 5", | |
| "Ġforgot ten", | |
| "2 4", | |
| "a hedron", | |
| "Ġw ha", | |
| "Ġw ings", | |
| "Ġc u", | |
| "Ġn avy", | |
| "Ġu g", | |
| "ir k", | |
| "Ġse es", | |
| "Ġun like", | |
| "Ġco ck", | |
| "Ġgr ace", | |
| "Ġpr a", | |
| "Ġpr oof", | |
| "Ġ199 4", | |
| "Ġappear ance", | |
| "Ġchair man", | |
| "Ġbast ard", | |
| "hamm ad", | |
| "c key", | |
| "Ġt ang", | |
| "Ġl is", | |
| "am in", | |
| "Ġex er", | |
| "-- \"", | |
| "Ġfeel ings", | |
| "Ġje an", | |
| "Ġsex ual", | |
| "laugh s", | |
| "Ġtheat re", | |
| "Ġdiam ond", | |
| "c ont", | |
| "s ighs", | |
| "ea ks", | |
| "Ġpres ence", | |
| "Ġmat hem", | |
| "Ġcal cul", | |
| "Ġhang ing", | |
| "yl van", | |
| "i j", | |
| "u als", | |
| "Ġp ill", | |
| "Ġg ain", | |
| "Ġha ns", | |
| "ir a", | |
| "Ġqu ant", | |
| "Ġsha me", | |
| "Ġsha kes", | |
| "Ġuse ful", | |
| "Ġset ting", | |
| "Ġadm it", | |
| "Ġgeor g", | |
| "Ġsen ior", | |
| "Ġstat us", | |
| "Ġhistor ical", | |
| "Ġcommer cial", | |
| "n ic", | |
| "v ad", | |
| "Ġup stairs", | |
| "Ġbl ank", | |
| "Ġche st", | |
| "Ġcircum st", | |
| "Ġguil ty", | |
| "m it", | |
| "Ġp ant", | |
| "ing u", | |
| "an ing", | |
| "ar ian", | |
| "ian a", | |
| "Ġintern et", | |
| "Ġdisc ip", | |
| "Ġvir t", | |
| "Ġsen ate", | |
| "Ġexcell ent", | |
| "en ced", | |
| "Ġn erv", | |
| "Ġ3 5", | |
| "Ġnat han", | |
| "Ġextreme ly", | |
| "ing er", | |
| "Ġsh irt", | |
| "Ġte ars", | |
| "Ġcha in", | |
| "Ġear n", | |
| "Ġleg isl", | |
| "Ġball s", | |
| "Ġchamp ion", | |
| "Ġactiv ity", | |
| "achus etts", | |
| "n on", | |
| "th ur", | |
| "Ġab ility", | |
| "est ic", | |
| "Ġsp in", | |
| "Ġche ese", | |
| "Ġnorm ally", | |
| "Ġdraw ing", | |
| "7 0", | |
| "e z", | |
| "r ant", | |
| "Ġpart ners", | |
| "ĠĠĠĠ ĠĠĠ", | |
| "Ġadv ance", | |
| "Ġeffect s", | |
| "Ġesc ap", | |
| "Ġpun ish", | |
| "Ġt ay", | |
| "Ġd ust", | |
| "Ġl it", | |
| "Ġk ings", | |
| "Ġneigh bour", | |
| "Ġsup reme", | |
| "r ick", | |
| "w ill", | |
| "Ġp ed", | |
| "Ġno ise", | |
| "Ġag ric", | |
| "Ġhar ry", | |
| "Ġkeep s", | |
| "Ġhur ric", | |
| "Ġfif teen", | |
| "Ġperfect ly", | |
| "Ġtong ue", | |
| "t les", | |
| "ll e", | |
| "Ġh ug", | |
| "et ch", | |
| "em ic", | |
| "Ġun s", | |
| "Ġmass achusetts", | |
| "Ġachie ve", | |
| "Ġw id", | |
| "Ġd aw", | |
| "Ġth in", | |
| "Ġso le", | |
| "Ġmy th", | |
| "Ġsome how", | |
| "tain ed", | |
| "Ġdes ire", | |
| "Ġown ed", | |
| "pl ace", | |
| "Ġdan cing", | |
| "Ġtra ffic", | |
| "Ġaustral ian", | |
| "Ġphilosop hy", | |
| "Ġs ust", | |
| "an y", | |
| "Ġl t", | |
| "iz es", | |
| "Ġcare fully", | |
| "mo nd", | |
| "Ġsuggest ed", | |
| "Ġagric ult", | |
| "Ä ĩ", | |
| "Ġa ri", | |
| "Ġbe er", | |
| "Ġpl enty", | |
| "Ġhelp s", | |
| "Ġap olog", | |
| "Ġdri ver", | |
| "Ġbull et", | |
| "Ġbow l", | |
| "Ġdra ft", | |
| "Ġpak istan", | |
| "ylvan ia", | |
| "b ow", | |
| "Ġc ream", | |
| "Ġl in", | |
| "Ġl one", | |
| "Ġpl ot", | |
| "Ġshould er", | |
| "Ġcons ist", | |
| "Ġcol um", | |
| "Ġcol umb", | |
| "Ġpass ing", | |
| "Ġfull y", | |
| "Ġcarol ina", | |
| "f all", | |
| "h is", | |
| "Ġfr ances", | |
| "Ġbr ook", | |
| "Ġhear ing", | |
| "Ġdet ail", | |
| "Ġchos en", | |
| "n is", | |
| "Ġt ap", | |
| "Ġp iano", | |
| "Ġin ha", | |
| "Ġth or", | |
| "ro s", | |
| "Ġpart ies", | |
| "Ġmat t", | |
| "Ġhigh way", | |
| "Ġsign s", | |
| "Ġplan ned", | |
| "Ġteacher s", | |
| "Ġexpress ion", | |
| "Ġand rew", | |
| "be y", | |
| "Ġste am", | |
| "Ġconnect ion", | |
| "Ġfle w", | |
| "Ġbenef it", | |
| "d oor", | |
| "t i", | |
| "Ġg ift", | |
| "Ġcon cent", | |
| "int end", | |
| "Ġ3 2", | |
| "Ġadd ons", | |
| "Ġtrans form", | |
| "Ġbreak ing", | |
| "Ġmag n", | |
| "Ġhy p", | |
| "Ġnin ety", | |
| "Ġscient ists", | |
| "w ers", | |
| "Ġl uc", | |
| "Ġk ansas", | |
| "Ġdo ors", | |
| "ea re", | |
| "Ġwhen ever", | |
| "ag an", | |
| "Ġbo om", | |
| "Ġbo ston", | |
| "Ġmar sha", | |
| "Ġwr it", | |
| "Ġdep ut", | |
| "Ġmot ion", | |
| "Ġterrit ory", | |
| "Ġmich igan", | |
| "Ġat e", | |
| "Ġbut ton", | |
| "Ġexp and", | |
| "Ġadminist ration", | |
| "m at", | |
| "u h", | |
| "à ¤", | |
| "Ġs ed", | |
| "ul ate", | |
| "Ġsix ty", | |
| "Ġexc ited", | |
| "Ġpresent ed", | |
| "Ġoper ations", | |
| "Ġstri ke", | |
| "n at", | |
| "le ment", | |
| "Ġk er", | |
| "Ġshe ep", | |
| "Ġbr az", | |
| "Ġgr an", | |
| "Ġter ror", | |
| "Ġdi ag", | |
| "Ġsar ah", | |
| "en ger", | |
| "Ġl es", | |
| "Ġn om", | |
| "ol ved", | |
| "ab eth", | |
| "Ġup set", | |
| "Ġman ip", | |
| "Ġbr ad", | |
| "Ġ199 2", | |
| "Ġaward ed", | |
| "Ġoccur red", | |
| "r om", | |
| "Ġf urn", | |
| "Ġse vere", | |
| "ag ue", | |
| "Ġam y", | |
| "Ġ199 1", | |
| "Ġpass ion", | |
| "Ġart ists", | |
| "Ġunderstand ing", | |
| "m es", | |
| "on ia", | |
| "Ġn az", | |
| "Ġr oss", | |
| "ac le", | |
| "Ġfo ld", | |
| "Ġho ckey", | |
| "cept ion", | |
| "Ġhun ting", | |
| "Ġprim ary", | |
| "Ġolymp ics", | |
| "Ġinno cent", | |
| "Ġcitiz ens", | |
| "k o", | |
| "Ġn ations", | |
| "Ġst ations", | |
| "Ġgr ay", | |
| "Ġreg ional", | |
| "Ġfail ure", | |
| "Ġeconom y", | |
| "Ġcarry ing", | |
| "Ġbes ide", | |
| "Ġliter ature", | |
| "r ance", | |
| "Ġt ie", | |
| "Ġi re", | |
| "Ġbe th", | |
| "Ġwe bs", | |
| "Ġre action", | |
| "un ched", | |
| "Ġad vert", | |
| "Ġjo int", | |
| "Ġchan ging", | |
| "Ġstay ing", | |
| "sp eak", | |
| "itz er", | |
| "Ġchallen ge", | |
| "Ġadvant age", | |
| "a res", | |
| "Ġp ardon", | |
| "Ġwe nd", | |
| "Ġoh io", | |
| "Ġz eal", | |
| "Ġinst ance", | |
| "Ġviol ence", | |
| "Ġwat ched", | |
| "k m", | |
| "Ġf u", | |
| "Ġd ish", | |
| "ll o", | |
| "is y", | |
| "Ġsp ect", | |
| "Ġbr ill", | |
| "lf riend", | |
| "Ġimp act", | |
| "Ġdiv or", | |
| "Ġexamp les", | |
| "Ġvar iety", | |
| "Ġsil ent", | |
| "Ġs han", | |
| "Ġs amp", | |
| "Ġm and", | |
| "the n", | |
| "Ġ199 3", | |
| "Ġresp onse", | |
| "Ġincre ased", | |
| "Ġnar row", | |
| "Ġcous in", | |
| "p eare", | |
| "Ġp ier", | |
| "Ġcon gr", | |
| "qu ar", | |
| "em an", | |
| "Ġpo ison", | |
| "Ġpre par", | |
| "Ġown er", | |
| "Ġappro x", | |
| "Ġhill s", | |
| "Ġrepresent ed", | |
| "Ġlat ter", | |
| ". )", | |
| "b es", | |
| "Ġc ig", | |
| "Ġh iding", | |
| "res p", | |
| "Ġun ique", | |
| "Ġbr ide", | |
| "Ġste ve", | |
| "Ġposs ess", | |
| "Ġclass es", | |
| "Ġant i", | |
| "Ġscient ific", | |
| "d d", | |
| "Ġi ii", | |
| "Ġd ave", | |
| "Ġk han", | |
| "ch ing", | |
| "Ġbl ame", | |
| "Ġcont ain", | |
| "Ġdes per", | |
| "Ġfig ures", | |
| "Ġgrow th", | |
| "Ġhol iday", | |
| "Ġpac ific", | |
| "g un", | |
| "s an", | |
| "Ġso ph", | |
| "Ġins urance", | |
| "Ġkid ding", | |
| "Ġpur cha", | |
| "Ġmix ed", | |
| "Ġfan cy", | |
| "gil uyeh", | |
| "Ġkoh giluyeh", | |
| "b ra", | |
| "Ã ¦", | |
| "Ġst om", | |
| "il a", | |
| "Ġpl ate", | |
| "Ġsha red", | |
| "Ġ4 5", | |
| "Ġresp ond", | |
| "Ġhundred s", | |
| "Ġdecl ared", | |
| "Ġrab bit", | |
| "Ġw ise", | |
| "Ġc raw", | |
| "Ġr hy", | |
| "Ġal i", | |
| "Ġgu itar", | |
| "Ġthought s", | |
| "Ġbas is", | |
| "Ġremem bered", | |
| "Ġhurric ane", | |
| "2 1", | |
| "2 9", | |
| "ver se", | |
| "Ġwa ve", | |
| "Ġsupp ly", | |
| "sh ire", | |
| "Ġ9 0", | |
| "Ġemer g", | |
| "Ġa ven", | |
| "er ves", | |
| "Ġon line", | |
| "Ġst ated", | |
| "Ġj ones", | |
| "Ġun known", | |
| "Ġma z", | |
| "Ġche er", | |
| "Ġchr is", | |
| "Ġfil ms", | |
| "Ġpen ns", | |
| "Ġfield s", | |
| "Ġcrick et", | |
| "t ar", | |
| "Ġal p", | |
| "Ġv ia", | |
| "Ġcons cious", | |
| "Ġprodu cer", | |
| "Ġ7 0", | |
| "Ġdel iver", | |
| "Ġdro ve", | |
| "un ting", | |
| "Ġag ency", | |
| "Ġcour age", | |
| "Ġagre ement", | |
| "Ġi v", | |
| "Ġm ile", | |
| "an i", | |
| "Ġg il", | |
| "Ġin qu", | |
| "ol k", | |
| "Ġfall en", | |
| "Ġassoci ated", | |
| "Ġindepend ence", | |
| "Ġfol k", | |
| "Ġcomfort able", | |
| "h ire", | |
| "m un", | |
| "n orm", | |
| "Ġa is", | |
| "ul ated", | |
| "Ġwor ship", | |
| "Ġsha ke", | |
| "Ġed ward", | |
| "Ġjohn son", | |
| "Ġsol id", | |
| "Ġdisapp eared", | |
| "Ġexec utive", | |
| "Ġkent ucky", | |
| "americ an", | |
| "Ġbraz il", | |
| "Ġire land", | |
| "w as", | |
| "le g", | |
| "Ġbut t", | |
| "Ġv oc", | |
| "Ġsc hed", | |
| "ang le", | |
| "ins on", | |
| "Ġconf lict", | |
| "Ġcond u", | |
| "Ġbill ion", | |
| "Ġelect ron", | |
| "Ġentertain ment", | |
| "g ust", | |
| "Ġa k", | |
| "Ġp ale", | |
| "Ġhe av", | |
| "Ġas ian", | |
| "Ġsy n", | |
| "Ġele ven", | |
| "Ġpri est", | |
| "Ġsal es", | |
| "su ed", | |
| "Ġlab our", | |
| "Ġdestro y", | |
| "\" ).", | |
| "Ġt rop", | |
| "Ġre in", | |
| "Ġr iding", | |
| "ly n", | |
| "Ġcon qu", | |
| "Ġgood ness", | |
| "Ġev olution", | |
| "Ġsettle ment", | |
| "_ .", | |
| "Ġne are", | |
| "op h", | |
| "Ġpro s", | |
| "Ġgr aph", | |
| "Ġid iot", | |
| "Ġinst ruct", | |
| "Ġprov in", | |
| "Ġinc red", | |
| "rop ri", | |
| "Ġexper iment", | |
| "Ġve get", | |
| "Ġmaterial s", | |
| "Ġexchan ge", | |
| "l ies", | |
| "st one", | |
| "Ġsee k", | |
| "Ġfollow s", | |
| "Ġvar i", | |
| "Ġdra wn", | |
| "fr om", | |
| "Ġshakes peare", | |
| "Ġf ate", | |
| "Ġr ug", | |
| "Ġk ong", | |
| "Ġfl ash", | |
| "Ġdis s", | |
| "Ġinv ited", | |
| "Ġtown s", | |
| "Ġpat ients", | |
| "Ġconf eder", | |
| "Ġval u", | |
| "Ġcapt ured", | |
| "Ġweeke nd", | |
| "Ġinha bit", | |
| "Ġpenns ylvania", | |
| "d s", | |
| "Ġw itch", | |
| "Ġb ite", | |
| "Ġf ile", | |
| "Ġse asons", | |
| "Ġsu ck", | |
| "Ġser ving", | |
| "Ġdist inct", | |
| "Ġprop osed", | |
| "Ġsen ator", | |
| "Ġt ied", | |
| "Ġas pect", | |
| "Ġcon sequ", | |
| "Ġar thur", | |
| "Ġdes ert", | |
| "Ġsle pt", | |
| "Ġfair ly", | |
| "Ġappreci ate", | |
| "Ġnerv ous", | |
| "c os", | |
| "Ġt ask", | |
| "Ġs isters", | |
| "ed ing", | |
| "Ġse lling", | |
| "Ġun f", | |
| "Ġexp ed", | |
| "Ġbill y", | |
| "Ġjer sey", | |
| "Ġsid ney", | |
| "p es", | |
| "Ġb unch", | |
| "Ġn est", | |
| "Ġr ig", | |
| "Ġde li", | |
| "Ġcont est", | |
| "Ġorgan is", | |
| "Ġactiv ities", | |
| "Ġweap ons", | |
| "d ge", | |
| "Ġb id", | |
| "Ġc ake", | |
| "Ġp ul", | |
| "al a", | |
| "Ġgu est", | |
| "Ġcle ver", | |
| "Ġtemp or", | |
| "Ġsupport ed", | |
| "Ġarm ed", | |
| "Ġord inary", | |
| "Ġbord er", | |
| "Å «", | |
| "Ġt one", | |
| "Ġs ons", | |
| "Ġl as", | |
| "Ġg ather", | |
| "it o", | |
| "Ġwe alth", | |
| "Ġre ck", | |
| "Ġsu ffe", | |
| "ra el", | |
| "Ġbu g", | |
| "ict ed", | |
| "Ġpay ing", | |
| "Ġtur key", | |
| "Ġdisapp ear", | |
| "Ġbase ball", | |
| "Ġassist ant", | |
| "Ä «", | |
| "Ġf ame", | |
| "Ġha mm", | |
| "Ġab and", | |
| "Ġboy friend", | |
| "Ġsqu ared", | |
| "Ġ195 0", | |
| "Ġbud dy", | |
| "Ġarrest ed", | |
| "Ġfal se", | |
| "in ity", | |
| "ind a", | |
| "Ġch ose", | |
| "Ġstr ing", | |
| "Ġfound ation", | |
| "bur gh", | |
| "Ġwound ed", | |
| "Ġemb arr", | |
| "Ġweap on", | |
| "Ġglob al", | |
| "er ation", | |
| "ot ic", | |
| "ent ially", | |
| "Ġk a", | |
| "Ġst ad", | |
| "Ġli f", | |
| "Ġsu m", | |
| "Ġv iet", | |
| "Ġpre gn", | |
| "Ġapp ly", | |
| "br idge", | |
| "Ġju ice", | |
| "Ġmer c", | |
| "Ġoper a", | |
| "Ġgir lfriend", | |
| "Ġembarr ass", | |
| "j e", | |
| "ut her", | |
| "Ġal ice", | |
| "Ġag es", | |
| "Ġfe ature", | |
| "Ġold est", | |
| "Ġeat en", | |
| "Ġbegin s", | |
| "Ġconcer t", | |
| "Ġwilliam s", | |
| "m other", | |
| "he ns", | |
| "Ġd ow", | |
| "Ġha bit", | |
| "Ġr oles", | |
| "Ġso il", | |
| "Ġmar g", | |
| "bo y", | |
| "Ġfamil iar", | |
| "Ġfeat ured", | |
| "Ġapart ment", | |
| "Ġarg ument", | |
| "Ġkore a", | |
| "Ġassemb ly", | |
| "Ġstom ach", | |
| "l ock", | |
| "in ent", | |
| "on ic", | |
| "Ġr on", | |
| "Ġbr ings", | |
| "Ġinte gr", | |
| "Ġprom ot", | |
| "Ġlim it", | |
| "Ġdeterm ined", | |
| "Ġwend y", | |
| "2 8", | |
| "m iss", | |
| "v is", | |
| "w ide", | |
| "Ġwood s", | |
| "Ġhop ing", | |
| "b led", | |
| "c est", | |
| "y t", | |
| "y our", | |
| "Ġe ve", | |
| "Ġe mm", | |
| "Ġwith d", | |
| "Ġat m", | |
| "Ġreal ized", | |
| "Ġrid ic", | |
| "chuck les", | |
| "g i", | |
| "he im", | |
| "Ġtr ains", | |
| "Ġro ot", | |
| "Ġac id", | |
| "Ġwonder ing", | |
| "Ġorche stra", | |
| "Ġemerg ency", | |
| "b ury", | |
| "Ġr yan", | |
| "od es", | |
| "Ġhar der", | |
| "Ġadd itional", | |
| "Ġroom s", | |
| "Ġest ate", | |
| "Ġtreat ed", | |
| "Ġburn ed", | |
| "Ġsoft ware", | |
| "Ġdisapp oint", | |
| "Ġaff airs", | |
| "Ġrespons ibility", | |
| "Ġcrim inal", | |
| "Ġcircumst ances", | |
| "Ġcongr at", | |
| "Ġsuffe red", | |
| "r ical", | |
| "v ation", | |
| "Ġt ag", | |
| "Ġf ab", | |
| "Ġmo le", | |
| "Ġhy d", | |
| "Ġlab el", | |
| "Ġengine ering", | |
| "Ġexist ence", | |
| "Ġange l", | |
| "Ġgodd ess", | |
| "2 7", | |
| "or a", | |
| "Ġspe ll", | |
| "Ġcap ac", | |
| "Ġ198 9", | |
| "Ġ8 0", | |
| "Ġmad am", | |
| "Ġug ly", | |
| "c al", | |
| "Ġbe ast", | |
| "Ġr ice", | |
| "Ġun us", | |
| "Ġbr id", | |
| "Ġche ap", | |
| "Ġeng aged", | |
| "Ġlevel s", | |
| "Ġcrit ical", | |
| "Ġlege nd", | |
| "Ġp eak", | |
| "ur b", | |
| "ur t", | |
| "ch o", | |
| "Ġde ck", | |
| "Ġsp are", | |
| "Ġcha mber", | |
| "Ġcomp ared", | |
| "bo x", | |
| "Ġsqu ad", | |
| "Ġport ug", | |
| "Ġrail road", | |
| "Ġwal es", | |
| "Ġsevent y", | |
| "Ġhom es", | |
| "Ġw oo", | |
| "is p", | |
| "Ġv ent", | |
| "Ġfind s", | |
| "s cre", | |
| "z er", | |
| "Ġb ol", | |
| "ur ally", | |
| "Ġwh ist", | |
| "Ġnot ed", | |
| "Ġho lly", | |
| "che ster", | |
| "osp here", | |
| "Ġdisco very", | |
| "Ġindust rial", | |
| "r d", | |
| "Å į", | |
| "Ġo ak", | |
| "Ġm s", | |
| "Ġl inc", | |
| "Ġen s", | |
| "Ġfl ood", | |
| "Ġhapp iness", | |
| "Ġ198 8", | |
| "Ġsol ve", | |
| "Ġincre asing", | |
| "Ġeliz abeth", | |
| "3 4", | |
| "3 5", | |
| "r ad", | |
| "Ġt ort", | |
| "ot ton", | |
| "ur d", | |
| "Ġfr ame", | |
| "Ġpro ced", | |
| "Ġla unched", | |
| "Ġcross ed", | |
| "Ġconcer n", | |
| "Ġdisco ver", | |
| "Ġsusp ic", | |
| "Ġadmir al", | |
| "i est", | |
| "Ã ¢", | |
| "Ġc her", | |
| "Ġd ies", | |
| "Ġn it", | |
| "Ġsc ript", | |
| "Ġhands ome", | |
| "Ġbene ath", | |
| "Ġenvironment al", | |
| "Ġinstr ument", | |
| "Ġm ood", | |
| "Ġp ool", | |
| "an o", | |
| "Ġn ut", | |
| "le nd", | |
| "Ġha y", | |
| "Ġis rael", | |
| "Ġmo nday", | |
| "Ġz e", | |
| "olog ist", | |
| "Ġsix th", | |
| "Ġmill ions", | |
| "Ġwin ner", | |
| "Ġem ily", | |
| "Ġpain t", | |
| "Ġestab lish", | |
| "Ġamend ment", | |
| "Ġlinc ol", | |
| "d in", | |
| "Ġw ished", | |
| "Ġj ill", | |
| "em ies", | |
| "Ġcl ient", | |
| "Ġfe ather", | |
| "Ġer a", | |
| "Ġcr ash", | |
| "Ġrecord ing", | |
| "Ġdan ny", | |
| "Ġmer ry", | |
| "Ġsuff ering", | |
| "Ġwrest ling", | |
| "g ment", | |
| "Ġl en", | |
| "ack s", | |
| "Ġele ments", | |
| "Ġ197 9", | |
| "Ġcommon ly", | |
| "Ġfle et", | |
| "Ġaccom pan", | |
| "igg ler", | |
| "Ġatlant ic", | |
| "g ie", | |
| "Ġy ard", | |
| "om y", | |
| "et ic", | |
| "Ġan cest", | |
| "Ġgen e", | |
| "Ġgener ation", | |
| "Ġimport ance", | |
| "Ġrecogn ized", | |
| "Ġsymp t", | |
| "Ġzeal and", | |
| "l ar", | |
| "r un", | |
| "s pe", | |
| "Ġst ir", | |
| "ch ief", | |
| "Ġ( ;", | |
| "Ġple asant", | |
| "Ġfriend ly", | |
| "Ġstand s", | |
| "Ġris ing", | |
| "Ġsurv ive", | |
| "Ġhid den", | |
| "Ġeld er", | |
| "Ġb rig", | |
| "am n", | |
| "Ġ198 2", | |
| "Ġill eg", | |
| "Ġhor ri", | |
| "Ġphot o", | |
| "Ġschol ar", | |
| "os es", | |
| "Ġro ger", | |
| "Ġer as", | |
| "Ġover all", | |
| "Ġnight s", | |
| "Ġfact ory", | |
| "Ġcal vad", | |
| "Ġda wn", | |
| "Ġjew ish", | |
| "wor ks", | |
| "Ġcommunic ation", | |
| "Ġlincol n", | |
| "Ġcalvad os", | |
| "u le", | |
| "Ġc av", | |
| "Ġr ings", | |
| "ak i", | |
| "Ġint ended", | |
| "Ġwa ited", | |
| "Ġatt ended", | |
| "Ġed ition", | |
| "Ġdec isions", | |
| "stand ing", | |
| "Ġ198 4", | |
| "Ġsent ence", | |
| "Ġstat istics", | |
| "t han", | |
| "Ġs ang", | |
| "Ġr ib", | |
| "Ġas ide", | |
| "ain e", | |
| "Ġcon ce", | |
| "ab out", | |
| "ĠĠĠĠ Ġ", | |
| "Ġsm o", | |
| "Ġchar t", | |
| "Ġeight y", | |
| "Ġdark ness", | |
| "Ġrecogn ize", | |
| "Ġdepend s", | |
| "Ġrepe ated", | |
| "Ġtr uly", | |
| "Ġcomp on", | |
| "Ġmer chan", | |
| "Ġexpl os", | |
| "Ġdetect ive", | |
| "Ġstad ium", | |
| "ep ing", | |
| "Ġer ic", | |
| "Ġear ned", | |
| "Ġdes cend", | |
| "19 7", | |
| "Ġref used", | |
| "Ġadv anced", | |
| "aim ed", | |
| "Ġfort une", | |
| "Ġglass es", | |
| "Ġlock ed", | |
| "Ġeffort s", | |
| "h mm", | |
| "l ong", | |
| "he y", | |
| "Ġw ore", | |
| "Ġc ute", | |
| "Ġc ats", | |
| "Ġf ishing", | |
| "st ar", | |
| "iz ations", | |
| "Ġed itor", | |
| "Ġbre ast", | |
| "Ġoffic ially", | |
| "Ġshort ly", | |
| "Ġir ish", | |
| "Ġfair y", | |
| "Ġlau ght", | |
| "for ce", | |
| "wh ich", | |
| "Ġbud d", | |
| "Ġox ford", | |
| "Ġadminist r", | |
| "Ġanal ysis", | |
| "Ġreven ge", | |
| "Ġmob ile", | |
| "c ue", | |
| "Ã ¤", | |
| "Ġw ard", | |
| "ing ly", | |
| "es h", | |
| "Ġr ush", | |
| "Ġst ress", | |
| "Ġan na", | |
| "Ġgot ten", | |
| "Ġ198 7", | |
| "Ġdeput y", | |
| "r as", | |
| "r ich", | |
| "Ġ {", | |
| "Ġm ental", | |
| "Ġd read", | |
| "Ġre fe", | |
| "Ġk o", | |
| "ac ing", | |
| "Ġj r", | |
| "ro se", | |
| "Ġso f", | |
| "Ġco re", | |
| "Ġz iggler", | |
| "Ġgar age", | |
| "Ġcomb ination", | |
| "Ġobv ious", | |
| "Ġdom estic", | |
| "Ġjac ob", | |
| "Ġded ic", | |
| "Ġnomin ated", | |
| "Ġd ump", | |
| "Ġto y", | |
| "Ġde an", | |
| "Ġpl astic", | |
| "Ġsur re", | |
| "Ġgard ens", | |
| "Ġshad ow", | |
| "Ġnur se", | |
| "Ġmathem at", | |
| "2 2", | |
| "l ng", | |
| "re p", | |
| "Ġb ent", | |
| "Ġb ass", | |
| "ir o", | |
| "Ġsh ook", | |
| "ive red", | |
| "Ġen emies", | |
| "Ġfact or", | |
| "Ġnear by", | |
| "Ġalex ander", | |
| "Ġbrill iant", | |
| "al ous", | |
| "am an", | |
| "se ct", | |
| "os h", | |
| "Ġun able", | |
| "Ġcomp ound", | |
| "-- --", | |
| "Ġthr own", | |
| "Ġunder ground", | |
| "Ġfun eral", | |
| "Ġ6 4", | |
| "Ġsn ake", | |
| "Ġdeal ing", | |
| "Ġscar ce", | |
| "Ġlaught er", | |
| "Ġse lected", | |
| "un ts", | |
| "ie ce", | |
| "Ġthem e", | |
| "Ġbu ying", | |
| "Ġma id", | |
| "Ġpoint ed", | |
| "Ġjohn ny", | |
| "Ġprogram me", | |
| "Ġreport s", | |
| "Ġinvestig ation", | |
| "Ġdescri ption", | |
| "Ġunfortun ately", | |
| "n ote", | |
| "o om", | |
| "Ġt ub", | |
| "Ġo we", | |
| "Ġm cc", | |
| "ep s", | |
| "Ġcr uel", | |
| "19 8", | |
| "Ġsort s", | |
| "Ġcond uct", | |
| "Ġber lin", | |
| "Ġburn ing", | |
| "Ġlect ure", | |
| "Ġm oo", | |
| "as y", | |
| "ir ing", | |
| "Ġ\" \"", | |
| "Ġall ows", | |
| "Ġgr av", | |
| "Ġsm ok", | |
| "Ġatt itude", | |
| "Ġcreat ing", | |
| "Ġdel ay", | |
| "gre g", | |
| "Ġfol ks", | |
| "p oint", | |
| "Ġt orn", | |
| "Ġt iger", | |
| "Ġp ity", | |
| "Ġmo ves", | |
| "ak en", | |
| "Ġgr ade", | |
| "Ġbu ff", | |
| "Ġz one", | |
| "Ġins p", | |
| "Ġret ire", | |
| "Ġval ues", | |
| "Ġrob in", | |
| "l is", | |
| "Å ¡", | |
| "ou ri", | |
| "Ġp ages", | |
| "Ġg ib", | |
| "Ġan ton", | |
| "ger y", | |
| "Ġdef ense", | |
| "Ġtre asure", | |
| "Ġrom antic", | |
| "Ġeffect ive", | |
| "Ġhealth y", | |
| "Ġroman ized", | |
| "gre es", | |
| "Ġreview s", | |
| "Ġswim ming", | |
| "Ġwol f", | |
| "ê ¯", | |
| "im in", | |
| "ad ing", | |
| "Ġde grees", | |
| "Ġar row", | |
| "Ġke ys", | |
| "tern al", | |
| "Ġ197 1", | |
| "Ġequ als", | |
| "ades h", | |
| "mus ic", | |
| "5 00", | |
| "9 0", | |
| "a ud", | |
| "g ues", | |
| "w ing", | |
| "Ã ´", | |
| "Ġw ire", | |
| "ow ed", | |
| "Ġsu icide", | |
| "Ġwho ever", | |
| "Ġcomm itted", | |
| "Ġ18 4", | |
| "Ġele phan", | |
| "Ġsim on", | |
| "Ġspend ing", | |
| "Ġlone ly", | |
| "Ġhorri ble", | |
| "e xt", | |
| "l av", | |
| "Ġcult ural", | |
| "Ġwal ter", | |
| "Ġrefer red", | |
| "Ġrand om", | |
| "Ġnumer ous", | |
| ". [", | |
| "t an", | |
| "Ġb ha", | |
| "Ġth under", | |
| "Ġbu zz", | |
| "Ġbel g", | |
| "Ġcommun ities", | |
| "Ġexpl ained", | |
| "Ġliter ally", | |
| "Ġarr ang", | |
| "Ġmemor ial", | |
| "Ġapplic ation", | |
| "Ġdoct ors", | |
| "Ġw and", | |
| "Ġb rian", | |
| "Ġc em", | |
| "Ġp our", | |
| "Ġh og", | |
| "ad s", | |
| "Ġper man", | |
| "Ġmon ster", | |
| "Ġsw itzer", | |
| "Ġ198 1", | |
| "Ġnet her", | |
| "Ġconv in", | |
| "Ġappl ied", | |
| "Ġcomplic ated", | |
| "3 8", | |
| "ha ppy", | |
| "Ġc ale", | |
| "Ġst ab", | |
| "Ġdo zen", | |
| "ain ts", | |
| "um ber", | |
| "ap ers", | |
| "ak a", | |
| "Ġmar ks", | |
| "Ġtou ched", | |
| "Ġcry st", | |
| "Ġbelong s", | |
| "b al", | |
| "er g", | |
| "Ġc ou", | |
| "Ġg oo", | |
| "Ġpro ved", | |
| "Ġcha se", | |
| "Ġ18 0", | |
| "19 6", | |
| "Ġber n", | |
| "s en", | |
| "Ġ Î", | |
| "Ġc ert", | |
| "Ġto ols", | |
| "Ġst u", | |
| "Ġv ision", | |
| "Ġhi red", | |
| "Ġequ ip", | |
| "Ġve ctor", | |
| "Ġmor al", | |
| "Ġproper ly", | |
| "Ġobs erv", | |
| "Ġbath room", | |
| "Ġdescri be", | |
| "Ġfis her", | |
| "Ġeras mus", | |
| "3 6", | |
| "m ont", | |
| "Ġw ing", | |
| "Ġc ant", | |
| "Ġm ud", | |
| "Ġpro sec", | |
| "Ġcol ors", | |
| "Ġ197 6", | |
| "Ġcreat ure", | |
| "Ġta i", | |
| "wor th", | |
| "Ġath let", | |
| "Ġinstruct ions", | |
| "Ġswitzer land", | |
| "] .", | |
| "h ot", | |
| "r ot", | |
| "Ġto ile", | |
| "se x", | |
| "Ġse ed", | |
| "ch i", | |
| "um es", | |
| "Ġsa ving", | |
| "Ġtw in", | |
| "Ġro de", | |
| "Ġpo em", | |
| "ord on", | |
| "Ġatt orn", | |
| "Ġland s", | |
| "Ġinc ident", | |
| "Ġpain ted", | |
| "Ġmir ror", | |
| "Ġcy cle", | |
| "Ġprep are", | |
| "Ġsant a", | |
| "Ġtrop ical", | |
| "Ġm ister", | |
| "Ġy ell", | |
| "Ġsu fficient", | |
| "Ġsp lend", | |
| "Ġlo yal", | |
| "Ġsub t", | |
| "Ġger mans", | |
| "Ġ198 6", | |
| "Ġann ual", | |
| "Ġcook ing", | |
| "Ġbor row", | |
| "Ġcharl ie", | |
| "Ġrestaur ant", | |
| "\" ),", | |
| "Ġ vel", | |
| "Ġm ent", | |
| "Ġto mb", | |
| "et her", | |
| "im ents", | |
| "Ġat om", | |
| "og ue", | |
| "Ġtalk s", | |
| "Ġstrong er", | |
| "Ġtur k", | |
| "Ġsec ure", | |
| "Ġvol ume", | |
| "Ġcrit ics", | |
| "Ġdyn asty", | |
| "resp ond", | |
| "Ġmaz ra", | |
| "Ġridic ulous", | |
| "' ,", | |
| "Ġd umb", | |
| "Ġr ud", | |
| "Ġst ol", | |
| "Ġsh ir", | |
| "Ġv ic", | |
| "Ġgr am", | |
| "Ġpar ish", | |
| "Ġsing les", | |
| "Ġbur st", | |
| "Ġexpl an", | |
| "Ġclose ly", | |
| "Ġfort un", | |
| "Ġinit i", | |
| "Ġtick et", | |
| "Ġfrancis co", | |
| "Ġt ip", | |
| "Ġj ess", | |
| "Ġgr a", | |
| "Ġbet ty", | |
| "Ġapp ropri", | |
| "Ġbad ly", | |
| "Ġmill er", | |
| "Ġpresident ial", | |
| "speak ing", | |
| "Ġmazra eh", | |
| "b ased", | |
| "s ar", | |
| "Ġt ale", | |
| "Ġb os", | |
| "ill ing", | |
| "Ġbr on", | |
| "Ġro d", | |
| "Ġsc at", | |
| "Ġact s", | |
| "Ġdep os", | |
| "Ġmark ed", | |
| "Ġinj ury", | |
| "wr iter", | |
| "Ġrecom mend", | |
| "Ġw ag", | |
| "nd a", | |
| "Ġf i", | |
| "Ġto oth", | |
| "Ġcomp osed", | |
| "Ġph r", | |
| "Ġperson ally", | |
| "Ġcoll ea", | |
| "Ġref lect", | |
| "Ġje alous", | |
| ".... ....", | |
| "Ġpot ential", | |
| "Ġtyp ical", | |
| "Ġmethod s", | |
| "Ġs ally", | |
| "re ck", | |
| "Ġc ass", | |
| "Ġp ension", | |
| "Ġto ys", | |
| "ot o", | |
| "ad el", | |
| "Ġar k", | |
| "Ġsub sequ", | |
| "Ġdec or", | |
| "Ġwind s", | |
| "Ġoper ating", | |
| "Ġenjo yed", | |
| "Ġimpress ion", | |
| "Ġimper ial", | |
| "h l", | |
| "Ġf asc", | |
| "Ġre ference", | |
| "Ġst ole", | |
| "Ġan ger", | |
| "un te", | |
| "ath y", | |
| "Ġ3 6", | |
| "Ġmin istry", | |
| "Ġ5 00", | |
| "Ġ198 5", | |
| "Ġshop ping", | |
| "Ġhistor ic", | |
| "Ġident ity", | |
| "Ġprincip al", | |
| "Ġf art", | |
| "Ġd ub", | |
| "as hing", | |
| "al i", | |
| "Ġme al", | |
| "Ġte en", | |
| "ree k", | |
| "Ġpers ons", | |
| "ph y", | |
| "Ġexc iting", | |
| "Ġgeorg ia", | |
| "Ġsympt oms", | |
| "c ers", | |
| "s ome", | |
| "Ġb ones", | |
| "Ġm ons", | |
| "Ġf ans", | |
| "al so", | |
| "ce ler", | |
| "Ġab b", | |
| "Ġcent uries", | |
| "Ġair craft", | |
| "Ġcor respond", | |
| "Ġbab ies", | |
| "Ġheart s", | |
| "Ġpur ple", | |
| "Ġpal m", | |
| "Ġcre ation", | |
| "Ġgree ce", | |
| "Ġhonest ly", | |
| "Ġfright ened", | |
| "m od", | |
| "Ġb ot", | |
| "Ġg at", | |
| "ur i", | |
| "Ġsh ift", | |
| "Ġcl ay", | |
| "Ġac celer", | |
| "Ġstr anger", | |
| "Ġpass age", | |
| "ru cted", | |
| "li est", | |
| "Ġ196 4", | |
| "Ġexper ien", | |
| "Ġcontro vers", | |
| "Ġvol unte", | |
| "Ġtrack s", | |
| "Ġobs erved", | |
| "Ġemplo y", | |
| "gl as", | |
| "Ġgodd amn", | |
| "Ġfant astic", | |
| "Ġconvent ion", | |
| "Ġwebs ite", | |
| "is er", | |
| "it ors", | |
| "Ġhow ard", | |
| "Ġcr ook", | |
| "Ġreg ret", | |
| "Ġinter rupt", | |
| "Ġfif a", | |
| "Ġlad der", | |
| "Ġsour ces", | |
| "cons cious", | |
| "Ġnarr ator", | |
| "Ġmarg aret", | |
| "Ġatm osphere", | |
| "Ġequip ment", | |
| "g ro", | |
| "Ġw ra", | |
| "Ġl amp", | |
| "Ġk u", | |
| "ly ing", | |
| "Ġsc he", | |
| "Ġbu nd", | |
| "Ġsw ing", | |
| "Ġcons ult", | |
| "Ġinst ant", | |
| "Ġ197 8", | |
| "Ġearth qu", | |
| "Ġsend ing", | |
| "Ġinit ial", | |
| "ĠÂ ¶", | |
| "tw o", | |
| "v est", | |
| "Ġs ly", | |
| "Ġne ut", | |
| "cl ass", | |
| "Ġput s", | |
| "Ġdes k", | |
| "Ġdist ingu", | |
| "Ġauthor ities", | |
| "Ġnucle ar", | |
| "Ġadop ted", | |
| "g ent", | |
| "h us", | |
| "w ich", | |
| "Ġp or", | |
| "en cies", | |
| "Ġl ung", | |
| "Ġmo s", | |
| "Ġar gu", | |
| "Ġcomm it", | |
| "Ġcour ts", | |
| "Ġcap e", | |
| "Ġinc ome", | |
| "Ġpap a", | |
| "Ġdiffic ulty", | |
| "Ġpu zz", | |
| "Ġwil son", | |
| "Ġapprox imately", | |
| "u ous", | |
| "Ġi ra", | |
| "Ġthe ater", | |
| "Ġm ath", | |
| "Ġse lect", | |
| "Ġab d", | |
| "Ġcon ver", | |
| "Ġgu ide", | |
| "Ġact ions", | |
| "Ġmiss ouri", | |
| "Ġass y", | |
| "Ġexper t", | |
| "Ġphil ipp", | |
| "rog en", | |
| "Ġrul ed", | |
| "Ġast ron", | |
| "Ġarchitect ure", | |
| "Ġsucceed ed", | |
| "Ġintellig ence", | |
| "h in", | |
| "p o", | |
| "t im", | |
| "Ġs ink", | |
| "Ġb ible", | |
| "Ġg az", | |
| "Ġbe ating", | |
| "ust ed", | |
| "Ġex ha", | |
| "Ġle on", | |
| "we ight", | |
| "Ġgu ar", | |
| "Ġed die", | |
| "Ġcur ious", | |
| "Ġ197 5", | |
| "Ġinc or", | |
| "Ġroad s", | |
| "Ġsuper ior", | |
| "Ġperm ission", | |
| "Ġvictim s", | |
| "Ġvictor ia", | |
| "Ġunus ual", | |
| "e ur", | |
| "Â °", | |
| "Ġ Ï", | |
| "he w", | |
| "nd e", | |
| "Ġh ong", | |
| "Ġh unt", | |
| "ut or", | |
| "Ġst amp", | |
| "Ġgo sh", | |
| "Ġnot able", | |
| "Ġsh h", | |
| "Ġsp o", | |
| "Ġcl ar", | |
| "Ġind ians", | |
| "Ġ198 3", | |
| "Ġpract ical", | |
| "Ġprison ers", | |
| "Ġbang l", | |
| "Ġcongrat ulations", | |
| "f ive", | |
| "h um", | |
| "Ġb one", | |
| "Ġc ord", | |
| "Ġy u", | |
| "Ġto ast", | |
| "ot y", | |
| "Ġre ject", | |
| "Ġse l", | |
| "os is", | |
| "the w", | |
| "Ġcont em", | |
| "Ġla unch", | |
| "Ġnat urally", | |
| "Ġvo ices", | |
| "rop ol", | |
| "Ġstep hen", | |
| "Ġinvest ment", | |
| "Ġcomb ined", | |
| "Ġneighbor hood", | |
| "Ġpregn ant", | |
| "y ard", | |
| "Ġ /", | |
| "Ġm mm", | |
| "Ġr aw", | |
| "Ġj ay", | |
| "Ġgo als", | |
| "Ġpre fect", | |
| "Ġcr ap", | |
| "Ġres cue", | |
| "Ġend ing", | |
| "Ġent rance", | |
| "Ġbar b", | |
| "Ġconf used", | |
| "Ġhor ror", | |
| "Ġdev ice", | |
| "Ġproper ties", | |
| "Ġphys ics", | |
| "Ġwat ers", | |
| "Ġol iver", | |
| "Ġsac red", | |
| "Ġreve aled", | |
| "Ġkore an", | |
| "Ġsurround ed", | |
| "Ġpil ot", | |
| "Ġliqu id", | |
| "Ġdram atic", | |
| "1 00", | |
| "f ire", | |
| "Ġw aves", | |
| "Ġre ward", | |
| "Ġco vers", | |
| "ens es", | |
| "og ether", | |
| "Ġreg ions", | |
| "Ġfriend ship", | |
| "Ġsepar ated", | |
| "Ġregard ed", | |
| "Ġexped ition", | |
| "Ġemm a", | |
| "b age", | |
| "c our", | |
| "w oman", | |
| "Ġl an", | |
| "Ġpar all", | |
| "Ġeng age", | |
| "ont o", | |
| "li fe", | |
| "Ġhold s", | |
| "Ġdrink s", | |
| "Ġmur dered", | |
| "Ġdev ices", | |
| "Ġcheck ed", | |
| "Ġ193 0", | |
| "look ing", | |
| "Ġjun ior", | |
| "quar ters", | |
| "Ġstu art", | |
| "Ġl ap", | |
| "ic y", | |
| "Ġre ign", | |
| "st ers", | |
| "Ġli ver", | |
| "Ġli ly", | |
| "Ġne p", | |
| "Ġmo de", | |
| "Ġtr ained", | |
| "Ġman s", | |
| "Ġlea f", | |
| "Ġass ume", | |
| "aw s", | |
| "Ġinterest s", | |
| "Ġinf ant", | |
| "Ġvis ited", | |
| "Ġocc as", | |
| "Ġbal ance", | |
| "Ġconserv ative", | |
| "Ġaltern ative", | |
| "Ġswed en", | |
| "Ġnathan iel", | |
| "2 6", | |
| "f our", | |
| "f ish", | |
| "Ġa id", | |
| "Ġp ushed", | |
| "Ġg ig", | |
| "ar ia", | |
| "Ġbe gg", | |
| "Ġre ar", | |
| "Ġsp ite", | |
| "if ying", | |
| "Ġbo ats", | |
| "Ġmar gin", | |
| "Ġdis ney", | |
| "Ġrem ove", | |
| "Ġhouse hold", | |
| "Ġbit s", | |
| "Ġ197 3", | |
| "Ġdistrict s", | |
| "Ġdefe at", | |
| "ο u", | |
| "Ġcapt ure", | |
| "Ġvehic le", | |
| "3 9", | |
| "r ist", | |
| "Ġs ou", | |
| "Ġc otton", | |
| "Ġm ig", | |
| "Ġno ble", | |
| "Ġch op", | |
| "Ġwant ing", | |
| "Ġgu ests", | |
| "Ġdri ven", | |
| "Ġclass ic", | |
| "Ġclot hing", | |
| "Ġmach ines", | |
| "Ġclaim ed", | |
| "h ist", | |
| "Ġd um", | |
| "Ġl am", | |
| "Ġl ane", | |
| "Ġg ained", | |
| "it able", | |
| "ot i", | |
| "Ġr ivers", | |
| "ens ions", | |
| "Ġrel ation", | |
| "Ġsk ills", | |
| "Ġlead s", | |
| "Ġ197 4", | |
| "Ġdou glas", | |
| "Ġmass ive", | |
| "Ġobject s", | |
| "Ġknock ed", | |
| "Ġdelic ious", | |
| "4 5", | |
| "Ġs oup", | |
| "Ġf oss", | |
| "Ġe ager", | |
| "Ġcl ause", | |
| "Ġshould ers", | |
| "Ġma iden", | |
| "Ġstud ying", | |
| "Ġperson ality", | |
| "Ġmind s", | |
| "Ġreturn ing", | |
| "Ġ196 9", | |
| "Ġopp osed", | |
| "Ġver t", | |
| "urs day", | |
| "Ġban ks", | |
| "Ġjump ed", | |
| "Ġstrug g", | |
| "Ġais ne", | |
| "Ġattorn ey", | |
| "c har", | |
| "i Äĩ", | |
| "s ch", | |
| "Ġd ale", | |
| "Ġp ump", | |
| "an cy", | |
| "Ġn aked", | |
| "Ġst im", | |
| "ir st", | |
| "Ġv iv", | |
| "ag ger", | |
| "Ġbet ray", | |
| "Ġrem aining", | |
| "Ġid eal", | |
| "pe red", | |
| "ik a", | |
| "Ġview s", | |
| "Ġphot ograph", | |
| "Ġsatisf ied", | |
| "Ġguar ant", | |
| "Ġkn ees", | |
| "Ġbr uce", | |
| "Ġsl ide", | |
| "Ġchar ged", | |
| "ib i", | |
| "Ġdep th", | |
| "Ġgre g", | |
| "Ġsit u", | |
| "Ġmusic ian", | |
| "19 5", | |
| "Ġsoon er", | |
| "Ġ194 0", | |
| "Ġcop s", | |
| "Ġsuff er", | |
| "Ġaffect ed", | |
| "Ġcorpor ation", | |
| "Ġdaw son", | |
| "Ġinhabit ants", | |
| "Ġstol en", | |
| "c ut", | |
| "l ord", | |
| "u a", | |
| "Ã £", | |
| "Ġb bc", | |
| "Ġth ursday", | |
| "Ġj ury", | |
| "Ġz oo", | |
| "Ġsur gery", | |
| "Ġescap ed", | |
| "3 7", | |
| "c alled", | |
| "Ġb ah", | |
| "it ure", | |
| "le ts", | |
| "Ġk an", | |
| "Ġall en", | |
| "Ġte nder", | |
| "Ġbo nd", | |
| "Ġour s", | |
| "Ġown ers", | |
| "Ġrel ief", | |
| "Ġbit ter", | |
| "Ġass ign", | |
| "Ġass ault", | |
| "ph ia", | |
| "Ġconf idence", | |
| "Ġ15 0", | |
| "Ġvide os", | |
| "Ġspirit ual", | |
| "Ġcolumb ia", | |
| "b its", | |
| "i ac", | |
| "Ġf are", | |
| "Ġl ately", | |
| "Ġn uts", | |
| "her s", | |
| "Ġv ul", | |
| "ie ur", | |
| "Ġpr ote", | |
| "Ġact ed", | |
| "Ġdis gust", | |
| "Ġmat thew", | |
| "Ġlist ed", | |
| "Ġ197 2", | |
| "Ġcut ting", | |
| "Ġest im", | |
| "ham ed", | |
| "Ġinde x", | |
| "Ġblock s", | |
| "Ġindivid uals", | |
| "Ġintell ect", | |
| "Ġstrug gle", | |
| "Ġadvent ure", | |
| "Ġinspect or", | |
| "3 2", | |
| "m al", | |
| "t v", | |
| "v ant", | |
| "Ġp ants", | |
| "Ġl amb", | |
| "om en", | |
| "Ġbe ars", | |
| "Ġis sued", | |
| "Ġv in", | |
| "Ġcon cl", | |
| "Ġdes erve", | |
| "Ġcap able", | |
| "Ġins ult", | |
| "Ġprov ides", | |
| "Ġconst it", | |
| "Ġ196 8", | |
| "Ġcat al", | |
| "Ġfig ured", | |
| "Ġda isy", | |
| "Ġbenef its", | |
| "Ġpunish ment", | |
| "intend o", | |
| "f in", | |
| "p ol", | |
| "à ¦", | |
| "er able", | |
| "Ġf ier", | |
| "Ġf uel", | |
| "or age", | |
| "ut ation", | |
| "ate ful", | |
| "end er", | |
| "Ġpo le", | |
| "Ġchild hood", | |
| "Ġsw all", | |
| "Ġste ven", | |
| "Ġim ages", | |
| "Ġengine er", | |
| "Ġwide ly", | |
| "Ġpossib ility", | |
| "Ġpir ates", | |
| "Ġscen es", | |
| "Ġdepress ion", | |
| "Ġheav ily", | |
| "m ail", | |
| "s er", | |
| "w ick", | |
| "Ġa ld", | |
| "er a", | |
| "Ġd al", | |
| "Ġl em", | |
| "ar n", | |
| "id ers", | |
| "Ġfor b", | |
| "ad or", | |
| "th ree", | |
| "Ġar c", | |
| "Ġpr ide", | |
| "Ġro ber", | |
| "ff in", | |
| "Ġstr ate", | |
| "Ġpol ish", | |
| "Ġjack et", | |
| "eng ers", | |
| "Ġcross ing", | |
| "Ġhop ed", | |
| "Ġdoll ar", | |
| "Ġgrant ed", | |
| "Ġmyster y", | |
| "Ġceremon y", | |
| "es ome", | |
| "Ġh its", | |
| "Ġj ur", | |
| "th ou", | |
| "Ġcl are", | |
| "ons ense", | |
| "Ġdel ivered", | |
| "Ġcop ies", | |
| "Ġnecess arily", | |
| "Ġinit ially", | |
| "Ġnether lands", | |
| "9 9", | |
| "b ird", | |
| "Ġb um", | |
| "Ġp ent", | |
| "at i", | |
| "et ime", | |
| "Ġcon clud", | |
| "ap ore", | |
| "Ġnow here", | |
| "Ġlet ting", | |
| "Ġmean while", | |
| "Ġmom ents", | |
| "Ġgre et", | |
| "Ġbar on", | |
| "Ġintern al", | |
| "Ġvers ions", | |
| "Ġox y", | |
| "Ġredu ced", | |
| "Ġemplo ye", | |
| "Ġtoile t", | |
| "Ġstrate gy", | |
| "b b", | |
| "Ġt u", | |
| "Ġm it", | |
| "Ġd ur", | |
| "Ġin fect", | |
| "Ġn i", | |
| "ot te", | |
| "Ġan ch", | |
| "Ġde bt", | |
| "Ġcomp ar", | |
| "ord er", | |
| "Ġmu hammad", | |
| "Ġrec on", | |
| "Ġcons ists", | |
| "iam i", | |
| "Ġorgan ized", | |
| "Ġalbum s", | |
| "Ġver te", | |
| "Ġbreat hing", | |
| "cher s", | |
| "Ġbran ches", | |
| "Ġaccom pl", | |
| "z o", | |
| "Ġp as", | |
| "is c", | |
| "Ġhe s", | |
| "Ġal bert", | |
| "Ġv ast", | |
| "pect ive", | |
| "Ġrepresent atives", | |
| "Ġdiscuss ion", | |
| "Ġgradu ated", | |
| "sm ith", | |
| "Ġsust ain", | |
| "Ġinsp ired", | |
| "Ġcem eter", | |
| "Ġs ought", | |
| "Ġb ou", | |
| "Ġp ip", | |
| "Ġp iss", | |
| "Ġn intendo", | |
| "and ie", | |
| "Ġsh iv", | |
| "Ġge ography", | |
| "Ġext ended", | |
| "Ġ194 5", | |
| "Ġprofess ion", | |
| "Ġquiet ly", | |
| "j ud", | |
| "Ġc atherine", | |
| "Ġm amm", | |
| "Ġf el", | |
| "Ġbe nd", | |
| "own ed", | |
| "Ġwhere ver", | |
| "Ġsl ave", | |
| "Ġrec ru", | |
| "Ġsim pl", | |
| "Ġess entially", | |
| "Ġmere ly", | |
| "Ġtai wan", | |
| "p ass", | |
| "Ġin cl", | |
| "as ka", | |
| "al o", | |
| "Ġj azz", | |
| "ke l", | |
| "ress ed", | |
| "Ġimp lement", | |
| "Ġ3 00", | |
| "Ġstr ateg", | |
| "ah o", | |
| "Ġmet ers", | |
| "aught ers", | |
| "Ġsing apore", | |
| "ell a", | |
| "Ġdri ves", | |
| "Ġequ ation", | |
| "Ġbed room", | |
| "Ġexpl ore", | |
| "Ġcontro lled", | |
| "Ġcat tle", | |
| "Ġelect ions", | |
| "Ġarg ent", | |
| "Ġpoll ution", | |
| "Ġitem s", | |
| "Ġaven ue", | |
| "Ġarrang ed", | |
| "adel phia", | |
| "b ach", | |
| "f ly", | |
| "k h", | |
| "t ake", | |
| "Ġt ank", | |
| "Ġy um", | |
| "ow ing", | |
| "Ġth read", | |
| "Ġk ha", | |
| "em p", | |
| "Ġle o", | |
| "Ġsc and", | |
| "Ġhead quarters", | |
| "Ġent ry", | |
| "Ġcommun ist", | |
| "cer tain", | |
| "Ġbas se", | |
| "Ġans wers", | |
| "Ġ196 3", | |
| "Ġtele phone", | |
| "Ġmax imum", | |
| "Ġpha se", | |
| "norm andie", | |
| "Ġm ouse", | |
| "Ġr ope", | |
| "Ġan no", | |
| "Ġso lo", | |
| "Ġlo an", | |
| "Ġag ents", | |
| "Ġbl ast", | |
| "Ġcont ext", | |
| "Ġ3 7", | |
| "Ġacc ur", | |
| "Ġeight een", | |
| "ii i", | |
| "Ġrev ol", | |
| "Ġrepe at", | |
| "Ġdemon str", | |
| "Ġmerchan t", | |
| "3 1", | |
| "v ior", | |
| "Ġt ues", | |
| "Ġm iami", | |
| "us a", | |
| "un a", | |
| "Ġun com", | |
| "Ġbo ots", | |
| "Ġfo nd", | |
| "ib ly", | |
| "âĻ ª", | |
| "Ġconf ess", | |
| "Ġmur de", | |
| "Ġphot os", | |
| "Ġchampionship s", | |
| "Ġartic les", | |
| "Ġdun no", | |
| "Ġelectric ity", | |
| "Ġinterp ret", | |
| "l an", | |
| "Ġo tt", | |
| "Ġb ike", | |
| "Ġn onsense", | |
| "ri x", | |
| "Ġfr ag", | |
| "Ġco d", | |
| "Ġco ordin", | |
| "od ec", | |
| "Ġpre cise", | |
| "Ġke vin", | |
| "Ġreg ister", | |
| "Ġill ness", | |
| "Ġmer cy", | |
| "Ġclub s", | |
| "Ġkiss ed", | |
| "Ġaff air", | |
| "Ġepis odes", | |
| "Ġdig ital", | |
| "Ġsac rif", | |
| "Ġbeg un", | |
| "oy d", | |
| "Ġemot ions", | |
| "Ġtues day", | |
| "r an", | |
| "Ġe ag", | |
| "Ġfor d", | |
| "Ġas sh", | |
| "Ġ( _", | |
| "Ġus eless", | |
| "if ts", | |
| "Ġwhere as", | |
| "Ġpre cious", | |
| "Ġke lly", | |
| "Ġform ation", | |
| "Ġlist ened", | |
| "Ġalong side", | |
| "Ġaust ria", | |
| "Ġvill ages", | |
| "ien cy", | |
| "nes day", | |
| "Ġemot ional", | |
| "ó n", | |
| "Ġcompos er", | |
| "Ġdip lom", | |
| "Ġcolum n", | |
| "Ġaband oned", | |
| "Ġgoo gle", | |
| "Ġcemeter y", | |
| "Ġo ption", | |
| "Ġc in", | |
| "Ġy ards", | |
| "Ġto ol", | |
| "Ġg ordon", | |
| "as tern", | |
| "Ġst ones", | |
| "Ġli z", | |
| "Ġne ur", | |
| "Ġpr on", | |
| "av an", | |
| "Ġsm iled", | |
| "Ġwar ning", | |
| "Ġmon arch", | |
| "Ġland sc", | |
| "Ġclass ical", | |
| "Ġaw esome", | |
| "Ġadv oc", | |
| "Ġ194 7", | |
| "Ġsail ed", | |
| "Ġbeha vior", | |
| "Ġvot es", | |
| "Ġwick ed", | |
| "Ġexplan ation", | |
| "m el", | |
| "p ent", | |
| "Å Ł", | |
| "Ġc reek", | |
| "Ġd oo", | |
| "Ġg ates", | |
| "Ġh ut", | |
| "ul ed", | |
| "Ġer ror", | |
| "Ġsm iling", | |
| "Ġform at", | |
| "Ġreg iment", | |
| "Ġpers u", | |
| "la us", | |
| "Ġtor onto", | |
| "Ġredu ce", | |
| "Ġpir ate", | |
| "Ġalt ogether", | |
| "Ġparall el", | |
| "u its", | |
| "Â ´", | |
| "ã ĥ", | |
| "Ġf ulf", | |
| "Ġd ug", | |
| "Ġd aughters", | |
| "Ġy or", | |
| "Ġg ross", | |
| "Ġr ag", | |
| "st ate", | |
| "Ġte ar", | |
| "Ġch oo", | |
| "Ġpo nd", | |
| "int on", | |
| "Ġhead ed", | |
| "Ġmet ropol", | |
| "Ġsit es", | |
| "Ġtri es", | |
| "Ġ197 7", | |
| "Ġpresent ly", | |
| "Ġadm itted", | |
| "Ġwed nesday", | |
| "Ġcateg ory", | |
| "r in", | |
| "Ġt um", | |
| "Ġt ack", | |
| "Ġto w", | |
| "Ġin ch", | |
| "Ġin sect", | |
| "it ched", | |
| "us ive", | |
| "Ġst ores", | |
| "Ġv on", | |
| "ile y", | |
| "Ġrec y", | |
| "Ġfin n", | |
| "Ġsw ift", | |
| "Ġinv asion", | |
| "Ġmain e", | |
| "Ġdef ence", | |
| "Ġattack s", | |
| "Ġtest ing", | |
| "Ġamong st", | |
| "Ġring ing", | |
| "Ġsevent h", | |
| "Ġsplend id", | |
| "Ġappropri ate", | |
| "Ġgat hered", | |
| "t es", | |
| "v ard", | |
| "Ġt ab", | |
| "Ġd na", | |
| "Ġ19 20", | |
| "Ġreg ist", | |
| "Ġsur ve", | |
| "Ġcoll abor", | |
| "Ġadd ing", | |
| "Ġste pped", | |
| "Ġmeet ings", | |
| "Ġunivers ities", | |
| "Ġdistrib ution", | |
| "Ġcandid ate", | |
| "Ġilleg al", | |
| "l ers", | |
| "r ons", | |
| "s ur", | |
| "Ã ±", | |
| "Ġa u", | |
| "Ġa le", | |
| "Ġp itt", | |
| "Ġp iz", | |
| "Ġdo ve", | |
| "Ġop ens", | |
| "Ġele v", | |
| "Ġserv ant", | |
| "Ġprom oted", | |
| "Ġpos itions", | |
| "Ġ194 4", | |
| "Ġmor gan", | |
| "Ġur ban", | |
| "Ġviol ent", | |
| "Ġbor ough", | |
| "Ġpic ard", | |
| "Ġrhy th", | |
| "Ġvalu able", | |
| "Ġoxy gen", | |
| "o ch", | |
| "z ing", | |
| "Ġb c", | |
| "Ġf aced", | |
| "Ġp ipe", | |
| "is is", | |
| "Ġst airs", | |
| "Ġj ung", | |
| "Ġne at", | |
| "Ġal f", | |
| "Ġsp ar", | |
| "Ġlo ver", | |
| "Ġle w", | |
| "Ġco le", | |
| "Ġmar s", | |
| "av a", | |
| "ang ers", | |
| "Ġthr one", | |
| "Ġche ss", | |
| "Ġfour teen", | |
| "Ġstop s", | |
| "oun ced", | |
| "Ġpur su", | |
| "Ġpick ing", | |
| "Ġexpect ing", | |
| "Ġcro at", | |
| "Ġfrequ ently", | |
| "Ġnav al", | |
| "Ġcapac ity", | |
| "c op", | |
| "p re", | |
| "v id", | |
| "Ġc ave", | |
| "Ġf iction", | |
| "as p", | |
| "Ġwas hed", | |
| "Ġsp oon", | |
| "av ing", | |
| "Ġind ones", | |
| "Ġ3 4", | |
| "Ġid aho", | |
| "Ġsub s", | |
| "cre te", | |
| "Ġ196 7", | |
| "Ġproject s", | |
| "Ġsubject s", | |
| "ĠÂ £", | |
| "Ġprovin ces", | |
| "3 3", | |
| "h s", | |
| "v or", | |
| "Ġs i", | |
| "Ġf id", | |
| "Ġk y", | |
| "ist ol", | |
| "Ġch in", | |
| "Ġlo ving", | |
| "ia o", | |
| "Ġsc ored", | |
| "Ġinf in", | |
| "Ġlarge ly", | |
| "Ġexper iences", | |
| "Ġphil adelphia", | |
| "Ġhen ce", | |
| "Ġexist ing", | |
| "Ġident ified", | |
| "Ġdoc uments", | |
| "at han", | |
| "Ġr it", | |
| "Ġas hamed", | |
| "Ġshe et", | |
| "Ġpe ar", | |
| "Ġgr ateful", | |
| "Ġbo ld", | |
| "Ġpart ly", | |
| "Ġres erve", | |
| "Ġposs ession", | |
| "Ġ196 5", | |
| "Ġchur ches", | |
| "Ġabs or", | |
| "Ġtechn ical", | |
| "Ġclaim s", | |
| "Ġintrodu ce", | |
| "Ġprincip le", | |
| "al ing", | |
| "th y", | |
| "Ġsc rap", | |
| "Ġstand ards", | |
| "ott ed", | |
| "Ġcor ps", | |
| "Ġoper ated", | |
| "Ġmess ages", | |
| "Ġmod els", | |
| "Ġlat est", | |
| "Ġliter ary", | |
| "Ġrac ing", | |
| "Ġvac c", | |
| "Ġadult s", | |
| "Ġsmo oth", | |
| "Ġelephan t", | |
| "i at", | |
| "Ġa irl", | |
| "Ġd ating", | |
| "Ġand y", | |
| "at ically", | |
| "Ġth ief", | |
| "Ġr us", | |
| "ge l", | |
| "ul s", | |
| "Ġen orm", | |
| "Ġfin ance", | |
| "Ġset s", | |
| "ell ed", | |
| "Ġfre ud", | |
| "go ing", | |
| "Ġrepl ace", | |
| "Ġresour ce", | |
| "Ġthor ough", | |
| "Ġconvin ced", | |
| "Ġexperien ced", | |
| "c ase", | |
| "e qu", | |
| "g on", | |
| "Ġa z", | |
| "Ġy an", | |
| "Ġe fficient", | |
| "Ġso ap", | |
| "Ġtr ace", | |
| "Ġbr a", | |
| "Ġway ne", | |
| "Ġrep utation", | |
| "Ġbeing s", | |
| "Ġdiffe rences", | |
| "Ġless on", | |
| "Ġpull ing", | |
| "Ġthreat ened", | |
| "Ġopt im", | |
| "Ġanth ony", | |
| "c ia", | |
| "f it", | |
| "m aster", | |
| "u i", | |
| "Ġt ube", | |
| "Ġm d", | |
| "Ġd io", | |
| "Ġl uther", | |
| "Ġr illa", | |
| "Ġtr ump", | |
| "Ġcl in", | |
| "Ġgen ius", | |
| "Ġpat ri", | |
| "Ġdiv ine", | |
| "Ġpurp oses", | |
| "Ġnewsp apers", | |
| "Ġincred ible", | |
| "b ab", | |
| "v o", | |
| "Ġt s", | |
| "Ġw reck", | |
| "Ġb ry", | |
| "Ġb av", | |
| "Ġm all", | |
| "Ġd ial", | |
| "or ia", | |
| "Ġg est", | |
| "Ġin g", | |
| "Ġin ner", | |
| "Ġse ats", | |
| "ort ed", | |
| "Ġcl ick", | |
| "ci ence", | |
| "vel ope", | |
| "Ġform al", | |
| "Ġmight y", | |
| "Ġbar n", | |
| "Ġhope fully", | |
| "Ġcook ie", | |
| "Ġclim b", | |
| "Ġlic ense", | |
| "Ġexer cise", | |
| "c ur", | |
| "m outh", | |
| "Ġs na", | |
| "Ġg ear", | |
| "it led", | |
| "ic ia", | |
| "ea u", | |
| "Ġcom ic", | |
| "el ine", | |
| "hed ral", | |
| "iss a", | |
| "Ġbel t", | |
| "Ġstr ict", | |
| "Ġinter act", | |
| "Ġland ed", | |
| "Ġhat ed", | |
| "Ġ194 1", | |
| "Ġallow ing", | |
| "Ġsupport ing", | |
| "Ġnorm an", | |
| "Ġru in", | |
| "Ġhun ter", | |
| "Ġmexic an", | |
| "Ġencour age", | |
| "Ġira q", | |
| "s l", | |
| "Ġb ure", | |
| "Ġd ull", | |
| "ing ton", | |
| "Ġwor n", | |
| "if er", | |
| "Ġsl a", | |
| "Ġchar ges", | |
| "Ġmed ium", | |
| "Ġprob ability", | |
| "Ġcamp bell", | |
| "Ġphil ip", | |
| "Ġroman ia", | |
| "Ġcollect ed", | |
| "ky o", | |
| "Ġbreat he", | |
| "Ġlis a", | |
| "Ġdesper ate", | |
| "Ġdedic ated", | |
| "er ted", | |
| "Ġy ield", | |
| "Ġj ar", | |
| "ust ration", | |
| "Ġus er", | |
| "Ġun conscious", | |
| "Ġcont ained", | |
| "Ġhar rison", | |
| "gin es", | |
| "Ġrec all", | |
| "Ġsy d", | |
| "Ġ4 8", | |
| "Ġext ent", | |
| "Ġra j", | |
| "Ġgrand father", | |
| "Ġtest s", | |
| "Ġspir its", | |
| "Ġsand y", | |
| "Ġmyster ious", | |
| "Ġpoet ry", | |
| "Ġscream ing", | |
| "Ġsly ne", | |
| "b et", | |
| "Ġs ung", | |
| "Ġp unch", | |
| "Ġg le", | |
| "Ġn ay", | |
| "Ġbe es", | |
| "Ġst raw", | |
| "Ġsp y", | |
| "Ġun happy", | |
| "Ġle an", | |
| "Ġgu ards", | |
| "Ġma h", | |
| "sh it", | |
| "Ġev ident", | |
| "Ġinst inct", | |
| "Ġob lig", | |
| "Ġrest rict", | |
| "Ġext end", | |
| "Ġaw ake", | |
| "Ġdeep ly", | |
| "Ġlu ke", | |
| "a e", | |
| "Ġa er", | |
| "Ġthe rap", | |
| "Ġc d", | |
| "Ġd ign", | |
| "Ġp hen", | |
| "an ium", | |
| "th r", | |
| "Ġen velope", | |
| "Ġdown stairs", | |
| "Ġgl ory", | |
| "Ġinst itution", | |
| "Ġret reat", | |
| "Ġca using", | |
| "Ġequ ival", | |
| "Ġdevelop ing", | |
| "Ġappro ved", | |
| "Ġang le", | |
| "Ġjer ry", | |
| "Ġappoint ment", | |
| "odec ahedron", | |
| "Ġpicard ie", | |
| ". &", | |
| "g s", | |
| "Ġs ie", | |
| "Ġm ack", | |
| "Ġf aint", | |
| "Ġwh oops", | |
| "Ġas ks", | |
| "Ġbr ut", | |
| "Ġfe ver", | |
| "Ġatt ached", | |
| "Ġsix teen", | |
| "Ġline ar", | |
| "Ġconf ident", | |
| "Ġclean ing", | |
| "Ġdut ies", | |
| "Ġdiag n", | |
| "Ġperman ent", | |
| "Ġmons ieur", | |
| "Ġsche me", | |
| "k ind", | |
| "Ġb ars", | |
| "Ġp oo", | |
| "Ġe re", | |
| "Ġst able", | |
| "Ġse ar", | |
| "Ġtr ap", | |
| "Ġworld wide", | |
| "Ġpass es", | |
| "Ġhur ts", | |
| "Ġsweet heart", | |
| "Ġpot ato", | |
| "Ġcomput ers", | |
| "Ġlu x", | |
| "Ġprincip les", | |
| "Ġnick n", | |
| "Ġmemor ies", | |
| "foot note", | |
| "Ġcabin et", | |
| "Ġexhib ition", | |
| "Ġadministr ative", | |
| "9 5", | |
| "s k", | |
| "s w", | |
| "Ġy ug", | |
| "an ne", | |
| "en ess", | |
| "Ġcom r", | |
| "ag ne", | |
| "Ġcl ark", | |
| "ix on", | |
| "less ly", | |
| "com ing", | |
| "Ġstrong ly", | |
| "Ġrob inson", | |
| "Ġneg oti", | |
| "Ġdepend ing", | |
| "bour ne", | |
| "Ġliber ty", | |
| "Ġholly wood", | |
| "w ind", | |
| "Ġi p", | |
| "Ġb om", | |
| "Ġf ake", | |
| "Ġp int", | |
| "Ġst y", | |
| "Ġst ern", | |
| "Ġint ent", | |
| "Ġsc out", | |
| "Ġnew ly", | |
| "Ġcr imes", | |
| "Ġke en", | |
| "Ġexp lo", | |
| "Ġshow er", | |
| "Ġpass enger", | |
| "Ġair pl", | |
| "Ġgrand pa", | |
| "Ġstar red", | |
| "Ġbeat en", | |
| "Ġgrad ually", | |
| "Ġbob by", | |
| "Ġregard ing", | |
| "Ġprint ed", | |
| "c ri", | |
| "m i", | |
| "p ers", | |
| "Ã §", | |
| "in ter", | |
| "Ġf c", | |
| "Ġbe e", | |
| "Ġre aching", | |
| "Ġr idge", | |
| "st ic", | |
| "il ton", | |
| "Ġsh ield", | |
| "ol i", | |
| "Ġor th", | |
| "ud es", | |
| "Ġpe asant", | |
| "Ġgr im", | |
| "Ġcr isis", | |
| "Ġfound ing", | |
| "Ġsl ipped", | |
| "Ġhead ing", | |
| "Ġob st", | |
| "Ġinc om", | |
| "Ġdef ined", | |
| "Ġport ion", | |
| "Ġru ined", | |
| "Ġpriv ile", | |
| "Ġsail ing", | |
| "Ġdefin ition", | |
| "Ġtick ets", | |
| "Ġchem istry", | |
| "Ġrapid ly", | |
| "Ġconfir med", | |
| "c ript", | |
| "f ound", | |
| "g han", | |
| "l ines", | |
| "l rb", | |
| "o ard", | |
| "p ool", | |
| "Ġs ig", | |
| "Ġd ates", | |
| "Ġy ay", | |
| "Ġwh it", | |
| "Ġv it", | |
| "os lav", | |
| "ber ry", | |
| "ag ers", | |
| "Ġpe e", | |
| "ord inary", | |
| "ful ness", | |
| "Ġsl ip", | |
| "Ġel imin", | |
| "Ġdist ant", | |
| "Ġinv ented", | |
| "Ġunivers al", | |
| "Ġdiv ide", | |
| "Ġjud y", | |
| "Ġeduc ational", | |
| "Ġpan ama", | |
| "Ġlu cy", | |
| "Ġforest s", | |
| "Ġfund ament", | |
| "Ġchristian ity", | |
| "Ġdise ases", | |
| "Ġinj ured", | |
| "Ġanal y", | |
| "Ġolymp ic", | |
| "Ġemot ion", | |
| "Ġdyn am", | |
| "Ġoccasion ally", | |
| "Ġwrit ers", | |
| "r rb", | |
| "s iden", | |
| "t ure", | |
| "re m", | |
| "re al", | |
| "Ġg ap", | |
| "Ġse lection", | |
| "op her", | |
| "... !", | |
| "Ġint ense", | |
| "Ġmar ie", | |
| "ne ath", | |
| "te enth", | |
| "Ġgl en", | |
| "olog ists", | |
| "Ġchrist ians", | |
| "ik i", | |
| "Ġconst antly", | |
| "nes see", | |
| "Ġwound s", | |
| "Ġpray er", | |
| "Ġble w", | |
| "Ġoccup ied", | |
| "Ġsem i", | |
| "Ġphr ase", | |
| "siden ote", | |
| "Ġb in", | |
| "Ġm ou", | |
| "Ġr ip", | |
| "Ġcon crete", | |
| "Ġup d", | |
| "Ġbr u", | |
| "Ġoff ering", | |
| "Ġad j", | |
| "Ġact ors", | |
| "Ġdis ag", | |
| "Ġcar riage", | |
| "cl ing", | |
| "man n", | |
| "Ġwo ndered", | |
| "Ġorgan izations", | |
| "Ġ195 4", | |
| "Ġwood en", | |
| "Ġrepresent ative", | |
| "Ġpolic ies", | |
| "Ġtax es", | |
| "Ġvisit ors", | |
| "Ġvac ation", | |
| "Ġmunicip al", | |
| "Ġplatform s", | |
| "Ġwis hes", | |
| "Ġdeb ate", | |
| "Ġbub ble", | |
| "Ġren amed", | |
| "Ġthir teen", | |
| "Ġves sels", | |
| "keep er", | |
| "4 8", | |
| "e enth", | |
| "f uck", | |
| "or ation", | |
| "Ġl ind", | |
| "ac les", | |
| "Ġse al", | |
| "Ġmo z", | |
| "Ġbr ush", | |
| "Ġen gines", | |
| "Ġla x", | |
| "Ġ3 8", | |
| "Ġgen us", | |
| "Ġyoung est", | |
| "cc a", | |
| "Ġsho e", | |
| "Ġ196 6", | |
| "Ġbill s", | |
| "Ġthrow ing", | |
| "Ġjew s", | |
| "Ġopportun ities", | |
| "Ġenter pr", | |
| "Ġacqu ired", | |
| "Ġjournal ist", | |
| "Ġrelative ly", | |
| "Ġearthqu ake", | |
| "b by", | |
| "d ers", | |
| "d iv", | |
| "t ion", | |
| "or ig", | |
| "it ter", | |
| "Ġr if", | |
| "Ġk aren", | |
| "Ġu gh", | |
| "ro ll", | |
| "Ġsc iences", | |
| "Ġad apt", | |
| "Ġjo han", | |
| "Ġfound er", | |
| "Ġpass engers", | |
| "Ġmove ments", | |
| "Ġemp has", | |
| "Ġtreat y", | |
| "Ġdin os", | |
| "ida e", | |
| "Ġoppos ition", | |
| "Ġlift ed", | |
| "Ġspr ings", | |
| "Ġsamp le", | |
| "Ġsyd ney", | |
| "l ad", | |
| "m ission", | |
| "w ear", | |
| "Ġw ins", | |
| "or ous", | |
| "Ġto ler", | |
| "Ġl oo", | |
| "Ġg um", | |
| "is en", | |
| "Ġr ival", | |
| "Ġse ized", | |
| "Ġcon ven", | |
| "Ġher s", | |
| "el a", | |
| "Ġbr us", | |
| "ag a", | |
| "ag u", | |
| "Ġfe e", | |
| "Ġwr ites", | |
| "be h", | |
| "Ġgreat ly", | |
| "sh ot", | |
| "Ġra ven", | |
| "Ġten nessee", | |
| "cha e", | |
| "Ġinvol ve", | |
| "Ġnort heast", | |
| "Ġexpress ed", | |
| "Ġprim arily", | |
| "Ġspecific ally", | |
| "m ill", | |
| "z i", | |
| "Ġa ck", | |
| "Ġo sc", | |
| "Ġy oon", | |
| "at ures", | |
| "ct ic", | |
| "Ġal gor", | |
| "Ġab oard", | |
| "ol f", | |
| "Ġpro port", | |
| "Ġar gue", | |
| "Ġunder neath", | |
| "ah mad", | |
| "Ġsor row", | |
| "de f", | |
| "Ġserv ants", | |
| "Ġprof it", | |
| "Ġmid night", | |
| "Ġanim ated", | |
| "Ġconcer ns", | |
| "Ġarri ve", | |
| "Ġclos ing", | |
| "Ġroll o", | |
| "Ġsevent een", | |
| "Ġrough ly", | |
| "Ġinstr uments", | |
| "Ġbub bles", | |
| "Ġapolog ize", | |
| "Ġgrav ity", | |
| "4 7", | |
| "d og", | |
| "g od", | |
| "Ġs ke", | |
| "on ly", | |
| "Ġd ing", | |
| "Ġk laus", | |
| "Ġwhe els", | |
| "Ġall ies", | |
| "Ġho ll", | |
| "Ġrem ote", | |
| "Ġ3 3", | |
| "Ġmon key", | |
| "Ġev al", | |
| "Ġfact s", | |
| "Ġland ing", | |
| "Ġ195 6", | |
| "Ġsout heast", | |
| "Ġhol es", | |
| "Ġcell s", | |
| "Ġextra ordinary", | |
| "Ġcelebr ated", | |
| "Ġfran z", | |
| "Ġgradu ate", | |
| "Ġcustom ers", | |
| "Ġglo be", | |
| "Ġelectron ic", | |
| "Ġalgor ith", | |
| "i ven", | |
| "t ic", | |
| "Ġd ash", | |
| "Ġp up", | |
| "Ġto kyo", | |
| "Ġn ed", | |
| "Ġwhe at", | |
| "Ġv ain", | |
| "Ġtr aged", | |
| "Ġsp ark", | |
| "Ġar men", | |
| "Ġer r", | |
| "Ġpre ced", | |
| "Ġla ure", | |
| "ens ity", | |
| "Ġrep ly", | |
| "Ġhar mon", | |
| "Ġgl ance", | |
| "Ġdeath s", | |
| "Ġext ensive", | |
| "Ġ7 5", | |
| "Ġinc hes", | |
| "Ġcreat ures", | |
| "Ġcoun sel", | |
| "Ġdest ruction", | |
| "Ġcirc uit", | |
| "Ġtyp ically", | |
| "Ġfaith ful", | |
| "Ġwhis pered", | |
| "Ġfro zen", | |
| "Ġpow der", | |
| "Ġmoo re", | |
| "e very", | |
| "n or", | |
| "p ow", | |
| "p res", | |
| "u ge", | |
| "á ½", | |
| "Ġt iss", | |
| "Ġm am", | |
| "Ġn y", | |
| "om ed", | |
| "ic ians", | |
| "st op", | |
| "Ġal arm", | |
| "Ġus ers", | |
| "Ġcl oth", | |
| "so ft", | |
| "Ġear liest", | |
| "Ġlast ed", | |
| "Ġacc used", | |
| "Ġconst ructed", | |
| "Ġrom ance", | |
| "ipp er", | |
| "Ġarri val", | |
| "Ġrecogn ition", | |
| "Ġsurv ived", | |
| "Ġbeg ged", | |
| "b us", | |
| "r idge", | |
| "in ations", | |
| "Ġf etch", | |
| "Ġp y", | |
| "Ġin her", | |
| "Ġwh oo", | |
| "ul ating", | |
| "Ġsh ining", | |
| "Ġab st", | |
| "Ġam anda", | |
| "Ġcl own", | |
| "Ġro lled", | |
| "Ġcount ing", | |
| "Ġwar ri", | |
| "Ġwa x", | |
| "io let", | |
| "Ġass ass", | |
| "Ġmic he", | |
| "Ġpen ny", | |
| "anc ing", | |
| "Ġcompet e", | |
| "Ġexcept ion", | |
| "Ġfrank lin", | |
| "Ġhost ed", | |
| "Ġterri f", | |
| "Ġfac ulty", | |
| "Ġneare r", | |
| "Ġdow nt", | |
| "Ġprefect ure", | |
| "p her", | |
| "on ne", | |
| "Ġp ushing", | |
| "Ġr ust", | |
| "se a", | |
| "Ġall iance", | |
| "Ġmo lly", | |
| "ea ble", | |
| "Ġv ig", | |
| "Ġtr unk", | |
| "ab el", | |
| "Ġpl um", | |
| "Ġpl ates", | |
| "Ġpe as", | |
| "Ġint ention", | |
| "Ġsc ary", | |
| "Ġcha nd", | |
| "Ġcr ay", | |
| "ks hire", | |
| "Ġsy nt", | |
| "Ġkind a", | |
| "Ġprodu cing", | |
| "Ġ196 2", | |
| "Ġcreat ive", | |
| "Ġstar ring", | |
| "Ġhit ler", | |
| "Ġcamp us", | |
| "Ġreason able", | |
| "Ġaust en", | |
| "Ġprison er", | |
| "Ġbag s", | |
| "Ġident ify", | |
| "Ġconsider able", | |
| "Ġofficial s", | |
| "laugh ing", | |
| "Ġeth nic", | |
| "Ġtempor ary", | |
| "7 5", | |
| "i y", | |
| "n ings", | |
| "o es", | |
| "o is", | |
| "u ate", | |
| "in ction", | |
| "Ġk ang", | |
| "Ġst ew", | |
| "Ġdo ck", | |
| "Ġse as", | |
| "Ġal ien", | |
| "em a", | |
| "the less", | |
| "Ġob tained", | |
| "Ġelse where", | |
| "Ġtri angle", | |
| "Ġmer ged", | |
| "Ġvis ual", | |
| "Ġ194 8", | |
| "Ġbor ing", | |
| "Ġimmedi ate", | |
| "Ġexec ution", | |
| "Ġrelationship s", | |
| "Ġbac ter", | |
| "Ġprotest ant", | |
| "Ġmanufact ure" | |
| ] | |
| } | |
| } |