gpt-token-utils
Version:
Isomorphic utilities for GPT-3 tokenization and prompt building.
4,156 lines • 1.11 MB
JavaScript
/**
* @copyright Sister Software. All rights reserved.
* @author Teffen Ellis, et al.
* @license
* See LICENSE file in the project root for full license information.
*/
/**
* The default encoder keys defined for GPT-3.
*
* Pairs are described as a prefix and a suffix.
* @ignore
* @internal
*/
export const DEFAULT_ENCODER_KEYS = [
'0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'10',
'11',
'12',
'13',
'14',
'15',
'16',
'17',
'18',
'19',
'20',
'21',
'22',
'23',
'24',
'25',
'26',
'27',
'28',
'29',
'30',
'31',
'32',
'33',
'34',
'35',
'36',
'37',
'38',
'39',
'40',
'41',
'42',
'43',
'44',
'45',
'46',
'47',
'48',
'49',
'50',
'51',
'52',
'53',
'54',
'55',
'56',
'57',
'58',
'59',
'60',
'61',
'62',
'63',
'64',
'65',
'66',
'67',
'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',
'163',
'164',
'165',
'166',
'167',
'168',
'169',
'170',
'171',
'172',
'173',
'174',
'175',
'176',
'177',
'178',
'179',
'180',
'181',
'182',
'183',
'184',
'185',
'186',
'187',
'188',
'189',
'190',
'191',
'192',
'193',
'194',
'195',
'196',
'197',
'198',
'199',
'200',
'201',
'202',
'203',
'204',
'205',
'206',
'207',
'208',
'209',
'210',
'211',
'212',
'213',
'214',
'215',
'216',
'217',
'218',
'219',
'220',
'221',
'222',
'223',
'224',
'225',
'226',
'227',
'228',
'229',
'230',
'231',
'232',
'233',
'234',
'235',
'236',
'237',
'238',
'239',
'240',
'241',
'242',
'243',
'244',
'245',
'246',
'247',
'248',
'249',
'250',
'251',
'252',
'253',
'254',
'255',
'256',
'257',
'258',
'259',
'260',
'261',
'262',
'263',
'264',
'265',
'266',
'267',
'268',
'269',
'270',
'271',
'272',
'273',
'274',
'275',
'276',
'277',
'278',
'279',
'280',
'281',
'282',
'283',
'284',
'285',
'286',
'287',
'288',
'289',
'290',
'291',
'292',
'293',
'294',
'295',
'296',
'297',
'298',
'299',
'300',
'301',
'302',
'303',
'304',
'305',
'306',
'307',
'308',
'309',
'310',
'311',
'312',
'313',
'314',
'315',
'316',
'317',
'318',
'319',
'320',
'321',
'322',
'323',
'324',
'325',
'326',
'327',
'328',
'329',
'330',
'331',
'332',
'333',
'334',
'335',
'336',
'337',
'338',
'339',
'340',
'341',
'342',
'343',
'344',
'345',
'346',
'347',
'348',
'349',
'350',
'351',
'352',
'353',
'354',
'355',
'356',
'357',
'358',
'359',
'360',
'361',
'362',
'363',
'364',
'365',
'366',
'367',
'368',
'369',
'370',
'371',
'372',
'373',
'374',
'375',
'376',
'377',
'378',
'379',
'380',
'381',
'382',
'383',
'384',
'385',
'386',
'387',
'388',
'389',
'390',
'391',
'392',
'393',
'394',
'395',
'396',
'397',
'398',
'399',
'400',
'401',
'402',
'403',
'404',
'405',
'406',
'407',
'408',
'409',
'410',
'411',
'412',
'413',
'414',
'415',
'416',
'417',
'418',
'419',
'420',
'421',
'422',
'423',
'424',
'425',
'426',
'427',
'428',
'429',
'430',
'431',
'432',
'433',
'434',
'435',
'436',
'437',
'438',
'439',
'440',
'441',
'442',
'443',
'444',
'445',
'446',
'447',
'448',
'449',
'450',
'451',
'452',
'453',
'454',
'455',
'456',
'457',
'458',
'459',
'460',
'461',
'462',
'463',
'464',
'465',
'466',
'467',
'468',
'469',
'470',
'471',
'472',
'473',
'474',
'475',
'476',
'477',
'478',
'479',
'480',
'481',
'482',
'483',
'484',
'485',
'486',
'487',
'488',
'489',
'490',
'491',
'492',
'493',
'494',
'495',
'496',
'497',
'498',
'499',
'500',
'501',
'502',
'503',
'504',
'505',
'506',
'507',
'508',
'509',
'510',
'511',
'512',
'513',
'514',
'515',
'516',
'517',
'518',
'519',
'520',
'522',
'523',
'524',
'525',
'526',
'528',
'529',
'530',
'533',
'535',
'536',
'537',
'538',
'540',
'544',
'545',
'546',
'548',
'549',
'550',
'551',
'552',
'553',
'554',
'555',
'556',
'557',
'558',
'559',
'560',
'561',
'562',
'563',
'565',
'568',
'570',
'571',
'572',
'573',
'574',
'575',
'576',
'577',
'578',
'579',
'580',
'581',
'582',
'583',
'584',
'585',
'586',
'587',
'588',
'589',
'590',
'591',
'592',
'593',
'594',
'595',
'596',
'597',
'598',
'599',
'600',
'601',
'602',
'603',
'604',
'605',
'606',
'607',
'608',
'609',
'610',
'612',
'613',
'614',
'615',
'616',
'617',
'618',
'620',
'623',
'625',
'626',
'627',
'628',
'629',
'630',
'635',
'640',
'641',
'642',
'643',
'644',
'645',
'646',
'647',
'648',
'649',
'650',
'651',
'652',
'653',
'654',
'655',
'656',
'657',
'658',
'659',
'660',
'661',
'662',
'663',
'665',
'666',
'667',
'668',
'669',
'670',
'671',
'672',
'673',
'674',
'675',
'676',
'677',
'678',
'679',
'680',
'681',
'682',
'683',
'684',
'685',
'686',
'687',
'688',
'689',
'690',
'691',
'692',
'693',
'694',
'695',
'696',
'697',
'698',
'699',
'700',
'701',
'702',
'703',
'704',
'705',
'706',
'707',
'708',
'709',
'710',
'712',
'713',
'714',
'718',
'720',
'725',
'727',
'728',
'729',
'730',
'733',
'736',
'740',
'745',
'747',
'748',
'750',
'751',
'752',
'753',
'754',
'755',
'756',
'757',
'758',
'759',
'760',
'762',
'763',
'765',
'767',
'768',
'770',
'771',
'772',
'773',
'774',
'775',
'776',
'777',
'778',
'779',
'780',
'781',
'782',
'783',
'784',
'785',
'786',
'787',
'789',
'790',
'792',
'793',
'794',
'795',
'796',
'797',
'798',
'799',
'800',
'801',
'802',
'803',
'804',
'805',
'806',
'807',
'808',
'809',
'810',
'815',
'820',
'825',
'830',
'833',
'840',
'850',
'855',
'860',
'864',
'866',
'870',
'875',
'877',
'880',
'882',
'883',
'884',
'885',
'886',
'887',
'888',
'889',
'893',
'896',
'899',
'900',
'901',
'905',
'909',
'910',
'911',
'915',
'916',
'920',
'925',
'930',
'940',
'949',
'950',
'951',
'952',
'953',
'954',
'956',
'960',
'968',
'969',
'970',
'975',
'978',
'980',
'985',
'986',
'987',
'989',
'990',
'992',
'993',
'994',
'995',
'996',
'997',
'998',
'999',
'1000',
'1001',
'1007',
'1016',
'1024',
'1027',
'1080',
'1100',
'1111',
'1200',
'1500',
'1600',
'1800',
'1900',
'1920',
'1945',
'1950',
'1959',
'1960',
'1963',
'1964',
'1965',
'1966',
'1967',
'1968',
'1969',
'1970',
'1971',
'1972',
'1973',
'1974',
'1975',
'1976',
'1977',
'1978',
'1979',
'1980',
'1981',
'1982',
'1983',
'1984',
'1985',
'1986',
'1987',
'1988',
'1989',
'1990',
'1991',
'1992',
'1993',
'1994',
'1995',
'1996',
'1997',
'1998',
'1999',
'2000',
'2001',
'2002',
'2003',
'2004',
'2005',
'2006',
'2007',
'2008',
'2009',
'2010',
'2011',
'2012',
'2013',
'2014',
'2015',
'2016',
'2017',
'2018',
'2019',
'2020',
'2200',
'2500',
'3000',
'3333',
'4000',
'5000',
'6000',
'6666',
'7601',
'8000',
'9999',
'10000',
'20439',
'70710',
'76561',
'200000',
'66666666',
'!',
'"',
'#',
'$',
'%',
'&',
"'",
'(',
')',
'*',
'+',
',',
'-',
'.',
'/',
':',
';',
'<',
'=',
'>',
'?',
'@',
'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'J',
'K',
'L',
'M',
'N',
'O',
'P',
'Q',
'R',
'S',
'T',
'U',
'V',
'W',
'X',
'Y',
'Z',
'[',
'\\',
']',
'^',
'_',
'`',
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z',
'{',
'|',
'}',
'~',
'¡',
'¢',
'£',
'¤',
'¥',
'¦',
'§',
'¨',
'©',
'ª',
'«',
'¬',
'®',
'¯',
'°',
'±',
'²',
'³',
'´',
'µ',
'¶',
'·',
'¸',
'¹',
'º',
'»',
'¼',
'½',
'¾',
'¿',
'À',
'Á',
'Â',
'Ã',
'Ä',
'Å',
'Æ',
'Ç',
'È',
'É',
'Ê',
'Ë',
'Ì',
'Í',
'Î',
'Ï',
'Ð',
'Ñ',
'Ò',
'Ó',
'Ô',
'Õ',
'Ö',
'×',
'Ø',
'Ù',
'Ú',
'Û',
'Ü',
'Ý',
'Þ',
'ß',
'à',
'á',
'â',
'ã',
'ä',
'å',
'æ',
'ç',
'è',
'é',
'ê',
'ë',
'ì',
'í',
'î',
'ï',
'ð',
'ñ',
'ò',
'ó',
'ô',
'õ',
'ö',
'÷',
'ø',
'ù',
'ú',
'û',
'ü',
'ý',
'þ',
'ÿ',
'Ā',
'ā',
'Ă',
'ă',
'Ą',
'ą',
'Ć',
'ć',
'Ĉ',
'ĉ',
'Ċ',
'ċ',
'Č',
'č',
'Ď',
'ď',
'Đ',
'đ',
'Ē',
'ē',
'Ĕ',
'ĕ',
'Ė',
'ė',
'Ę',
'ę',
'Ě',
'ě',
'Ĝ',
'ĝ',
'Ğ',
'ğ',
'Ġ',
'ġ',
'Ģ',
'ģ',
'Ĥ',
'ĥ',
'Ħ',
'ħ',
'Ĩ',
'ĩ',
'Ī',
'ī',
'Ĭ',
'ĭ',
'Į',
'į',
'İ',
'ı',
'IJ',
'ij',
'Ĵ',
'ĵ',
'Ķ',
'ķ',
'ĸ',
'Ĺ',
'ĺ',
'Ļ',
'ļ',
'Ľ',
'ľ',
'Ŀ',
'ŀ',
'Ł',
'ł',
'Ń',
'Ġt',
'Ġa',
'he',
'in',
're',
'on',
'Ġthe',
'er',
'Ġs',
'at',
'Ġw',
'Ġo',
'en',
'Ġc',
'it',
'is',
'an',
'or',
'es',
'Ġb',
'ed',
'Ġf',
'ing',
'Ġp',
'ou',
'Ġan',
'al',
'ar',
'Ġto',
'Ġm',
'Ġof',
'Ġin',
'Ġd',
'Ġh',
'Ġand',
'ic',
'as',
'le',
'Ġth',
'ion',
'om',
'll',
'ent',
'Ġn',
'Ġl',
'st',
'Ġre',
've',
'Ġe',
'ro',
'ly',
'Ġbe',
'Ġg',
'ĠT',
'ct',
'ĠS',
'id',
'ot',
'ĠI',
'ut',
'et',
'ĠA',
'Ġis',
'Ġon',
'im',
'am',
'ow',
'ay',
'ad',
'se',
'Ġthat',
'ĠC',
'ig',
'Ġfor',
'ac',
'Ġy',
'ver',
'ur',
'Ġu',
'ld',
'Ġst',
'ĠM',
"'s",
'Ġhe',
'Ġit',
'ation',
'ith',
'ir',
'ce',
'Ġyou',
'il',
'ĠB',
'Ġwh',
'ol',
'ĠP',
'Ġwith',
'Ġ1',
'ter',
'ch',
'Ġas',
'Ġwe',
'Ġ(',
'nd',
'ill',
'ĠD',
'if',
'Ġ2',
'ag',
'ers',
'ke',
'Ġ"',
'ĠH',
'em',
'Ġcon',
'ĠW',
'ĠR',
'her',
'Ġwas',
'Ġr',
'od',
'ĠF',
'ul',
'ate',
'Ġat',
'ri',
'pp',
'ore',
'ĠThe',
'Ġse',
'us',
'Ġpro',
'Ġha',
'um',
'Ġare',
'Ġde',
'ain',
'and',
'Ġor',
'igh',
'est',
'ist',
'ab',
'rom',
'ĠN',
'th',
'Ġcom',
'ĠG',
'un',
'op',
'00',
'ĠL',
'Ġnot',
'ess',
'Ġex',
'Ġv',
'res',
'ĠE',
'ew',
'ity',
'ant',
'Ġby',
'el',
'os',
'ort',
'oc',
'qu',
'Ġfrom',
'Ġhave',
'Ġsu',
'ive',
'ould',
'Ġsh',
'Ġthis',
'nt',
'ra',
'pe',
'ight',
'art',
'ment',
'Ġal',
'ust',
'end',
'--',
'all',
'ĠO',
'ack',
'Ġch',
'Ġle',
'ies',
'red',
'ard',
'âĢ',
'out',
'ĠJ',
'Ġab',
'ear',
'iv',
'ally',
'our',
'ost',
'gh',
'pt',
'Ġpl',
'ast',
'Ġcan',
'ak',
'ome',
'ud',
'The',
'Ġhis',
'Ġdo',
'Ġgo',
'Ġhas',
'ge',
"'t",
'ĠU',
'rou',
'Ġsa',
'Ġj',
'Ġbut',
'Ġwor',
'Ġall',
'ect',
'Ġk',
'ame',
'Ġwill',
'ok',
'Ġwhe',
'Ġthey',
'ide',
'01',
'ff',
'ich',
'pl',
'ther',
'Ġtr',
'..',
'Ġint',
'ie',
'ure',
'age',
'Ġne',
'ial',
'ap',
'ine',
'ice',
'Ġme',
'Ġout',
'ans',
'one',
'ong',
'ions',
'Ġwho',
'ĠK',
'Ġup',
'Ġtheir',
'Ġad',
'Ġ3',
'Ġus',
'ated',
'ous',
'Ġmore',
'ue',
'og',
'ĠSt',
'ind',
'ike',
'Ġso',
'ime',
'per',
'."',
'ber',
'iz',
'act',
'Ġone',
'Ġsaid',
'Ġ-',
'are',
'Ġyour',
'cc',
'ĠTh',
'Ġcl',
'ep',
'ake',
'able',
'ip',
'Ġcont',
'Ġwhich',
'ia',
'Ġim',
'Ġabout',
'Ġwere',
'very',
'ub',
'Ġhad',
'Ġen',
'Ġcomp',
',"',
'ĠIn',
'Ġun',
'Ġag',
'ire',
'ace',
'au',
'ary',
'Ġwould',
'ass',
'ry',
'ĠâĢ',
'cl',
'ook',
'ere',
'so',
'ĠV',
'ign',
'ib',
'Ġoff',
'Ġte',
'ven',
'ĠY',
'ile',
'ose',
'ite',
'orm',
'Ġ201',
'Ġres',
'Ġman',
'Ġper',
'Ġother',
'ord',
'ult',
'Ġbeen',
'Ġlike',
'ase',
'ance',
'ks',
'ays',
'own',
'ence',
'Ġdis',
'ction',
'Ġany',
'Ġapp',
'Ġsp',
'int',
'ress',
'ations',
'ail',
'Ġ4',
'ical',
'Ġthem',
'Ġher',
'ount',
'ĠCh',
'Ġar',
'Ġif',
'Ġthere',
'Ġpe',
'Ġyear',
'av',
'Ġmy',
'Ġsome',
'Ġwhen',
'ough',
'ach',
'Ġthan',
'ru',
'ond',
'ick',
'Ġover',
'vel',
'Ġqu',
'ĊĊ',
'Ġsc',
'reat',
'ree',
'ĠIt',
'ound',
'port',
'Ġalso',
'Ġpart',
'fter',
'Ġkn',
'Ġbec',
'Ġtime',
'ens',
'Ġ5',
'ople',
'Ġwhat',
'Ġno',
'du',
'mer',
'ang',
'Ġnew',
'----',
'Ġget',
'ory',
'ition',
'ings',
'Ġjust',
'Ġinto',
'Ġ0',
'ents',
'ove',
'te',
'Ġpeople',
'Ġpre',
'Ġits',
'Ġrec',
'Ġtw',
'ian',
'irst',
'ark',
'ors',
'Ġwork',
'ade',
'ob',
'Ġshe',
'Ġour',
'wn',
'ink',
'lic',
'Ġ19',
'ĠHe',
'ish',
'nder',
'ause',
'Ġhim',
'ons',
'Ġ[',
'Ġro',
'form',
'ild',
'ates',
'vers',
'Ġonly',
'oll',
'Ġspe',
'ck',
'ell',
'amp',
'Ġacc',
'Ġbl',
'ious',
'urn',
'ft',
'ood',
'Ġhow',
'hed',
"Ġ'",
'Ġafter',
'aw',
'Ġatt',
'ov',
'ne',
'Ġplay',
'erv',
'ict',
'Ġcould',
'itt',
'Ġam',
'Ġfirst',
'Ġ6',
'Ġact',
'Ġ$',
'ec',
'hing',
'ual',
'ull',
'Ġcomm',
'oy',
'old',
'ces',
'ater',
'Ġfe',
'Ġbet',
'we',
'iff',
'Ġtwo',
'ock',
'Ġback',
').',
'ident',
'Ġunder',
'rough',
'sel',
'xt',
'Ġmay',
'round',
'Ġpo',
'ph',
'iss',
'Ġdes',
'Ġmost',
'Ġdid',
'Ġadd',
'ject',
'Ġinc',
'fore',
'Ġpol',
'ont',
'Ġagain',
'clud',
'tern',
'Ġknow',
'Ġneed',
'Ġcons',
'Ġco',
'Ġ.',
'Ġwant',
'Ġsee',
'Ġ7',
'ning',
'iew',
'ĠThis',
'ced',
'Ġeven',
'Ġind',
'ty',
'ĠWe',
'ath',
'Ġthese',
'Ġpr',
'Ġuse',
'Ġbecause',
'Ġfl',
'ng',
'Ġnow',
'ĠâĢĵ',
'com',
'ise',
'Ġmake',
'Ġthen',
'ower',
'Ġevery',
'ĠUn',
'Ġsec',
'oss',
'uch',
'Ġem',
'Ġ=',
'ĠRe',
'ied',
'rit',
'Ġinv',
'lect',
'Ġsupp',
'ating',
'Ġlook',
'man',
'pect',
'Ġ8',
'row',
'Ġbu',
'Ġwhere',
'ific',
'Ġyears',
'ily',
'Ġdiff',
'Ġshould',
'Ġrem',
'Th',
'In',
'Ġev',
'day',
"'re",
'rib',
'Ġrel',
'ss',
'Ġdef',
'Ġright',
'Ġsy',
'),',
'les',
'000',
'hen',
'Ġthrough',
'ĠTr',
'__',
'Ġway',
'Ġdon',
'Ġ,',
'Ġ10',
'ased',
'Ġass',
'ublic',
'Ġreg',
'ĠAnd',
'ix',
'Ġvery',
'Ġinclud',
'other',
'Ġimp',
'oth',
'Ġsub',
'ĠâĢĶ',
'Ġbeing',
'arg',
'ĠWh',
'==',
'ible',
'Ġdoes',
'ange',
'ram',
'Ġ9',
'ert',
'ps',
'ited',
'ational',
'Ġbr',
'Ġdown',
'Ġmany',
'aking',
'Ġcall',
'uring',
'ities',
'Ġph',
'ics',
'als',
'Ġdec',
'ative',
'ener',
'Ġbefore',
'ility',
'Ġwell',
'Ġmuch',
'erson',
'Ġthose',
'Ġsuch',
'Ġke',
'Ġend',
'ĠBut',
'ason',
'ting',
'Ġlong',
'ef',
'Ġthink',
'ys',
'Ġbel',
'Ġsm',
'its',
'ax',
'Ġown',
'Ġprov',
'Ġset',
'ife',
'ments',
'ble',
'ward',
'Ġshow',
'Ġpres',
'ms',
'omet',
'Ġob',
'Ġsay',
'ĠSh',
'ts',
'ful',
'Ġeff',
'Ġgu',
'Ġinst',
'und',
'ren',
'cess',
'Ġent',
'ĠYou',
'Ġgood',
'Ġstart',
'ince',
'Ġmade',
'tt',
'stem',
'olog',
'up',
'Ġ|',
'ump',
'Ġhel',
'vern',
'ular',
'ually',
'Ġac',
'Ġmon',
'Ġlast',
'Ġ200',
'Ġstud',
'ures',
'ĠAr',
'self',
'ars',
'meric',
'ues',
'cy',
'Ġmin',
'ollow',
'Ġcol',
'io',
'Ġmod',
'Ġcount',
'ĠCom',
'hes',
'Ġfin',
'air',
'ier',
'âĢĶ',
'read',
'ank',
'atch',
'ever',
'Ġstr',
'Ġpoint',
'ork',
'ĠNew',
'Ġsur',
'ool',
'alk',
'ement',
'Ġused',
'ract',
'ween',
'Ġsame',
'oun',
'ĠAl',
'ci',
'Ġdiffere',
'Ġwhile',
'--------',
'Ġgame',
'cept',
'Ġsim',
'...',
'Ġinter',
'ek',
'Ġreport',
'Ġprodu',
'Ġstill',
'led',
'ah',
'Ġhere',
'Ġworld',
'Ġthough',
'Ġnum',
'arch',
'imes',
'ale',
'ĠSe',
'ĠIf',
'//',
'ĠLe',
'Ġret',
'Ġref',
'Ġtrans',
'ner',
'ution',
'ters',
'Ġtake',
'ĠCl',
'Ġconf',
'way',
'ave',
'Ġgoing',
'Ġsl',
'ug',
'ĠAmeric',
'Ġspec',
'Ġhand',
'Ġbetween',
'ists',
'ĠDe',
'oot',
'It',
'Ġear',
'Ġagainst',
'Ġhigh',
'gan',
'az',
'ather',
'Ġexp',
'Ġop',
'Ġins',
'Ġgr',
'Ġhelp',
'Ġrequ',
'ets',
'ins',
'ĠPro',
'ism',
'Ġfound',
'land',
'ata',
'uss',
'ames',
'Ġperson',
'Ġgreat',
'pr',
'Ġsign',
'ĠAn',
"'ve",
'Ġsomet',
'Ġser',
'hip',
'Ġrun',
'Ġ:',
'Ġter',
'irect',
'Ġfollow',
'Ġdet',
'ices',
'Ġfind',
'Ġmem',
'Ġcr',
'ered',
'ex',
'Ġext',
'uth',
'ense',
'co',
'Ġteam',
'ving',
'ouse',
'ash',
'att',
'ved',
'Ġsystem',
'ĠAs',
'der',
'ives',
'min',
'Ġlead',
'ĠBl',
'cent',
'Ġaround',
'Ġgovern',
'Ġcur',
'velop',
'any',
'Ġcour',
'alth',
'ages',
'ize',
'Ġcar',
'ode',
'Ġlaw',
'Ġread',
"'m",
'con',
'Ġreal',
'Ġsupport',
'Ġ12',
'....',
'Ġreally',
'ness',
'Ġfact',
'Ġday',
'Ġboth',
'ying',
'Ġserv',
'ĠFor',
'Ġthree',
'Ġwom',
'Ġmed',
'ody',
'ĠThey',
'Ġexper',
'ton',
'Ġeach',
'akes',
'Ġche',
'Ġcre',
'ines',
'Ġrep',
'gg',
'illion',
'Ġgrou',
'ute',
'ik',
'We',
'get',
'ER',
'Ġmet',
'Ġsays',
'ox',
'Ġduring',
'ern',
'ized',
'ared',
'Ġfam',
'ically',
'Ġhapp',
'ĠIs',
'Ġchar',
'med',
'vent',
'Ġgener',
'ient',
'ple',
'iet',
'rent',
'ves',
'ption',
'Ġ20',
'formation',
'Ġcor',
'Ġoffic',
'ield',
'Ġtoo',
'ision',
'Ġinf',
'ĠZ',
'the',
'oad',
'Ġpublic',
'Ġprog',
'ric',
'**',
'Ġwar',
'Ġpower',
'view',
'Ġfew',
'Ġloc',
'Ġdifferent',
'Ġstate',
'Ġhead',
"'ll",
'Ġposs',
'Ġstat',
'ret',
'ants',
'Ġval',
'Ġiss',
'Ġcle',
'ivers',
'anc',
'Ġexpl',
'Ġanother',
'ĠQ',
'Ġav',
'thing',
'nce',
'Wh',
'Ġchild',
'Ġsince',
'ired',
'less',
'Ġlife',
'Ġdevelop',
'ittle',
'Ġdep',
'Ġpass',
'ãĥ',
'Ġturn',
'orn',
'This',
'bers',
'ross',
'ĠAd',
'Ġfr',
'Ġresp',
'Ġsecond',
'oh',
'Ġ/',
'Ġdisc',
'Ġ&',
'Ġsomething',
'Ġcomple',
'Ġed',
'Ġfil',
'Ġmonth',
'aj',
'uc',
'Ġgovernment',
'Ġwithout',
'Ġleg',
'Ġdist',
'Ġput',
'Ġquest',
'ann',
'Ġprot',
'Ġnever',
'ience',
'Ġlevel',
'Ġart',
'Ġthings',
'Ġmight',
'Ġeffect',
'Ġcontro',
'Ġcent',
'Ġ18',
'Ġallow',
'Ġbelie',
'chool',
'ott',
'Ġincre',
'Ġfeel',
'Ġresult',
'Ġlot',
'Ġfun',
'ote',
'Ġty',
'erest',
'Ġcontin',
'Ġusing',
'Ġbig',
'Ġask',
'Ġbest',
'Ġ)',
'IN',
'Ġopp',
'Ġnumber',
'iness',
'St',
'lease',
'Ġca',
'Ġmust',
'Ġdirect',
'Ġgl',
'Ġ<',
'Ġopen',
'Ġpost',
'Ġcome',
'Ġseem',
'ording',
'Ġweek',
'ately',
'ital',
'Ġel',
'riend',
'Ġfar',
'Ġtra',
'inal',
'Ġpri',
'ĠUS',
'Ġplace',
'Ġform',
'Ġtold',
'":',
'ains',
'ature',
'ĠTrump',
'Ġstand',
'Ġ#',
'ider',
'ĠFr',
'Ġnext',
'Ġsoc',
'Ġpur',
'Ġlet',
'Ġlittle',
'Ġhum',
'Ġi',
'ron',
'Ġ15',
'Ġcommun',
'Ġmark',
'ĠThere',
'Ġwr',
'ĠThat',
'Ġinformation',
'ways',
'Ġbus',
'app',
'Ġinvest',
'me',
'Ġhard',
'ained',
'ead',
'Ġimport',
'Ġappro',
'Ġtest',
'Ġtri',
'Ġrest',
'osed',
'Ġfull',
'Ġcare',
'ĠSp',
'Ġcase',
'ON',
'Ġsk',
'Ġless',
'Ġ+',
'Ġpartic',
'ĠPl',
'ably',
'uck',
'ished',
'chn',
'be',
'Ġlist',
'ator',
'Ġtop',
'Ġadv',
'ĠBe',
'ruct',
'Ġdem',
'ration',
'ling',
'gy',
'reen',
'ger',
'Ġhome',
'Ġleft',
'Ġbetter',
'Ġdata',
'Ġ11',
'Ġattack',
'Ġproble',
'line',
'ards',
'Ġbeh',
'ral',
'ĠHow',
'ĠShe',
'arge',
'Ġ--',
'://',
'Ġbro',
'ĠPh',
'ats',
'Ġbuild',
'ww',
'ided',
'aim',
'ases',
'ency',
'Ġmain',
'ined',
'Ġincluding',
'Ġ{',
'Ġgot',
'Ġinterest',
'Ġkeep',
'ĠX',
'Ġeas',
'aining',
'Ġclass',
'â̦',
'ĠNo',
'Ġvar',
'Ġsmall',
'ample',
'AT',
'Ġide',
'ĠSo',
'Ġrece',
'Ġpolit',
'Ġmov',
'Ġplan',
'Ġpercent',
'iving',
'Ġcamp',
'Ġpay',
'sc',
'ised',
'Ġunt',
'oney',
'ploy',
'====',
'Ġdidn',
'ĠInd',
'els',
'ertain',
'Ġpos',
'____',
'iver',
'Ġprocess',
'Ġprogram',
'ified',
'ĠRep',
'uro',
'ology',
'atter',
'ina',
'Ġname',
'ĠAll',
'Ġfour',
'Ġreturn',
'vious',
'bs',
'Ġcalled',
'Ġmove',
'ĠSc',
'ird',
'Ġgroup',
'Ġbre',
'Ġmen',
'Ġcap',
'ten',
'ee',
'Ġdri',
'leg',
'here',
'uthor',
'Ġpat',
'Ġcurrent',
'ides',
'Ġpop',
'to',
'ention',
'Ġalways',
'Ġmil',
'Ġwomen',
'Ġ16',
'Ġold',
'iven',
'raph',
'ĠOr',
'ror',
'ently',
'Ġnear',
'ĠEx',
'ream',
'sh',
'Ġ14',
'Ġfree',
'ission',
'stand',
'ĠCon',
'ality',
'used',
'Ġdesign',
'Ġchange',
'Ġchang',
'Ġbo',
'Ġvis',
'ember',
'Ġbook',
'ready',
'Ġkill',
'pped',
'Ġaway',
'Ġable',
'Ġcountry',
'Ġconst',
'arn',
'Ġorder',
'AR',
'ior',
'ium',
'orth',
'ailable',
'Ġsw',
'Ġmillion',
'Ġ13',
'atic',
'ted',
'ĠGo',
'Ġoper',
'eng',
'Ġthing',
'ajor',
'conom',
'ĠComm',
'Ġwhy',
'ured',
'ural',
'Ġschool',
'by',
'ĠMar',
'Ġaff',
'Ġdays',
'Ġann',
'ush',
'ane',
'If',
'eg',
'Ġprof',
'Ġhealth',
'outh',
'But',
'ional',
'.,',
'Ġsol',
'Ġalready',
'Ġ30',
'Ġcharact',
'He',
'Ġfriend',
'ES',
'ians',
'icle',
"'d",
'ĠOn',
'Ġleast',
'Ġprom',
'Ġdr',
'Ġhist',
'ither',
'Ġest',
'iqu',
'son',
'Ġtell',
'Ġtalk',
'ohn',
'oint',
'lection',
'AN',
'Ġuntil',
'augh',
'Ġlater',
'Ġve',
'Ġview',
'ending',
'ived',
'Ġword',
'ware',
'Ġcost',
'Ġenough',
'Ġgive',
'ĠUnited',
'Ġtechn',
'arent',
'OR',
'Ġpar',
'ĠDr',
'Ġ2016',
'rist',
'ering',
'ĠÂ',
'Ġlarge',
'side',
'acy',
'ccess',
'Ġwin',
'Ġimportant',
'Ġ199',
'Ġdoesn',
'Ġ17',
'Ġbusiness',
'Ġclear',
'Ġrese',
'",',
'ury',
'Ġequ',
'aster',
'alf',
'ĠAmerican',
'nect',
'Ġexpect',
'iversity',
'Ġocc',
'ĠFl',
'Ġkind',
'Ġmean',
'Ġpast',
'Ġdev',
'Ġbas',
'let',
'raft',
'Ġorgan',
'Ġdel',
'Ġperform',
'Ġstory',
'Ġseason',
'ĠCol',
'Ġclaim',
'Ġcame',
'Ġwithin',
'Ġline',
'Ġproject',
'ĠAt',
'Ġcontrol',
'ended',
'ĠSy',
'Ġair',
'ization',
'Ġ*',
'ley',
'Ġmoney',
'idd',
'You',
'for',
'Ġfamily',
'Ġmaking',
'Ġbit',
'Ġpolice',
'Ġhappen',
'Ġvers',
'ony',
'uff',
'ĠWhen',
'Ġsit',
'ideo',
'lf',
'ison',
'Ġsure',
'gin',
'Ġappear',
'Ġlight',
'Ġes',
'of',
'Ġwater',
'Ġtimes',
'not',
'Ġgrow',
'Ġcompany',
'ĠTe',
'ows',
'Ġmar',
'ource',
'iol',
'arm',
'br',
'Ġexample',
'Ġconc',
'Ġfore',
'ĠTo',
'pro',
'EN',
'ries',
'Ġ25',
'ĠCan',
'ney',
'Ġactually',
'Ġever',
'urity',
'aken',
'aps',
'Ġtax',
'Ġmajor',
'ama',
'Ġoften',
'eral',
'Ġhuman',
'Ġjob',
'ister',
'Ġavailable',
'ocr',
'enn',
'aid',
'ivid',
'Ġrecord',
'?"',
'Ġsing',
'ĠAm',
'idence',
'Ġnews',
'ster',
'Ġeconom',
'Ġfollowing',
'ĠBr',
'ising',
'Ġhour',
'most',
'ument',
'Ġsex',
'Ġdesc',
'Ġbecome',
'ĠEd',
'Ġtook',
'Ġhaving',
'Ġproduct',
'ault',
'As',
'aring',
'Ġmeans',
'Ġhop',
'une',
'Ġcho',
'Ġcertain',
'Ġnon',
'Ġdeal',
'lement',
'oci',
'ene',
'Ġside',
'ĠPr',
'ĠMay',
'Ġreason',
'ued',
'ched',
'ulation',
'Ġelect',
'Ġofficial',
'Ġpossible',
'Ġhold',
'ands',
'ots',
'Ġcity',
'ories',
'Ġsever',
'Ġchildren',
'Ġonce',
'Ġactiv',
'ler',
'Ġnight',
'itions',
'ĠJohn',
'ape',
'play',
'Ġdone',
'Ġlim',
'Ġworking',
'ĠPres',
'orld',
'eb',
'ĠCo',
'Ġbody',
'ails',
'utes',
'ĠMr',
'Ġwhether',
'Ġauthor',
'rop',
'Ġproper',
'Ġseen',
');',
'Ġfac',
'ĠSu',
'Ġcond',
'iting',
'Ġcourse',
'Ġ}',
'----------------',
'aign',
'Ġevent',
'Ġeng',
'Ġpot',
'Ġintern',
'iam',
'Ġshort',
'empt',
'ãĤ',
'ĠGod',
'ilar',
'Ġorig',
'IS',
'ourn',
'ability',
'itive',
'Ġdam',
'Ġ100',
'Ġpress',
'Ġdoing',
'Ġprotect',
'ring',
'Ġthought',
'Ġquestion',
'rew',
'ĠWar',
'Ġseveral',
'ĠState',
'Ġgiven',
'Ġfund',
'ĠTw',
'Ġwent',
'ances',
'work',
'por',
'my',
'Ġarg',
'artment',
'ustom',
'Ġpolic',
'Ġmeet',
'Ġcreat',
'ĠStates',
'Ġgames',
'raw',
'uture',
'Ġunderstand',
'urs',
'ĠOb',
'lish',
'sy',
'Ġmakes',
'Ġwon',
'agon',
'Ġhtt',
'Ġlove',
'ential',
'Ġcomplete',
'par',
'ĠIm',
'AL',
'Ġaccount',
'Âł',
'ored',
'vert',
'Ġident',
'Ġ2015',
'Ġothers',
'ĠMin',
'iber',
'verage',
'There',
'itional',
'dd',
'Ġprob',
'Ġyoung',
'Ġalong',
'Ġaccording',
'Ġyet',
'Ġmembers',
'ĠWhat',
'oid',
'ĠMan',
'And',
'Ġamong',
'ai',
'Ġemploy',
'ĠRes',
'Ġ>',
'Ġinvol',
'Ġlow',
'af',
'ĠCar',
'Ġhig',
'ĠOne',
'ĠSec',
'ination',
'Ġlikely',
'Ġant',
'aged',
'ĠRuss',
'Ġben',
'Ġrele',
'For',
'back',
'ĠNot',
'Ġpresident',
'ball',
'Ġaccess',
'ividual',
'ĠDem',
'ĠEuro',
'Ġknown',
'irl',
'ĠGr',
'Ġearly',
'use',
'iety',
'âĢĵ',
'Ġfight',
'Ġsent',
'Ġtoday',
'Ġmarket',
'".',
'Ġbased',
'Ġstrong',
'urther',
'Ġdeb',
'mber',
'Ġproblem',
'Ġdeath',
'Ġsocial',
'imate',
'AS',
'ortun',
'Ġcampaign',
'ery',
'Ch',
'Ġey',
'ially',
'Ġmus',
'wh',
'pos',
'Ġer',
'Ġsaf',
'Ġmonths',
'iron',
'Ġviol',
'Ġfive',
'Ġstre',
'Ġplayers',
'inc',
'ald',
'year',
'aun',
'Ġsuccess',
'Ġpresent',
'erence',
'Ġ2014',
'Ġsugg',
'Ġparticular',
'Ġtry',
'Ġsuggest',
'ĠChrist',
'ones',
'Ġpriv',
'Ġcrit',
'Ġland',
'Ġlocal',
'ify',
'Ġaut',
'ED',
'ĠGu',
'Ġmult',
'Ġpolitical',
'Ġasked',
'Ġformer',
'itter',
'ript',
'Ġclose',
'Ġpract',
'ĠYork',
'Ġgetting',
'Ġacross',
'Ġcomb',
'Ġbelieve',
'Ġz',
'Ġtoget',
'Ġtogether',
'ĠCent',
'irc',
'Ġindividual',
'ĠMc',
'isk',
'ĠEng',
'Ġface',
'Ġ24',
'Ġvalue',
'Ġarea',
'ev',
'Ġwrit',
'ĠPresident',
'Ġvot',
'Ġkey',
'Ġmom',
'put',
'Ġanything',
'Ġexperience',
'attle',
'Ġmind',
'aff',
'omm',
'Ġfuture',
'ged',
'Ġcut',
'Ġtot',
'itch',
'Ġvideo',
'Ġinvestig',
'Ġnet',
'ĠMy',
'rict',
'ien',
'.)',
'Ġimpro',
'though',
'wards',
'Ġconnect',
'ĠMed',
'selves',
'ensive',
'mb',
'ober',
'ators',
'An',
'Ġ50',
'Ġredu',
'resent',
'Ġabove',
'Ġfre',
'ĠEurope',
'sw',
'Ġamount',
'ĠApp',
'Ġeither',
'Ġmilit',
'Ġanal',
'Ġfail',
'ĠEn',
'ales',
'Ġspecial',
'Ġblack',
'IT',
'cher',
'Ġlooking',
'Ġfire',
'yn',
'Ġalmost',
'oon',
'Ġstudy',
'Ġmiss',
'ches',
'rown',
'Ġtre',
'Ġcommunity',
'Ġmedia',
'Ġfood',
'Ġcomes',
'ĠUniversity',
'Ġsingle',
'What',
'uly',
'Ġhalf',
'ague',
'hod',
'ĠRepublic',
'Ġstarted',
'Ġquick',
'oto',
'book',
'Ġissue',
'itor',
'Ġelse',
'Ġconsider',
'rodu',
'Ġtaken',
'ĠWith',
'Ġtrue',
'Ġwa',
'Ġtrad',
'Ġago',
'Ġmess',
'ief',
'Ġadded',
'oke',
'Ġbad',
'Ġfav',
'Ġsimilar',
'ask',
'ĠDon',
'Ġcharacter',
'orts',
'ĠHouse',
'Ġreported',
'Ġtype',
'val',
'iod',
'ĠHowever',
'Ġtarg',
'Ġentire',
'pping',
'Ġhistory',
'Ġlive',
'ffic',
'........',
'ederal',
'Ġtrying',
'Ġdiscuss',
'ĠHar',
'aces',
'lished',
'Ġself',
'osp',
'rest',
'Ġroom',
'elt',
'Ġfall',
'olution',
'Ġet',
'Ġx',
'Ġisn',
'Ġidea',
'bo',
'Ġsound',
'ĠDep',
'Ġsomeone',
'cially',
'ully',
'Ġfoc',
'Ġobject',
'ift',
'aper',
'Ġplayer',
'Ġrather',
'Ġservice',
'ashing',
'ĠDo',
'ĠPart',
'rug',
'mon',
'ply',
'Ġmor',
'Ġnothing',
'Ġprovide',
'IC',
'ung',
'Ġparty',
'Ġexist',
'Ġmag',
'Ġrul',
'Ġhouse',
'Ġbehind',
'Ġhowever',
'ĠWorld',
'Ġsum',
'Ġapplic',
'Ġ;',
'Ġfunction',
'gr',
'ĠPol',
'Ġfront',
'Ġseries',
'Ġtem',
'Ġtyp',
'ills',
'Ġopt',
'Ġpoints',
'Ġbelow',
'itted',
'Ġspecific',
'Ġ2017',
'umb',
'Ġra',
'Ġprevious',
'Ġpret',
'reme',
'Ġcustom',
'Ġcourt',
'ĠMe',
'Ġrepl',
'Ġwhole',
'go',
'cer',
'Ġtreat',
'ĠAct',
'Ġprobably',
'Ġlearn',
'ender',
'ĠAss',
'Ġversion',
'now',
'Ġcheck',
'ĠCal',
'RE',
'minist',
'On',
'ources',
'Ġbenef',
'Ġdoc',
'Ġdeter',
'Ġenc',
'Ġsuper',
'Ġaddress',
'Ġvict',
'Ġ2013',
'Ġmeas',
'tr',
'Ġfield',
'When',
'Ġsignific',
'uge',
'Ġfeat',
'Ġcommon',
'load',
'Ġbegin',
'Ġbring',
'Ġaction',
'erman',
'Ġdescrib',
'Ġindust',
'Ġwanted',
'ried',
'ming',
'Ġattempt',
'fer',
'Ġdue',
'ression',
'##',
'Ġshall',
'Ġsix',
'oo',
'Ġstep',
'Ġpub',
'Ġhimself',
'Ġ23',
'Ġcop',
'Ġdest',
'Ġstop',
'AC',
'ibility',
'Ġlab',
'icult',
'Ġhours',
'Ġcreate',
'Ġfurther',
'ĠAmerica',
'ĠCity',
'Ġdou',
'head',
'ST',
'ĠNorth',
'cing',
'Ġnational',
'ule',
'ĠInst',
'Ġtaking',
'ĠQu',
'irt',
'Ġred',
'Ġresearch',
'viron',
'ĠGe',
'Ġbreak',
'ana',
'Ġspace',
'aterial',
'Ġrecent',
'ĠAb',
'Ġgeneral',
'Ġhit',
'Ġperiod',
'Ġeverything',
'ively',
'Ġphys',
'Ġsaying',
'anks',
'Ġcou',
'Ġcult',
'aced',
'eal',
'uation',
'Ġcoun',
'lu',
'Ġinclude',
'Ġposition',
'ĠAfter',
'ĠCanad',
'ĠEm',
'Ġimm',
'ĠRed',
'Ġpick',
'Ġcompl',
'Ġmatter',
'reg',
'ext',
'angu',
'isc',
'ole',
'aut',
'Ġcompet',
'eed',
'fect',
'Ġ21',
'ĠSen',
'ĠThese',
'asing',
'Ġcannot',
'Ġinit',
'Ġrelations',
'ached',
'Ġbar',
'Ġ40',
'ĠTH',
'Ġ2012',
'Ġvol',
'Ġground',
'Ġsecurity',
'Ġupd',
'ilt',
'Ġconcern',
'ĠJust',
'Ġwhite',
'Ġseems',
'ĠHer',
'pecially',
'ients',
'Ġannoun',
'Ġfig',
'ights',
'Ġstri',
'like',
'ids',
'Ġsus',
'Ġwatch',
'Ġâ',
'Ġwind',
'ĠCont',
'Ġitself',
'Ġmass',
'Al',
'yle',
'ique',
'ĠNational',
'Ġabs',
'Ġpack',
'Ġoutside',
'Ġanim',
'Ġpain',
'eter',
'Ġmanag',
'duct',
'ogn',
'Ġ]',
'ĠSept',
'sec',
'off',
'ĠJan',
'Ġfoot',
'ades',
'Ġthird',
'Ġmot',
'Ġevidence',
'inton',
'Ġthreat',
'apt',
'ples',
'cle',
'Ġlo',
'Ġdecl',
'Ġitem',
'medi',
'Ġrepresent',
'omb',
'amer',
'Ġsignificant',
'ograph',
'su',
'Ġcal',
'ires',
'0000',
'ID',
'AM',
'Ġsimply',
'Ġlonger',
'Ġfile',
'OT',
'che',
'So',
'ateg',
'org',
'ĠHis',
'Ġener',
'Ġdom',
'Ġupon',
'ili',
'":"',
'Ġthemselves',
'Ġcoming',
'Ġquite',
'Ġdifficult',
'ĠBar',
'ilities',
'rel',
'ends',
'cial',
'Ġwoman',
'rap',
'yr',
'Ġnecess',
'ips',
'Ġtext',
'Ġrequire',
'Ġmilitary',
'Ġreview',
'Ġrespons',
'Ġsubject',
'Ġinstead',
'Ġissues',
'Ġgen',
'","',
'Ġminutes',
'Ġweap',
'ray',
'amed',
'time',
'bl',
'How',
'Ġcode',
'ĠSm',
'Ġhigher',
'ĠSte',
'ris',
'Ġpage',
'Ġstudents',
'ĠIntern',
'Ġmethod',
'ĠAug',
'ĠPer',
'ĠAg',
'Ġpolicy',
'ĠSw',
'Ġexec',
'Ġaccept',
'ume',
'ribut',
'Ġwords',
'Ġfinal',
'Ġchanges',
'ĠDemocr',
'Ġfriends',
'Ġrespect',
'Ġep',
'Ġcompan',
'ivil',
'Ġdamage',
'****',
'ogle',
'vironment',
'Ġneg',
'ental',
'Ġap',
'Ġtotal',
'ival',
'!"',
'lim',
'Ġneeds',
'Ġagre',
'Ġdevelopment',
'Ġage',
'iple',
'Ġresults',
'ĠAf',
'Sh',
'Ġgun',
'ĠObama',
'roll',
'Ġ@',
'Ġrights',
'ĠBrit',
'Ġrunning',
'Ġwasn',
'Ġport',
'Ġrate',
'Ġpretty',
'Ġtarget',
'Ġsaw',
'Ġcirc',
'Ġworks',
'icro',
'alt',
'over',
'www',
'That',
'lier',
'Ġeveryone',
'ude',
'Ġpie',
'iddle',
'rael',
'Ġrad',
'Ġblock',
'Ġwalk',
'To',
'ãģ',
'nes',
'ĠAust',
'aul',
'rote',
'ĠSouth',
'ession',
'oph',
'Ġshows',
'Ġsite',
'Ġjo',
'Ġrisk',
'clus',
'lt',
'Ġinj',
'iding',
'ĠSpe',
'Ġchall',
'irm',
'Ġ22',
'itting',
'str',
'Ġhy',
'LE',
'key',
'Ġbegan',
'atur',
'ashington',
'lam',
'ĠDav',
'bit',
'Ġsize',
'ĠPar',
'ournal',
'face',
'Ġdecision',
'Ġlarg',
'Ġjud',
'rect',
'Ġcontinue',
'ĠOct',
'overed',
'ĠInt',
'========',
'Ġparent',
'ĠWill',
'Ġeasy',
'Ġdrug',
'anger',
'Ġsense',
'Ġdi',
'iday',
'Ġenergy',
'istic',
'Ġassoci',
'arter',
'obal',
'eks',
'ĠEl',
'urch',
'Ġgirl',
'oe',
'itle',
'Ġ28',
'ĠChe',
'Ġrequest',
'Ġsoon',
'Ġhost',
'ky',
'Ġstates',
'omes',
'Ġmaterial',
'lex',
'Ġmoment',
'Ġansw',
'onse',
'Ġespecially',
'Ġnorm',
'Ġservices',
'pite',
'ran',
'Ġrole',
'):',
'Ġcred',
'Cl',
'________',
'Ġmat',
'Ġlog',
'ĠClinton',
'OU',
'Ġoffice',
'Ġ26',
'Ġcharg',
'Ġtrack',
'ma',
'Ġheart',
'Ġball',
'Ġpersonal',
'Ġbuilding',
'na',
'set',
'body',
'ĠBlack',
'Ġincrease',
'itten',
'Ġneeded',
'="',
'Ġlost',
'Ġbecame',
'Ġgroups',
'ĠMus',
'Ġwrote',
'ĠPe',
'Ġprop',
'joy',
'é',
'ĠWhite',
'Ġdead',
".'",
'Ġhttp',
'Ġwebs',
'OS',
'Ġinside',
'Ġwrong',
'Ġstatement',
'Ġ...',
'yl',
'Ġfilm',
'Ġmusic',
'Ġshare',
'ification',
'Ġrelease',
'Ġforward',
'Ġstay',
'Ġcomput',
'itte',
'ser',
'Ġoriginal',
'Ġcard',
'Ġcand',
'Ġdiv',
'atural',
'Ġfavor',
'OM',
'Ġcases',
'uses',
'Ġsection',
'Ġleave',
'ging',
'oved',
'ĠWashington',
'ĠGl',
'Ġrequired',
'action',
'apan',
'oor',
'iter',
'ĠKing',
'Ġcountries',
'ĠGerman',
'lling',
'Ġ27',
'Ġquestions',
'Ġprim',
'Ġcell',
'Ġshoot',
'Ġanyone',
'ĠWest',
'Ġaffect',
'epend',
'Ġonline',
'ĠIsrael',
'ĠSeptember',
'Ġability',
'Ġcontent',
'ises',
'Ġreve',
'Ġlaun',
'Ġindic',
'Ġforce',
'cast',
'Ġsold',
'aving',
'fl',
'Ġsoft',
'Ġcompanies',
'ceed',
'Ġarticle',
'Ġaud',
'Ġrev',
'Ġeduc',
'Ġplaying',
'05',
'Ġheld',
'ctor',
'Ġreleased',
'Ġfederal',
'Ġadminist',
'Ġinterview',
'Ġinstall',
'Ġreceived',
'Ġsource',
'uk',
'Ph',
'Ġserious',
'Ġcreated',
'Ġcause',
'Ġimmedi',
'Ġdefin',
'uel',
'ĠDepartment',
'ctions',
'ĠCour',
'ĠNow',
'ze',
'ites',
'itution',
'Ġlate',
'Ġspeak',
'ners',
'Ġlegal',
'ari',
'ĠCor',
'Ġweeks',
'Ġmodel',
'Ġpred',
'Ġexact',
'BC',
'ĠBy',
'ING',
'osing',
'Ġtakes',
'Ġregard',
'Ġopportun',
'Ġprice',
'Ġ198',
'ĠApr',
'fully',
'Ġord',
'Ġproblems',
'ruction',
'ham',
'ĠCount',
'lege',
'Ġleaders',
'ET',
'lev',
'Ġdeep',
'ological',
'ese',
'haps',
'ĠSome',
'Ġpers',
'Ġcontract',
'Ġrelationship',
'sp',
'oud',
'Ġbase',
'mit',
'Ad',
'ancial',
'Ġconsum',
'Ġpotential',
'Ġlangu',
'rem',
'eth',
'Ġrelig',
'ressed',
'Ġlink',
'Ġlower',
'ayer',
'ĠJune',
'Ġfem',
'unt',
'erc',
'urd',
'Ġcontact',
'Ġill',
'Ġmother',
'Ġestab',
'htt',
'ĠMarch',
'ĠBro',
'ĠChina',
'Ġ29',
'Ġsqu',
'Ġprovided',
'Ġaverage',
'asons',
'Ġ2011',
'Ġexam',
'lin',
'ned',
'Ġperfect',
'Ġtou',
'alse',
'ux',
'Ġbuy',
'Ġshot',
'Ġcollect',
'Ġphot',
'Ġplayed',
'Ġsurpr',
'Ġofficials',
'Ġsimple',
'avy',
'Ġindustry',
'Ġhands',
'ground',
'Ġpull',
'Ġround',
'Ġuser',
'Ġrange',
'uary',
'Ġprivate',
'ops',
'ees',
'Ġways',
'ĠMich',
'Ġveh',
'Ġexcept',
'Ġterms',
'imum',
'pper',
'ION',
'ores',
'ĠDragon',
'oul',
'Ġden',
'Ġperformance',
'Ġbill',
'cil',
'Ġenvironment',
'Ġexc',
'add',
'Ġworth',
'Ġpict',
'Ġchance',
'Ġ2018',
'bor',
'Ġspeed',
'iction',
'Ġalleg',
'ĠJapan',
'atory',
'reet',
'Ġmatch',
'ĠII',
'Ġstru',
'order',
'Ġste',
'Ġliving',
'Ġstruct',
'ino',
'Ġsepar',
'hern',
'Ġresponse',
'Ġenjoy',
'Ġvia',
'AD',
'uments',
'acebook',
'Ġmember',
'ibr',
'izing',
'Ġtool',
'ĠMon',
'ĠWhile',
'hood',
'ĠAng',
'ĠDef',
'Ġoffer',
'Tr',
'aur',
'Ġturned',
'ĠJuly',
'down',
'anced',
'Ġrecently',
'ĠEar',
'Ġce',
'ĠStar',
'ĠCong',
'rought',
'Ġblood',
'Ġhope',
'Ġcomment',
'aint',
'Ġarri',
'iles',
'Ġparticip',
'ought',
'ription',
'08',
'Ġgave',
'Ġselect',
'Ġkilled',
'sych',
'Ġgoes',
'ij',
'Ġcoll',
'Ġimpact',
'atives',
'ĠSer',
'09',
'ĠAugust',
'Ġboy',
'de',
'ĠDes',
'Ġfelt',
'US',
'Ġexpected',
'Ġimage',
'ĠMark',
'ccording',
'oice',
'EC',
'ĠMag',
'ened',
'hold',
'ĠPost',
'Ġprevent',
'No',
'Ġinvolved',
'Ġeyes',
'Ġquickly',
'At',
'unk',
'Ġbehav',
'Ġur',
'Ġled',
'come',
'ey',
'Ġcandid',
'Ġearlier',
'Ġfocus',
'ety',
'Pro',
'ledge',
'ixed',
'illed',
'Ġpopular',
'AP',
'Ġsett',
'light',
'Ġvarious',
'inks',
'Ġlevels',
'Ġroad',
'ellig',
'ables',
'hel',
'ittee',
'ĠGener',
'ype',
'Ġheard',
'icles',
'Ġmis',
'Ġusers',
'ĠSan',
'Ġimprove',
'Ġfather',
'Ġsearch',
'They',
'vil',
'Ġprofess',
'Ġknew',
'Ġloss',
'Ġevents',
'Ġbillion',
'07',
'02',
'ĠNews',
'ĠAM',
'Ġcover',
'where',
'ension',
'Ġbott',
'Ġareas',
'ences',
'ope',
'ĠTwitter',
'ael',
'Ġgets',
'ĠGoogle',
'Ġsn',
'iant',
'Ġvote',
'Ġnearly',
'Ġincluded',
'Ġrecogn',
'zz',
'mm',
'aled',
'Ġhappened',
'04',
'Ġhot',
'Ġwhose',
'Ġcivil',
'Ġsuff',
'oes',
'itiz',
'ĠSyri',
'Ġrespond',
'Ġhon',
'Ġfeatures',
'Ġeconomic',
'ĠApril',
'rim',
'Ġtechnology',
'Ġoption',
'aging',
'Ġpurch',
'Re',
'Ġlat',
'chie',
'isl',
'Ġrecomm',
'uf',
'Ġtraining',
'Ġeffects',
'Ġfast',
'Ġ2010',
'Ġoccur',
'Ġwebsite',
'Ġemail',
'Ġsens',
'ech',
'Ġoil',
'Ġinflu',
'Ġcurrently',
'ĠSch',
'ĠAdd',
'Ġgoal',
'Ġscient',
'Ġconv',
'emy',
'Ġdecided',
'Ġtravel',
'Ġmention',
'LL',
'03',
'Ġelection',
'Ġphone',
'Ġlooks',
'Ġsituation',
'Ġcy',
'Ġhor',
'bed',
'ĠCourt',
'aily',
'aves',
'Ġquality',
'ĠComp',
'wise',
'Ġtable',
'Ġstaff',
'ĠWind',
'ett',
'Ġtried',
'idered',
'Ġaddition',
'Ġbox',
'Ġlack',
'arily',
'Ġwide',
'Ġmid',
'Ġboard',
'ysis',
'Ġanti',
'ha',
'Ġdig',
'ening',
'Ġdro',
'Con',
'Ġslow',
'based',
'sequ',
'Ġpath',
'Ex',
'aker',
'Ġworked',
'Ġpen',
'Ġengine',
'Ġlooked',
'ĠSuper',
'ĠServ',
'Ġvictim',
'Un',
'Ġproperty',
'Ġintrodu',
'Ġexecut',
'ĠPM',
'Le',
'Ġcolor',
'ĠMore',
'Ġ60',
'Ġnetwork',
'Ġdate',
'cul',
'idge',
'Ġextra',
'Ġsle',
'Ġwond',
'Ġreports',
'just',
'ĠAustral',
'Ġcapital',
'Ġens',
'Ġcommand',
'Ġallowed',
'Ġprep',
'Ġcapt',
'hib',
'Ġnumbers',
'chan',
'Ġfair',
'mp',
'oms',
'Ġreach',
'With',
'tain',
'Ġbroad',
'Ġcouple',
'ecause',
'lying',
'ĠFeb',
'Ġscreen',
'Ġlives',
'Ġprior',
'ĠCongress',
'Ar',
'Ġapproach',
'Ġemer',
'aries',
'ĠDis',
'serv',
'ĠNe',
'Ġbuilt',
'cies',
'Ġrepe',
'Ġrules',
'force',
'ĠPal',
'Ġfinancial',
'Ġconsidered',
'ĠChar',
'nces',
'ĠIS',
'Ġbrought',
'Ġbi',
'iers',
'ĠSim',
'OP',
'Ġproducts',
'Ġvisit',
'Ġdocument',
'Ġconduct',
'Ġcompletely',
'ining',
'ĠCalif',
'ibly',
'Ġwritten',
'ĠTV',
'ements',
'Ġdraw',
'One',
'Ġpublished',
'Ġsecret',
'rain',
'het',
'ĠFacebook',
'onday',
'ĠUp',
'Ġsexual',
'Ġthous',
'ĠPat',
'Ġess',
'Ġstandard',
'Ġarm',
'ges',
'ection',
'Ġfell',
'Ġforeign',
'ani',
'ĠFriday',
'Ġregular',
'inary',
'Ġincreased',
'Ġusually',
'Ġdemon',
'Ġdark',
'Ġadditional',
'rol',
'ĠOf',
'Ġproduction',
'!!',
'undred',
'Ġinternational',
'idents',
'ĠFree',
'roup',
'Ġrace',
'Ġmach',
'Ġhuge',
'All',
'lear',
'ovember',
'Ġtown',
'Ġattention',
'ĠOff',
'yond',
'ĠThen',
'field',
'Ġterror',
'raz',
'ĠBo',
'Ġmeeting',
'ĠPark',
'Ġarrest',
'Ġfear',
'Ġaw',
'ĠVal',
'oring',
"',",
'Ġextreme',
'arr',
'Ġworkers',
'After',
'Ġ31',
'net',
'ament',
'Ġdirectly',
'Ġpopulation',
'ube',
'ĠOctober',
'ĠIN',
'ĠJanuary',
'ĠDavid',
'Ġcross',
'cember',
'ĠFirst',
'Ġmessage',
'irit',
'Ġnation',
'Ġpoll',
'isions',
'Ġanswer',
'ny',
'isode',
'Ġcarry',
'ĠRussia',
'Ġhear',
'ength',
'roy',
'Ġnatural',
'inally',
'Ġdog