From 614ff7b828ee219d4b719bdd48ab9fcf06f34e26 Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Thu, 16 Jul 2026 22:50:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: timinar/baby-llama-58m Source: Original Platform --- .gitattributes | 35 + README.md | 47 + config.json | 22 + generation_config.json | 7 + merges.txt | 15795 +++++++++++++++++++ model.safetensors | 3 + mrclean.py | 95 + plot_eval_scores.ipynb | 12354 +++++++++++++++ pytorch_model.bin | 3 + special_tokens_map.json | 6 + tokenizer.json | 31862 ++++++++++++++++++++++++++++++++++++++ tokenizer_config.json | 9 + training_args.bin | 3 + vocab.json | 1 + 14 files changed, 60242 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 config.json create mode 100644 generation_config.json create mode 100644 merges.txt create mode 100644 model.safetensors create mode 100644 mrclean.py create mode 100644 plot_eval_scores.ipynb create mode 100644 pytorch_model.bin create mode 100644 special_tokens_map.json create mode 100644 tokenizer.json create mode 100644 tokenizer_config.json create mode 100644 training_args.bin create mode 100644 vocab.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a6344aa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,35 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..c0c9f71 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +--- +license: unknown +language: +- en +--- + +# Baby Llama + +Our submission to the `strict-small` track of the [BabyLM challenge](https://babylm.github.io/index.html). + +Baby Llama is a 58M-parameter model, distilled from an ensemble consisting of LLaMA-360M and GPT2-705M, both trained on the `babylm_10M` dataset. + +See the associated [paper](https://arxiv.org/abs/2308.02019) for a detailed discussion of the training procedure and of the model performance. +The training code is available at [https://github.com/timinar/BabyLlama](https://github.com/timinar/BabyLlama). + +### Hyperparameters for the tasks that require fine-tuning + +When evaluating the model on the [tasks that require fine-tuning](https://github.com/babylm/evaluation-pipeline/tree/main#fine-tuning), +we noticed that the [default hyperparameters](https://github.com/babylm/evaluation-pipeline/tree/main#hyperparameters) +suggested by the BabyLM organizers lead to severe overfitting in a number of tasks. +To avoid this issue, we have re-tuned those hyperparameters. +The sets of hyperparameters selected for each task are listed in the table below. + +| Task | Maximum learning rate | Batch size | Maximum epochs | Patience | Evaluate every (steps) | Random seed | +| ---- | ------------- | ---------- | -------- | -------- | ---------- | ---- | +| CoLA | 4e-5 | 64 | 3 | 10 | 20 | 12 | +| SST-2 | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| MRPC | 3e-5 | 64 | 3 | 10 | 20 | 12 | +| QQP | 4e-5 | 64 | 10 | 10 | 1000 | 12 | +| MNLI | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| MNLI-mm |5e-5 | 64 | 6 | 10 | 200 | 12 | +| QNLI | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| RTE | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| BoolQ | 3e-4 | 16 | 10 | 10 | 10| 12 | +| MultiRC | 1e-4 | 64 | 7 | 10 | 1000 | 42 | +| WSC | 5e-7 | 1 | 10 | 1000 | 2000 | 12 | +| CR (Control) | 5e-5 | 64 | 10 | 10 | 100 | 12 | +| LC (Control) | 1e-3 | 64 | 1 | 2 | 10 | 12 | +| MV (Control) | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| RP (Control) | 1e-3 | 64 | 1 | 10 | 10 | 12 | +| SC (Control) | 1e-3 | 64 | 2 | 10 | 10 | 12 | +| CR\_LC | 1e-3 | 64 | 2 | 10 | 10 | 12 | +| CR\_RTP | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| MV\_LC | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| MV\_RTP | 5e-5 | 64 | 6 | 10 | 200 | 12 | +| SC\_LC | 1e-3 | 64 | 2 | 10 | 10 | 12 | +| SC\_RP | 1e-3 | 64 | 2 | 10 | 10 | 12 | \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..02cae49 --- /dev/null +++ b/config.json @@ -0,0 +1,22 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "bos_token_id": 1, + "eos_token_id": 2, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1024, + "max_position_embeddings": 256, + "model_type": "llama", + "num_attention_heads": 8, + "num_hidden_layers": 16, + "pad_token_id": 0, + "rms_norm_eps": 1e-06, + "tie_word_embeddings": false, + "torch_dtype": "float32", + "transformers_version": "4.29.1", + "use_cache": true, + "vocab_size": 16000 +} diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..684bc56 --- /dev/null +++ b/generation_config.json @@ -0,0 +1,7 @@ +{ + "_from_model_config": true, + "bos_token_id": 1, + "eos_token_id": 2, + "pad_token_id": 0, + "transformers_version": "4.29.1" +} diff --git a/merges.txt b/merges.txt new file mode 100644 index 0000000..940a668 --- /dev/null +++ b/merges.txt @@ -0,0 +1,15795 @@ +#version: 0.2 +Ġ t +h e +Ġ a +i n +Ġt he +Ġ w +r e +o u +Ġ s +o n +e r +h a +n d +i s +Ġ o +Ġ b +i t +Ġ c +Ġ m +Ġ f +Ġ I +in g +o r +Ġ d +e d +a n +l l +e n +Ġt o +e s +Ġ p +Ġ y +Ġo f +Ġ in +a r +Ġa nd +a t +Ġ l +Ġy ou +ha t +a s +Ġ g +o m +Ġ n +Ġ T +i c +o w +v e +l e +Ġ h +o t +Ġ he +e t +a l +Ġ ha +' s +u s +Ġ A +Ġ S +Ġt h +Ġ it +a y +Ġt hat +Ġ is +Ġb e +Ġ on +i on +i d +Ġ e +Ġ W +g h +Ġ re +u t +l d +en t +i m +Ġw as +Ġw e +a c +Ġ H +Ġ Ċ +v er +a m +Ġ M +Ġ C +Ġf or +. . +l y +r i +ĠT he +s t +r o +i r +a d +Ġ B +Ġ - +k e +s e +Ġs t +gh t +Ġ Y +o o +' t +ou t +it h +Ġm e +Ġ k +Ġ u +a ll +Ġa n +Ġw ith +Ġd o +Ġa s +u r +Ġ N +c t +Ġ D +c e +Ġw h +he r +i ll +t er +i f +c h +Ġ O +Ġ P +Ġs e +Ġ " +om e +Ġa re +Ġn ot +Ġ 1 +i l +Ġha ve +Ġ G +Ġth is +Ġa t +ou ld +Ġ L +Ġg o +r a +an t +Ġl i +us t +at ion +o p +Ġk n +Ġ R +Ġ F +e a +ĠH e +g e +ĠY ou +u n +o l +Ġh is +ĠI t +u l +Ġn e +r om +Ġ j +.. . +o re +Ġkn ow +a in +a nd +Ġw hat +Ġ E +Ġd e +t h +Ġ J +Ġc an +Ġthe y +p p +ou r +Ġs o +Ġa l +e ll +u m +Ġa ll +es t +Ġa b +Ġm y +is t +er s +Ġyou r +i e +Ġb y +Ġs h +ar t +Ġf rom +Ġo r +Ġ 2 +Ġw he +Ġ ( +es s +Ġthe re +Ġ Ġ +Ġ r +Ġc on +n t +Ġon e +Ġb ut +o s +i g +Ġu p +ha n +all y +i ght +Ġc om +Ġs u +q u +Ġhe r +Ġha d +on e +' re +e m +Ġh im +r y +re d +e l +a b +Ġ out +Ġli ke +ac k +at e +oo d +Ġw or +Ġs a +ver y +oo k +Ġp l +ĠA nd +re s +am e +Ġ us +i ve +Ġs he +' m +Ġwe re +on g +â Ģ +a ke +in k +Ġp ro +Ġe x +c k +o d +Ġab out +Ġg et +Ġ v +as t +p e +or t +Ġd on +ou nd +ar d +in d +it y +Ġ K +Ġn o +ic h +Ġj ust +ri ght +Ġwh o +Ġ1 9 +Ġhe re +Ġd id +i es +ĠW hat +Ġ U +e ar +ea h +a k +Ġthe m +b er +im e +Ġw ould +Ġm an +in e +Ġw ant +' ll +Ġ if +Ġ2 0 +Ġw ill +Ġs ome +Ġth ink +u d +ou s +ĠI n +v en +o st +Ġin t +a p +e p +Ġan y +h ing +Ġ right +ow n +Ġwh ich +ic e +ĠN o +Ġg ot +m ent +id e +t her +Ġha s +it t +us e +Ġse e +ĠS t +ou gh +ĠW e +a g +Ġwhe n +ĠT h +ĠS o +Ġsa id +f e +c a +h i +Ġa g +Ġp e +Ġa r +Ġs ay +u re +Ġt w +Ġt ime +w ay +i a +Ġ ' +ĠB ut +Ġn ow +i v +Ġbe en +Ġs p +Ġl ook +i an +Ġt r +ac e +ic k +op le +' ve +c i +Ġl o +Ġthe ir +Ġl e +s o +Ġc l +Ġthe n +Ġm ore +ĠO h +is h +re at +Ġgo ing +l f +a re +ĠY eah +n a +Ġo ther +it e +Ġpe ople +Ġc ould +re e +ĠT hat +o se +ar y +Ġof f +Ġo ver +Ġb ack +u e +ot her +ir st +a ge +ac t +Ġ qu +n e +Ġ very +Ġ ro +as s +ou nt +Ġth ing +b le +Ġg ood +on d +ca use +Ġa f +Ġf e +p t +Ġtw o +p er +Ġwor k +Ġto o +Ġh ow +Ġ V +an s +Ġ en +ĠThe y +er m +om et +Ġc o +Ġwhe re +Ġcom p +Ġf irst +ĠTh is +Ġint o +at ed +e nd +Ġt han +Ġp art +ĠW h +ion s +he d +Ġu n +as e +ĠS he +Ġd own +k ay +or d +0 0 +or n +al k +Ġw ay +Ġc ome +u b +r an +ad e +i re +Ġal so +Ġa m +ĠW ell +Ġc all +o g +itt le +i z +Ġy ear +m er +ou ght +o y +Ġwe ll +ĠĠ ĠĠ +f f +Ġp r +Ġb l +Ġg r +at er +Ġ im +Ġ our +Ġb r +v ed +Ġag ain +p l +- - +nd er +Ġon ly +ac h +Ġa d +Ġe very +if e +Ġl ittle +n g +Ġl et +c c +Ġ âĢ +Ġs omet +ur n +Ġd ay +Ġm o +r u +Ġb et +ha r +w n +Ġpl ay +Ġbe cause +w e +v ing +Ġd is +Ġa ct +am p +Ġt e +Ġcon t +ĠW he +Ġne ed +en ce +res s +Ġg u +or m +u ch +Ġm ake +Ġt ake +Ġaf ter +Ġ i +. " +t y +se lf +Ġsh ould +Ġ ` +re n +or y +Ġre ally +f ore +Ġb u +ĠU n +ab le +ig n +c l +e w +ĠThe re +Ġp o +ar k +Ġw r +in t +th ing +Ġthe se +a v +Ġp ut +i p +is s +ic al +Ġ [ +Ġp re +Ġt ell +Ġha pp +an g +en s +Ġdo es +ic t +Ġth r +at her +Ġf l +Ġu nder +Ġ20 1 +Ġa pp +a u +ul t +Ġm uch +on na +Ġp er +u ck +Ġsomet hing +Ġme an +f t +Ġne w +at es +l and +i ed +ĠY es +oo l +o ll +Ġg onna +an ce +ĠC h +ĠH ow +i le +Ġre s +l es +on s +e ct +Ġm ay +Ġm ade +o b +' d +Ġs er +Ġl ong +Ġcom m +Ġs c +Ġ er +Ġe ven +ation s +Ġc h +od y +Ġ' ' +u ll +Ġ` ` +Ġt alk +ĠI f +Ġbe fore +at h +Ġne ver +Ġit s +b e +Ġ 3 +it ed +Ġc ar +Ġs m +ad y +d u +Ġdid n +Ġre m +ver s +t ing +p ort +u ally +i ly +ve l +k s +t e +ou se +v es +Ġ ke +or s +ĠA n +p s +Ġha nd +i ous +it ion +Ġre c +Ġman y +ri ed +ĠM r +Ġd if +ĠD o +Ġg reat +o ld +a il +Ġyear s +t ain +Ġo kay +a w +Ġl ife +Ġthr ough +Ġm ost +w ard +Ġs ha +âĢ Ŀ +Ġhe l +ĠâĢ ľ +ĠI s +is e +i x +re nt +ĠA s +Ġc han +f ul +ĠA l +Ġ20 0 +c es +a ve +Ġth ought +Ġst ill +Ġth ose +i gh +ct ion +Ġthing s +Ġse c +Ġbe l +ĠA ll +d ay +g in +Ġo ld +Ġ ra +Ġs pe +Ġbe c +o h +in ce +Ġth ree +Ġw ent +g et +i al +Ġa way +Ġst art +Ġas k +Ġc ame +Ġy eah +he s +e ver +Ġc ount +Ġf ound +Ġus ed +Ġd es +Ġcall ed +os s +one y +Ġl ast +Ġlo ve +o ck +Ġm ust +ot h +Ġsh ow +ent s +ĠB e +ing s +Ġf ind +Ġdo ing +y s +ter n +Ġh ome +o c +Ġc r +Ġo h +ri end +im es +Ġe nd +ĠN ow +" . +Ġhel p +Ġbe ing +Ġat t +Ġg ive +x t +Ġo wn +g an +ĠM ar +c ed +le ase +en ed +ĠR e +Ġsu ch +Ġm in +at ch +mer ic +Ġwh y +ĠWh y +o ot +Ġe ar +Ġl ea +Ġn ame +al s +Ġc our +Ġf am +hi ld +Ġs ame +f orm +ir l +ĠWhe n +Ġn ight +u p +Ġk ind +way s +Ġdif fe +Ġl ot +Ġt ry +p h +Ġt ra +Ġw on +ĠB r +ch ool +Ġb ig +a it +ĠD on +m y +ĠO n +id ent +Ġre l +Ġc are +ĠA meric +y e +Ġo p +n ing +on t +ak ing +Ġ1 8 +re st +Ġs l +ha m +g g +Ġw om +Ġwor ld +Ġc hild +Ġsu pp +out h +b ody +Ġm ight +Ġ 4 +Ġfe el +Ġpl ace +i ld +ĠD e +Ġp ol +Ġhe ad +ers on +Ġn um +ĠA r +m an +as ed +ĠL et +d er +Ġk ill +ĠS e +Ġin d +Ġm ar +Ġt urn +em ber +ow er +Ġcon s +ation al +Ġus e +Ġf riend +at ing +ut e +T he +l ic +Ġar ound +an y +ur ing +) . +ĠC ome +Ġc he +ĠA t +a ir +Ġan other +Ġre g +Ġha r +Ġf in +" , +Ġp h +Ġs et +Ġa cc +ĠM y +Ġal ways +Ġa c +t s +ĠO kay +pe ct +m b +) , +Ġsu re +ro s +v ent +we en +â Ļ +Ġp res +a h +Ġh ouse +Ġle ft +l i +Ġ 5 +ĠT han +Ġs y +Ġm om +Ġfor m +ul ar +ĠF or +Ġm oney +Ġbet ter +cl ud +ic s +Ġany thing +ĠHe y +au ght +i b +g r +ĠUn ited +en er +à © +ĠThe n +Ġke ep +Ġf our +Ġs ur +l ed +or ry +Ġbel ie +i ble +Ġre al +ot t +ĠN ot +oll ow +n ess +m ber +a z +Ġe l +Ġdiffe rent +Ġe le +Ġb o +Ġb it +Ġto ld +Ġb oy +Ġ âĻ +Ġd one +I N +ar s +u nd +ĠF ran +Ġm on +in s +Ġbet ween +ter s +u g +fe ct +Ġwor d +ĠN ew +Ġr un +ĠG od +Ġ | +ir d +p le +u al +Ġg irl +, " +ci al +Ġ ent +ĠA f +Ġd r +Ġc ity +Ġsec ond +Ġu h +i o +Ġ erm +Ġknow n +Ġwh ile +Ġpo int +Ġg l +Ġe ver +Ġs chool +Ġp erson +ĠC an +a le +ĠâĻ ª +Ġin s +is hed +as on +Ġre t +or th +Ġy es +Ġm at +ĠM ay +Ġtoo k +r ic +j ect +Ġs w +am es +Ġ19 9 +Ġsu b +Ġu nt +Ġde c +Ġc le +Ġin v +Ġc har +ĠSt ates +ak es +Ġm en +Ġin clud +o ve +Ġm et +n er +Ġst ud +Ġw ar +Ġw ater +âĢ Ļ +Ġb ook +re w +r ow +ĠE ng +Ġd ist +a j +it ies +ĠS h +Ġst op +Ġin st +ce pt +Ġo b +Ġm us +at ive +Ġf ollow +ol og +or k +Ġne xt +Ġb us +ĠG o +ĠJ ust +Ġcour se +oh n +c ess +Ġas s +Ġf ar +hi p +Ġb oth +re t +Ġse em +Ġnot hing +ou n +Ġ- - +it s +u h +g ed +Ġp ass +op e +ĠWh o +Ġc ent +ea k +ĠI nd +i vers +ct or +c y +ĠWhe re +Ġc ap +Ġb est +t on +Ġsa w +Ġunt il +Ġpro du +v ie +Ġwe e +Ġe ach +un e +g er +Ġs ing +ros s +E R +l ing +ĠC om +Ġsm all +Ġp op +Ġact ually +Ġnum ber +is ion +u res +ver n +ĠA re +Ġc ha +Ġl ater +Ġf ather +a x +st and +Ġb re +Ġl ar +Ġli ght +o k +Ġdoes n +Ġe m +he re +Ġl ist +ĠJ ohn +as h +os ed +Ġm other +ot e +Ġf un +Ġ Q +Ġad d +c er +Ġ Z +m s +re am +Ġh igh +n y +Ġon ce +i red +Ġ 6 +ĠS p +i er +Ġw ait +Ġwant ed +ĠAmeric an +Ġin c +i et +Ġc a +Ġel se +Ġagain st +Ġg ra +ut ion +Ġ _ +l ess +u ff +Ġfam ily +ĠL ook +ut h +Ġro om +Ġim p +Ġen ough +ub lic +Ġpro ble +r ist +Ġlo c +Ġse en +e red +t he +if ic +ĠO ne +Ġbec ame +ĠC l +Ġf act +Ġst and +get her +ĠL e +Ġto gether +ĠG ood +un g +Ġint e +ri b +Ġfe w +m e +ab ly +t en +n ed +Ġevery thing +Ġsay s +Ġhar d +in es +Ġyou ng +in ed +Ġwith out +Ġop en +ĠH is +Ġs im +Ġs ince +1 9 +Ġre st +Ġqu ite +is ter +Ġin ter +Ġf r +Ġs ide +Ġst r +Ġim port +Ġst ay +y es +in ess +ur y +Ġs orry +is m +ri es +Ġm ind +p art +Ġre ad +Ġpl an +ĠM e +d d +Ġme et +Ġd ied +Ġs ign +Ġ19 8 +Ġhe ar +ĠThan k +Ġb ad +Ġco ll +en e +Ġlook ing +Ġ id +Ġre p +Ġd ra +Ġs ix +ĠP ro +Ġli ve +Ġcom ing +orn ing +Ġd uring +is ed +Ġf ive +Ġunder stand +Ġe v +i ke +r al +t ed +en se +Ġlea ve +u c +er tain +Ġpre t +Ġh um +Ġs it +Ġth ough +ĠR ight +Ġdis c +Ġbelie ve +Ġhapp ened +ĠT H +Ġd ire +in a +Ġqu est +Ġm ain +Ġex p +Ġd ri +Ġwho le +Ġto day +s on +ĠO r +ĠP r +Ġis n +at t +Ġl and +Ġex t +Ġchild ren +ĠS c +Ġte am +an k +ĠD id +Ġp lease +Ġk id +it her +Ġday s +se l +ĠU h +Ġ 8 +Ġmo ve +Ġto wn +ĠM m +Ġs on +Ġget ting +Ġt imes +it al +Ġf ace +st em +Ġtr ans +Ġinte rest +Ġm ed +IN G +Ġn ice +Ġs le +an na +Ġask ed +Ġs ir +Ġb ro +Ġhe ard +Ġ 7 +Ġp oss +Ġhim self +ĠK ing +Ġmus ic +Ġ ed +as ter +ist s +ie ld +Ġbu ild +00 0 +Ġar t +Ġs ort +et s +ivers ity +Ġwom an +b all +Ġg ener +ĠC ar +ct ed +Ġne ar +Ġcount ry +Ġj ob +a id +ĠE r +ou p +re ady +Ġe yes +ant s +Ġ19 7 +Ġw alk +Ġ1 0 +Ġc ol +ment s +Ġs k +Ġe as +iz ed +Ġm orning +Ġg ave +Ġy et +Ġ ... +Ġde ath +ĠT o +ow s +l ish +Ġm il +Ġha ving +Ġimport ant +c he +Ġe at +Ġan s +ĠB l +Ġh old +Ġle ad +Ġp ower +Ġhe art +Ġf il +ĠA b +Ġha lf +Ġal ready +us s +Ġde ad +er y +ĠAf ter +an e +Ġst ate +Ġh our +iz e +Ġrem ember +Ġ 9 +Ġkn ew +ĠG erm +t a +? " +Ġup on +Ġwr ong +ĠYou r +Ġsha ll +iv es +aught er +ĠS ome +Ġg ame +Ġc ase +ĠCh rist +Ġre f +Ġsay ing +Ġa ir +ĠG et +Ġp ay +Ġpro b +Ġm od +a ut +A N +u es +ward s +g t +pp ed +Ġc ur +vel op +is on +ĠC on +y ing +Ġf ore +. âĢĿ +Ġtalk ing +at s +Ġme ans +Ġbe gan +d y +Ġso on +m ost +Ġgu y +o ber +Ġb ab +Ġb orn +ĠE x +Ġsy stem +c hed +e e +Ġm ill +Ġret urn +Ġs ong +Ġf ull +ĠHe re +Ġcon f +Ġp ri +Ġtry ing +ic ally +Ġmon th +Ġstart ed +Ġg i +Ġ * +Ġhis t +on y +Ġrec ord +s ide +Ġoff ic +Ġl aw +ur al +2 0 +Ġm iss +Ġgo vern +Ġal ong +re en +Ġbr ing +id ed +Ġdo or +ĠĠĠĠ ĠĠĠĠ +b y +Ġe qu +Ġof ten +Ġr ound +Ġc ertain +le ased +Ġh ur +Ġex pl +r on +m ed +ag es +Ġcomp le +Ġw ind +Ġ1 5 +Ġid ea +Ġp rom +Ġg one +Ġw ife +Ġbr other +ll o +at ure +Ġf ight +il ity +a i +er ing +Ġ19 6 +ĠâĢ ĵ +Ġw anna +s h +ro p +Ġj o +r ict +Ġchan ge +Ġpro v +Ġhand s +Ġw in +us h +er n +Ġf ell +Ġhapp en +ate ly +Ġser v +ĠW ill +Ġf oot +Ġs ent +Ġt ri +Ġl ine +ĠC ount +Ġb as +Ġl ear +Ġs ound +Ġpret ty +g es +am ed +Ġplay ed +Ġcont in +u red +Ġ1 7 +Ġl ess +Ġsp eak +Ġt y +ĠBe cause +b r +Ġmat ter +ion al +ne y +Ġor der +Ġst ory +Ġf uck +Ġgo es +ak en +Ġw atch +p ed +Ġd et +Ġc reat +Ġp ar +id es +Ġab le +Ġmom ent +c le +Ġin f +o v +et h +Ġd ad +id d +Ġ ri +Ġb ed +it er +o on +Ġ es +Ġ . +Ġde velop +ĠT r +Ġto p +Ġsle ep +m or +Ġproble m +o ice +Ġwom en +ĠP l +ri gin +O U +Ġde f +i k +ren ce +Ġare a +ĠG e +pe nd +w here +g s +Ġcl ass +o le +Ġsome one +an u +Ġl ost +a red +Ġf all +ic es +Ġwas n +ĠEng lish +Ġst e +i am +Ġpart ic +Ġm aking +Ġp at +ap an +Ġbus iness +Ġp ain +Ġlar ge +Ġs n +il t +Ġprob ably +c hes +u ro +Ġfriend s +Ġsh ort +Ġpol it +d e +Ġt erm +Ġpres ent +l er +Ġcom es +Ġ hat +Ġyour self +âĢ ĵ +Ġex per +Ġlook ed +Ġs qu +ĠT e +Ġbe aut +a pp +Ġp ur +ĠBr it +! " +r act +ac es +Ġdr ink +ar ch +Ġtr ue +ian s +Ġgu ys +Ġm ark +Ġ # +ĠA h +ĠE very +Ġst re +Ġw ond +em ent +amp le +t o +at or +ap er +Ġcont ro +w er +Ġbec ome +Ġbl ood +Ġre ady +ĠF l +ĠJ apan +ent ion +Ġal most +Ġpr ot +am a +Ġb ody +Ġc or +Ġwork ing +ul ation +ĠA d +Ġpro f +Ġwee k +e y +Ġsh ip +Ġmay be +i ver +O N +er v +Ġf ine +Ġs ol +Ġan im +l t +Ġd iv +ĠE m +ang u +Ġag o +g y +ĠH er +ĠP et +ĠP res +Ġp ie +ĠĠ Ġ +ra nd +Ġwould n +Ġa w +ĠW ar +Ġbab y +Ġcomm un +i ent +ĠUn iversity +Ġa ge +le y +ĠM an +Ġh ope +Ġo rigin +ĠThe se +Ġc ut +Ġp ick +gr am +ĠFran ce +us ed +Ġo cc +Ġf ree +Ġp os +Ġs we +are nt +Ġear ly +Ġgi ven +z e +ĠS ha +Ġv is +Ġ19 4 +ĠMr s +Ġde al +Ġgr oup +ĠP lease +Ġcon st +od e +Ġc ou +h m +ou ble +ent y +Ġad v +Ġ1 6 +A T +Ġh or +Ġha ven +ĠH ar +Ġmo vie +Ġo pp +anu ary +Ġh on +Ġbe h +Ġt er +Ġ1 2 +ur ch +Ġspe c +Ġquest ion +aj or +Ġmy self +Ġv ar +ard s +p r +u ly +Ġl ate +Ġcl ose +Ġbr ought +e b +Ġbe gin +ĠW or +Ġcle ar +Ġbre ak +c o +ep t +et y +ie f +Ġo per +Ġre leased +um b +Ġf ire +Ġnew s +Ġbl ack +Ġre ce +Ġle ast +Ġst uff +ĠW ith +cc ess +ĠS outh +ĠA m +ĠC al +Ġkill ed +Ġthan k +st er +Ġf ood +o ke +Ġe ight +Ġd aughter +Ġc ra +ĠP e +Ġword s +Ġt aken +Ġk ing +ĠJ anuary +ha ps +A R +if ul +c on +ĠCount y +Ġt en +Ġre ason +n ot +o or +Ġst ation +Ġp ublic +Ġp ast +ut es +el t +in o +sel ves +Ġse ver +iv ed +Ġgovern ment +Ġmill ion +ĠT w +Ġr an +Ġgu ess +Ġbeh ind +Ġex ample +Ġ & +s y +Ġb all +Ġ19 5 +Ġhapp y +Ġl angu +om an +um p +it ing +Ġcomp any +Ġfr ont +ĠCom m +ĠY ork +Ġor gan +al th +olog y +b orn +ĠG r +in ing +Ġr ather +Ġwh ite +el s +c ent +ĠC har +Ġsever al +ĠA ust +Ġmar ried +m a +Ġall ow +le v +es e +ĠP h +Ġchar ac +ud e +O R +Ġt aking +Ġm akes +v ious +Ġex c +o f +al ity +Ġind e +f ic +Ġt re +er t +Ġso ld +ou d +Ġn orth +ĠE uro +g ue +on es +ĠN e +Ġp ict +Ġv al +i qu +Ġe ither +os p +ac ed +en g +Ġal one +ĠM iss +Ġen g +Ġb ar +und red +Ġhum an +Ġ est +ain s +Ġin form +Ġ ve +b um +ĠTH E +, âĢĿ +Ġh ot +Ġs at +Ġturn ed +Ġdes ign +r ing +i ence +Ġre d +Ġre port +o x +Ġpro gram +itt en +Ġstr ong +ren ch +ĠHe llo +ĠWor ld +he ad +en n +Ġatt ack +i um +am ent +Ġser ies +Ġ 0 +ci ent +m ing +Y ou +en cy +Ġsu ccess +Ġqu ick +Ġ X +Ġli ving +ĠP ar +ull y +at ic +ĠA p +Ġan n +Ġres p +Ġthink ing +Ġsupp ort +l a +Ġpart y +Ġad m +Ġde m +ĠG u +h y +ĠMar ch +ĠEuro pe +Ġcomm on +Ġ $ +ent ly +Ġother s +f ord +Ġd ream +ri l +ĠO f +Ġl ay +Ġf ig +ĠC ap +ĠJ o +Ġh undred +Ġlook s +Ġcould n +ou b +b and +ĠN orth +ĠD r +ham p +ĠH ave +E S +Ġsomet imes +e ad +ain ed +ĠAn y +Ġgr ow +ĠBrit ish +Ġs um +m en +Ġlist en +og ra +id ge +Ġt ou +Ġst ru +Ġal bum +act ly +ĠM ic +ĠGe or +her n +un k +c ha +ot s +Ġwith in +Ġhist ory +Ġn amed +Ġt em +he n +Ġb and +Ġche ck +c om +f fect +ĠB ar +itt ing +i or +Ġle g +Ġhe ld +ept ember +o int +ran ge +Ġm ess +Ġbeaut iful +b it +Ġc e +Ġc ost +Ġex pect +p ar +Ġfil m +Ġ1 1 +a im +Ġwant s +Ġ z +Ġth ird +ĠW as +ĠC ha +Ġst ra +Ġv ill +Ġres ult +Ġs outh +Ġmin ute +ĠM in +Ġh it +Ġbu ilt +Ġus ually +iv ing +ri e +Ġro ad +l ished +au gh +ĠD an +Ġpo or +Ġper form +Ġins ide +Ġapp ro +ĠJ ack +Ġspe cial +Ġro ck +ĠPres ident +Ġre qu +ĠF rench +Ġb ra +Ġc ir +ĠS eptember +Ġsing le +al d +Ġ ill +Ġgo ld +Ġac ross +Ġa v +es tern +ug ust +id er +Ġcon d +ĠJ uly +f ully +ĠT om +Ġme mb +Ġplay ing +ond on +Ġde ar +Ġposs ible +Ġmonth s +ĠE d +Ġmin utes +am b +Ġout side +in ation +ĠP er +un t +Ġse ason +Ġre pl +Ġte ac +Ġst at +ĠC ol +z y +Ġgot ta +Ġst ar +Ġbu y +e ge +Ġe ffect +Ġus ing +Ġapp ear +Ġs il +Ġinclud ing +ĠB y +Ġwond er +ous and +ĠMay be +Ġ19 3 +E N +Ġto t +Ġswe et +Ġam ong +ff ic +Ġbuild ing +Ġm ag +Ġse nd +ound s +Ġele ct +ch n +ĠS u +Ġcon cer +mor row +Ġde part +Ġt ried +Ġc op +u ed +Ġloc al +Ġd ark +ie w +Ġh uh +ĠL ike +ĠR ep +Ġd est +Ġha ir +b s +us band +Ġc amp +ĠL ondon +l s +ct ober +ĠJ une +ac hed +ĠN ational +Ġ1 3 +ĠL ea +Ġab s +ĠEng land +d om +al es +Ġli ved +ĠA ugust +ir th +Ġmemb ers +Ġm ur +Ġprof ess +ĠP a +it ch +Ġ1 4 +Ġc re +ĠHow ever +Ġpop ulation +m p +Ġt est +Ġle vel +Ġfollow ing +Ġm ajor +Ġoff ice +as es +Ġf elt +Ġn at +ress ed +Ġwr itten +ĠQ u +ĠS ir +L L +att le +Ġde v +vie w +| | +res ent +ce mber +uth or +idd le +g est +Ġv ide +Ġd ie +y n +Ġany one +f ort +Ġpro cess +un ch +Ġwor ry +or ies +Ġans wer +Ġse a +Ġpartic ular +Ġb ird +Ġth ousand +ĠC ent +ĠAp ril +c ing +W hat +Ġg un +Ġv oice +ĠD ad +Ġh usband +re ad +ea red +Ġget s +Ġt ill +Ġis s +ĠSe e +if ied +ĠIt al +I I +Ġs un +Ġf a +ke y +an a +ĠW est +Ġt reat +Ġl a +b ers +hi le +Ġhe ll +i pp +l ight +Ġp ull +Ġse ven +Ġlangu age +lev ision +i od +Ġf av +th ough +Ġv iew +Ġ ! +Ġfor mer +ĠD av +Ġcomple te +Ġwork ed +Ġ3 0 +e en +so ci +Ġde p +Ġme mber +ĠO ctober +ĠF rom +Ġt able +Î ¿ +ur s +ru ary +eb ruary +ore d +it ions +ĠC ity +Ġcan not +Ġde fe +Ġhour s +Ġc ross +le t +Ġwhe ther +Ġwork s +Ġm er +Ġevery one +ĠT ake +Ġpr act +Ġcent ury +ogra ph +Ġf re +ĠS w +Ġor d +Ġb ased +Ġon es +ir on +Ġpro per +ĠDe cember +h uh +ve mber +Ġdif fic +Ġinv ol +Ġchan ce +Ġc ry +Ġfor g +Ġseem s +Ġwr ote +.. .. +Ġcle an +Ġeas y +Ġl ow +ĠH i +ĠNo vember +ĠGerm an +Ġto morrow +Ġwe ar +Ġf ur +Ġwr ite +Ġpol ice +ĠThan ks +Ġcou ple +air s +Ġw ish +Ġinform ation +Ġhow ever +c il +Ġt on +Ġf if +Ġd am +as ure +ĠE ar +Ġp aper +Ġbo x +ra id +r it +Ġw all +Ġknow s +Ġboy s +Ġprot ect +b o +p or +Ġ ? +Ġs ense +Ġtr ad +Ġli ves +Ġco ld +id ing +Ġserv ice +Ġc al +ĠAmeric a +Ġp ost +Ġgr ound +Ġe vent +i en +tern ational +Ġcur rent +Ġfe et +Ġchan ged +Ġl ad +ĠF ebruary +Ġtw enty +Ġr u +Ġp ub +k es +ain t +Ġf ast +g ing +Ġgra nd +Ġm ine +Ġmo ved +Ġpro p +our n +w ork +Ġr ad +ĠInd ian +Ġex actly +Ġlong er +id ence +ul a +ci ally +ĠO K +is ing +Ġis land +ĠW ait +Ġdo g +Ġsu per +Ġal right +Ġ201 3 +Ġf ield +g o +Ġcomp et +ĠM c +Ġsupp osed +ro om +Ġdra w +oo se +Ġb irth +r ation +Ġs ca +Ġf ail +l u +ĠE n +ĠJ ames +Ġph one +Ġp arent +it ive +Ġd i +at a +Ġthem selves +Ġst ep +y r +ay s +Ġd ro +Ġh ig +ir ty +Ġper iod +Ġcontro l +Ġl ady +Ġ20 2 +Ġf air +ill e +Ġcomm une +Ġcharac ter +op s +Ġrel ig +an ces +le x +iv il +Ġ201 0 +Ġcare er +um ent +Ġpri v +Ġ vers +id a +Ġgener al +Ġaf raid +Ġtr uth +c ome +Ġb ott +Ġsh ot +Ġinc re +if t +Ġc ried +Ġper haps +Ġreg ion +Ġm ot +ir gin +as k +ĠK e +u ri +ro du +Ġdes c +ĠY OU +iz ation +ĠD ist +Ġhur t +ĠPet er +ord ing +Ġt it +Ġn ational +Ġ2 5 +Ġa uthor +ĠP art +ha el +Ġs ister +ci ence +ĠR oman +con om +Ġtr ouble +Ġke pt +I C +u k +em y +Ġse x +Ġdire ct +Ġde ep +Ġneed s +ĠAf ric +Ġrece ived +end ed +ĠGeor ge +l o +ir t +Ġlet ter +f er +u ation +ent le +Ġrun ning +Ġc ook +st it +og n +ĠL a +Ġseem ed +pt ion +Ġte levision +Ġsh oot +Ġkid s +ĠH a +Ġpict ure +Ġc os +Ġpop ular +I S +ĠE l +m ore +ĠS er +Ġcour t +Ġac cept +R E +Ġent ire +Ġvide o +Ġton ight +Ġcon ne +Ġar ri +Ġab ove +f fe +il ar +Ġfoot ball +ĠC he +Ġte chn +ang er +iss ion +ow ers +Ġfor get +Ġsp ace +f or +Ġed uc +Ġdo ctor +Ġpr in +Ġc at +Ġser ious +Ġt ree +Ġm ount +Ġl im +ĠS orry +Ġinst ead +ad a +Ġwhat ever +Ġcl ot +har d +l ant +Ġty pe +ĠS y +Ġvill age +ĠG reat +Ġres pect +Ġl ab +ag ed +Ġtou ch +Ġw ood +Ġf ly +Ġper fect +Ġcoll ect +o ver +Ġn orm +Ġex cept +Ġv i +av y +in al +Ġh y +Ġwait ing +ed er +Ġp ress +ĠE ven +gg est +Ġinclud e +dd en +ĠT ell +o es +Ġit self +Ġgo d +ĠI ll +ill s +j oy +ĠA ct +ĠEr m +Ġcl ub +ill y +Ġcount ries +Ġc ult +Ġf ut +ct ure +Ġsome body +Ġare n +Ġpos ition +ĠPe ople +Ġp ort +Ġcreat ed +at ter +Ġl uck +Ġsu ggest +Ġpie ce +e al +Ġhor se +r or +Ġp le +1 8 +Ġe p +Ġdepart ment +b ur +ĠL ord +ol ute +ĠSt op +Ġevery body +ar r +Ġsu dden +t le +ĠSe c +Ġplay er +1 0 +I t +ou l +Ġr ul +Ġrep resent +e c +ĠC or +ĠR ic +Ġinv est +hamp ions +d ing +k en +ĠP ol +Ġbl ue +osp ital +al t +Ġtr ust +Ġbe ar +Ġd in +Ġfuck ing +v al +Ġdiffic ult +le ct +ac y +k y +ĠV irgin +i ally +Ġm ist +Ġan g +ĠSt ate +Ġd ue +ĠH en +Ġde b +Ġpro ject +ĠCap tain +re et +Ġrec ogn +ĠH ouse +fe rence +Ġt akes +Ġam ount +ĠWill iam +Ġgirl s +Ġl ed +Ġfam ous +Ġg en +Ġ2 4 +Ġcr it +Ġsur pr +ol ution +ĠAust ral +Ġcomp ut +p es +Ġwor th +Ġd a +Ġstra ight +Ġha ng +ĠU S +ĠS omet +om in +ĠDist rict +Ġdec ided +Ġc oun +r ay +Ġ et +Ġm ult +ĠC oll +ri an +Ġcap ital +Ġwee ks +ĠS m +b ed +Ġ ] +ĠTw o +Ġst ood +Ġfeel ing +Ġph ot +Ġp en +Ġu m +Ġlear n +Ġser ved +Ġprodu ct +ll ing +Ġg reen +ĠM ary +ro g +Ġro le +re y +pe cially +Ġcar ry +Ġpass ed +Ġsa fe +Ġbook s +Ġc ast +ad es +Ġst ri +Ġsh it +Ġex ist +Ġsl ow +Ġn ine +Ġsp ir +Ġim ag +Ġfun ny +ar a +ĠJ e +Ġfut ure +iv al +Ġeven ing +r is +Ġg entle +Ġsec ret +Ġhe alth +Ġtell ing +Ġv ict +Ġfur ther +Ġg ames +Ġe ye +it ary +Ġme ant +Ġeng ine +s c +ĠA g +G H +re g +Ġear th +Ġproble ms +Ġ ver +Ġf ill +am er +ĠG l +Ġdo ll +ĠP ark +Ġd oub +ĠJ im +Ġcom b +ri age +ĠS chool +Ġj ud +Ġco ver +ĠQ ue +p ing +z z +Ġsub ject +Ġb ene +Ġh oney +Ġpol ic +Ġ ide +Ġher self +Ġf ix +Ġph ys +Ġreturn ed +Ġtr ack +ĠFran k +Ġm is +Ġa head +Ġso cial +Ġm atch +ĠH igh +Ġfollow ed +Ġfig ure +Ġany way +ress ion +Ġcount y +Ġmom my +ci ety +ener al +ĠInd ia +N o +im ent +Ġa in +Ġ19 2 +Ġmeet ing +ce ed +ĠDav id +ĠPa ul +m on +re me +Ġc atch +Ġs us +k ing +Ġrel ations +ĠF irst +ĠD uring +Ġfam il +ĠG ive +Ġcir c +ll ed +Ġcomm and +Ġtra in +Ġdri ve +ĠJapan ese +te en +ĠGerm any +A S +ĠR uss +ĠE ast +Ġsa il +Ġcha ir +ino is +vious ly +ĠC o +Ġm outh +Ġop ened +Ġpres ident +Ġob ject +Ġca use +Ġparent s +Ġm m +ĠC our +Ġ1 00 +ĠMic hael +y le +Ġar m +Ġf ear +Ġp ot +em pt +ĠRep ublic +Ġwho se +Ġn on +Ġre se +Ġd anger +Ġh op +Ġpr ison +Ġanim als +Ġc ool +Ġ201 1 +h o +ag er +Ġvi ol +l in +Ġr ing +Ġthr ow +Ġhapp ens +ĠPh il +Ġsa ve +pl oy +Ġen joy +Ġm ass +Ġdist rict +Ġspec ies +Ġan t +ĠIs land +Ġteac her +oc r +b or +Ġwh om +Ġ200 6 +Ġr is +Ġpart s +Ġf ish +ic ian +Ġcra zy +Ġst ick +ĠSt e +li ke +in y +om b +Ġbu ll +Ġp al +Ġ201 2 +Ġbec om +Ġne g +Ġmo ving +Ġbegin ning +âĢ Ķ +Ġen er +Ġsim ilar +o ly +ĠĠĠĠ ĠĠ +a f +c han +Ġs ick +Ġh ost +Ġest ab +med i +Ġli e +in c +ĠM on +ĠRe ally +Ġcertain ly +ĠVirgin ia +E D +Ġs har +Ġne cess +Ġfor ce +Ġk iss +Ġb urn +Ġb ag +Ġe conom +am s +Ġse par +we red +v ille +Ġm ater +n ow +Ġdis app +Ġs itting +ĠR ober +Ġpl aces +Ġfl oor +ĠNot hing +Ġm iddle +Ġto wards +Ġag re +Ġquick ly +Ġso ft +Ġ2 1 +Ġinterest ing +ĠIll inois +Ġh m +Ġse lf +Ġbe at +ĠA N +itt ed +Ġcl os +ĠM ed +ĠM ost +Ġch urch +Ġspe nd +y ou +in ite +is hing +Ġp aid +ĠL ou +Ġfin ished +Ġm ad +ĠC ong +ro y +Ġv ol +Ġfin al +ĠM a +ĠM om +Ġorigin al +Ġ ident +Ġb reat +ĠM us +ri ble +v in +ic a +Ġfe at +i res +p ha +ĠM o +Ġans wered +Ġc orn +Ġg iving +pl es +Ġquest ions +Ġstre et +c her +um e +Ġqu iet +Ġlea ving +it or +im ate +Ġsh ut +n el +Ġact iv +Ġann oun +if orn +a ff +Ġm ention +i ers +_ , +p ly +Ġdad dy +. , +c ast +ĠHe l +Ġbel ong +ĠFl or +T ER +u ge +ĠS an +ut y +Ġsupp ose +ĠHen ry +Ġre ached +ĠM or +Ġgr ad +Ġb ill +Ġ( " +iforn ia +Ġlo se +ĠWh ich +Ġinf lu +ĠM ad +Ġpolit ical +S t +o ff +Ġp ark +ist en +Ġstud ents +Ġterm s +he l +ĠB et +Ġra il +Ġtot al +Ġ2 3 +Ġacc ount +k ed +hi ps +Ġexper ience +Ġfor ward +ition al +Ġcommun ity +I T +e g +Ġne igh +Ġmod ern +ĠM art +Ġ5 0 +ĠGo vern +ĠG eneral +ĠR o +iv id +Ġfore st +Ġri ver +t ime +Ġ , +Ġc ivil +Ġway s +Ġvar ious +Ġgl ass +ing er +ĠM any +ĠCal ifornia +Ġresp ons +Ġm ach +ĠR iver +Ġth ou +Ġse arch +Ġnum bers +g ar +l ine +Ġh ospital +Ġa ut +ir m +Ġn in +Ġind ust +Ġgl ad +k a +un ic +Ġpub lished +Ġin n +Ġl augh +Ġe gg +ĠS ar +ĠS ure +Ġde pend +Ġint rodu +1 7 +1 5 +ens ive +Ġcons ider +w ell +Ġre v +ct ions +ort s +Ġt ax +Ġallow ed +n ight +en a +Ġdisc uss +Ġd ress +Ġmark et +ra b +Ġob s +Ġwind ow +ĠCh urch +ci ous +Ġcl aim +ens us +Ġnat ural +Ġn et +ut ed +ĠB oy +x ic +Ġra in +Ġ .. +ĠJ es +Ġany more +it es +ĠH ist +ĠO ther +Ġequ al +Ġmil es +he m +Ġc aught +Ġbro ad +O h +he t +ĠI I +Ġhe y +âĢ İ +Ġbl ock +olute ly +Ġshow s +Ġinvol ved +ro ad +ca pe +Ġstud y +r id +ĠT V +ist ic +ĠChrist ian +Ġst range +ĠLea gue +Ġes pecially +Ġmater ial +Ġf em +ĠS en +ĠB en +Ġsome where +T h +Ġ ) +Ġst age +ide red +ort un +Ġtra vel +Ġbo ard +Ġa ud +Ġst ore +ĠOn ly +ĠCom p +ĠW ould +Ġclot hes +i us +ĠS am +Ġsim ple +Ġloc ated +Ġs ad +? âĢĿ +Ġen v +o e +in ary +ab ad +ru ction +ĠFlor ida +1 4 +A M +h ood +Ġ201 4 +in ist +Ġg ives +Ġn ature +Ġe mb +ĠK en +Ġal ive +ĠF in +Ġneed ed +ove red +Ġ0 1 +ĠRic hard +" ) +Ġval ue +Ġd ru +ĠS im +Ġse at +Ġfin ally +ĠB el +Ġyour s +W e +ĠD em +ĠR ed +eng th +Ġany body +ĠSc ott +Ġdin ner +Ġa part +Ġs ize +ĠG ree +Ġde g +Ġpe ace +ĠS ince +il s +Ġde l +O T +w ood +ĠO ur +Ġbo at +Ġvis it +Ġt a +up id +v an +act ion +Ġapp eared +Ġsh op +Ġqu ar +ri ll +ol ic +Ġsur v +O M +ie l +ĠUn ion +Ġsit uation +Ġp erm +Ġfav or +Ġener gy +m m +Ġ x +Ġb an +Ġf ac +ag o +Ġf und +Ġpriv ate +er ve +en ces +ĠB ur +b on +Ġadd ed +A L +y l +Ġb ur +ĠG rand +Ġcons idered +Ġcol or +a use +er ry +Ġg ar +ĠR ob +Ġm hm +1 2 +Ġsp ent +Ġtit le +ĠL u +Ġpl ant +Ġthan ks +Ġdis e +Ġke y +ĠRe g +n s +Ġw ild +re m +ĠO k +Ġ2 6 +g u +am m +Ġar my +Ġ201 6 +f ace +id s +Ġact ion +Ġ200 7 +Ġstop ped +us es +Ġen c +er o +ĠJ ul +Ġim medi +Ġpur p +as ons +Ġs our +ĠB ra +Ġb ought +Ġd ance +Ġprofess ional +Ġg rew +ĠP ri +Ġ2 2 +ĠBl ack +Ġl iter +ill a +ound ed +Ġc ell +a e +ĠL isten +Ġ19 0 +Ġinde ed +s p +Ġw a +Ġt ea +ou ps +Ġp ers +C H +Ġwr iting +ĠPart y +ĠA nt +ĠV ery +oll y +Ġprodu ced +Ġext ra +b our +ĠT O +if f +ĠU m +ri a +Ġstand ing +ll en +Ġbro ke +Ġear li +Ġy ell +Ġf le +ĠM al +Ġpr im +ail s +Ġsum mer +f ield +Ġspir it +h ouse +Ġm id +Ġy e +om as +Ġcomp an +ĠDo es +H e +Ġatt empt +rie f +it z +ĠP ort +ĠIt s +Ġt ro +out hern +Ġav ail +1 3 +est s +te red +c use +Ġs ens +Ġrem ain +Ġatt ention +Ġp ack +ĠP at +Ġr id +Ġr out +Ġsee ing +u el +Ġdevelop ment +y a +ort hern +Ġbl ow +A P +n ers +p ire +at ors +ĠA lex +ce ll +and er +E T +in ct +ur a +iqu es +re l +ĠT ur +Ġd ate +ĠB ob +Ġm ix +Ġn ames +ĠD ar +Ġhist or +Ġt end +re r +Ġs al +ud d +Ġoffic ial +ĠI N +ig g +ib ility +iqu e +c ul +Ġsim ply +v ince +Ġw ide +ick et +Ġb ow +Ġc and +Ġde cl +Ġal though +Ġaf f +sy ch +A t +ĠA pp +ous ly +Ġ ice +Ġs cience +Ġmil itary +s ha +is es +gr ound +Ġre du +if y +ap ers +iron ment +Ġdoub t +Ġgr oups +Ġcoll ege +O W +Ġh ung +os ing +Ġcar ried +Ġind ivid +Ġopp ortun +Ġep is +Ġar ms +Ġinclud ed +Ġb attle +h od +Ġd ry +Ġh un +Ġdest roy +w ise +le br +ĠO ly +ĠQue en +ĠB o +Ġask ing +Ġdiffe rence +Ġcap tain +s u +Ġlar gest +g on +ive ly +pp er +Ġmar riage +Ġpoint s +Ġhat e +ĠN or +hing ton +Ġw est +Ġoffic er +b ye +qu e +Ġperson al +Ġbe ha +Ġlo ved +Ġmed ic +Ġcomplete ly +Ġin j +ĠA cc +ĠD ick +Ġ2 8 +Ġeduc ation +Ġt our +ĠW hile +Ġspe ed +Ġbro ken +ĠA ir +ĠP al +olog ical +ur ity +Ġ200 9 +Ġmur der +n o +ĠB u +Ġse ll +Ġem ploy +res h +ĠAl an +Ä ģ +re ct +Ġlo ck +ĠWh ite +Ġcomput er +Ġm aster +Ġl ength +bo ard +Ġre ach +Ġvers ion +Ġfor t +ab ility +gg ed +Ġref er +ĠM ark +ĠEx cuse +Ġwatch ing +an c +ast ic +Ġmean ing +ĠAn ge +Ġcont ract +Ġ200 8 +ĠĠĠĠĠĠĠĠ ĠĠĠĠĠĠĠĠ +Ġjo ined +soci ation +Y es +Ġb ank +Ġshould n +Ġcap t +g ress +Ġhe avy +ch ie +Ġro b +Ġ201 5 +ĠRober t +Ġplay s +Ġbel ow +Ġs ight +Ġf ool +Ġp ath +ĠC han +ĠD es +k i +Ġpre p +Ġexpl ain +ĠCour t +n es +U S +Ġr ich +ĠTh ree +ĠSt reet +5 0 +it ude +Ġe ff +Ġar ch +Ġocc ur +Ġl ying +Ġco ast +ĠSc ot +Ġanim al +an cy +ter day +ard en +ear s +Ġ4 0 +is c +m as +Ġw at +Ġ2 7 +Ġtalk ed +ens ion +Ġsudden ly +ou ra +Ġb ase +ĠA c +Ġwe l +ĠC r +ant ly +Ġimp ro +o id +Ġ20 00 +Ġnear ly +ĠR oy +Ġca used +Ġhon est +Ġinde pend +ĠWas hington +2 00 +w est +ĠP ut +Ġpl us +Ġreg ard +E A +as ion +om m +Ġn or +Ġsha re +led ge +à ¼ +he st +Ġp age +Ġ202 2 +Ġst ates +Ġare as +Ġapp oint +à ¡ +Ġex am +Ġhappen ing +Ġb ud +v ies +Ġs cient +Ġin it +ic le +op h +s s +Ġfell ow +ĠChar les +Ġhig her +Ġf at +Ġce lebr +Ġs and +Ġacc ess +ĠEar th +L E +Ġs ite +Ġc ensus +ĠS al +hi re +Ġev idence +Ġnorm al +I D +L A +ĠG ot +pl ay +ict ion +Ġtre es +h ow +Ġa h +ĠF ather +Ġreg ular +Ġprom ise +A nd +an ish +ic ed +Ġe ast +Ġst upid +ber t +ffe e +Ġman age +Ġwar m +hampions hip +Ġfamil ies +Ġinterest ed +Ġsqu are +Ġp un +Ġsn ow +Ġc ases +Ġh ol +ĠM ore +ad ed +Ġdo c +ust om +ĠColl ege +unic ip +ĠJes us +ĠM ac +ĠD am +ĠO F +Ġr ace +Ġmil k +Ġsong s +Ġspeak ing +ar ily +Ġpr ay +Ġform ed +Ġcontin ued +Ġrad io +ar i +il ed +Ġmar ry +Ġf it +ve red +Ġth reat +ut s +Ġshow ed +Ġdevelop ed +k n +Ġb es +ous es +Ġsc ene +ĠEurope an +Ġavail able +ĠS ch +Ġ2 9 +ĠAfric a +e k +or row +Ġco ffee +Ġf oc +Ġtr ade +Ġ200 5 +Ġtem per +Ġbott om +Ġdesc rib +Ġb i +Ġc ard +Ġp et +ĠS at +ord s +y er +a ven +Ġh uge +Ġact or +ĠCh ina +Ġd en +Ġd ig +ĠR es +Ġne ck +Ġbirth day +Ġannoun ced +Ġfe ed +Ġmo vies +ĠAustral ia +Ġg as +ĠMe xic +Ġmove ment +Ġc ab +Ġl ines +Ġsu ff +Ġper cent +ak er +Ġhelp ed +Ġb ath +ib ly +Ġe ating +a ur +s et +w hat +ĠW il +Ġsp oke +n ie +n é +us ion +om en +ĠT od +il es +Ġwere n +Ġfound ed +Ġwonder ful +ĠM aster +all ey +inite ly +ĠC up +1 6 +Ġd ata +Ġph il +ol k +Ġt ired +Ġof fe +ĠD ep +Ġkn ock +ĠIn ternational +ick s +Ġsca red +l im +z a +Ġw ed +ĠC ath +ĠThe ir +Ġse vent +Ġpie ces +Ġt ast +ĠC H +Ġst ories +hi b +Ġend ed +Ġo il +ĠH all +Ġex ec +ĠPar is +Ġso ciety +Ġdem and +Ġa p +it che +Ġu r +Ġcom fort +Ġmet hod +ĠAb out +b ut +Ġ : +Ġb right +Ġu nd +Ġde li +Ġsound s +Ġ à +Ġoff er +Ġenv ironment +Ġno vel +use um +Ġcl osed +Ġra ised +Ġcare ful +Ġlear ned +i ation +Ġ ir +ĠB er +Ġwor se +Ġrese arch +ce an +Ġwalk ed +Ġm or +Ġl ower +ĠT ra +ĠA ward +Ġput ting +Ġstart ing +Ġadd ress +Ġ  +ĠA dd +ĠC ould +Ġright s +Ġim m +Ġchan ges +V E +ot ed +et her +ĠM aj +st r +Ġdis p +Ġdet erm +at form +Ġa ward +ĠI ran +Ġar rest +Ġtra ining +ĠItal ian +ĠOly mp +Ġhe ro +ent al +Ġte xt +Ġass ist +ĠC oun +ol s +um mer +Ġcent er +Ġbird s +Ġprin ci +Ġbene f +y ear +ent ial +Ġ = +Ġno body +Ġdec ision +Ġa ver +ĠG old +Ġpolit ician +e x +Ġc ow +ro at +Ġlike ly +Ġch oice +Ġp ush +st on +Ġlet ters +ograph y +a ign +j i +Ġme m +ĠBe fore +ĠHist ory +el ve +Ġc rew +us hed +Ġyes terday +Ġ ess +is f +Ġb le +Ġc ru +Ġbe ll +Ġsm ell +ĠAN D +U N +t hat +u nder +Ġdist ance +n oon +y ond +ed y +Ġth irty +Ġsu it +Ġchar ge +Ġang ry +l am +il ing +Ġr ide +itt ee +Ġbelie ved +Ġ ought +Ġschool s +Ġd ouble +ĠC le +Ġcall ing +ĠMin ister +i ar +Ġt all +Ġp sych +ra ft +ub e +Ġfin ish +Ġw it +an i +ĠN ever +ate g +Ġmost ly +Ġre view +ĠM et +ri f +Ġsp read +Ġaf fect +Ġmod el +Ġbra in +Ġide as +us ing +ĠTh ose +ran ch +ru it +Ġfour th +ĠCent ral +as c +Ġun iversity +or ing +pp ing +Ġjo in +Ġnecess ary +Ġan cient +li ament +Ġev ents +Ġspec ific +Ġcre ate +Ġst orm +Ġem ot +Ġlead er +Ġblood y +Ġmess age +Ġiss ue +u x +Ġs ac +st e +ĠAr my +Ġimmedi ately +Ġthe ory +ĠM ag +ĠR em +Ġafter noon +Ġch ief +Ġfa ith +il ities +ck et +f l +y al +se c +Ġst ars +ĠP yr +ĠF uck +ĠJ ew +Ġbus y +. ' +k et +ĠO ver +Ġv ac +p en +Ġag ree +Ġen emy +Ġdise ase +Ġd an +ab les +ĠCong ress +o ved +Ġt ail +Ġc up +ĠH old +ri pt +Ġtr uck +Ġco vered +Ġlove ly +ĠItal y +Ġru le +3 0 +w estern +ĠS a +ĠC a +ess ion +Ġthere fore +Ġfar m +Ġdire ctor +ĠPr in +Ġs oul +ĠM at +Ġan al +ĠD el +ash ion +Ġearli er +ut en +Ġprodu ction +Ġstre ng +et er +ĠM ike +Ġst yle +ore s +Ġar g +Ġsp l +Ġ200 4 +Ġche m +Ġform ula +is ions +Ġfl ight +ĠAn other +Ġarri ved +bur g +in i +ĠK ore +ber g +Ġbr idge +Ġm ic +ap s +Ġsl ight +ĠCan ada +se qu +ĠPro vince +i pped +p ir +Ġa ha +er ved +ĠM er +Ġ18 9 +ĠAr t +ĠCar ol +At lant +Ġc ro +at ives +ĠH ur +ĠU nder +ose ph +Ġop in +Ġcontin ue +Ġfa ult +ĠPro f +Ġter rible +Ġwe ap +est y +ĠAn ne +an ge +Ġst one +Ġpurp ose +ĠOn ce +1 1 +B C +b ack +e ch +Ġele ction +Ġn one +le ep +ĠTh omas +uck y +Ġatt ract +Ġm um +Ġk ick +Ġpr ice +Ġestab lished +g l +ĠI T +Ġfor th +ĠP re +Ġco ach +Ġcont act +ĠEvery thing +Ġsuccess ful +v a +Ġc amer +ĠAl right +Ġacc ident +Ġsign ific +f ast +Ġl if +ve re +um ents +Ġc ities +Ġj ump +Ġfight ing +ĠKe ep +ĠO ut +Ġcon du +Ġ18 6 +Ġset tle +az ing +ĠD ay +ru pt +ĠSh ut +Ġmount ain +Ġpolic y +ĠAcc ording +Ġwel come +Ġt ar +Ġf ro +Ġwe ight +se y +ĠJ ud +Ġ( ) +é né +i ents +Ġc red +ed s +ĠL aw +Ġpr int +e es +ĠV ict +Ġ200 1 +Ġcr ow +Ġrelations hip +Ġc y +al ed +ĠN at +ĠR ad +Ġsh own +ĠK ent +Ġsk in +Ġabs olutely +Ġha ll +Ġfor ces +Ġli ked +oc ol +Ġhold ing +as ant +ĠS us +ĠG irl +Ġ20 20 +Ġes cape +iver se +ĠS l +Ġre pe +ĠM ount +Ġknow ledge +Ġ201 8 +Ġinvest ig +ĠW in +Ġfor ced +ĠB ye +Ġmin us +Ġmult ip +t t +at ory +Ġcorn er +ĠScot land +ĠI m +Ġin ternational +ĠW ow +ver t +ĠO oh +Ġcamp aign +z en +Ġl ink +Ġsp ot +Ġch ick +u ke +Ġl oss +om p +Ġth us +ĠL ove +au g +ĠSp anish +Ġyell ow +C h +s hip +ar ies +ĠH on +ott en +iet y +i ot +ĠH ill +st airs +Ġtell s +ĠLe e +Ġpract ice +âĢİ . +kn own +av es +ines e +éné es +Ġd rop +ri g +iz ing +Ġwalk ing +ĠPyr énées +Ġs ch +Ġext reme +ĠKing dom +b ing +Ġr ate +ĠK ar +Ġphil os +it ation +Ġp an +Ġbe yond +Ġopp os +Atlant iques +Ġin tern +Ġcomp l +Ġdire cted +e h +Ġre ve +Ġkind s +s es +Ġe mer +ri al +ĠG reen +Ġmach ine +w h +Ġc ode +ĠW H +ĠM il +ĠL at +Ġint ell +Ġserv ices +T hat +Ġm unicip +Ġwe ak +ac hing +Ġtw ice +Ġmo on +Ġlea ves +Ġac qu +Ġsign ed +ĠC ast +ĠB ay +ĠD is +and a +hed ron +Ġun less +Ġlot s +Ġpat ient +Ġopen ing +ourn al +ĠLou is +Ġp ounds +ĠM ur +Ġem pt +Ġread ing +Ġmed ia +r am +ĠF red +ĠTod ay +B ut +k in +Ġ ut +Ġthe e +ĠC os +Ġcon vers +Ġhas n +Ġdro pped +Ġimag ine +as ing +Ġdisc overed +ent h +ĠB ab +O S +R I +m in +ĠS ing +Ġfl owers +Ġaver age +b an +y an +Ġh om +Ġsing er +Ġnews p +Ġopportun ity +ĠRoy al +Ġs ides +Ġre lease +Ġro se +oss ible +Ġh i +Ġle gs +ĠR ock +ul ations +Ġsystem s +ck s +ĠSu per +C K +I n +Ġa chie +Ġc ustom +ĠB ig +Ġcall s +Ġsy mb +ific ation +eder al +Ġb rief +ĠT ony +Ġre b +Ġbig gest +Ġrelig ious +Ġdoll ars +et t +ĠW el +ĠD a +Ġno se +Ġdri ving +ut ions +ist ed +Ġacc ording +Ġsold iers +Ġfif ty +om s +ĠM other +Ġg e +Ġdefe nd +Ġvict im +. -- +ĠAl though +Ġsur face +Ġfore ign +ĠCoun cil +i ant +l or +ic ation +Ġany where +Ġ198 0 +ĠTe x +Ã Ń +ar m +et ic +ĠW estern +Ġ201 7 +Ġele cted +Ġent ered +ĠSomet imes +Ġdanger ous +ĠM ont +ĠChar l +Ġhig hest +Ġfem ale +w are +Ġdo gs +w r +Ġf irm +Ġf resh +Ġsw im +Ġcharac ters +ĠPer haps +Ġmist ake +Ġmem ory +Ġm ir +ĠC ont +Ġpr oud +ph one +Ġes c +Ġgrow ing +is ters +Ġ199 0 +ist an +h ost +Ġcl im +Ġres our +Ġthrough out +Ġeas ily +Ġrelig ion +Ġt ur +ad emy +ord er +Ġsmall er +Ġteam s +à ³ +Ġb oss +ut ch +el ess +Ġtw elve +Ġte ach +ĠDem ocr +. _ +k ins +ĠB as +ĠF our +Ġpict ures +, -- +Ġg arden +ĠCh inese +ors es +! âĢĿ +Ġp ig +Ġv an +Ġsk y +Ġcurrent ly +u f +ad s +Ġsur r +Ġsat isf +Ġepis ode +u le +Ġr ub +Ġpl ants +Ġris k +Ġl aid +Ġrem ained +Ġinclud es +Ġexpect ed +v i +Ġo pt +Ġas soci +ol f +ain e +Ġdes p +Ġmiss ing +ĠB ro +os es +ĠU p +Ġplay ers +ul f +Ġold er +ĠJo e +Ġindust ry +Ġp u +Ġp ound +Ġcom mer +Ġus es +Ġfun ction +Ġcond ition +Ġc it +um ber +Ġgr own +ĠAs sociation +Ġwin ter +Ġorigin ally +Ġpos itive +Ġwear ing +Ġrul es +ic ago +Ġw ine +Ġp red +ĠP an +ĠJ er +est ival +Ġsp ring +Ġdire ction +Ġnot e +ĠDo ctor +ac ing +ĠH as +Ġparticular ly +Ġfor ty +Ġro ll +Ġ18 8 +ĠT or +ra p +Ġcr ime +ĠSh ow +Ġbas ket +Ġadm inist +Ġneg ative +Ġcar s +ĠCath olic +d en +Ġh ide +ist ry +Ġthink s +Ġtri p +Ġdef initely +b l +Ġset t +ĠPr ince +Ġegg s +Ġd uty +Ġl ack +as tern +W ell +c ies +it ar +le cted +Ġst aff +Ġcont rib +ĠJack son +Ġfre qu +ĠH y +Ġfl at +g a +ĠD iv +ĠNe xt +stit ution +uten ant +b a +per or +Ġcomp os +ĠAt lant +Ġcrit ic +ĠSomet hing +ĠO ld +Ġpl aced +Ġch oose +Ġcor rect +d é +as hed +ic ated +Ġhe aven +ĠS ay +land s +Ġrem ark +Ġmain tain +Ġcult ure +ĠSm ith +Ġslow ly +Ġstreng th +Ġyou th +ĠS il +ĠB ell +ce nd +ĠP ac +ĠBr other +Ġfin an +Ġcol our +m us +Ġhe llo +Ġr ough +em s +Ġv ote +Ġdeg ree +g n +à ¶ +ol a +Ġbre ad +Ġlar ger +Ġprov ide +Ġgrad u +ĠProf ess +N A +m ad +Ġ rom +Ġh ill +ĠR ay +Ġpartic ip +c is +ĠR ail +Ġcont ain +Ġlaw yer +Ġdream s +Ġmention ed +Ġf ashion +an n +all ed +Ġwor ried +ĠSt ep +Ġ200 3 +ĠSp ain +Ġagre ed +ĠF il +ĠT ime +ge l +ffic ient +Ġelect ric +U T +ĠB ill +Ġapp re +be red +Ġadd ition +Ġsouth western +A r +on ed +ar row +Ġnot ice +Ġsec urity +Ġstud ent +Ġord ers +itche n +Ġcrow d +Ġ iron +it a +Ġh ouses +ĠH am +ran k +Ġiss ues +c oh +ĠM u +Ġform s +Ġpick ed +g en +Ġhe at +ĠM ass +Ġcon cept +Ġra p +Ġpower ful +ĠVict or +Ġth y +Ġact ing +Ġcont ent +ĠAl so +Ġbig ger +Ġcha llen +Ġbrother s +Ġjud ge +Ġta pe +ĠP ak +ĠL ife +Ġrecord s +ĠAd m +Ġdesign ed +Ġtot ally +Ġdam n +Ġluck y +Ġinflu ence +Ġindivid ual +Ġt ight +ĠI r +ĠL ittle +ĠF re +Ġun cle +Ġgu ard +Ġdr unk +Ġbreat h +ĠHel p +ĠCh icago +Ġcond itions +Ġbecom es +ic les +Ġse ction +Ġby e +Ġrel ated +Ġtro ops +ha nd +Ġaw are +Ġsour ce +Ġcompan ies +Ġt aught +ow a +Ġser ve +Ġsc reen +gy pt +Ġrepl aced +Ġwed ding +ĠTex as +Ġwh is +Ġ( , +ab or +Ġbr own +Ġb ound +ist ics +Ġmain ly +Ġgener ally +Ġp ir +ĠS pe +ĠF ine +Ġpl ans +Ġ200 2 +Ġplan et +Ġperform ance +Ġpress ure +Ġet c +; / +i ber +Ġy a +Ġwe ather +... ? +Ġwr iter +Ġsc r +Ġsm art +ĠDe v +ĠChrist mas +Ġreport ed +ĠS and +ĠO N +Ġwill ing +ag on +Ġspe ech +Ġmed ical +Ġlead ing +Ġbas ically +Ġty pes +ign ed +Ġent er +Ġtrans l +Ġhon or +Ġran ge +Ġfill ed +ĠS und +ĠM el +ĠF e +Ġsm ile +Ġob viously +Ġperform ed +Ġ202 1 +ĠPrin cess +c an +à ¨ +ha l +ĠS un +ĠH aw +ra w +Ġarch ite +Ġp air +ĠB oth +ĠF oot +Ġpl atform +Ġte eth +idd en +Ġempt y +m ark +ĠH uh +Ġcomple x +ĠMaj esty +h old +ĠO ff +ul ous +ap t +ĠCh ief +Ġsing ing +Ġrecord ed +Ġrepl ied +Ġforg ot +stit ute +Ġmedic ine +Ġoffe red +on a +Ġl oud +oo p +ĠR ome +Ġj ack +Ġ197 0 +Ġo x +ve y +ro l +il i +Ġv ot +Ġclear ly +Ġevent ually +Ġcompet ition +Ġple asure +Ġm aid +al i +Ġwas te +Ġwe ird +ĠC hampionship +Ġst uck +ĠL ake +os h +Ġleg al +Ġdesc ri +ĠAfric an +Ġfeat ures +Ġdescrib ed +ĠN ice +ĠRo ad +Ġnet work +Ġf inger +ar ing +ĠS ant +Ġli es +ak ed +Ġinst r +Ġfail ed +I R +m n +Ġf right +Ġbe g +Ġj our +Ġsa ke +Ġrem ind +Ġdist rib +Ġh ole +Ġh orses +Ġme asure +ĠF er +Ġship s +Ġcal m +i pe +u ries +ĠA ng +ĠL ater +Ġbl ess +Ġm a +Ġn orthern +ch ing +vent ion +Ġcent ral +ĠPl ay +Ġhot el +Ġbecom ing +W hy +he red +Ġn ative +Ġst ock +Ġbut ter +one l +ĠâĢ Ķ +Ġpo ll +Ġhar m +part ement +Ġconcer ned +im a +ĠM ajor +Ġne ither +Ġact ress +Ġmiss ed +ĠS T +ard on +ĠRe c +Ġkill ing +ĠGree k +Ġopin ion +dé partement +Ġw et +ĠR og +ul ty +Ġte le +Ġgreat est +ĠBr own +Ġocc up +Ġresult s +ourn ament +Ġquar ter +A Y +I GH +c raft +w in +is hes +Ġk itchen +ĠL os +ĠL ady +Ġag ed +Ġed ge +Ġoffic ers +ĠSec ret +se e +ĠE gypt +od ies +Ġapp lic +Ġpain ting +Ġbreak fast +Ġphilos op +Ġd uck +Ġsa ved +ian o +Ġhand le +Ġproper ty +ĠRuss ian +ĠAc ademy +Ġcit iz +i j +Ġal t +Ġsh ock +Ġgreat er +Ġatt end +Ġm ut +Ġf aces +Ġn ation +Ġro of +Ġ201 9 +Ġprodu ce +ĠCl ub +Ġhur ry +Ġexper ien +Ġdiv ided +Ġstru gg +od es +ye h +Ġinter view +Ġtar get +v iet +Ġre asons +ac hes +Ġme re +ĠE s +Ġmiss ion +Ġstru cture +Ġcirc um +D on +d o +Ġb rand +Ġp apers +Ġman ager +Ġ18 7 +Ġreal ize +Ġstud ied +Ġstud io +Ġb al +an ced +Ġgo al +Ġpart ner +ip s +ĠGovern ment +Ġwit ness +Ġme chan +Ġsha pe +Ġord ered +Ġdirect ly +; & +Ġw ow +Ġd om +ĠL y +Ġbu ried +ĠS erv +im in +ĠJ ac +Ġbit ch +Ġeas ier +Ġpal ace +c ise +ĠE ach +Ġsh out +ĠSt ud +Ġstart s +Ġhead s +ok en +Ġimp ossible +Ġsurpr ised +g ent +ĠI owa +ĠS id +Ġwor st +ĠSo viet +ian ce +Ġdet ect +Ġgentle men +ĠJim my +E L +ĠM ill +Ġkeep ing +Ġdec ide +Ġlead ers +Ġtechn ology +Ġcamer a +' . +s ed +ĠI d +ĠA rab +ĠB a +Ġst ran +ren ces +Ġra re +az ine +Ġrun s +s ing +Ġs illy +Ġme at +Ġli kes +Ġart ist +Ġincre ase +Ġsurpr ise +Ġprep ared +Ġth ick +st ood +ĠB est +ĠB ack +Ġsh oes +Ġlo g +Ġam b +Ġ ign +Ġb omb +at o +im ately +Ġ199 9 +ĠTr ans +Ġz ero +Ġteac hing +Ġfly ing +Ġtast e +Ġd er +Ġl unch +Ġad ult +Ġev il +Ġlear ning +ha d +ĠS ea +ĠB ang +Ġcan cer +Ġal coh +ig er +ĠK h +ran ce +Ġbl ind +Ġour selves +Ġsecond s +arent ly +Ġcry ing +ĠMexic o +a ult +o om +Ġs en +Ġc art +am i +Ġj u +Ġex cl +Ġmet al +ĠEm pire +R O +ĠM ake +Ġas leep +Ġrec ently +Ġstand ard +Ġsleep ing +Ġdrink ing +I f +v is +Ġme mor +Ġtrad itional +ĠT ai +ur day +Ġj oy +Ġsu c +ast y +Ġbuild ings +ĠMart in +I M +j ust +ĠS aint +Ġon to +ĠG ar +Ġ3 1 +igh s +b el +Ġbelie f +Ġappre ci +Ġsuc ceed +. ] +ĠT ed +et te +Ġr ank +Ġact ual +Ġcons um +uc le +Ġl ic +Ġde light +Ġpro ve +ĠSt ill +Ġim age +ious ly +Ġprov ince +Ġrequ est +I F +er al +ĠS qu +Ġe ld +ir ing +se mb +ĠL ine +Ġpo cket +Ġpre vent +Ġcha p +m it +p ic +ĠW ood +ur t +Ġlad ies +ĠC ons +Ġpl ain +Ġcoun cil +Ġhol id +i os +ĠI nt +or ks +are t +Ġrem em +Ġfore ver +Ġking dom +ĠW omen +ri er +... " +Ġhung ry +ĠProfess or +b les +Ġf rog +le ction +ad ing +ans as +Ġsepar ate +Ġdoc ument +r ate +Ġa st +ing ers +ĠD ire +ĠYou ng +ish op +Ġam azing +r ated +Ġc ash +if orm +Ġsc ar +Ġstay ed +Ġprom ised +Ġcost s +fort un +ĠW al +Ġse qu +ĠF ore +ig an +Ġsa f +ond s +Ġgr ant +Ġlight s +Ġpret end +Ġlisten ing +ĠComp any +M y +n i +Ġp ure +ot a +ĠM ax +Ġconst it +Ġsus pect +ĠRem ember +f riend +en ing +ĠO pen +ick ed +Ġty p +Ġsold ier +H ow +l aw +or ough +ĠAct ually +Ġenc oura +Ġmultip le +ĠS hi +ĠC all +av al +ĠFran cis +Ġplan ning +Ġ196 0 +Ġlangu ages +Ġmunicip ality +Ġturn s +ĠCar l +A ll +Ġth rew +ĠC amp +ur ance +Ġpre vious +Ġprogram s +Ġfavor ite +Ġjour ney +ĠS ol +ct ors +Ġsp ell +r as +ĠT y +Ġcent re +Ġpat tern +Ġrequ ired +or a +ut ive +Ġr at +ĠCon f +Ġorgan ization +ĠJe ff +ĠAg ain +Ġ Î +Ġm ate +Ġre n +Ġre ven +ĠL ong +ĠâĢ ĺ +Ġsw ear +Ġfre ed +Ġmot or +Ġcast le +4 0 +6 0 +Ġf ra +Ġd rew +Ġgo dd +ant ic +Ġlo ves +Ġqu al +Ġ-- & +Ġappoint ed +ocol ate +Ġo w +ĠL ight +Ġj ournal +Ġact ive +Ġear s +Ġreal ity +ĠAny way +Ġstru ck +ĠIndian a +Ġnin et +ĠAnge les +ĠF ar +Ġgr ass +Ġcr ack +Ġbroad cast +w an +as y +ĠIs lam +Ġplan e +Ġstre ets +Ġexc use +ĠGovern or +l ig +ou red +Ġp il +Ġg ain +om a +Ġsc rew +Ġturn ing +ĠCan ad +Ġbeaut y +Ġcop y +ĠKen ned +Ġsch ol +R B +Ġt ick +Ġre act +ĠH al +Ġsp orts +Ġpo et +ĠAmeric ans +ĠCar ter +Ġdem on +Ġsil ver +w ar +ge nd +Ġman aged +Ġcont r +ĠPr ot +Ġspl it +Ġsignific ant +E LL +Ġb other +Ġun it +Ġdestroy ed +ĠSat urday +A D +A n +is her +Ġp in +ir a +Ġst ream +ord in +az z +Ġtrans fer +Ġphys ical +Ġintrodu ced +rid ay +e f +is l +Ġc uri +ĠH ans +Ġpro gress +Ġun its +Ġ6 0 +Ġfav our +ĠFoot ball +r ison +re es +Ġs outhern +Ġc hat +ĠP ope +ĠSt ar +Ġmo b +ĠUn cle +Ġtrans port +Ġposs ibly +ĠPar liament +ĠSec ond +Ġd are +Ġg all +ac he +ĠH ot +ĠO w +pp y +Ġun c +Ġsm oke +Ġloc ation +Ġter rit +Ġoper ation +Ġmag n +r s +Ġt im +ĠP enn +Ġappear s +e v +u z +ĠW ay +st ra +ad o +os en +Ġun iverse +ĠIs n +Ġ199 6 +Ġeconom ic +Ġrout e +ĠKenned y +b re +t r +it an +Ġl osing +ĠTh ink +aw a +Ġfind ing +Ġinst ru +ĠEvery body +Ġw ake +Ġb ub +or ter +Ġd ressed +Ġto ward +ar ian +ĠS on +Ġst ret +Ġrel ative +Ġhard ly +Ġconst ruction +Ġaccept ed +Ġdru g +T S +Ġm ale +iv ity +Ġun ivers +Ġlaw s +ĠSund ay +o ices +Ġb ast +Ġd irty +ĠT urn +Ġal tern +um ped +Ġafter wards +Ġshow ing +Ġfeel s +19 9 +Ġhum ans +Ġadv ant +Ġrock s +Ġtreat ment +Ġindepend ent +m o +Ġf ought +Ġl aug +us hing +Ġwas h +oo per +Ġcl ock +cl ock +Ġfall ing +b ook +Ġf ruit +al ing +ĠL ie +Ġfl o +Ġrequ ire +A l +p ro +Ġ199 8 +Ġrespons ible +Ġin ha +ĠWhat ever +Ġqu ality +Ġsc ream +Ġtri al +, ' +k er +ĠD O +ĠV er +Ġret ired +Ġsw ord +ĠPr ime +Ġbra ve +Ġsweet ie +ĠCent er +Ġsymb ol +Ġt ong +Ġ199 7 +A meric +L D +b ell +w ith +Ġb oo +ĠC at +ri ff +Ġhad n +Ġpr ince +Ġhelp ing +Ġland s +Ġocc asion +Ġfix ed +Ġneigh bor +ĠScott ish +Ġfinan cial +8 0 +ĠL ast +ĠJ ane +art ment +Ġcomp lic +cha nt +Ġstat ement +2 5 +n am +Ġp leased +ge ant +ĠNo body +ĠAs ia +Ġ18 5 +Ġbott le +het ic +Ġcand id +Ġre nt +ĠU K +ĠSt ay +ach us +Ġrec ent +Ġinst it +ĠTH AT +Ġdiv ision +U R +Ġd iam +Ġp ra +Ġg host +ra ge +Ġr ise +Ġad op +Ġnum er +ĠSp eak +Ġgi ant +Ġlaug hed +t ies +ĠW atch +Ġme as +ter ing +Ġcon v +ost on +Ġco at +Ġsha d +Ġmat ters +Ġaud ience +Ġdru gs +" ? +l ook +r at +ke nd +ĠF ive +Ġfl ow +uf act +r ough +he ast +Ġg ro +ĠS har +Ġsc ore +Ġexc han +Ġpull ed +Ġd ying +Ġth roat +Ġcom edy +Ġyoung er +Ġexp ress +Ġjob s +Ġappro ach +Ġproduct s +Ġrail way +Ġtemper ature +r ont +Ġo dd +al a +ir al +Ġnot iced +Ġman ufact +ĠDiv ision +Ġsaf ety +p her +Ġf ingers +ic ide +im um +ĠB ull +Ġj ail +fe ction +ok ing +ĠBrit ain +o ch +ol es +Ġpre fer +Ġend s +Ġmin or +ĠBl ue +Ġentire ly +ĠRuss ia +Ġimpro ve +Ġb ac +Ġl ord +Ġg ay +ĠD en +Ġdis play +The re +ĠTom my +Ġwall s +im p +ĠC are +ĠD ou +ĠF riday +Ġar range +ĠV alley +Ġun iform +Ġpo ly +Ġrem ains +ĠAt t +ĠDid n +Ġve h +ĠDam n +at re +ĠW ind +am ing +Ġwhe el +ag n +ĠRe v +Ġsil ence +ĠLea ve +ĠSw ed +ĠMus ic +m ar +Ġt iny +Ġt ournament +ĠI S +Ġgra ve +Ġgentle man +Ġmanage ment +Ġc ards +ĠI re +es sel +Ġre form +Ġli br +cl es +ĠSh it +ĠEvery one +Ġconst ant +2 3 +A C +l ict +o ir +u yeh +Ġd ar +ĠM od +ly ing +ct s +il ty +hi a +Ġdefe ated +ĠCanad ian +Ġp it +ian a +oc ent +ĠMar ia +Ġthousand s +Ġstep s +T H +Ġs in +Ġb odies +ic ate +ĠS it +id ents +ĠM ove +Ġrem oved +Ġpolit ics +omin ated +Ġoppos ite +on se +ir k +ĠB re +Ġli ber +ather ine +ys is +ĠSome one +Ġbas ic +Ġsol ution +Ġeff ort +Y eah +u a +am in +ĠSh ould +Ġrece ive +Ġcir cle +ĠDad dy +ĠEar ly +cell ent +ste in +Ġb at +Ġm ax +Ġn ucle +Ġha st +ĠS ummer +ĠW all +ĠR ose +ĠR ural +ĠF ort +Ġknow ing +ell y +Ġpro ceed +Ġtra ve +Ġent ertain +Ġauthor ity +u ous +Ġf aster +en ced +et ts +Ġbe ach +ĠO x +Ġde lic +ĠV al +Ġass um +Ġdet ails +Ġconne cted +E C +Ġus ual +Ġag ent +Ġqu een +Ġaf ford +Ġra ise +Ġmus ical +Ġgun s +Ġfif th +Th is +ĠSus an +ĠH oly +Ġme l +ĠK oh +Ġsome what +Ġevery where +Ġch ocolate +oc key +ham mad +Ġattack ed +ĠLat in +Ġsett led +Ġrap id +U GH +Ġb are +ĠM ich +hi o +-- " +Ġcont ains +Ġ3 5 +hamp ion +ĠO b +ĠE ll +Ġcom ment +Ġsp oken +Ġmat ches +Ġ199 4 +Ġ199 5 +Ġcomple ted +Ġprov ided +2 4 +p a +Ġt un +ĠN ick +ct ic +ĠJ oseph +be y +ĠCon stitution +Ġaw ful +Ġconvers ation +D o +u als +Ġc ous +ĠS H +ĠS ur +ĠD utch +ĠG O +Ġkn ife +Ġman ner +ĠAn n +Ġjo ke +e an +ĠA wards +Ġk m +Ġan x +Ġse es +Ġe h +ĠB on +Ġro yal +Ġgood s +og ether +Ġfl u +Ġhigh ly +Ġca uses +19 7 +Ġforg otten +Ġclos er +Ġcred it +b b +b ar +o very +ĠM i +Ġfl ower +Ġslight ly +Ġchick en +Ġnewsp aper +achus etts +d a +j a +v ad +Ġf ired +an ing +ĠM em +ke ep +Ġab ility +Ġinter p +u gg +Ġw estern +Ġf al +ĠN orm +Ġsh ore +ĠĠĠĠ ĠĠĠ +Ġuse ful +Ġpres ence +ĠWho a +Ġexp ensive +Ġwin ning +ĠComm un +ĠDan iel +Ġav oid +Ġmajor ity +Ġcoun ter +Ġactiv ity +Ġbud get +Ġp a +Ġst ro +Ġli ps +Ġsu gar +Ġbring ing +Ġfoc us +ĠSecret ary +r ick +ĠB at +ĠIn ter +ag ing +Ġad vent +Ġrec omm +Ġfeel ings +Ġgl ob +Ġstud ies +Ġrest aur +Ġcal cul +ĠRepublic an +g il +l ied +p ut +w ater +st ances +ĠR oll +em ic +ĠCol umb +ĠEl iz +van ia +g ers +ĠG ra +th ur +Ġear n +Ġwee kend +Ġshoot ing +Ġprin cess +Ġvict ory +ĠMus lim +Ġchem ical +Ġalcoh ol +ĠT own +ĠD et +Ġsw itch +cept ion +ĠAustral ian +Ġextreme ly +ĠMass achusetts +E E +d own +Ġm ap +um an +Ġr ow +Ġtr ick +tain ed +Ġsuggest ed +c ar +u it +u an +nd y +Ġo cean +Ġin vent +ĠS ix +ĠM ust +ĠB ru +ĠJ on +Ġex er +are n +Ġpre m +Ġdr ama +ĠGeor g +Ġstat us +Ġaut om +b oy +ĠM um +ĠR ick +um n +Ġ3 2 +I s +P S +ing u +Ġl in +ĠD un +ĠR un +Ġsh irt +ĠIn st +Ġcons ist +Ġele ment +Ġgra ph +Ġadv ice +f ather +p ea +Ġa im +ĠS outhern +ĠC hild +em an +pl ace +Ġgu ilty +Ġunder stood +Ġpri or +Ġconst ru +Ġresour ces +j o +s m +v est +Ġw rest +ed ing +il a +ĠG ames +ĠR el +Ġv essel +Ġche st +Ġfull y +Ġgold en +ĠAdd ons +Ġesc ap +Ġninet een +b ow +Ġt ough +le g +Ġr um +Ġno ise +ĠSo ciety +iz es +int end +Ġown ed +Ġset ting +ĠFran ces +ĠCarol ina +en ger +ĠA y +Ġli qu +ĠK ansas +Ġco al +Ġpr ime +uck les +Ġres ist +Ġtrad ition +Ġfle w +ĠMich igan +c ol +à ¤ +Ġn erv +ĠS ub +Ġu lt +Ġup stairs +Ġplan ned +Ġdraw ing +Ġcollect ion +Ġbenef it +I ON +Ġpass ing +Ġdam age +ĠSen ate +ĠPri ze +Ġcommer cial +z il +ĠT ay +ĠL is +un ched +ol ved +Ġres c +Ġdes ire +Ġappear ance +Ġoccur red +Ġaward ed +Ġt rib +Ġb ranch +en es +Ġth in +ĠH mm +Ġse m +port s +Ġcare fully +ac le +Ġpro of +ĠIn stitute +Ġhel ps +Ġkeep s +Ġdr am +Ġ199 2 +AN T +Ġmag ic +por ary +Ġg ift +ul ate +os a +Ġup set +Ġother wise +Ġpart ies +Ġfl ag +Ġtra ffic +ham ber +Ġexp ression +Ġpresent ed +ĠGr oup +ĠOlymp ics +Ä ĩ +ĠT en +Ġnot es +ĠF ire +ab eth +Ġcl oud +Ġun f +Ġshould er +Ġcar bon +Ġexp and +Ġperfect ly +Ġhang ing +i as +in ent +Ġf ederal +ĠM hm +Ġch osen +ĠBr ad +Ġinst ance +Ġsex ual +Ġintell ig +f all +g ment +on ia +ĠB ad +ĠN az +ĠD or +ĠD aw +ce l +Ġat e +Ġapp eal +ĠDe ath +ric ane +ER E +Ġdet ail +sy l +Ġmur d +Ġsca le +Ġconne ction +Ġlim ited +Ġpun ish +he art +ĠC am +ir lf +Ġdo ors +Ġ199 1 +Ġsign al +Ġmount ains +Ġneigh bour +itz er +Ġwat ched +ĠDep artment +irlf riend +is y +ĠW ater +ĠH ad +ĠO hio +Ġcon cent +Ġunderstand ing +Ġadm it +Ġrepresent ed +Ġcab in +pea re +. ) +ĠT ry +ĠV en +Ġbl ank +Ġdis ci +Ġkill er +Ġexc ited +Ġeffect s +kes peare +i est +Ġt ears +Ġc ream +Ġsp in +Ġapp le +Ġcha in +Ġbre aking +Ġnorth west +Ġlab or +g le +r ant +Ġp ill +Ġn arrow +Ġwe bs +ĠSt and +Ġ4 5 +Ġ199 3 +Ġpass ion +ĠHar ry +Ġincre ased +Ġdan cing +ĠKoh gil +ĠKohgil uyeh +2 1 +p al +Ġ eth +Ġw ings +ĠA unt +ĠH or +ĠN ic +ra in +Ġcon c +res p +Ġap olog +Ġadvant age +an o +Ġh ook +et ch +ĠB es +Ġu ne +ur d +Ġhear ing +Ġposs ess +Ġbes ide +Ġc ateg +ĠT re +ĠM en +ĠC O +Ġst ations +ĠSt an +Ġ9 0 +Ġresp onse +Ġcarry ing +Ġlaugh ing +Ġdecl ared +Ġremem bered +Ġl oose +ĠA v +Ġst ated +Ġmag azine +Ġteacher s +Ġnin ety +er ves +Ġhe ight +Ġre action +Ġbut ton +ind a +Ġtr oub +Ġqu it +Ġsign s +Ġ7 0 +Ġbas is +erv ation +Ġgrow th +Ġbull et +ĠPenn syl +à ¦ +en ny +Ġn urs +ĠS om +ĠM az +ĠB al +ur se +ĠD ave +qu ar +Ġun ique +Ġforg ive +Ġachie ve +v y +Ġl it +Ġn om +Ġn ea +ĠH it +ĠO ffic +Ġse vere +ĠU nt +Ġans w +Ġball s +Ġdro ve +Ġbill ion +R A +Ġf an +Ġf old +ĠI II +ĠT er +ic y +Ġh iding +ol ks +ul ated +Ġmy ster +ĠK im +Ġsha red +Ġmic ro +ĠWel come +Ġd yn +ĠA ri +ĠW ork +ĠB road +Ġmy th +Ġgra b +Ġkid ding +Ġdiv or +Ġhon our +Ġfig ures +Ġnorm ally +ĠHur ry +ĠKent ucky +ĠIre land +C ause +Ġf urn +Ġd im +ĠO s +Ġsh r +Ġcl imate +Ġcomm ittee +Ġthought s +ĠEx actly +Ġfail ure +Ġda ily +2 9 +Ġb ang +Ġm useum +ver se +ound ing +Ġqu ant +Ġpo ison +Ġown er +Ġlea gue +Ġdri ver +ĠAny thing +ĠMc C +ĠJe an +Ġshar p +" ). +_ . +Ġu g +Ġpl enty +ĠCl ass +Ġstay ing +ĠPet e +ĠSha kespeare +augh s +ĠBra zil +Ġcomfort able +ĠDemocr atic +Americ an +Ġc as +Ġp ha +Ġl atter +ĠT a +ent ed +ĠH ea +ĠB ern +Ġshe ll +Ġshe ep +ĠAs ian +Ġfollow s +ĠJohn son +rop ri +Ġmix ed +u i +Ġt al +Ġf ant +Ġp owers +ĠM useum +Ġst om +ĠL and +ĠAnd rew +ĠSo on +Ġbl ame +Ġeas tern +Ġviol ence +ĠPennsyl vania +ĠS el +ĠF ollow +Ġwork ers +Ġcons cious +Ġinv ited +Ġwind ows +rop ical +Ġvar iety +ĠPac ific +g ency +i ven +k o +n ic +Ġl at +ĠH ung +ĠD ra +ĠJ ones +ĠK at +ĠK han +Ġmat hem +ĠInd e +Ġimp act +Ġadv ance +ĠWilliam s +Ġm ail +ust ration +Ġv irt +Ġgu itar +Ġcr im +ĠOr der +Ġtrans form +Ġcol on +Ġpri ze +Ġclass es +Ġappro x +Ġgod s +Ġdeb ut +Ġdisapp eared +Ġhistor ical +Ġdeli ver +Ġcitiz ens +m pt +o is +Ġt ask +Ġd ed +ĠA my +ĠC ivil +ak i +Ġun ion +Ġdes per +oc al +Ġdra gon +Ġprotect ion +arr ass +M an +ĠB eth +ĠB rand +ĠO l +ĠE st +ĠE du +ak a +Ġsome how +ond er +ĠLook s +Ġsle pt +Ġsil ent +Ġhy p +Ġtong ue +Ġt ied +ĠM ond +ĠB oston +Ġas pect +ĠP ap +ra el +est ic +ĠK ong +Ġchan ging +Ġtown s +Ġpur cha +ĠSha ll +Ġprop osed +Ġcapt ured +ĠSid ney +ĠLie utenant +Ġinha bit +r d +w hile +Å « +Ġw id +ĠH an +ĠB ea +Ġmy st +Ġsu ffe +Ġun known +ict ed +ĠCh ris +Ġche ese +Ġdra wn +Ġart ists +Ġfall en +Ġsqu ared +Ġoper ations +B e +Ġt or +Ġc ig +ĠT ri +ĠM AN +ĠD own +ĠG il +ĠR aj +ang le +Ġser ving +che stra +Ġ195 0 +ĠSte ve +inc ol +L Y +m at +in ity +ot ion +ĠS uch +ent ially +am ily +Ġk il +ĠN ight +ct ures +Ġse lling +Ġsha me +Ġconf lict +ĠEd ward +ipp ing +Ġmot ion +Ġassoci ated +semb ly +Ä « +Ġt ap +ĠM iddle +Ġcon ference +Ġeat en +Ġsupport ed +Ġsettle ment +Ġg irlfriend +ow ed +Ġro les +Ġold est +Ġpay ing +Ġfair ly +Ġnerv ous +I V +he im +Ġw ave +Ġs alt +ĠC ross +Ġor ange +Ġdis m +Ġdis s +Ġwr it +Ġch ose +Ġste el +Ġresp ond +hen s +Ġfif teen +Ġmult i +Ġstri ke +Ġarrest ed +ĠCast le +Ġholid ay +S he +c est +r un +z er +ĠT ol +Ġbe er +ĠW alk +st one +ĠY ear +ĠG y +ĠG ame +Ġsee k +ĠWe ndy +Ġcr icket +Ġfield s +Ġmaterial s +ĠKore a +Ġfreed om +Ġa x +Ġb oot +Ġc ake +ill ed +end ment +Ġprim ary +Ġbast ard +Ġdar ling +2 8 +Ġf ile +Ġto w +Ġp iano +Ġl one +Ġwe alth +ĠR am +Ġpre viously +ĠEn ter +bur gh +Ġfeat ured +7 0 +g or +y o +Ġse asons +ĠL ar +ĠE v +ĠE ric +Ġab and +ack s +pe red +Ġim pl +Ġad vert +Ġreal ized +Ġprodu cer +Ġsix ty +ĠEm peror +Ġord inary +Ġfamil iar +Ġstom ach +w ide +Ġt ie +Ġs ust +Ġo oh +Ġg ate +ĠE h +os ition +Ġback ground +amp s +Ġche er +Ġboy friend +Ġins urance +Ġpat ients +Ġter ror +Ġtreat ed +Ġemb arrass +Ġdeterm ined +Ġsuffe red +b ury +s pect +Ġm ama +ĠH u +ĠH ome +ad ium +ur b +Ġpart ners +Ġbr ide +Ġ8 0 +Ġexper iment +Ġvar i +Ġve get +Ġhy d +Ġhop ing +Ġp ink +at i +ĠT im +ell ed +ĠTh us +ĠAr thur +Ġ198 9 +Ġlab el +Ġrespons ibility +Ġinn ocent +Ġscient ific +Ġphilosop hy +S P +b i +Ġd iet +Ġg ang +ĠH E +ĠY et +Ġsp ort +Ġle gend +Ġmin ister +Ġbegin s +ĠComm ission +ĠJul ie +Ġarg ument +Ġweap ons +r ical +u ps +Ġha m +Ġre ck +ro ll +ĠB E +Ġso il +ell a +Ġgu est +Ġapp arently +Ġsupp ly +ĠZ eal +Ġpri est +Ġhundred s +ĠSer geant +Ġbasket ball +A LL +is er +Ġf ancy +ĠH ol +ad d +Ġbr ings +ult ure +Ġsol id +Ġeconom y +Ġactiv ities +Ġapart ment +Ġweap on +Ġappreci ate +l ock +Ġb ite +ing ing +ĠT imes +ĠS up +ĠW ales +ur ally +ĠR h +Ġso le +Ġpre par +Ġjo int +Ġwond ering +ĠAd am +Ġcircum stances +ĠH ard +um s +em ents +ree k +Ġsc hed +Ġchan nel +osp here +Ġexist ence +Ġburn ed +ĠPort ug +IGH T +S B +S T +p et +Ġt one +is ation +Ġb unch +Ġc ott +Ġin qu +all s +ĠL incol +Ġco ck +Ġart icle +Ġfil ms +Ġeng aged +Ġprofess or +Ġdisapp oint +ĠFil m +2 7 +b et +is p +am an +ĠM ir +ĠC ab +Ġwith d +ĠU s +Ġgood ness +Ġpre gn +ĠIs rael +ĠAl ice +The y +19 8 +Ġserious ly +ĠJac ob +3 4 +3 5 +Ġon line +ĠF estival +Ġen s +Ġun us +ĠMar sha +Ġroom s +Ġ198 8 +Ġcou rage +Ġcross ed +Ġhom es +ĠPak istan +N ot +ot ic +Ġu pper +Ġsu ck +em ies +ard ens +Ġfe ature +Ġdes cend +Ġfind s +stand ing +br idge +Ġlevel s +igg ler +Ġju ice +ĠBes ides +Ġw ished +Ġb atter +Ġd ish +ĠT ha +ĠSt ation +Ġmay or +ĠAs h +Ġcr own +Ġrel ax +Ġbo om +Ġcle ver +ĠZ iggler +Ġla unched +Ġincre asing +Ġlim it +Ġsuff ering +L et +er k +Ġb order +ly n +Ġnot ed +ĠG al +ĠL uc +ĠR ich +Ġ( ; +Ġinc red +Ġstr ing +Ġ197 9 +Ġisland s +Ġsus pic +Ġs ales +it o +Ġd u +Ġg ather +Ġhe av +ĠN orthern +Ġex act +hes s +ĠCl a +Ġsol ve +ĠAtlant ic +Ġfal se +ĠZeal and +F L +Ġw ise +ar n +Ġh o +ĠN ap +ie ce +Ġcon sequ +Ġro ot +we et +Ġche ap +Ġdisc over +ĠCal vad +Ġrecogn ized +Ġinstr ument +ĠCalvad os +G ood +r ot +ow der +ut her +am n +ĠP op +ĠR om +ĠE astern +Ġr iding +Ġdist inct +Ġ198 2 +Ġhands ome +Ġcontin ues +Ġant i +Ġwa ited +ĠServ ice +G E +Ġw ha +ar io +ĠR on +Ġcon qu +Ġpl ate +Ġint ended +Ġatt ended +ĠDe f +Ġacc omp +Ġstand s +Ġfall s +ĠJew ish +Ġlibr ary +a res +Ġd ust +ĠT alk +ĠN E +ĠN avy +ĠL ab +ĠF OR +ĠF ox +Ġwho a +ĠĠĠĠ Ġ +Ġsha ke +ins on +ok ed +Ġadd itional +Ġfr ame +Ġ198 4 +Ġconcer t +Ġchallen ge +C E +r ad +Ġw ounded +Ġs ed +id en +Ġan cest +ĠMar g +Ġele ven +ok es +Ġsent ence +Ġleg isl +ĠDan ny +Ġconcer n +Ġestab lish +Ġrid ic +Ġrepe ated +ĠJer sey +ĠConf eder +Ġug ly +B l +Ġw itch +ĠT oo +ĠC op +Ġat m +Ġr ac +Ġr ang +iz ations +Ġspe ct +Ġimport ance +Ġpain t +Ġcommon ly +Ġsurv ive +Ġeff orts +ĠEdu c +S p +e xt +j an +nd e +Ġb rill +al y +Ġha bit +Ġst ir +ĠV an +erm an +Ġcomp on +Ġhapp iness +olog ist +Ġcap ac +ĠAb s +Ġref used +Ġgovern or +Ġexchan ge +O D +u art +Ġ { +ar ia +ĠO cean +ĠP ic +Ġgot ten +Ġar ran +Ġcl ient +Ġear ned +Ġtra il +Ġsen ior +fortun ately +Ġcous in +ĠEliz abeth +2 2 +A s +O B +m ond +r ich +à ¤ +Ġp ool +ĠS ong +ĠG rey +ĠR yan +ĠIn c +Ġfriend ly +Ġ198 7 +Ġcrit ical +Ġcomb ination +ĠOx ford +Ġs ons +Ġrecogn ize +Ġagre ement +b ox +t i +u ce +Å į +Ġw ore +Ġm ort +Ġd ies +Ġl ake +ĠT em +Ġ" " +ĠG reg +ĠR a +Ġr ot +ak h +Ġcomm ission +Ġele ments +ĠNew s +Ġpoint ed +Ġdec isions +Ġ6 4 +19 6 +ĠIr ish +S c +Ġd un +as hing +ĠG er +ive red +Ġv ia +-- -- +Ġcont est +ect ion +Ġbre ast +Ġexp ed +Ġliter ature +Ġinterp ret +V ER +d ed +m es +w o +Ġo we +ĠY ep +Ġwor ship +Ġpro ced +ĠAr ch +Ġinte gr +Ġsort s +Ġassist ant +ĠUnt il +d on +l ies +Ġf olk +Ġto wer +Ġh idden +ĠB us +ĠB ush +Ġjust ice +Ġthr own +ph y +Ġsy mpt +ĠFor ce +Ġob vious +ĠCol onel +Ġbene ath +ĠLincol n +es h +ĠA k +ĠH ind +ĠL A +Ġsh ook +ep s +ĠAs s +Ġdev il +Ġhun ting +ĠA T +Ġall ows +ĠWe re +Ġfl ood +Ġgar age +Ġterrit ory +5 00 +s he +ê ¯ +re ts +Ġd read +ĠW ant +el p +ag ue +Ġsp are +per ial +Ġac id +Ġcor por +ĠEm ily +pha nt +ĠDire ctor +9 0 +Ġ ic +Ġa unt +Ġwe b +ĠE le +Ġex cellent +Ġ18 4 +ier ce +app ing +Ġconne ct +Ġphot o +hib ition +o oth +à ´ +Ġf ishing +ĠC y +ĠG all +un ny +ĠJ ill +Ġpl ot +Ġag ric +ĠV iet +Ġcomm itted +Ġsy mp +Ġev olution +Ġcreat ing +Ġill eg +Ġdark ness +for ce +ĠBel g +. [ +T ING +W ho +w a +Ġm ood +ĠM id +ĠG a +Ġid iot +Ġexpl ained +Ġdeg rees +Ġlock ed +ĠBer lin +ĠRog er +e er +re ll +ĠA is +ĠW E +ĠM E +ro se +Ġas ide +Ġse lected +ĠIn tern +Ġatt itude +Ġsure ly +ale m +Ġ197 1 +Ġoffic ially +ĠRoman ized +Ġrefer red +Ġsevent y +Ġcomplic ated +ĠRev olution +Ġcrim inal +3 8 +N ow +w orks +in n +Ġw ound +Ġp ages +ĠT est +ĠM att +oo ps +ĠD i +ust ed +Ġcon vin +ĠK ill +Ġen emies +ord on +Ġ198 1 +Ġexpl os +hm m +ĠComm ittee +Ġval ues +Ġeffect ive +ĠMond ay +ĠSup reme +g ues +p re +ou ri +Ġc ute +as p +ĠT op +ĠH and +ĠH olly +ad er +Ġk itt +ĠP erson +ĠF air +ain ts +Ġpro ved +Ġar med +Ġun able +Ġmo ves +av a +ult ural +ger y +Ġnear by +Ġmill ions +ĠIsland s +ĠSar ah +ĠAlex ander +itzer land +Ġl ion +le nd +Ġh ired +Ġde ck +Ġra nd +Ġ18 0 +Ġhar der +Ġsub st +Ġgener ation +Ġdeal ing +ĠTw enty +Ġest ate +Ġtou ched +Ġhealth y +Ġglass es +Ġscient ists +O L +n ce +z ing +Ġg re +im ents +ĠC ro +ĠD uke +Ġr hy +ĠK n +Ġfe ather +ĠV ice +Ġcomp ared +Ġcr ash +Ġsur re +ron ic +Ġste al +Ġreport s +eal ous +Ġscar ce +] . +ing ly +ar ant +Ġn ut +ĠW r +out s +ĠR oss +ĠE dd +Ġbu ying +Ġmed al +Ġcommun ities +Ġce re +aim ed +Ġdepend s +ĠBo ard +3 6 +ĠB rian +Ġdo zen +Ġwh ist +ea ks +um es +Ġcon ce +Ġsa le +ca hedron +Ġret ire +Ġem pire +ĠEr as +Ġdisapp ear +ĠSim on +Ġdel ay +" ), +S o +h u +Ġs isters +is ms +ot o +ĠH ang +ol en +ĠJ r +Ġmo le +Ġele v +ĠJohn ny +ĠSw itzerland +ades h +Ġbelong s +IF A +ĠMaz ra +' , +or ge +ĠC ut +Ġsu fficient +ep ing +Ġwhen ever +Ġtr uly +Ġle cture +ĠBe ach +Ġfun eral +ĠCon st +Ġequ als +Ġcreat ure +Ġve ctor +Ġproper ly +Ġsoft ware +AP TER +ĠRec ords +T V +b ably +Ġl ift +ĠH un +ĠB ook +ĠB ank +ĠN ether +ce ler +Ġpl astic +Ġshe l +Ġthem e +be c +ĠAn na +Ġsim pl +Ġ197 6 +app y +Ġhor rible +ĠGu ard +Ġspend ing +ĠTur k +Ġcru el +ĠAdm iral +ĠInst ead +ĠMazra eh +f oot +ĠA D +ĠY o +ch ief +our s +Ġsu icide +end er +ile y +ath y +Ġ198 6 +Ġcol ors +Ġclose ly +Ġmer chant +S C +b ased +Ġto ile +Ġbe ast +ĠC ub +ĠB ow +ĠN an +ĠG re +Ġ3 6 +ĠGerm ans +erv ative +.... .... +Ġbath room +Ġanal ysis +wr iter +Ġnumer ous +Ġrand om +L a +a a +g reg +h ole +Ġm ental +Ġn est +ĠB attle +ĠB illy +ĠO li +ĠTr ust +Ġmark ed +Ġeight y +Ġple asant +ĠCo ast +Ġemer gency +Ġdescri be +Ġinstru ctions +ropri ate +ĠEras mus +R UN +p ired +Ġt ort +re ck +Ġb on +or ial +Ġre ar +un te +Ġsc ript +Ġnight s +gg ing +ah o +Ġhigh way +Ġsix th +Ġwood s +Ġenjoy ed +ĠBet ty +Ġinj ury +ĠCH APTER +Ġreview s +Ġinvestig ation +F oot +W here +Ġb orrow +it ors +Ġf ate +Ġd ude +ĠT on +Ġh orn +ut ies +ĠB oss +ell e +ap h +Ġ5 00 +eak ing +Ġ198 5 +Ġexpl an +Ġadv anced +ĠPol ice +Ġrev olution +ĠTur key +Ġapplic ation +Ġst ole +ĠL ib +ĠR ab +ĠR od +and y +ip ment +Ġfl ash +Ġair port +Ġwin ner +Ġprot est +ĠSu pp +ĠGeorg ia +K E +K ING +N ew +i at +à ¢ +Ġ rib +Ġto oth +Ġto ys +Ġto ols +Ġn ominated +ĠS ab +ĠSo cial +Ġlo ad +Ġcomp osed +Ġer a +Ġobs erved +wh ich +Ġswim ming +b ra +Ġt ear +Ġb ran +Ġp ity +el a +ons cious +Ġdra ft +Ġ196 4 +Ġill ust +Ġcook ing +Ġphot ograph +ĠSen ator +Ġmor al +ĠFrancis co +c ri +w orth +Ġo k +ĠS han +im al +ĠM ah +ĠB ha +un ction +ol t +os al +Ġph r +Ġcoll ea +Ġcommun ication +Ġstrong er +ĠCha ir +Ġpot ential +Ġbud dy +Ġ ¶ +B S +N orm +P h +s an +Ġ Ì +Ġt icket +ĠB udd +ĠF a +Ġsa ving +age ment +Ġtalk s +ĠAn th +ĠGood bye +Ġbad ly +ĠGree ce +Ġperm an +Ġindepend ence +Ġrecomm end +Ġlone ly +l av +Ġp ale +Ġy ard +le m +ĠM ind +ĠD ie +ĠP ers +and al +os is +og ue +Ġtra ins +az e +Ġed itor +Ġ197 8 +Ġexc iting +EN T +Ġmethod s +Ġatm osphere +C ome +c ont +w ich +Ġc hampion +Ġm ile +ĠA w +Ġe c +Ġv ent +ĠV ol +ĠAs sy +Ġcent uries +Ġrecord ing +Ġoper a +Ġoper ating +rog en +Ġburn ing +Ġadop ted +Ġwebs ite +Ġw and +Ġf olks +ĠN a +un ior +Ġdec or +Ġpain ted +ĠMiss ouri +Ġstat istics +Ġrul ed +ĠWil son +Ġfright ened +Ġsucceed ed +s a +he w +Ġs ink +Ġd umb +Ġre ference +ĠC hi +ri fic +ĠF IFA +Ġapp ly +Ġapp lied +ER S +Ġdiffic ulty +Ġident ity +ĠWal ter +Ġrestaur ant +Ġ / +Ġc ert +Ġst ab +ĠP en +Ġv ision +we ight +ens es +Ġcomm it +Ġreg ret +Ġsy n +Ġ198 3 +ĠSome body +Ġdef in +Ġste am +Ġsend ing +ĠPhil ipp +ĠOff ice +i Äĩ +Ġf art +en cies +ĠT ang +ir us +se x +Ġan ger +if fe +ĠP ower +Ġj ealous +ell ing +Ġbut t +ĠSt uart +Ġdes ert +the w +Ġfact ory +Ġed ition +Ġ197 5 +Ġref lect +rop ol +Ġcor resp +Ġlad der +Ġtrack s +Ġenvironment al +Ġpu zz +1 00 +f ish +Ġn ick +ĠC ur +Ġat h +th is +ven ue +ĠTh rough +Ġco vers +ĠAl i +Ġac celer +che ster +Ġbab ies +ĠComm ander +Ġregard ed +gl as +Ġreve aled +ĠVictor ia +Ġridic ulous +I E +I LL +s en +w as +Ġw o +om pl +al o +Ġke ys +Ġequ ipment +Ġprov in +Ġvol ume +Ġfle et +Ġexam ples +Ġcondu ct +Ġcy cle +Ġsurr ounded +Ġrom antic +3 9 +B A +Ġt ub +Ġs an +ot i +Ġbe ating +ĠH o +ĠH ong +oo f +Ġme al +han iel +aw s +Ġsec ure +ont o +Ġimp ress +Ġ193 0 +Ġauthor ities +Ġengine ering +Ġbur st +ĠCharl ie +ĠBang l +Ġunus ual +M ay +b age +h in +w ho +Ġt orn +Ġb ul +it ter +as ters +ĠT hing +ot te +ĠA ye +ĠS C +ĠH A +ĠC ra +ĠN one +ge on +Ġcon ver +ĠBe at +Ġend ing +Ġtra ined +Ġinc ome +Ġinc ident +ĠLe g +19 5 +Ġdev ice +Ġda wn +Ġsympt oms +m other +Ġf ans +om y +al so +ĠE ver +ĠK now +Ġsp o +Ġinst ant +Ġinterest s +Ġvis ited +Ġann ual +ο u +ĠSy stem +Ġindust rial +Ġliter ally +ĠStep hen +Ġdisci pl +ĠOli ver +3 2 +Ġp ushed +Ġg ained +Ġre ject +ac hel +Ġv en +ag ger +Ġsp ite +ci p +Ġ197 3 +Ġ197 4 +Ġconf used +ĠHa ven +Ġsepar ated +ĠKore an +ĠRad io +Ġvictim s +Ġcuri ous +ĠSwed en +quar ters +4 5 +k h +r im +t es +Ġw aves +on ne +it able +Ġn od +ĠW ed +Ġre ward +ut ation +all el +ĠN umber +ĠP ublic +ĠF ound +Ġover all +ne w +Ġput s +ens ions +Ġele phant +Ġent rance +Ġimp ression +Ġdra g +Ġhold s +Ġinf l +Ġdefe at +Ġclaim ed +Ġshop ping +ĠDis ney +Ġschol ars +ĠAis ne +T A +v o +Ġ ing +re te +ĠS cience +ĠB alt +ĠP ost +ĠE ve +Ġwant ing +Ġsp r +iz z +Ġcons ult +Ġass ume +ĠLe on +Ġinter rupt +ĠPro bably +Ġlead s +Ġ196 9 +ĠMan ip +Ġocc as +Ġopp osed +Ġpract ical +Ġmass ive +Ġperm ission +Ġinit ial +I L +U D +i ac +Ġf o +Ġy o +ac her +ĠC L +ĠB BC +if ying +Ġrel ation +Ġacc ompl +ĠInd ians +Ġinc or +Ġfact or +Ġsk ills +Ġair craft +Ġexper t +Ġ194 0 +Ġcre ation +ĠQu ick +Ġdep th +urs day +Ġremain ing +Ġfort une +ĠProt est +Ġmathem at +ĠMarg aret +n ote +Ġp ed +at hered +ĠS n +Ġe ager +Ġgo als +Ġdes k +Ġmar gin +Ġreg ions +Ġchar ged +Ġdri ven +Ġmurd ered +Ġbrill iant +S E +m outh +u able +it ure +ĠI ra +Ġp ension +ĠT an +ĠS k +ĠC D +Ġra b +Ġsub sequ +att les +Ġ15 0 +Ġcontro vers +com m +Ġclot hing +Ġsour ces +Ġmob ile +look ing +ĠColumb ia +ĠDaw son +3 7 +P P +S h +v ior +Ġw ra +Ġg rey +Ġn ort +ĠW W +Ġj umped +Ġso ci +ĠSt ra +Ġro de +ham ed +Ġbit s +Ġmil it +ĠWith out +ĠRob in +Ġsuff er +Ġaffect ed +ĠChild ren +Ġapprox imately +Å ¡ +Ġc ore +Ġl ung +ĠT enn +Ġre in +ĠO per +ĠG oo +ĠK r +Ġgr ade +Ġact s +ĠHow ard +Ġbo ats +Ġsub s +ĠJust ice +Ġprov ides +Ġdem ocr +Ġla unch +Ġgodd ess +Ġescap ed +intend o +l ers +à ¦ +or age +Ġy ep +Ġg ri +ĠH ay +st al +Ġdo ctors +Ġkn ight +ĠJ ess +ie ur +Ġsh ift +Ġv oices +Ġdes erve +ild ing +fect ure +Ġstud ying +Ġpass age +Ġgra v +Ġsit u +Ġposs ibility +Ġcheck ed +Ġpers ons +Ġsac red +Ġbal ance +Ġveh icle +Ġinhabit ants +f ive +on ic +Ġb en +Ġc ats +le ts +Ġst ress +ĠN ar +ĠP oint +ak ers +Ġact ed +Ġact ions +ib i +oun ce +Ġ197 2 +eng ers +Ġiss ued +Ġview s +Ġobject s +Ġwide ly +Ġinit i +Ġknock ed +Ġadminist r +Ġstran ger +Ġpregn ant +p oint +u ing +ĠT am +Ġre fe +st ers +ĠB an +ĠN intendo +Ġne ut +ĠJ an +el ine +ate ful +Ġv alley +ĠDe an +Ġcap able +Ġmusic ian +Ġ196 8 +ray ed +Ġdistrict s +Ġblock s +rem ony +Ġcapt ure +Ġmir ror +Ġreven ge +ĠDou glas +ĠEdd ie +ĠNether lands +2 6 +Ġb ones +or ney +Ġp our +ĠC ir +ad or +um my +Ġr ings +ap ore +ĠTh ough +ons ense +Ġhor ror +Ġce remony +Ġcomb ined +Ġshad ow +ĠAbs olutely +c alled +n et +Ġp ants +Ġre ign +ĠC orn +ĠG en +ĠHe ad +ul s +Ġj ew +Ġcon cl +Ġex ha +own ed +ĠTh ursday +Ġsp lend +Ġun s +Ġim ple +Ġshould ers +Ġcons ists +Ġass ign +Ġdrink s +Ġhop ed +Ġprison ers +Ġnecess arily +Ġbes ides +Ġast ron +Ġpil ot +L e +v or +Ġm ent +ĠM D +Ġse ed +ĠL es +ĠHe alth +ĠJ oy +Ġr ush +ĠSt art +av an +ĠRe ady +Ġmon ster +Ġlist ed +Ġshort ly +Ġtem ple +cher s +Ġdel ivered +Ġwat ers +Ġintell ect +Ġadminist ration +Ġstrugg le +Ġtyp ical +Ġt ip +Ġs ought +Ġf asc +ĠT ok +et ime +un a +ol i +and ie +Ġcon clud +Ġgu arant +ĠBr idge +Ġbit ter +Ġperson ally +Ġperson ality +Ġconf idence +ĠTe am +Ġ194 5 +Ġtre m +la us +Ġcop ies +ĠRep resent +Ġvide os +Ġearth qu +Ġdiscuss ion +Ġredu ced +Ġindivid uals +Ġbenef its +ĠSing apore +ĠMu hammad +elp hia +A A +Ġw ire +Ġm art +ow ing +ĠN i +ĠL ad +ie ve +ĠK a +int s +int on +Ġmet ers +ĠBar b +Ġroad s +ask a +Ġcult ural +Ġdeb t +Ġmach ines +Ġtend er +Ġgradu ated +ĠBru ce +L ES +b ach +m ail +Ġf uel +Ġto ast +Ġl t +ĠS in +ad elphia +Ġst olen +ĠY e +ĠN et +ĠG ib +ĠF ree +ĠE ight +ĠJ ay +ear ch +Ġ3 7 +Ġ3 00 +Ġmom ents +aught ers +Ġsw all +Ġdisc overy +ĠAb d +Ġpur ple +Ġprogram me +Ġcop s +Ġfair y +Ġinvest ment +Ġver t +Ġide al +ĠChan nel +Ġsatisf ied +ĠRail way +ĠTai wan +Ġtoile t +J ohn +Ġt ale +Ġs oup +ĠA ud +ĠF amily +ea ble +ul se +em et +Ġar ts +Ġlo yal +Ġgu ests +cl ass +Ġreg ional +Ġequ ation +Ġsn ake +Ġcra p +Ġvers ions +IS T +hampions hips +Ġver te +ĠEduc ation +Norm andie +9 9 +D e +K S +er a +ĠC ost +ri x +Ġr ice +Ġr ising +Ġour s +ĠAl bert +Ġown ers +ĠAr ts +Ġheart s +Ġ196 3 +Ġest im +ĠMet ro +ĠCa pe +ĠBas se +Ġmere ly +Ġneighbor hood +R AT +U M +c us +c ut +m ph +Ġm al +Ġf ed +Ġf estival +es ome +as ha +Ġn aked +Ġit ems +ĠM orning +ĠB uck +ous ing +Ġun ha +Ġsc enes +Ġrem ove +âĻ ª +Ġins ult +Ġmark s +Ġcontro lled +Ġfig ured +IT H +OM E +Ġprinci pal +Ġmaid en +Ġgrant ed +3 1 +H L +w ill +Ġb om +or ia +Ġto mb +ir med +ĠB ud +Ġkn ees +Ġv ast +Ġsl ide +ĠAr k +Ġmind s +ĠCon ne +iam i +Ġorgan ized +Ġdev ices +ĠSte ven +ĠBet ter +Ġbow l +Ġliqu id +Ġarran ged +emet ery +u v +y gen +Ġa id +ll e +Ġn urse +ĠB and +ĠO tt +Ġ( _ +ĠK an +ost er +Ġro pe +Ġcont em +iss ed +ĠBr ing +ĠSe ven +az ed +Ġext ended +Ġcut ting +Ġspirit ual +ĠBab y +ĠMill er +Ġbran ches +C l +F C +b u +m et +is k +Ġin fect +ĠA mb +ĠP ress +ĠK al +Ġte en +Ġsm iled +ĠAr gent +Ġlist ened +Ġbed room +de rer +Ġ194 7 +ĠAust ria +Ġkiss ed +ĠGrand ma +nes day +Ġemot ions +ó n +Ġbeg un +Ġansw ers +c ia +i ency +Ġn uts +ut or +ĠH oney +ĠM ain +ĠB C +ĠP oor +ĠG ordon +ul ed +Ġno ble +ĠU r +Ġpr ote +Ġcont ext +Ġhouse hold +Ġdist ingu +Ġpar ish +Ġdep os +ĠCor por +Ġquiet ly +ĠDar ling +Ġdescri ption +Ġpunish ment +ĠOffic er +Ġimple ment +ã ĥ +er able +Ġb ike +Ġm amm +Ġl ately +Ġst im +ct ive +ĠF ord +Ġar row +Ġlet ting +Ġchild hood +Ġsur gery +Ġins pired +Ġstr ate +ues day +ĠCon ference +Ġexpl ore +ĠSha h +Ġnat haniel +Ġexec utive +Ġanal y +Ġdesp ite +ĠTor onto +Ġpoll ution +Ġdemon str +Ġnucle ar +Ġaband oned +Ġexplan ation +ĠÌ ģ +O P +U n +f ly +p ress +Ġt ag +Ġm ud +Ġf ond +Ġto y +ar o +ke l +ĠP u +ĠL iber +Ġj oseph +Ġ19 20 +ord ers +Ġer ror +Ġrel ief +Ġalong side +Ġphot os +ĠDes p +ĠSpe cial +Ġdom estic +Ġglob al +C T +Ġt ries +Ġc hampionship +Ġf ab +Ġin cl +at han +ĠS ly +Ġfor b +ĠP o +ĠF ind +Ġj ury +Ġcomp ar +Ġun like +ĠAs sembly +ĠAll en +Ġreturn ing +Ġpur s +la use +Ġvill ages +Ġprofess ion +Ġpub l +Ġsail ed +ĠHist or +Ġemot ional +Ġcompos er +Ġjack et +Ġeld er +Ġaltern ative +Ġsust ain +Ġstrate gy +g ic +ou ch +it ched +Ġc hamber +Ġg y +Ġg athered +Ġh ockey +us ive +ĠS weet +if ts +ra ph +ust ing +ĠIn f +Ġun com +Ġ3 4 +Ġsm iling +oun ced +Ġdri ves +Ġ197 7 +Ġste pped +Ġ194 4 +Ġill ness +Ġelect ions +pha s +Ġredu ce +Ġarchite ct +Ġarchite cture +Ġmax imum +ĠPic ard +Ġcorresp ond +T r +W hen +c op +h ot +l an +Ġ Ä +Ġf oss +ĠI mp +ll y +Ġy ards +ĠB i +ĠB all +ur ches +ĠO d +um ble +ĠU N +Ġsp ons +Ġim ages +Ġdis g +Ġacc ur +Ġcra w +Ġattack s +Ġann oy +Ġpers u +Ġdram atic +R Y +g ie +n at +Ġw ars +Ġp eak +om be +Ġth read +ĠM aine +ĠC roat +ea u +ĠE lect +ĠZ e +Ġ196 7 +Ġdi agn +Ġcommand er +ĠFin ally +Ġ £ +Ġsac rif +ĠCamp bell +Ġcandid ate +ĠGoo gle +N e +p ent +à ± +Ġt ack +im b +ĠH art +ĠR E +th m +ĠJ u +Ġsc ored +Ġprom oted +Ġpar liament +Ġpos itions +Ġcross ing +ĠChe ck +ĠPhil adelphia +J ust +M ar +d oor +n on +w ing +Ġf ir +an ed +at ures +ĠC ole +ra k +ol ves +Ġal pha +Ġag ents +Ġthr one +Ġunder ground +Ġass ault +ĠInd ones +Ġmeet ings +ĠMm m +AN D +Ġ196 5 +Ġpar allel +Ġadm itted +ĠMc G +ĠKe vin +ĠYOU R +Ġclub s +Ġident ified +ĠPal ace +Ġfrequ ently +Ġpir ate +ĠId aho +Ġexped ition +Ġc ooper +Ġf ulf +Ġh ills +Ġwas hed +ia o +Ġpr on +Ġapp ropriate +ons ieur +Ġwar ning +ĠPro du +Ġfriends hip +Ġoper ated +ĠMat thew +ĠBro ok +Ġelectric ity +Ġexperien ces +Ġheav ily +Ġcapac ity +A h +R e +r ons +s ar +z ed +Ġo ption +Ġin se +Ġst airs +ĠD NA +Ġse lect +Ġat om +Ġr ug +ĠV iv +Ġch rist +ott ed +Ġchar t +Ġstr ateg +Ġconf ess +Ġlarge ly +ĠCent re +Ġexist ing +ĠGl ob +Ġintrodu ce +Ġaff air +Ġconstit ution +3 3 +o ard +ha b +ing ton +Ġd ow +at ically +Ġh unt +ĠA ld +ĠA lf +Ġas hamed +if er +Ġcoll abor +ogra pher +Ġcrit ics +Ġphys ics +Ġviol ent +ĠAir port +ĠHon or +ĠFre ud +Ġvot es +ĠSant a +Ġconvin ced +Ġrab bit +f it +i ri +t an +ĠT ar +ĠB ishop +op her +ĠR illa +ĠF orm +oy d +Ġpre cious +Ġcol umn +ament al +Ġrepl ace +Ġabs or +Ġsubject s +Ġchair man +Ġbreat hing +r in +ĠA S +ĠS uff +Ġe fficient +ĠH ook +ir ts +ĠO ri +ĠP ot +ĠE conom +ig s +vel ope +Ġhead ed +Ġdef ense +Ġexpect ing +Ġabs olute +Ġdoll ar +Ġvol unte +Ġepis odes +Ġbeha vior +ĠHaw ai +Ġexperien ced +F or +T o +u ate +Ġw icked +Ġs am +Ġf er +Ġd aughters +ĠS her +ĠS ever +ĠM iami +ĠB or +ĠB ible +Ġas h +ĠF ederal +Ġne at +Ġpart ly +Ġgr ateful +Ġset s +Ġrep utation +Ġserv ant +ĠTe chn +Ġpick ing +Ġ194 1 +Ġengine er +ĠDoes n +Ġprep are +ĠGold en +ĠThing s +I ll +p ass +ic ia +ĠW onder +ĠH ospital +ro id +ĠP ret +ĠJ os +od ge +Ġnow here +ci ences +Ġen orm +Ġco ordin +hed ral +iss a +pect ive +IN E +cer tain +Ġsoon er +Ġpur su +Ġtre asure +Ġalbum s +Ġmess ages +ĠMexic an +Ġox ygen +Ġalt ogether +rat ulations +Ġdelic ious +c ase +he me +er ted +ha w +Ġc od +Ġc attle +Ġto ol +Ġp ant +Ġwas hing +ĠH og +ĠM os +ĠN OT +Ġse ats +ĠL o +ist ol +ĠSt one +Ġcont ained +Ġrec y +Ġ4 8 +Ġac ad +Ġadd ing +Ġless on +Ġhat ed +Ġallow ing +ĠRoman ia +Ġproject s +Ġpresident ial +Ġpurp oses +Ġdoc uments +ĠSpeak er +Ġmyst ery +ĠSly ne +T han +f our +h us +m ont +Ġin ch +ĠC ass +ĠB av +ĠD ale +ĠG un +ĠL ew +ell o +ak s +Ġsp oon +Ġext ent +Ġposs ession +ĠBl ood +Ġprob ability +Ġmur derer +Ġnat urally +Ġrail road +Ġbase ball +Ġthreat ened +Ġess entially +ĠHea ven +ĠWed nesday +O ne +l ong +l aughter +w ick +ha h +Ġf aced +or ious +Ġd ating +ĠT uesday +Ġth ir +Ġst ones +ĠD u +ĠF C +ĠF u +ag ers +Ġform at +ĠFor get +Ġland ed +ĠEm ma +ode cahedron +Ġtest ing +Ġproper ties +Ġdi pl +Ġcollect ed +ĠBet ween +Ġprinci ple +Ġtele phone +Ġilleg al +ĠAnth ony +ĠPicard ie +. & +e rest +y ard +Ġb one +us a +ĠA ren +ĠS P +ĠS av +ĠS ister +Ġbe ings +ith m +ĠP rem +Ġnot able +ĠR et +Ġwor n +itt y +Ġag es +Ġgr ay +Ġch oo +Ġsm ooth +Ġdiffe rences +Ġob lig +Ġext end +ĠHar rison +Ġval uable +ĠMor gan +Ġvac c +Ġadult s +Ġf rank +ll er +ĠY an +ĠD al +il ton +ig a +Ġinc hes +Ġsit es +Ġadv oc +Ġappro ved +Ġpull ing +sm ith +Ġlat est +Foot note +d ney +ha s +it led +at tered +Ġn ap +Ġhe s +ĠM Y +ĠM ot +ĠB ah +Ġst able +Ġas ks +ĠAnd y +Ġus eless +Ġpro sec +Ġtw in +Ġgr ace +Ġbr id +Ġinv asion +Ġstop s +Ġca using +com ing +Ġamong st +ĠWH AT +ĠIntern et +9 5 +b ro +h ist +r um +Ġthe atre +ĠA M +Ġth orough +ĠL uther +ĠF ace +ul es +ag ne +ick ing +ix on +ĠAs k +Ġatt ached +Ġcour ts +Ġpass es +ĠAb b +Ġequ ival +Ġstrong ly +ĠMin istry +bour ne +Ġinit ially +c ers +Ġt ank +in er +en ess +Ġp ipe +Ġh its +ĠN AR +ĠP ass +Ġv ul +pe i +Ġlo ver +Ġad j +Ġpre cise +ful ness +form ation +Ġform al +Ġdef ined +pr ise +ĠAm ong +Ġstar red +II I +Ġport ion +Ġclaim s +A re +L RB +e enth +Ġt ropical +Ġw ing +Ġs ar +Ġb ark +Ġd ea +oo s +out heast +ĠO rigin +ĠL ive +Ġde ce +ĠJ erry +ud es +Ġdown stairs +gin es +ird s +Ġsing les +ĠMe an +ĠPl an +Ġappoint ment +Ġintern al +Ġunc onscious +Ġexer cise +Ġunha ppy +O n +R RB +S iden +l ie +p ool + ° +in em +es see +Ġn it +ot y +Ġth ief +ĠY ug +ĠL ock +... ! +ĠE nd +Ġnew ly +gg ie +Ġchar ges +Ġpar ad +Ġaw ake +Ġclean ing +Ġsuper ior +Ġbeat en +Ġban ks +Ġlic ense +Ġencoura ge +Ġlin ear +ĠLis a +Ġded icated +Ġdesper ate +ĠIra q +Siden ote +b al +l ad +o ons +Ġf aint +or ation +Ġd omin +Ġy ield +ĠM s +ĠC amer +ĠL in +ĠL ion +Ġshe et +Ġwhere ver +ord inary +cl ing +Ġshow er +Ġsl ipped +Ġhead quarters +Ġind ic +ĠTH IS +Ġmod els +ĠTom orrow +Ġspir its +Ġrepe at +ĠDesp ite +4 8 +o z +à £ +à § +Ġin du +ĠD ri +ĠD og +ĠG ran +op p +ud a +ran g +Ġpr ide +Ġ3 3 +Ġ3 8 +Ġcar riage +Ġlea f +ib ilities +Ġent ry +Ġinst inct +Ġrest rict +Ġdevelop ing +Ġclass ic +Ġru ined +go ing +Ġneg oti +Ġstore s +ĠAnt on +ĠOlymp ic +Ġprint ed +Ġacqu ired +ĠSil ver +Ġpir ates +Ġren amed +C on +c ript +d ie +f ire +n or +s ur +is en +ĠI D +Ġd oo +Ġd ates +ĠS O +ĠS ally +ac les +ĠH ig +ĠM oo +Ġas sociation +ĠN ine +ĠG ene +ĠR ea +ĠF at +Ġso ap +Ġus er +ast e +ne ath +te enth +olog ists +Ġstand ards +Ġyoung est +Ġstr ict +Ġhur ts +Ġ196 6 +Ġwond ered +Ġconst antly +ĠComm on +ĠPhil ip +Ġregard ing +ĠMount ain +keep er +Ġresc ue +M ic +in ter +Ġw oo +Ġw ishes +ha ra +id ers +ĠW on +ĠW ars +ĠC as +ĠB orn +Ġan ch +ĠD in +Ġse ized +ĠL ind +Ġsu p +ĠK elly +Ġag ency +Ġpe asant +Ġdis ag +Ġcr is +ĠAr men +Ġconf ident +Ġri vers +Ġ195 4 +ĠDr ink +augh ing +ida e +uk i +ĠLa ura +Ġtechn ical +Ġgen us +Ġtax es +ĠChristian ity +Ġinj ured +Ġprinci ples +Ġble w +Ġnewsp apers +Ġrelative ly +Ġrapid ly +Ġinvent ed +Ġmyster ious +Ġfant astic +Ġcott on +Ġphr ase +Ġnick n +4 7 +i ro +Ġthe ater +Ġw reck +Ġf isher +Ġd uties +Ġg al +ic ians +ĠS ave +ĠS ports +Ġth under +ĠY oon +Ġgo sh +un ting +Ġsa v +Ġar gue +per t +uck er +Ġgreat ly +Ġexp ressed +Ġmove ments +Ġ7 5 +Ġfell ows +Ġorgan izations +Ġru in +ĠPol ish +ĠJew s +ĠPan ama +Ġjournal ist +Ġadvent ure +ĠFollow ing +c ular +p han +r ace +Ġp hen +Ġl ap +Ġg ross +ĠA ff +ĠS ounds +ĠW ild +ur g +ĠF if +ĠK ings +ag a +Ġwr ites +ĠAn cient +Ġsl ip +ĠDe velop +Ġob st +Ġair pl +Ġ195 6 +Ġarri ve +Ġgen ius +Ġemot ion +Ġresour ce +Ġoccup ied +ĠRoll o +Ġvessel s +Ġkil omet +iffe rent +E x +r idge +Ġt ube +Ġc ant +ĠI V +ĠI ce +Ġto ler +ĠH im +ĠH oll +ĠC ook +st an +ĠP rom +ĠL ow +um ps +Ġab oard +Ġpro port +Ġoff ering +Ġbr ush +Ġgu ide +ens ity +ĠCh uck +Ġmight y +ild a +Ġel imin +Ġgl ance +ĠSh ort +ĠCl ark +Ġart icles +Ġsol o +Ġeight een +Ġinvol ve +Ġgrand father +Ġdeb ate +Ġpolic ies +Ġthrow ing +Ġopportun ities +Ġlif ted +ĠHolly wood +cri ption +Ġprovin ces +ĠTenn essee +u y +Å Ł +ĠB ase +ĠF ield +um a +Ġr ic +os lav +han g +ab el +ĠK N +ĠU P +ber ry +hi bit +Ġen gines +ran e +Ġsc heme +Ġlast ed +Ġcr imes +Ġop ens +Ġsl ave +Ġsw ift +Ġhur ricane +Ġgrand ma +Ġpriv ile +Ġforest s +Ġcell s +Ġdistrib ution +Ġintellig ence +ropol itan +ĠTok yo +L aughter +z es +Ġt iss +Ġd ign +Ġd ump +ic o +ic ing +Ġbe gged +im ore +ĠN ed +ĠP ardon +Ġse lection +Ġup d +ĠU t +tain ment +Ġfour teen +Ġret reat +Ġem peror +Ġconf irmed +Ġserv ants +Ġri val +Ġprof it +ĠGr ant +cha e +ĠCha p +Ġconcer ns +Ġcompet e +Ġsecret ary +Ġprim arily +ĠPat rick +Ġfort un +rif ied +Ġwrest ling +Ġnea rer +Ġperman ent +B I +V ID +c our +d s +Ġb ot +Ġc ub +ĠA LL +ĠM A +ch o +Ġj am +Ġcon ven +Ġint ent +Ġint ense +ĠAr m +Ġacc used +Ġform ation +Ġem phas +ĠAust en +Ġla ura +ĠSer ies +ĠSy dney +Ġang le +Ġcomput ers +af ter +Ġsurv ived +Ġcelebr ated +ĠJud y +Ġinstr uments +Ġbub bles +Ġconc rete +ĠLA UGH +7 5 +A hm +H ey +Ġs na +Ġb ent +Ġb old +or i +ĠA venue +Ġre aching +ĠY u +Ġan gel +ĠD ON +ter y +Ġv on +Ġv ain +Ġro lled +ĠUn less +ĠMar ie +Ġworld wide +Ġreg ist +Ġdist ant +Ġob tained +less ly +the less +Ġspeak er +Ġsqu ad +Ġ194 8 +Ġmer ged +Ġwood en +Ġlie utenant +ĠCong ratulations +ĠMo z +ĠLu ke +Ġliter ary +Ġhol es +Ġpray er +Ġvac ation +Ġplatform s +Ġtick ets +ĠHit ler +Ġincred ible +Ġdefin ition +r é +Ġa ye +in ations +in ction +Ġs ample +Ġo bey +Ġm ath +Ġf ake +or f +om er +ĠS ame +ĠW ITH +ĠM un +ĠM olly +ĠP itt +ul ating +um ph +Ġcom ed +Ġint ention +ĠSt at +Ġsp ark +Ġoff ers +ĠV ar +ĠV ill +Ġfl ed +ĠRe al +Ġ4 00 +Ġhead ing +Ġpass engers +Ġcreat ures +Ġ194 2 +AR D +Ġarri val +Ġrecogn ition +ĠCont in +Ġwhis pered +Ġconstru cted +Ġsem i +Ġpha se +ĠTol ombe +Ġsplend id +Ahm ad +ĠTolombe h +f a +k ind +r ary +ã Ĥ +Ġw ounds +Ġs ou +Ġm os +Ġf iction +ar th +Ġn ic +Ġn arr +ic it +le te +Ġbe nd +ĠW oman +ĠB os +ĠD yn +Ġsh oe +av ig +Ġke en +Ġfound er +ĠFran z +Ġprodu cing +Ġ196 1 +sh it +ov a +ĠTe levision +Ġdiv ide +Ġreason able +Ġ195 2 +Ġcompet ed +Ġdeep ly +Ġexcept ion +Ġhost ed +Ġaff airs +Ġsevent h +Ġeth nic +Ġapolog ize +ĠBangl adesh +u ct +or ous +Ġl amb +Ġn a +ĠM ort +Ġwh oops +ĠE p +Ġal gor +ell ow +Ġwhe els +Ġpre ced +Ġrem ote +ĠAl ways +Ġsl a +io let +ĠSp ring +sel s +Ġ196 2 +ik i +Ġclass ical +Ġident ify +ĠReg ion +Ġearli est +ĠMount ains +Ġclim b +Ġrough ly +Ġmemor ies +Ġpoet ry +Ġbac ter +Ġaccomp an +ĠRea gan +f rom +Ġa wards +Ġb ars +Ġm ouse +an ne +Ġp ushing +om ed +ĠC ON +ĠB ry +ĠN ations +Ġpl ates +Ġtr unk +Ġlo an +ĠV eg +ip ed +Ġlong est +Ġ4 6 +ale nd +ĠLe ft +Ġdeath s +Ġ195 8 +ĠJo han +Ġstra w +Ġtest s +ĠEn ough +ĠMary land +Ġbag s +Ġgrad ually +Ġconsider able +Ġdise ases +Ġhonest ly +Ġdemand ed +Ġachie ved +Ġpainting s +l ar +Ġs ang +it als +Ġp ap +Ġp ump +Ġg reet +ĠH ope +ĠB ir +all ing +ur ation +ĠG ro +ĠL l +ig en +ab i +ag le +pt on +urn ame +Ġrep ly +ĠChrist ians +Ġmod e +ues e +ĠCol or +Ġsail ing +ĠCle ar +ĠCare er +Ġearthqu ake +4 2 +in stein +Ġs orrow +Ġd ull +Ġg rief +ĠM oon +ĠB ul +ĠP ra +ĠG ardens +Ġj e +el son +Ġpe e +Ġlo ving +act or +ru its +Ġch urches +Ġhand ed +Ġcr ay +Ġ5 5 +Ġmon arch +Ġinter act +Ġev ident +Ġmed ium +Ġaw esome +Ġinde x +Ġmer ry +Ġimmedi ate +US T +Ġcateg ory +Ġcris is +9 7 +C an +c r +Ġm ask +Ġg est +ĠH op +ĠM oney +ĠC ru +se a +ĠD ear +ĠG ary +Ġsh ining +Ġr it +em on +res ents +Ġv ice +ĠK night +Ġfe ver +Ġcount ing +tern al +ott o +Ġpass enger +OU LD +Ġexc it +ĠUS A +ĠNorm an +G o +N G +o ves +r ors +t here +re al +Ġf ox +ing o +Ġin her +as ia +ĠA R +ĠA z +id el +ĠN ik +un ts +ul pt +um in +ĠK aren +Ġwho ever +ĠV in +ord an +Ġunder neath +Ġext ensive +Ġdiv ine +Ġ194 6 +ĠBoy er +Ġextra ordinary +ĠGirl s +Ġcontain ing +ĠTai pei +ĠShi v +ĠWay ne +Ġconscious ness +ĠSuff olk +d es +j ud +l ow +v ation +Ġw oke +Ġb rig +Ġp up +Ġp owder +ĠS um +ut ing +ĠH appy +se ll +ĠP ict +ĠR u +ol and +Ġro ots +ang ers +ĠAn im +Ġass igned +Ġrep resents +Ġexp osed +Ġless ons +Ġanim ated +Ġcompl ain +Ġut ter +Ġrare ly +Ġcontr ast +ĠTay lor +Ġreck on +Ġfart her +W h +b es +g as +m ate +m ates +n is +â ģ +Ġf are +Ġin ner +Ġh oly +et ers +ĠA st +Ġit em +id ency +ĠThe atre +Ġ" ... +Ġkn ee +ĠF ur +nt own +ig hed +Ġser ves +Ġfact ors +ĠAd ams +Ġ194 3 +ĠMic he +Ġrequ ires +Ġstar ring +Ġ193 8 +lo ad +Ġrelations hips +Ġannoun ce +Ġess ential +Ġdistrib uted +ĠFore st +ctic ut +ĠJon athan +âģ Ħ +4 9 +f le +l ife +p ack +Ġb oring +ĠH uman +ĠC amb +ant ry +ĠR os +Ġal ien +os ity +Ġex ists +Ġcl oth +ĠV I +Ġpo em +ĠDo c +Ġbel t +The n +Ġdec ent +Ġsound ed +ĠPl ace +Ġstru ctures +Ġtem porary +Ġsweet heart +Ġmot iv +ask et +ĠSec urity +ĠPol and +Ġmist akes +Ġamount s +Ġprison er +Ġsearch ing +Ġfac ilities +ĠBob by +Ġhistor ic +Ġofficial s +Ġcustom ers +Ġremark able +ĠHot el +ĠPap a +ĠPortug uese +E F +E M +d am +j e +l aughs +Ġto ss +Ġp ond +at on +ĠH ou +ĠH ug +ĠC reek +ĠB Y +ĠL og +Ġli ed +ol is +th ree +art s +Ġus ers +Ġint end +Ġtr am +Ġbl ast +Ġgu ards +ĠAr n +ged y +rib ed +Ġev al +Ġwind s +Ġpresent ation +Ġ195 9 +Ġsum m +ĠSu z +Ġimag ination +Ġfro zen +Ġoppos ition +Ġschol ar +Ġanx ious +Ġtroub les +ĠLab our +ĠConne cticut +4 3 +I VE +n um +or gan +es ar +ot es +al ph +Ġth ri +ĠM ale +ĠC E +Ġst orage +Ġk ings +ch i +ĠP R +ĠR us +ĠSo f +Ġad apt +Ġ3 9 +Ġrec overed +Ġtra p +Ġdist ract +ĠGe ography +Ġvis ible +ĠX X +Ġprotect ed +Ġexist ed +Ġvisit ors +ĠAdm inist +Ġgodd amn +Ġbub ble +Ġunivers ities +Ġmanufact ure +ĠMuslim s +ĠViet nam +ĠTurk ish +ĠProtest ant +Ġenorm ous +ã o +Ġexcit ement +g ro +g ate +o cc +in et +it ated +Ġd ial +ĠS et +Ġe y +Ġab st +Ġor phan +Ġr ural +Ġsp aces +Ġrec on +ĠBe ing +Ġsy nt +Ġoffic es +Ġdep ression +Ġpolic eman +ĠFin n +ĠAlex and +Ġspecific ally +ĠCarl os +ĠEnter tainment +ĠHA VE +ĠManip ur +e qu +w ind +Ġc ows +Ġm r +Ġm ister +us hes +st ate +ĠP ay +ĠJ am +ort ed +Ġcl own +Ġpr ices +pl ess +Ġbu ff +gg er +ĠPro gram +sh ine +ĠPe ace +ald a +Ġclos ing +Ġdepend ing +pir ation +Ġdivor ced +ĠPerson al +Ill ustration +8 6 +G RUN +M AN +h h +m aster +p o +Ġt une +or ters +Ġp unch +Ġn onsense +le ans +ĠC ard +Ġst amp +Ġdo de +ĠL iz +ĠR an +ĠR ound +ol as +ol ve +ĠJ ordan +ck now +ĠK y +Ġsc ary +Ġwar n +Ġass ass +Ġelse where +Ġfact s +ĠĠĠĠĠĠĠĠ Ġ +Ġprov iding +Ġ194 9 +ĠGr ace +Ġdam aged +Ġrepresent ing +Ġhop es +Ġcelebr ate +Ġcondu cted +Ġfro gs +Ġintern et +Ġsurr ounding +Ġexcl aimed +Ġwrit ers +ĠNap ole +Ġincor por +Ġtrem end +ĠMean while +' ? +4 1 +t wo +er ick +nd a +it age +Ġd irt +Ġis ol +Ġbe ars +ĠW rest +ĠW AS +ut iful +ĠC e +ĠN elson +ĠD ude +Ġsh ops +Ġor chestra +Ġsa uce +Ġgood bye +Ġunder t +ect ive +hes is +Ġkind a +Ġcle ared +Ġfun ctions +rib ly +Ġcur tain +ĠAust rian +ĠHa ving +Ġdifficult ies +Ġsafe ly +Ġjud gment +Ġbreat he +Ġinj uries +Ġgradu ate +Ġbare ly +ĠCorpor ation +ĠPret ty +ĠMoo re +) : +I A +S H +d iv +g i +x ual + Ŀ +Ġ vel +Ġa ired +or se +Ġd well +Ġh id +id ering +ĠC ertain +Ġher s +ab out +Ġback wards +ĠUn like +pect ed +Ġins ist +Ġpartic les +Ġlim its +Ġrese ar +Ġfund s +Ġattempt ed +Ġbeha lf +LA UGH +Ġlink ed +ĠHam ilton +ĠBalt imore +c ury +r ome +s k +w i +w all +he astern +Ġw ax +ou st +on i +Ġn ations +ĠN ich +Ġse as +ĠG ET +ĠF ame +ĠJ a +Ġcan ce +Ġr ude +Ġar c +Ġcl in +Ġfe e +Ġen velope +erm ans +ĠThere fore +ail ed +ock s +ah n +ĠGod d +Ġdec re +Ġtrans m +ĠBar ry +Ġdest ruction +chan ge +Ġintrodu ction +ĠCr own +ĠWin ter +Ġtyp ically +Ġtransfer red +ĠChair man +Ġgrav ity +ĠRepresent atives +ĠBav aria +? ' +I G +S u +i ors +n els +r ine +Ġ + +in burgh +Ġb ond +Ġf etch +or ig +ar se +Ġg ran +ĠD all +il st +ĠL O +ĠR en +ĠF riend +ĠHe ll +ain ted +Ġal arm +Ġr acing +Ġcom ic +ab y +ink ing +Ġqu e +Ġrec over +Ġsha res +oc ation +ret t +ĠMe et +Ġland ing +Ġopp on +Ġstar ing +Ġ193 9 +ffic iency +Ġlad s +Ġring ing +ĠRober ts +ĠLu cy +Ġcompan ion +Ġdeterm ine +Ġdun no +Ġretire ment +Ġadministr ative +is dom +Ġb ass +Ġb unny +Ġf ierce +or ld +ĠT ower +Ġse ated +Ġj azz +Ġsh ield +Ġex cess +ck ets +ud i +so ft +ish na +Ġact ors +Ġbu zz +Ġent ering +ĠOr leans +Ġpay ment +Ġequ ally +ON E +Ġtem pt +Ġcamp us +Ġsca re +Ġbelong ed +Ġinflu enced +Ġaccount s +ĠIm perial +Ġdocument ary +Ġtal ent +ĠLar ry +ĠLad ies +Ġthir teen +ĠYug oslav +d ale +g un +Ġ â +Ġa cknow +Ġg ently +ve t +Ġbe ans +ac ement +ĠC hile +ĠC ooper +ill ing +ĠL ax +ant le +ĠF el +os ure +Ġv oted +ak u +ous ed +ĠV i +Ġad just +ĠAll ah +Ġsl aves +Ġsur vey +Ġ6 5 +Ġrep rodu +ĠOr gan +Ġcontro ls +ĠAm anda +Ġsuccess fully +ĠCha nd +Ġcond ens +IC E +Ġpers pective +uel a +Ġblow ing +ĠNor way +Ġfoc used +Ġdig ital +Ġfeed ing +ĠDa isy +Ġoccasion ally +ĠInde ed +Ġcompon ents +Ġrhy thm +RAT OR +Ġequival ent +Ġ ; +Ġa uth +Ġs ession +Ġs urname +at in +ĠC ham +Ġst ack +Ġse eds +Ġcom ments +ind er +ĠIn spect +fe ld +Ġpe as +ans ion +Ġwhere as +ars on +Ġsub m +ĠSc ots +Ġprom inent +ai ries +Ġ17 0 +Ġbed s +ĠPl atform +Ġterm in +Ġperform ing +Ġabs ence +Ġban ana +Ġgar bage +Ġsens itive +ĠRes earch +Ġattract ed +ĠCharl otte +Ġchap ter +Ġsequ ence +Ġstret ched +Ġstro ke +Ġfurn iture +ĠTem ple +Ġfeather s +Ġnort heast +4 4 +U CK +g ian +y our +nd ered +Ġb ills +Ġy οu +ĠT our +al ie +ĠN ay +ĠD enn +her ry +ĠO ak +ĠG or +est ion +ber y +Ġevery day +Ġper ce +ĠMay or +Ġstop ping +Ġsix teen +Ġvis ual +Ġappear ances +Ġtit les +Ġpal m +ĠSar had +udd en +ĠDep uty +Ġleaders hip +Ġflo ating +Ġdiam ond +Ġarrange ment +Ġmicro phone +Ġintellect ual +Ġsacrif ice +ĠNAR RATOR +. ! +r ings +it ate +Ġc hips +Ġd io +an es +ay an +ĠM P +Ġ1 20 +ĠF BI +Ġab road +ĠU gh +Ġman if +ide o +ĠWe b +ure au +og y +Ġdis hes +Ġfound ation +Ġ4 7 +Ġcons cience +clud ing +Ġsw ing +Ġmet ro +ung le +ĠMe ite +Ġdri ft +Ġmusic ians +Ġfil es +ony m +Ġcra ft +ipp er +Ġmer cy +eder ation +iff s +cul iar +Ġfool ish +Ġfarm ers +ĠJud ge +Ġbelief s +Ġwithd raw +ĠMarsha ll +b its +r ous +s er +Ä ± +Ġb ore +Ġc alend +at ched +ĠM as +st ock +ĠR oc +ĠF ight +ĠJ en +Ġshe d +ĠK on +Ġcomp ass +ĠWhe ther +Ġsupp er +Ġmon key +ĠGo ing +the n +ĠPro ject +Ġsk ill +ĠChrist opher +Ġref ers +Ġref use +ĠNe il +Ġsupport ing +Ġeffect ively +Ġworth y +Ġmeant ime +Ġquar ters +Ġfaith ful +mus ic +ĠLy nde +ĠInde pend +Ġscarce ly +ĠPrem ier +6 7 +M S +Q u +g ain +u ght +u ine +Ġb id +Ġf eared +Ġp ip +ĠA ha +Ġe ase +ver ty +ri ans +st ar +ĠO nt +ĠR y +Ġne p +qu iao +Ġsee king +we ather +Ġapp les +Ġfin ishing +ug s +Ġent itled +Ġsub t +ĠBl air +Ġprom pt +Ġjo ining +Ġdef ence +Ġste ady +Ġrul er +Ġprim itive +Ġemploy ed +Ġscr atch +ĠEgypt ian +Ġentertain ment +Ġexpand ed +Ġune x +ĠBroad way +ĠHind u +ĠPhilipp ines +Ġconcl usion +ĠHawai i +ĠDevelop ment +ĠInspect or +h is +Ġthe at +Ġb ay +Ġp or +Ġp ardon +Ġin ject +ot al +ĠA ut +ĠN ative +ĠD om +ĠP ur +ĠL yn +ĠE th +qu es +ck er +Ġv ary +Ġpo verty +iss ions +ĠAl most +Ġ4 9 +Ġdec ades +Ġfollow ers +the y +Ġconf irm +Ġpri ests +Ġ195 7 +ĠGu ys +ES T +ĠBar on +ĠEd inburgh +Ġstat ue +Ġ193 7 +Ġsevent een +Ġbrief ly +Ġrom ance +Ġphilosop her +Ġlands cape +ĠCO VID +ĠBus iness +Ġkitt ie +ĠFound ation +ĠSever al +ĠVeg as +A pp +B O +d og +f in +g han +Ġa ston +Ġf ranch +Ġto m +om on +Ġha l +ay a +ĠB urn +ĠN FL +ĠP ad +Ġse ar +Ġse ctor +ĠL as +ĠAnd erson +Ġex ceed +cc er +Ġdis aster +Ġsc ulpt +Ġinst antly +Ġob tain +Ġass hole +Ġfar mer +ific ations +Ġconf ront +umb led +yr ics +Ġcook ie +Ġexec ution +Ġble eding +Ġapplic ations +Ġdelight ed +Ġassum ed +ĠGy p +Ġbatter y +Ġdipl om +ĠMeite i +s ighs +Ġt iger +ha ll +Ġf ence +or ne +ĠS hip +ĠM onsieur +Ġst adium +if ted +il and +Ġsh ots +ĠU se +ĠTh ird +Ġco inc +Ġsc ra +ĠDo ve +Ġsec rets +ĠEng ine +ĠSh ir +ĠSh oot +ĠCom ing +Ġkid na +Ġeight h +Ġband s +Ġz one +ĠSer b +Ġtechn iques +Ġeduc ated +Ġmis erable +Ġshar k +Ġfac ing +Ġlif etime +Ġpan el +Ġcloud s +Ġdyn am +Ġaspect s +Ġdisappoint ed +Ġcollea gues +ĠNet work +Ġestim ated +ĠKN OW +* * +i i +Ġw ins +ic op +al ia +Ġth rill +Ġpro s +ĠK il +ĠSt ew +Ġun certain +Ġreg ister +IN D +Ġent hus +Ġins ane +Ġimp ressed +ĠEx cept +Ġgovern ments +Ġcreat ive +ze ch +ĠAm endment +ĠComm and +Ġbox es +Ġcult iv +Ġgen uine +Ġpen cil +Ġsoft ly +Ġmad am +Ġpattern s +ĠHal f +Ġens ure +C C +b ors +d in +i able +Ġa rose +Ġb in +Ġd rank +Ġl amp +Ġg ates +ĠW at +ĠM ack +ro it +ĠF ant +ig r +ĠK u +Ġpe culiar +ob ile +ĠMar s +Ġmar ch +Ġdr um +Ġmet res +Ġwar rant +ivers ary +sh ot +AR T +lev ant +ES S +Ġcheck ing +Ġet ern +Ġjud ges +ĠMad am +Ġmid night +Ġrout es +Ġoffe nd +Ġtail or +ĠCa esar +Ġparticip ate +ĠWind ows +Ġdyn asty +Ġnep hew +! ! +g ments +p iece +v able +re k +Ġs ack +Ġc ave +Ġp ent +Ġin fection +ic ations +ĠS ara +Ġth irst +Ġwe lf +ac hi +ĠC old +st ream +ĠB aker +ra ham +Ġv ig +ag an +Ġsp y +ĠV is +ĠWh it +Ġlet s +Ġres ident +Ġhelp ful +Ġcour ses +ĠâĻª âĻª +Ġins pect +ĠAre a +ĠPro p +Ġste ad +Ġ195 5 +ĠGu y +Ġvers us +Ġkick ed +Ġdesp air +Ġshout ed +ĠDra gon +Ġagric ultural +Ġwelf are +6 8 +b urn +d le +i ge +m ic +w w +Ġs ore +Ġl aughter +ĠA uthor +ĠS A +ĠS aid +ĠM ine +ro b +ĠN O +ĠD er +ĠD ub +ĠR ud +ĠR achel +ĠF em +un ning +Ġab dom +ĠK urd +ĠTh ought +Ġsomet ime +Ġmo ck +Ġrec all +oth y +Ġche e +Ġpres ents +Ġcha se +Ġtri angle +Ġrece iving +ĠMin nes +ĠDav is +ien na +Ġtouch ing +Ġcoun sel +Ġdiscuss ed +Ġobs er +Ġaff ili +Ġopt im +Ġopt ions +Ġcritic ism +Ġscream ing +Ġpossess ed +Ġsurre nder +Ġshel ter +Ġath let +ĠIndones ia +ĠLew is +Ġairpl ane +t ure +Ġ ~ +Ġc ough +Ġf ame +Ġn erves +Ġh ollow +al ty +ĠA th +ĠG riff +ĠR ub +ĠR alph +ĠJ ae +pp et +Ġab e +ate ur +per ing +Ġgr ounds +Ġfl esh +man n +Ġsur ve +Ġca res +ĠCl are +ĠEx ec +cent ury +Ġdesign s +Ġresult ed +Ġpract ically +Ġrad iation +ĠSer iously +Ġsuggest s +Ġtrust ed +ĠApp le +Ġchem istry +Ġfavour ite +Ġtrave lling +Ġtrave lled +ĠCommun ity +Ġult imately +Ġcere mon +ĠHou ston +W ith +l ia +m ade +o a +o ft +u its +he y +Ġthe rap +re z +es ter +Ġn aught +us ter +us sels +ac ent +am my +ĠC art +ĠC AN +ro v +ĠY ale +ĠD ak +ĠP LA +ĠJ ob +Ġr ushed +Ġcon vince +ĠK ermans +ran ean +Ġfl av +Ġsha king +Ġmat rix +ĠMay weather +umb ling +eng u +Ġprogram ming +Ġcook ies +Ġshar ks +ĠBen j +ĠRob inson +Ġpack age +Ġimpro ved +Ġsuit able +Ġattract ive +ĠMur ray +ĠDev il +Ġmemor ial +Ġinstit utions +Ġveh icles +Ġflu id +Ġdivor ce +Ġfasc in +laus ner +Ġacad emic +Ġaccompan ied +ĠColor ado +ĠKermans hah +C ar +O K +S aint +c ow +Ġt act +Ġw ives +Ġp oo +ar med +ic an +Ġh itting +ĠS udden +id odecahedron +ĠW y +ir ation +ĠP un +ĠP oly +ag u +Ġtr ace +iz za +Ġbr ows +ru ption +ĠUn ivers +ĠAl icia +Ġsupp lies +Ġsecond ary +che n +ĠPl us +Ġhope fully +Ġbreak s +Ġcop per +Ġtit led +ĠMed ic +Ġbeha vi +Ġweak ness +Ġreb u +ĠPac quiao +Ġparticip ated +Ġdetect ive +Ġresist ance +ĠAri z +Ġcas ual +Ġboot s +Ġnod ded +ĠWW E +ĠOnt ario +6 4 +k ward +r m +re cted +is ible +an ium +Ġg a +Ġn aval +ac c +ĠM uch +Ġst iff +ĠD omin +ĠF ars +Ġab use +Ġab und +Ġsh o +od ox +ag s +ĠTh om +Ġcl er +ne ver +ĠV as +Ġsc attered +ail ing +Ġhel icop +Ġra w +Ġmin imum +Ġ4 1 +Ġpol ite +Ġacc ord +az a +az on +Ġmeet s +Ġpat ri +Ġhor iz +Ġ195 3 +ĠNe ither +Ġperform ances +uri ous +ĠLa ure +ĠPol a +Ġsurpr ising +Ġcover ing +Ġchair s +ĠOther wise +Ġur ban +Ġcro ps +Ġcro ok +Ġsole mn +Ġdread ful +Ġmilit ia +Ġabst ract +% . +G et +l ah +Ġt an +Ġt ables +Ġw ipe +Ġs its +Ġm ild +Ġl oop +Ġg ig +ĠA x +ĠS i +ĠC zech +ĠN ag +ĠD ream +ĠP ant +ĠJ in +Ġall e +est ine +os aur +ry ing +Ġv ital +Ġv irus +pe cies +ons in +Ġsm oking +ĠAll ison +gg y +Ġ4 4 +Ġind icated +ĠTr ue +Ġ193 6 +Ġattempt s +ĠWel sh +Ġeld est +Ġfra ud +Ġinstit ution +ĠNaz i +Ġquant ity +ĠSel ena +iven ess +Ġverte x +Ġprote in +Ġash ore +ĠNapole on +B r +i op +t ion +w oman +Ġt ide +hat tan +Ġh oy +Ġbe ef +ĠW ake +ĠH orn +ĠC æ +Ġst ern +Ġk lausner +Ġgo in +ĠF le +ell er +Ġr aces +ca re +Ġaf fection +Ġun fortunately +Ġam endment +Ġbr on +Ġch uck +be an +Ġchan ces +Ġtra gedy +Ġrel atives +Ġgl ory +Ġsub sc +Ġdist ur +Ġed ges +Ġ9 9 +Ġref uge +Ġ195 1 +Ġorgan ic +ĠGr ay +ĠMic ro +Ġtest ed +Ġtrad ing +Ġeduc ational +Ġstri p +Ġinn it +Ġinn ov +He re +sha ped +Ġden y +ĠSand y +Ġbutter fly +Ġcitiz en +ĠEs pecially +Ġign or +ĠSqu are +lig a +Ġtun nel +Ġprem ie +ĠRick y +SP EA +Ġproced ure +ĠBha er +ĠDall as +0 7 +A CK +G u +N D +V D +W ill +g ot +m i +o i +w alk +Ġf airies +Ġp anc +ve land +Ġh ousing +ĠA B +ĠS ult +Ġe go +Ġwe igh +ri et +Ġst y +ter m +ĠP in +ĠR idge +ĠYou T +Ġj ur +ers en +Ġyour selves +ud ge +Ġpe ep +Ġwork er +Ġdis order +Ġch op +Ġfound ing +ĠâĻ « +Ġinv ite +Ġinst all +Ġass ess +Ġlight house +Ġadd ressed +Ġimp rison +Ġinter se +Ġbusiness es +Ġcond em +ograph ic +ĠEar l +Ġdeep er +Ġgen etic +isc onsin +Ġmunicip al +ĠBrother s +Ġtransl ation +Ġtransl ated +ĠMod ern +Ġsitu ations +Ġdow ntown +ĠMinnes ota +) ; +5 7 +G od +g ive +Ġw olf +Ġm ast +Ġg le +Ġn avig +ĠS is +ĠS now +ut ter +ĠC ool +ĠN ancy +Ġgo at +ĠF R +ĠF ood +Ġex ternal +ĠU k +fe rences +Ġqu ack +ass ador +Ġgr at +Ġfl ows +Ġres ign +Ġres idents +Ġhel pless +Ġkind ly +ĠBr ussels +ins ula +ĠSh h +Ġstay s +Ġland l +Ġoper ate +AR S +Ġbar n +Ġce ased +Ġappro aching +Ġav o +Ġet han +ĠFrank lin +Ġshar ing +ĠMed ia +ĠMad ame +Ġpark ing +Ġcivil ization +âĢİ , +Ġmid st +Ġcand y +Ġdescrib es +ĠLaw rence +ĠLouis iana +Ġcolour s +Ġimpress ive +Ġguarant ee +Ġfir ms +S m +p at +r ade +Ġ q +Ġa er +on ge +Ġp airs +Ġg orge +ĠS ky +ĠC re +ĠB enn +Ġst ages +ore t +em en +ab oo +ab ilities +ĠNo bel +Ġsp eaks +Ġro lling +Ġun ited +Ġgr im +Ġfl ies +Ġcar avan +up on +ĠDe h +Ġreg iment +Ġsy nd +Ġbelie ves +Ġmon itor +Ġlight ing +Ġdra gged +ĠOr chestra +ĠEr n +Ġreturn s +Ġhur ried +Ġ17 8 +Ġinf inite +Ġleg it +Ġlab our +Ġrepresent ative +ĠCor ps +ĠAg ent +mm et +Ġfac ulty +ĠApp arently +ĠBu ilding +Ġdeli ber +Ġge omet +Ġpig s +Ġmaintain ed +Ġreven ue +Ġliber ty +Ġsubst ance +Ġdiscipl ine +Ġsubsequ ently +Ġalpha bet +Ġcalend ar +A b +M A +M r +b ly +b ie +p ur +Ġc ord +Ġf ires +Ġd ia +ar ians +om ot +ĠM ama +Ġu na +ĠN ash +ĠP ed +ĠP age +ant ine +ĠF ull +Ġj unior +ĠE asy +qu et +-- _ +Ġpre v +Ġfl our +au nd +Ġcons ervative +Ġreal ise +Ġgra in +ĠLook ing +Ġfr act +Ġswe at +ĠHar ris +Ġinform ed +Ġlay ing +Ġappro val +Ġinvol ves +Ġrelig ions +Ġneigh bors +Ġir rit +Ġgro cer +Ġacceler ation +Ġoccas ions +igen ous +ĠFur ther +ĠSarhad i +lah oma +ĠCæ sar +4 6 +A nt +v ate +Ġs ke +it ches +Ġc age +Ġf est +ĠS cient +ĠS ection +ut er +ĠB ox +ke ys +out e +il ation +ĠL im +ĠR ain +un s +ĠJ enn +Ġex hibition +ĠK is +ear l +Ġsp rang +Ġcl ar +Ġad ap +Ġdis gr +Ġrec overy +Ġra ising +Ġcons idering +gr ad +Ġdist urb +Ġinter fe +Ġinter ior +Ġpresent ly +Ġocc urs +AT H +Ġprocess es +Ġmist ress +Ġclos et +oura ble +Ġexec uted +ĠHur ricane +ĠUp on +aret te +Ġcandid ates +ĠDet ective +Ġsched ule +ĠTon ight +3 00 +O r +f are +s ome +Ġt ons +Ġthe ories +Ġb attles +Ġl yrics +as hes +ĠA L +Ġbe ard +ĠW isconsin +ĠC ox +ĠB ert +ĠG i +ĠG ulf +ĠJ ason +Ġcon vent +qu is +Ġv ic +Ġv oy +ĠIn ca +ĠSt ory +Ġdis pl +oc ated +Ġatt orney +ĠDon ald +Ġkill s +Ġdifferent ly +Ġwar ri +Ġcontin ent +Ġsol ar +Ġaw kward +Ġelect ronic +Ġperiod s +Ġenc oun +Äģ n +ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ +Ġopin ions +Ġjump ing +Ġox id +Ġnea rest +ĠDie go +ĠLeon ard +Ġmamm als +ĠAlf red +N E +c ham +Ġ Å +Ġs ung +Ġb ump +Ġc able +Ġd ict +Ġl ux +Ġn asty +ĠT erry +ĠA ra +ac ious +ke e +ab led +ast ian +ĠK ay +ĠV ik +Ġbu g +Ġbu cks +az y +Ġloc ations +Ġart ific +Ġpublic ation +Ġtre mb +fort able +Ġdirect ions +RE AM +ĠAg ency +Ġcirc uit +Ġbur nt +omm od +Ġnovel s +Ġassist ance +ĠPre fecture +Ġrub ber +ĠON E +ĠFore ign +Ġmagn ific +Ġunivers al +Ġanx iety +ĠFrances co +Ġmulti pl +ĠCla ire +ĠAssy rian +Ġdistingu ished +Ġvul ner +ĠYouT ube +! ' +5 5 +f ight +p ower +u ary +z i +er ior +an cing +es c +ĠT un +Ġha y +ĠA BC +Ġre le +ĠM ess +ĠC row +ĠB ou +Ġdo ggie +ur u +ĠL ane +Ġgo lf +ĠJ ose +est ed +Ġout er +Ġwor s +Ġv oc +ind ing +ĠK ang +Ġpe ek +Ġlo aded +Ġgr ows +ĠUn fortunately +Ġsc an +vel t +Ġmother s +ĠCl ause +Ġgener ations +uss y +Ġsent iment +ĠTr uth +OU R +Ġpain ter +Ġpur se +ĠEm my +Ġbear ing +sc ar +Ġfac ility +ĠMal ays +Ġtruck s +Ġreve al +Ġcrowd ed +Ġbless ed +ĠTrans port +orks hire +Ġmeas ured +ĠMi y +Ġblank et +ĠSudden ly +Ġhoy t +L ook +Y our +y ers +he nt +re ls +ha k +Ġb um +Ġf ict +or g +Ġd at +Ġd uke +ĠS ad +Ġe fficiency +ĠM aced +ir s +ĠB UT +ĠN C +ĠN ear +ĠL I +ĠL au +ol in +ĠJ uan +ĠK atherine +Ġtr un +ass es +ĠV ienna +Ġco ins +Ġbu nd +Ġtra pped +ĠDe ad +Ġpres um +ash t +ĠCl ay +Ġdisc har +ĠMan chester +Ġfree ly +Ġfood s +ĠPh ys +Ġdream ing +Ġstat ements +Ġprop osal +room s +Ġdro pping +Ġcomb at +ĠMom my +sp eaking +Ġfat al +Ġfrequ ent +ĠJeff erson +ĠCommun ist +heim er +Ġhyd ro +Ġreject ed +ĠAriz ona +B ill +a us +o en +v ol +Ġw isdom +er ate +ha nt +Ġo ath +Ġb orders +Ġc ure +Ġc ries +Ġf its +Ġp itch +Ġg ear +ot ing +ĠW olf +ac on +ĠM aim +ĠC ow +ad ays +ĠY orkshire +ill ery +ch ild +ol ished +ul ance +ĠE instein +est ly +Ġr ust +Ġr ats +ĠSt adium +Ġle nd +Ġfe ud +ĠWh oo +Ġbu ck +Ġpo ckets +Ġchar ity +Ġchar ming +Ġbre ed +Ġexp ansion +Ġfuck in +Ġtop ic +Ġcut s +ĠMic key +Ġcre ep +ĠQu ite +oose velt +Ġport ra +Ġconsider ation +ĠJes se +ĠOk lahoma +Ġcompan ions +Ġrout ine +Ġemploy ment +Ġpra ised +Ġdisg usting +ĠBrook lyn +Ġtiss ue +Ġbacter ia +Ġtremend ous +A m +X T +e z +n ik +Ġw agon +Ġo l +Ġb ishop +Ġf ert +ing le +Ġto es +Ġg ender +ĠS N +Ġre he +Ġwe ary +ĠH icks +am ents +ir y +ir it +ĠB eng +Ġst ove +ĠN em +ĠO range +il er +ĠL i +ĠR est +ĠR io +ĠF ern +ĠE xt +Ġcon vention +em ploy +ink s +Ġpro spect +Ġdon t +ick en +ĠAl b +Ġatt rib +oot s +Ġround s +Ġsleep y +Ġhuman ity +Ġconcer ning +Ġdest ro +Ġtechn ique +Ġpeace ful +Ġscient ist +Ġdeli very +Ġpred ict +Ġshock ed +Ġpretend ing +ĠSol omon +ĠIslam ic +ĠBelg ium +ĠBow l +Ġben ch +Ġassign ment +Ġauth ors +6 9 +e ges +s ong +t own +v ard +ha i +Ġo ri +Ġc hess +or us +ĠA le +ĠS ound +Ġre ci +ut t +am ar +ĠC hampionships +ra v +Ġli ly +ĠR oosevelt +od ore +Ġcomp ounds +Ġun re +Ġcar ries +ĠSe b +Ġche ek +ĠAf ghan +Ġcent im +Ġsle e +anna h +iter ranean +Ġste aling +ĠAm azon +Ġval id +head ed +ĠCha h +Ġsil k +ĠChe l +ĠHigh ness +Ġself ish +Ġtax i +Ġfund amental +ĠJul iet +Ġbell y +Ch rist +Ġpan ic +ĠRog ers +Ġshout ing +Ġexer c +Ġtrib es +ĠMos cow +Than k +ĠMaim ie +8 00 +D P +F F +a way +k ur +o qu +er g +Ġc ul +Ġd ick +Ġd ated +ar re +Ġn igg +le ton +Ġhe d +ĠB O +ĠB oo +Ġst ake +ĠO t +th odox +ĠK i +Ġ19 19 +Ġcl ients +ang a +Ġres igned +Ġmin es +Ġcons ent +Ġacc ommod +ten ance +Ġ8 3 +ĠAb raham +Ġconf usion +Ġpar am +ĠWar ren +Ġ16 0 +ĠJack ie +ĠPer ry +Ġfre ak +Ġgrand mother +ĠGl ad +Ġ192 8 +Ġenjoy ing +Ġant ib +Ġfund ing +ĠCle veland +Ġcondu ctor +Ġsequ el +aval ry +Ġqual ified +bre ak +tr ack +Ġconsequ ences +Ġancest ors +Ġexha usted +L ING +M e +S e +b one +c os +is a +is ha +Ġm ac +Ġd ared +Ġl oo +as hi +ĠT R +ĠS em +ĠW es +Ġre jo +im ens +ĠH ockey +ĠY a +ĠN HL +ĠD ance +ĠD VD +ĠR O +ĠE li +ĠK irk +ud ible +Ġint r +ĠSt r +Ġsp ray +Ġback s +Ġbr ut +Ġbr ick +gin s +Ġra ge +gr im +ple te +Ġrest ored +ĠPro v +Ġdri ll +Ġrecord er +Ġsn eak +angu age +ĠGr ound +aim a +Ġz oo +Ġmount ed +Ġfill ing +Ġcommand ed +Ġbelong ing +Ġnet works +Ġconcept ion +ĠPope ye +Ġstret ch +Ġpurcha se +ĠMarsha l +Ġpuzz le +Ġsla very +I nd +P l +b ish +c ribed +w ear +w hen +Ġ Ð +Ġb ust +it is +Ġf ib +at he +Ġg ifts +ĠW ag +im ir +ĠC ond +ĠD C +ĠK le +ĠK iss +Ġtw ist +Ġfe ast +Ġun p +iz er +pl ed +Ġch im +rent ly +Ġmon aster +iet h +Ġstr ings +Ġev olved +Ġtrans ition +Ġwalk s +ring ton +Ġann iversary +for mer +ĠMed iterranean +St ar +Ġbur den +Ġhistor ian +gress ive +US IC +Ġarg ued +ĠServ ices +Ġsou ls +Ġgest ure +Ġfranch ise +" ; +S R +U E +Ġt id +Ġc rop +ic ip +ĠS U +Ġbe es +ĠM and +ĠB ed +Ġdo ct +ĠN ixon +ĠD ig +ĠD IC +Ġwh ilst +Ġ( ), +el ing +ĠIn n +ia h +Ġun su +Ġch oices +Ġch oir +ĠMar io +Ġsl ope +Ġacc ent +Ġgl oom +cy cle +ĠRight s +Ġext ract +ane ously +Ġprom otion +Ġsqu ee +ĠCal m +Ġlay er +amb ling +Ġ193 4 +RE E +ĠQue ens +ĠRo om +Ġimm ense +Ġess ay +ĠAtlant a +è re +Ġcontr ary +ĠDet roit +ĠTay eb +Ġnurs ery +Ġsymp athy +rell a +Ġexplos ion +Ġaccur ate +ĠHoll and +ĠDak ota +Ġdia lect +9 8 +D id +E ng +c od +Ġt in +he ld +Ġs ank +ing ham +Ġd ip +Ġy ay +Ġl f +Ġg ap +Ġg rie +ĠT all +ow ered +ĠA RE +ĠS end +ĠS ign +Ġre aches +ĠH ills +ri ly +ĠF all +ĠF ederation +ĠE t +Ġover t +ĠIs a +Ġph ones +ĠLe o +Ġrep ublic +Ġext ension +Ġdeal t +Ġter ribly +AR E +ĠPh ill +ĠMiss iss +Ġsat ell +Ġelect ron +Ġelect rical +Ġformer ly +ĠMo hammad +Ġpack ed +cul es +Ġhun ger +ĠChan g +ĠFred erick +Ġreb ell +Ġclim bed +Ġcabin et +ĠBea utiful +Ġham mer +ĠLuc as +Ġinterpret ation +Ġwra pped +Ġpurs ue +ĠTayeb i +6 00 +C har +c al +Ġb ored +Ġp ressed +Ġn aima +Ġre verse +ĠM ong +ĠC atherine +ro ph +Ġan th +ĠN ation +ĠO p +Ġse ctions +il ight +ĠF ig +th y +ĠJ enny +Ġv amp +ich i +act ory +Ġbl oke +Ġhapp ily +Ġsur f +Ġbus h +Ġca red +Ġcoll aps +ĠCount ry +Ġri g +Ġbra ins +Ġsus pend +ĠRepublic ans +gu ing +ĠFuck ing +Ġlink s +Ġmechan ism +ĠHung arian +ĠConfeder ate +ĠCub a +ĠRab bit +Ġcontem porary +ĠArgent ina +Ġuncom fortable +S y +S ighs +b us +b ound +c ated +h um +p an +s or +Ġw ard +is d +Ġo ven +Ġc hip +Ġf ruits +ve x +ve ll +us alem +Ġre new +ĠH IS +ĠC hes +ĠY outh +ĠN am +ĠP int +ra h +op les +ĠE vent +ist inct +Ġr ating +Ġcon gress +Ġpro cl +ĠK ate +Ġ19 00 +Ġman s +ĠâĢ İ +Ġday light +fore st +aw are +ial s +Ġche aper +ott a +Ġcol ony +Ġtri be +Ġlear nt +Ġdiv isions +Ġeng agement +Ġsuccess ion +ĠAny body +Ġappro ached +Ġ193 2 +Ġdest ination +Ġwall et +Ġpopular ity +Ġsuggest ion +ĠPol it +Ġarm ies +Ġbull shit +ĠDem i +ĠDar win +Ġemploy ees +á n +Ġpray ers +Ġcow ard +Ġcamer as +ĠStud ios +Ġder ived +Ġrank ed +Ġholid ays +Ġconstit u +war f +Ġmeas ures +ĠDen mark +ĠStan ley +ĠBern ard +ĠWalk er +ĠUs ually +Ġconver ted +ĠDenn is +Ġs oph +on ly +er to +Ġd iver +Ġp ier +ĠT el +Ġhe n +ĠA ge +Ġre tain +Ġ1 000 +ĠG ill +ĠG entle +Ġgo ss +ig ration +el f +Ġv ocal +Ġover se +Ġbel oved +Ġdes ired +Ġdes cent +gr at +Ġsw ept +Ġwar ned +ĠInd ust +Ġgener ous +ĠCon nor +ik a +Ġste ep +de f +ĠChar usa +Ġtem por +Ġresult ing +Ġmembers hip +ĠDav y +ĠSw iss +Ġtrad itions +Ġcook ed +ĠSy ria +Ġpen ny +Ġsail ors +Ġrese mb +Ġviol in +Ġpun ished +Ġtur b +Ġvot ing +Ġstran gers +ĠSwed ish +Ġintellig ent +Ġmathemat ics +ĠAff airs +Ġdign ity +ĠLl oyd +ĠBenj amin +6 5 +U L +W H +d is +i ate +j u +m un +Â Ļ +Î ± +ĠI P +ĠI ron +Ġd ot +Ġp ace +Ġh ire +ĠA C +ĠA G +ĠW alt +Ġre un +ac ha +ĠC ensus +ĠB art +ur an +ĠG ir +ĠL ear +ĠF alls +Ġj oking +Ġj ungle +ĠJ ake +Ġup side +Ġv ague +ĠK az +Ġwill iam +Ġcomp re +ĠShe l +irl ines +Ġcons pir +ĠSp rings +ĠPr ice +Ġart istic +Ġcreat es +Ġadv is +Ġdep uty +Ġprotect ing +Ġmis under +af a +ĠMon te +ĠMed ical +Th ou +gu ard +Ġbless ing +ĠMem bers +Ġadvent ures +Ġspin ning +Ġcig arette +Ġembarrass ing +ĠPortug al +Ġcompon ent +Ġwhist le +Ġbutt ons +ĠKr ishna +Ġmart ial +ĠCost a +Ġfoss il +Ġinse cts +ĠPitt s +Ġcomed ian +ĠCE O +Ġchee ks +A d +I X +O f +d ad +f ound +i ary +p se +p arent +ĠI van +Ġy og +as ures +ĠT ogether +Ġhe nce +ĠA ah +ĠW OR +ĠH ERE +ĠN ort +ĠG us +ĠG ab +ĠG OT +ĠL iter +ĠL iver +un ted +Ġde leg +Ġout ta +ap se +ĠTh irty +Ġqu ote +Ġbl own +Ġch lor +ps on +ĠAll ies +vent h +Ġhigh light +Ġ6 7 +Ġdead ly +Ġ9 5 +ĠCon vention +Ġsun shine +Ġsepar ation +Ġvol can +Ġwa ist +AP RI +Ġbeha ve +Ġtour ist +ĠFer rier +Ġamb ulance +Ġencoura ged +Ġchat ter +Ġtroub led +Ġnom ination +Ġsched uled +ĠRon ald +Ġproced ures +0 8 +n ut +p ers +s uch +Ġa u +Ġp ause +Ġg ene +om ous +ĠT reat +ĠT iger +ĠA PP +Ġan ge +Ġdo in +ch uckles +ĠL ower +ant e +ĠR ap +Ġde als +Ġal ike +Ġal ert +Ġall eg +Ġcon sec +Ġv o +Ġno on +Ġar chae +iv ia +Ġtr ash +Ġlo ads +we gian +Ġdis gu +ren cy +Ġind icate +AN S +Ġprom ote +Ġmess enger +ipp i +Ġcatch ing +ĠSure ly +ĠBoy s +Ġsal ary +Ġredu ction +Ġden ied +Ġhyp ot +Ġpurcha sed +Ġvari able +Ġveget ables +Ġprepar ation +ĠSong s +Ġconclud ed +Ġdea f +ĠCertain ly +6 2 +O kay +m aking +Ġo d +Ġb ury +en cer +Ġp ic +Ġp ills +at ar +ĠM am +ri ac +ĠY i +ĠD ug +if ies +Ġse al +ĠR i +ĠF ront +ol ics +Ġsh y +Ġv it +Ġ19 18 +ak o +ca le +iv als +Ġqu id +ire n +ark s +oll a +Ġrec urs +ĠAll ied +é e +olog ies +Ġsmall est +ĠZ one +ene z +Ġhum or +Ġtrans mit +Ġnice ly +ane ous +ĠChrist ine +Ġten nis +Ġstru ct +Ġ193 5 +Ġdro ps +ĠSm all +Ġcover age +ĠMa ur +Ġnin th +ĠAnge l +Ġdemand s +itche ll +ĠJer usalem +hand ed +fortun ate +ker chief +ĠLis bon +Ġadvert ising +ĠHun ter +ĠLib rary +Ġneut ral +Ġalgor ithm +ĠDIC APRI +ĠDICAPRI O +E l +b ird +d ig +h im +m ers +n ames +s pe +Ġa lex +Ġf et +Ġf iring +Ġd ough +an as +ĠW ick +ĠB orough +ĠD ue +ĠP C +ĠP ier +ĠE at +ie val +Ġcon grat +os idodecahedron +Ġout put +Ġtw e +Ġsc en +Ġhand ling +ĠAl t +Ġcr iter +Ġown s +Ġrel ie +Ġ4 2 +Ġhar sh +Ġfin ance +Ġmus cle +Ġass ure +ĠSp ace +Ġcol um +Ġcur ve +Ġprov ision +Ġ17 7 +Ġbusiness man +AT ION +Ġran ks +ĠGr ammy +ĠTHE Y +Ġmur m +Ġtreat y +Ġdi ag +Ġincre ases +Ġmist aken +Ġrecogn ised +Ġstri king +ĠCour se +Ġident ical +Ġrev ol +Ġobs ervation +OT H +Ġsens ation +Ġflight s +Ġfrequ ency +Ġcritic ized +ĠMel bourne +Ġsuspect ed +Ġpra ise +ĠGra ham +ĠHu gh +ĠTechn ology +ĠAdminist ration +Ġunex pected +Ġnaught y +? ! +P ER +b ac +c hard +g al +w yn +z ard +ed ge +Ġp ile +ar ation +Ġl y +Ġh ut +Ġre ception +ĠM ans +ĠM ade +ĠM erry +ri k +ĠB ass +ĠB und +ĠF ruit +un es +Ġso b +Ġsh one +ort ion +Ġcl ick +Ġbet ray +Ġmake up +av ia +Ġtra gic +ĠSe y +Ġbelie ving +ĠNew ton +Ġpoint ing +Ġdist inction +Ġprodu ces +Ġinc om +Ġread er +Ġexper iments +Ġcommun icate +Ġve ter +amb a +Ġdest iny +Ġabs urd +ĠQu iet +ograph ical +Ġprop ag +ĠChe ers +Ġ192 9 +Ġcand le +Ġmum my +Ġcontrib ution +ĠCat al +Ġdiam eter +ĠMem orial +ĠRel ax +Ġpill ow +Ġmyster ies +ĠGil bert +ĠFa ith +Ġing red +ĠArmen ian +Ġpros per +Ġbehavi our +. - +8 5 +e or +m aker +w ord +w orld +Ġt ales +ou ver +Ġs outheast +Ġo ops +Ġm ales +Ġf erry +Ġp orn +Ġp atch +Ġp unk +Ġl os +le ment +ĠS all +Ġbe gg +ĠH at +ĠC ors +Ġst ared +Ġdo ck +ĠO UT +ĠG on +ĠL ang +ĠL enn +op ed +ĠF inal +ĠF itz +Ġj im +ĠJ as +ĠK l +Ġ19 14 +ĠU pper +Ġle ctures +ne e +Ġcont empt +Ġch in +Ġpres erved +ale h +Ġins piration +Ġmain tenance +Ġfight s +Ġfuck ed +OU T +Ġdef ine +Ġdef ensive +ĠGe off +Ġhat h +ĠAust in +OR E +Ġce iling +Ġpract ices +Ġclean ed +bor ough +Ġfem ales +Ġtravel ing +ĠReg ional +Ġthreat ening +Ġpercent age +Ġarg uments +ĠDemocr ats +Ġign ore +bel ie +Ġpoly hedron +Ġ{ \ +Ġsoci et +ĠViv ie +Ġphen omen +C om +E very +P er +T ake +f irst +j in +m are +v als +Ä į +Ġt ent +Ġt ension +Ġw ag +Ġs ab +Ġc am +Ġc ater +ĠT ob +ĠT rent +ĠA in +ĠS W +Ġth umb +Ġwe ld +ĠM itchell +ĠC ou +ĠC and +ĠC hampion +ĠP ir +Ġnot ion +ĠR OB +Ġj erk +and o +os hi +ĠK w +ĠK ra +Ġ19 17 +Ġback pack +Ġun employ +Ġim per +Ġsc ores +Ġcar pet +Ġdif f +Ġass ets +Ġsign als +ĠCar ib +Ġeat s +Ġexpl o +Ġ17 5 +Ġpain ful +ĠMan hattan +ĠHar vey +Ġdesign er +Ġrepresent ation +ĠJul ia +EA D +Ġregular ly +Ġbell s +Ġconv icted +Ġliber al +Ġchemical s +Ġsuspic ious +Ġagric ulture +Ġsubst ant +Ġelev ator +bec ca +ĠJoy ce +Ġfab ric +Ġvacc ine +ĠAnton io +ĠEth iop +ĠAth let +Ġcolum ns +9 4 +A F +G UN +L SB +k ar +l ines +l NG +r ac +s ix +Ġt u +er ies +ar on +Ġl od +us ions +ĠM ight +st eps +ĠB ast +ĠB rig +ĠN ad +ĠD ark +ĠD iam +ĠP ull +Ġli ver +ĠR aven +ĠR oute +ist a +Ġr ates +ĠK am +Ġsp an +Ġad am +cl osed +Ġthr ust +Ġlea p +ĠAr ound +Ġcons ol +Ġreal ised +row s +Ġmus h +Ġev ac +ĠEx am +Ġclass ified +Ġcor on +ĠX V +Ġadm ire +Ġlocal ities +Ġcirc us +Ġbull ets +ĠHel en +ĠAnt ar +Ġchallen ged +Ġreact ions +ĠBrad ford +Ġconcent ration +ĠHard y +ĠPers ian +ĠBarb ara +Ġstrateg ic +Ġthorough ly +Ġconven ient +ĠStew art +ĠMississ ippi +P ro +R SB +T e +h ol +h our +l ings +à ª +Ġw ages +Ġm ol +en z +at oes +ĠT ro +im ony +ĠN ame +ĠN ature +if ully +ĠL am +ol ia +ĠJ ama +Ġ19 13 +ag ine +Ġsp ots +act ive +pt ic +Ġcomp are +ub s +ru cture +Ġcont ents +Ġper pet +Ġmust n +ĠBe y +Ġhome work +less ness +ĠCl ose +Ġsk ull +ĠAb orig +ee z +ĠĠĠĠĠĠĠĠ ĠĠĠ +Ġexpl ains +Ġbas ement +Ġpolit icians +AT TER +Ġbar rel +Ġbar gain +Ġlay out +hamp agne +ĠCha se +Ġ193 3 +Ġpost ed +ĠGl en +ĠMor ris +Ġrob ot +ü r +Ġpsych iat +ĠCarol ine +Ġmir acle +ö n +Ġlog ic +ĠTed dy +Ġpure ly +Ġpa used +Ġtrail er +Ġrit ual +ĠMalays ia +ĠLiver pool +C o +f ree +r ating +s ay +v ia +z heimer +Ï Ħ +Ġ ο +Ġt enth +Ġb er +Ġb icy +Ġn an +Ġn erve +ow ell +ĠS oph +ĠM umb +ĠC emetery +st a +ĠB R +ĠP ole +ĠG E +ĠJ osh +Ġr h +ig ma +Ġv irgin +Ġtw isted +Ġlo b +ĠV enez +Ġun fortunate +ĠShe riff +Ġam ateur +Ġpre c +Ġser ial +Ġhand kerchief +ĠAl ber +ĠMar cus +ĠBr on +Ġ4 3 +Ġreg ards +Ġ5 7 +Ġdr own +Ġsw itched +Ġloc omot +Ġ8 5 +Ġcontin uous +Ġsol ic +Ġvis its +ĠHar vard +Ġter rified +Ġball oon +Ġorgan isation +ming ham +ĠJo an +Ġappro ve +unt ary +Ġdep ressed +Ġinvol ving +ĠMc K +Ġrespect ively +ĠColl ins +reg on +Ġ192 4 +Ġstick s +ĠMed al +ĠMad rid +ĠNor wegian +Ġcelebr ation +Ġdan ced +ĠMil ton +Ġut il +Ġremark ed +Ġoccup ation +ĠShar on +ĠDou g +col m +Ġwid ow +ĠHand s +Ġcert ific +Ġmargin al +nat ural +inem a +Ġbot hered +Ġgorge ous +ĠKle in +0 5 +A f +B E +B rit +a hedron +n al +p rodu +s ky +x ide +Ġt um +Ġw are +Ġs ins +Ġb ob +Ġb onds +Ġc ents +or o +or ph +Ġg um +Ġh osp +im m +ac re +ĠC ase +ĠC rit +ĠC BS +ĠL ily +ĠF uk +th rough +Ġso cks +han a +ort ing +Ġno bles +ĠNo ah +ĠSt ock +Ġpe oples +ose xual +ne um +Ġcomp rom +ire ct +ru p +Ġgu id +Ġres olution +Ġres erve +old s +Ġmin i +Ġel abor +Ġins isted +Ġdec ides +Ġwar ming +Ġbus es +Ġcol onel +Ġbab e +OU GH +Ġvis iting +ĠGu ess +cha ir +Ġbott les +Ġhang ed +Ġactiv ist +OW N +Ġ189 0 +Ġvan ished +ĠDev on +ĠArab ia +Ġrequire ments +Ġax is +Ġlegisl ation +ĠCro ce +Ġtort ure +Ġcontrovers y +ĠCroat ian +Ġdisag re +Ġproport ion +ĠDyn asty +Ġfict ional +ĠCarib bean +C he +S A +c at +h ouses +q i +r ams +w hel +à º +Ġw olves +re h +Ġin ev +ar at +as er +ĠT ru +Ġh ilda +et a +ĠM es +ĠC hat +ĠC raw +st all +ĠD ob +ĠD rop +ĠP sych +and in +ĠE M +ell i +el ic +ab a +Ġag encies +ace y +Ġcl ay +ĠV ic +Ġcar go +ĠAn s +ĠIs abel +Ġcount ed +Ġkind ness +Ġsl ap +Ġinv isible +Ġmus cles +Ġass ured +ĠSp irit +ĠCl inton +Ġfew er +Ġcoll ar +Ġart illery +Ġfil med +Ġ9 8 +Ġri fle +ĠFl owers +ĠAd v +pr ing +ĠLord s +Ġpen et +Ġ192 7 +Ġkiss ing +Ġobs erv +ĠBoy d +Ġsurv iv +rel ated +anc ouver +ĠCath olics +ĠDel aware +Ġphilos oph +Ġacqu aint +Ġcustom er +Ġclim bing +IGH S +Ġwrit ings +Ġcorpor ate +ĠCra ig +Ġaccompl ished +Ġlung s +ĠAfghan istan +Ġgoss ip +9 2 +O G +P H +á » +Ġt ο +Ġo ct +it ness +Ġc ups +Ġf lex +Ġp i +ar ms +Ġh int +Ġh ip +us k +ĠA ges +Ġe cho +ĠH ud +ĠB our +ĠN BA +ĠG ang +ĠL t +ĠF ro +ĠF und +Ġj er +ie ge +ess a +Ġex it +Ġman kind +Ġco in +Ġneed le +Ġra bb +ĠRe ed +Ġsy mmet +Ġcha sing +Ġkid ney +ĠBl ake +Ġtri umph +Ġmark ets +Ġaw ait +Ġtre nd +Ġlow est +bo at +yr am +OM AN +ĠAnge la +ĠDes ign +Ġdisp ute +Ġsmell s +Ġpsych o +Ġsatisf action +ĠOb viously +Ġcateg ories +Ġpartners hip +Ġestablish ment +Ġinterrupt ed +ĠOri ental +Ġnit rogen +ĠWrest ling +ĠMicro soft +Ġartific ial +Ġmagnific ent +. ; +B y +S ee +r ound +w he +à ¥ +is ure +Ġb ree +it udes +Ġd ried +Ġp iss +Ġl ou +Ġh ug +ion e +Ġre ct +ri el +ri be +ĠB asket +ĠP am +ĠL abor +ant a +ĠF al +ĠE nt +ĠE qu +ĠE mb +ĠJ un +ĠJ ournal +Ġcan n +est on +Ġsh orter +Ġcon vert +ĠK ha +ĠSt orm +Ġbl ows +pl ing +Ġpre y +ĠAl aska +ĠMar illa +Ġ5 2 +Ġdec ade +Ġinv aded +Ġ6 00 +Ġimp at +Ġrep air +Ġmain land +Ġprom ises +Ġtri ple +ik es +Ġpat hetic +Ġsn akes +ĠPet ers +ĠEd ith +ĠEn v +ĠEn joy +Ġ192 1 +Ġperm it +Ġban ned +ĠGrand pa +Ġdelic ate +Ġprior ity +Ġmyth ology +Ġtow el +Ġswall ow +Ġpubl isher +ĠPLA Y +Ġadap ted +Ġvulner able +Ġpeek aboo +ĠSeb astian +ĠPitts burgh +4 00 +6 6 +c ad +i ens +t op +v onne +at ivity +as m +Ġg au +ĠS ax +Ġbe e +am ous +ĠM R +ill o +ĠO regon +Ġse w +ĠL an +op er +ĠR and +ĠHe b +ĠHe art +ĠIt anium +Ġj okes +ĠJ i +Ġal ter +ist ical +em ed +ĠAnd re +ĠK ey +Ġle ather +Ġcomp ound +ĠAl zheimer +Ġcount ies +ins ky +Ġgl oves +Ġsub ur +uff s +Ġrest ing +Ġorder ing +ov ak +Ġrock et +Ġappear ing +Ġsend s +Ġcre pt +Ġprop ose +Ġ25 0 +Ġ192 6 +ĠSam uel +Ġfle e +Ġrefer ring +US E +ĠMat cham +ĠDel ta +ĠNat han +Ġsurr ound +agon al +Ġprefer red +ĠNaz is +Ġansw ering +Ġsuspic ion +ĠRom ans +ĠNE W +ĠBelg ian +Ġdemocr acy +ĠPict ures +ĠExec utive +Ġrehe ars +M L +P A +] , +f r +f u +z an +in th +Ġw ret +Ġc m +Ġp izza +Ġl s +Ġre levant +ri z +Ġu mb +Ġli p +Ġj unk +ĠE ither +um i +est yle +Ġex hib +od s +Ġman ip +Ġlo vers +ish ment +Ġoff ensive +au x +oll ey +Ġmar ching +Ġ5 4 +Ġdr ummer +Ġob sc +Ġem p +ĠCl ara +Ġfil ming +ĠTr ade +Ġcontro lling +Ġage nda +co ver +ster dam +Ġorgan ised +ĠAny one +ĠCol on +Ġdi ary +Ġcharacter istics +omin ations +Ġphys ically +ĠSim ilar +ĠPri or +ĠOly a +ĠSa udi +Ġrub bish +Ġmechan ical +Ġconsum ption +Ġrequest ed +ĠJeff rey +Ġaccomp any +........ ........ +Ġstim ul +Ġsustain able +Ġnickn ame +Ġgal ax +Ġregist ered +ĠSof la +Ġcurtain s +names e +G reat +M us +P C +S pecies +g ans +r ations +u ji +ha us +Ġc emetery +Ġd warf +Ġp neum +Ġl emon +ĠS op +ĠW oo +Ġre cept +ĠC ry +ĠB ranch +all e +ĠN on +ĠO cc +ĠL E +ra ined +ĠR iley +ĠF rem +Ġde fect +Ġcan cel +od ia +ven ge +ĠTh or +Ġtw ent +Ġtr ous +Ġtr icks +orm al +ĠBr id +ĠDe ep +Ġind igenous +ib al +Ġsw orn +br aska +Ġterm inal +ĠPh oen +Ġdesign ated +Ġ193 1 +Ġcry stal +Ġforget ting +Ġcollect ing +ĠHigh land +Ġ192 5 +Ġsail or +Ġstick y +ĠOther s +ĠWould n +Ġmix ture +Ġsand wich +iot ics +Ġloud ly +Ġstrugg ling +Ġrestaur ants +intend ent +ĠBrand on +Ġrespond ed +ĠAdmiral ty +Ġsubs id +Ġvert ices +mph ony +Ġbom bs +Ġbrid ges +ĠLion el +ĠUt ah +Ġalle ged +Ġbund le +D in +L ist +c ott +d r +d ia +h r +n un +Ġt ies +Ġt ang +in ea +re nd +Ġc ust +Ġm ice +Ġm aps +ĠI F +or able +Ġl azy +as ks +ĠT al +ent on +ĠC it +ĠB uff +Ġas pir +ĠD E +ĠD ifferent +her s +ĠP A +ĠR IGHT +Ġde er +ĠJ unior +Ġso vere +ell ig +ess ions +ĠK id +ĠU R +Ġman ners +Ġman aging +hi gh +ĠV ideo +ĠV ancouver +Ġfl ame +Ġhand led +Ġrec ru +ĠAll an +ont in +Ġpol ar +Ġcap s +Ġprodu cers +Ġcoll eges +ĠAb by +Ġclass room +Ġpat ience +ĠMan agement +Ġoper ates +ĠAm sterdam +Ġattack ing +Ġsum mon +ĠPer fect +ĠCol in +Ġworry ing +Ġsex y +Ġpen alty +Ġrain bow +Ġfem in +Ġsurv ival +amm ar +ĠMag azine +ĠKar l +ĠMur phy +Ġconsum er +Ġdelight ful +Ġcontrovers ial +Ġdiagn osed +Ġrecy cling +N O +O H +W est +b at +c s +l ace +x y +in ch +Ġd ining +Ġp issed +Ġin put +le vel +Ġh ipp +ot on +Ġhe ap +al ysis +ĠS out +ĠS ham +ĠW ard +ĠW ald +ĠH amps +ĠM ember +st ick +ir able +ir rel +ĠN iger +ĠP il +Ġse aled +ĠL ud +ĠF an +ĠHe ar +th ou +art e +od ed +so ever +Ġcl ip +Ġover whel +ount ain +Ġco ff +Ġbet rayed +Ġsc andal +ĠMar ion +Ġsur geon +Ġmon ument +ative ly +ĠTH ERE +Ġext inct +Ġfight er +Ġdream ed +Ġsouth west +ĠItal ians +Ġprop os +ĠChe m +Ġphot ographer +Ġsecret ly +Ġengine ers +Ġpot ato +Ġinflu ential +Ġdiscuss ing +Ġplant ed +ĠBra hm +Ġtend ency +Ġir re +Ġloss es +Ch uckles +Ġpu ppy +Ġrecomm ended +ĠCam bridge +Ġgather ing +Ġinfl ation +ĠPu erto +Ġrug by +Ġfrank ly +ĠBase ball +Ġpeas ants +Ġvoy age +ĠEvent ually +ĠMumb ai +ĠHamps hire +D r +D own +S ON +d ri +k ers +t ic +à ł +Ī Ĵ +Ġw rap +re pre +Ġs igh +on ing +Ġg ardens +om i +et on +et tle +Ġbe gging +ĠW als +Ġre vers +ĠM ult +ĠC ause +st orm +ĠB ald +ĠN ah +ĠO scar +ĠP as +ĠG ener +ĠR at +ĠF un +ul u +ab ama +ĠK ind +ag en +ag raph +hi ka +Ġcl o +Ġcl ue +Ġcl ause +Ġgr asp +pl us +ru g +Ġpo le +ĠCh un +ĠAl ong +Ġcons isted +Ġlight er +Ġlight ning +Ġdra wer +Ġ7 7 +Ġcou ch +ĠHar old +Ġter rific +Ġeng age +Ġru ins +Ġexcept ions +Ġ192 3 +Ġfeat uring +St ation +Ġdress es +ĠBel ieve +Ġsurv iving +ĠMal colm +Ġdig ging +ĠRail road +è s +Ġautom atically +Ġmurd ers +ĠHung ary +Ġbatter ies +Ġmole cules +Ġloyal ty +ĠBir mingham +Ġevident ly +Ġsear ched +ĠGentle men +Ġoverse as +Ġguid ance +repre ne +: " +C A +C ha +F ran +Q ue +h ou +l on +m aid +u ously +Ġ ze +is ons +Ġb isc +Ġf oul +Ġl es +Ġl ane +Ġn ail +Ġhe els +ĠS aw +Ġbe w +ĠW right +ĠH ose +ĠH aj +ĠM aid +ĠB ureau +ĠY ang +Ġas semb +ĠP ly +ra ine +ĠE va +pp en +pp le +ĠK ids +Ġqu eer +Ġbr ass +iss ance +Ġpre jud +Ġfl ung +Ġsec ured +Ġsl ipp +ĠDe al +Ġche ating +Ġhar bour +Ġele g +Ġent ers +Ġ6 6 +ĠSp art +Ġgra ves +Ġplan es +Ġmed ieval +Ġwin ners +ov iÄĩ +Ġpat ron +ĠHar per +Ġest imate +Ġdev oted +Ġrul ing +Ġrecogn ise +Ġver se +Ġphys ic +Ġcool ing +off s +Ġdress ing +ĠFin land +ĠWH O +Ġsymb ols +ÃŃ a +Ġcompos ers +Ġbound aries +Ġchap el +Ġdiam onds +Ġlabor atory +Ġvirt ue +Ġprepar ing +Ġborrow ed +Ġjew el +ĠBlood y +LAUGH S +ĠFel ix +ĠAuthor ity +Ġhelicop ter +ĠErn est +ĠMaced onia +Ġhed ge +ĠIsa ac +5 8 +H ave +b in +b ul +e re +l ast +v ar +Ġt el +Ġs unk +er als +Ġb ats +Ġm and +Ġf ist +Ġf ran +an im +Ġp ian +Ġp add +Ġof the +ar ter +Ġl n +al and +ĠA way +ĠS af +ĠS ciences +Ġth omas +Ġwas ting +ĠH um +ĠM is +ĠB right +ĠN arr +ĠD ow +ĠD raft +ter ior +ĠL ag +ĠJ ai +ight s +so le +Ġover come +Ġbl ade +we alth +Ġpre cip +ons on +ors hip +Ġsha lt +ph ones +Ġhar vest +Ġfin est +Ġ5 1 +ib a +gr ade +é s +ott on +Ġinv itation +Ġdist ress +ĠJust in +Ġpop ulations +ream ing +Ġimp ulse +Ġfore head +Ġri p +Ġprof ound +Ġpast e +Ġelect rons +Ġdepart ure +Ġcharacter istic +Ġpriv acy +ĠCo ach +Ġobject ive +ĠMad ison +Ġdepend ent +ĠPri vate +Ġ190 4 +Ġsens es +Ġbow ed +ĠMark et +ĠÃ Ĺ +Ġble nd +Ġspread ing +Ġremind s +ĠSqu ad +ĠCons ervative +Ġqual ities +Ġghost s +Ġshad ows +Ġconsist ent +Ġconstru ct +Ph one +ĠJess ica +Ġanch or +ĠLAUGH TER +ĠNich olas +Su per +ĠFrem antle +9 1 +P a +R ober +a is +e ed +e ight +o j +p ot +p ol +r ast +y ed +Î ½ +Ġb ol +Ġb ail +Ġf og +or ic +Ġp ul +Ġh ood +ĠA ction +Ġbe am +ĠM all +ĠM anu +Ġwh ip +ĠP E +ĠP le +ĠL inda +un ci +Ġr ud +os y +ab et +Ġpl un +Ġshe ets +ĠIn side +Ġam id +og en +Ġbu rial +ens ed +Ġapp et +ition ally +Ġmar ched +Ġche w +Ġreg ulations +Ġpres erve +Ġbo ast +Ġdr ums +Ġchar m +Ġsim ult +Ġsit com +ĠOr d +Ġ8 1 +Ġ7 1 +Ġpar agraph +ov an +ĠTr ump +Ġsqu ire +ĠHer o +ĠSha w +Ġpublic ly +ĠCap ital +Ġcir cles +EN D +Ġtest imony +Ġimag ined +Ġant icip +Ġcorn ers +Ġmarket ing +Ġobs erve +ĠGree ks +Ġperm itted +Ġpers ist +Ġtour ists +Ġrob bery +ĠMet ropolitan +Ġdan cer +ĠRad ha +wh ite +Ġcommer ce +Ġcontrib utions +mark et +Ġalt ar +Ġlic ence +Ġmotor cycle +Ġminor ity +EE P +Ġtradition ally +heart ed +ĠVen ice +Ġwealth y +Ġembarrass ed +ĠBul gar +ĠMiche lle +ĠFriend s +Ġetern al +Ġbron ze +Ġrelie ved +ĠBund es +ĠPly mouth +9 6 += = +B ob +a ver +m ay +r ics +s al +w ant +z o +Ġt ire +Ġt att +Ġm aj +Ġd ent +Ġd ensity +en cing +Ġto re +Ġto bac +ĠT W +ĠT amp +Ġhe ir +ĠW P +ĠW ANT +Ġre ef +ĠM AR +ĠB L +ĠB ret +ĠD iana +ĠO R +ĠP y +ĠP it +ĠK ir +ĠSt aff +Ġpe an +ĠOh h +Ġcomp ens +Ġsc oring +gin a +ĠBe h +ĠRe becca +é t +Ġele ctor +IN K +Ġdr owned +Ġgl anced +Ġsw ore +Ġcha ins +Ġcha sed +ĠLe ban +me al +Ġcoll apse +Ġdra in +Ġhum ili +Ġexp ense +Ġlaw yers +erv oir +Ġswe ep +co very +Ġprocess ing +ĠGreat er +Ġbi ological +Ġkick ing +Ġcompl aint +OS E +Ġscr ub +ĠPlay Station +Ġmanufact uring +ĠBre ak +ĠSH E +Ġcalcul ated +Ġult imate +ĠBrazil ian +Bl ack +Ġsymp at +Ġmos que +ĠChand ler +Ġgeomet ry +Ġdisgr ace +isd iction +ĠBasket ball +ĠEnv ironment +7 7 +M on +S I +g ood +m ind +t les +Ġs ighed +at ics +ĠT roll +Ġh ind +Ġha bits +ĠS E +ĠS ac +ĠS leep +ver ted +ad ers +Ġas cend +ĠG ate +ĠR aw +ĠR ena +un o +un ty +Ġsu its +Ġex hibit +Ġ19 15 +Ġbl ond +ru ct +Ġfl ip +Ġres idence +Ġsha pes +ĠAl abama +ces e +Ġname ly +Ġform ing +az ines +Ġlist s +Ġgra pes +Ġexp osure +Ġcontin uing +Ġhat es +Ġdeal er +ĠWor ks +umb o +ĠComm unic +Ġcamp s +Ġtreat ing +Ġrad ical +Ġcollect ions +ĠSm art +ĠJe re +reg ular +Ġ192 2 +Ġtravel ed +Ġmedic ation +Ġexam ined +Ġaccess ible +ID E +Ġtext s +Ġfro st +Ġcy cl +Ġimprove ment +Ġarrange ments +ĠHor se +Ġsevere ly +ĠBroad cast +ĠCommission er +Ġconsequ ence +Ġoccas ional +ĠGib bs +Ġpron ounced +Ġadj acent +Ġnarr ative +Ġfascin ating +Ġinterfe re +Ġdat ab +Ġsatell ite +Ġcriter ia +9 3 +H ello +_ _ +c ard +i per +i ji +k har +m ie +p erson +r ice +ã ģ +Ġo at +Ġf u +ll a +Ġp oured +Ġy ummy +Ġin aug +ic ular +Ġh ither +ot he +ĠS eth +ĠS lo +ĠH annah +am o +am oto +ĠM eth +st op +Ġme als +ĠD ol +Ġwh ore +ĠO m +ĠP ick +ĠL ocal +op hy +ĠF ried +Ġso ccer +Ġwor ries +Ġv est +Ġ19 12 +Ġthem es +Ġar guing +Ġcl an +act s +Ġqu ad +ond a +ĠV ance +orn s +ade h +Ġmo ist +Ġapp rent +Ġsc ales +oc ity +Ġcr ashed +ĠFor give +Ġsub div +Ġinst ruction +Ġ8 8 +Ġdef inite +Ġhon ourable +ĠSee ing +uk a +Ġ190 9 +ĠRes erve +Ġhero es +Ġmultip ly +Ġdefend ed +Ġdefend ant +ĠEll is +ĠGO OD +Ġglob e +Ġresc ued +Ġneighbour hood +Ġdism issed +Ġincreasing ly +Ġinstrument al +Ġdelay ed +ĠSupp ose +Ġcollea gue +Ġsyn c +Ġoblig ed +ĠDri ve +Ġprivile ge +Bill board +ĠGir alda +Ġtobac co +ĠJere my +, . +0 4 +D O +S N +T ell +re p +er os +ĠI ke +ing e +Ġd ual +Ġp ulse +Ġp yram +Ġl un +Ġha w +ĠS ri +Ġwas ted +ac o +ĠH m +ĠM ull +ĠM ason +ĠM ister +ĠC atch +ĠB uc +Ġst alk +ĠN y +ĠD ong +ra wn +ĠJ UST +Ġor n +Ġr ational +Ġcon greg +Ġout fit +Ġex port +Ġv om +Ġoff ence +ne g +Ġam end +Ġbr u +Ġfl ames +Ġser ver +Ġchan nels +ĠRe view +ĠDe rek +Ġ5 8 +ĠâĻ ¬ +Ġsub way +ĠWho ever +ĠCom mer +Ġrest ore +Ġread ers +Ġsign ing +ina udible +att i +Ġcol ored +Ġref lected +Ġcur rency +ON G +Ġguess ed +ĠNe ed +ĠJo ey +ĠRoman ian +Ġarri ves +Ġener g +Ġclos es +Ġaud io +Ġtemper atures +Ġur gent +Ġsignific ance +Ġfirm ly +Ġcompos ition +Ġconv iction +Ġfold ed +ĠHea vy +Ġguitar ist +ĠRaj a +Ġadvert is +ĠTha iland +ĠGlob al +Ġpursu it +cour se +Ġcray ons +Ġoppon ent +ĠExam ples +ĠSoph ie +ĠHud son +Que en +B ar +K ing +L aughs +c ap +f ucker +g iving +h og +s omet +s hire +Ġw ilt +Ġc odes +Ġm u +Ġto xic +Ġn ails +et ta +Ġha re +Ġha ck +Ġha ste +us ively +Ġre vel +ĠH ob +ĠM ik +ri ger +ro d +Ġst out +Ġas sembly +ĠN ope +ĠD iet +ĠO v +Ġ" ' +ĠG as +ĠL ot +ĠR is +ĠR angers +ĠF M +pp ers +Ġall iance +Ġr ack +Ġtw ins +Ġle an +ne cess +iz zy +." --_ +Ġapp arent +xt on +Ġmin isters +Ġmar ine +Ġchar ts +ĠSp ani +ier ra +Ġopen ly +Ġsign ature +Ġpret t +Ġpay s +20 13 +sh op +Ġtop ics +Ġprot ocol +Ġcor rupt +ĠEm il +Ġball et +Ġreport ing +Ġsupport s +Ġz inc +ĠPer kins +Ġla wn +Ġmis ery +Ġstick ing +ĠSte el +Ġshar ply +ĠHel ena +Ġsad dle +Ġexplain ing +ĠSal z +min ar +ĠFe el +Ġwitness es +Ġexcl usive +Ġscrew ed +Ġmagn etic +Ġbac on +Ġfant asy +Ġtransform ation +ĠGall ery +Ġhorn s +Ġwand ering +Ġstab bed +ĠPen insula +ĠAbd ul +Ġchrist mas +Ġannounce ment +Ġmanif est +Ġabund ant +Ġtrous ers +0 2 +B LE +C ol +E m +G ive +I O +a pped +c H +c ca +e ches +h ill +i pt +j am +r ise +u um +u ity +Ġb io +Ġb orough +Ġc akes +Ġc hampions +an che +ll ey +Ġp p +Ġp ad +Ġl est +as i +ĠT it +ĠT ak +Ġth ither +Ġon wards +ĠM ater +ĠC ary +ĠB erm +Ġk it +Ġas hes +ĠN ina +ĠG arden +ul um +Ġj et +ĠE P +ĠE VER +est one +Ġ19 10 +ĠIn it +ĠWe ek +are r +ĠV lad +ĠWh ose +Ġres olved +Ġrem ov +âĢĿ . +Ġra pe +Ġend ea +ĠBr istol +ĠSh in +Ġpret ended +ĠOr thodox +Ġ7 8 +Ġsent enced +Ġshort est +ON D +Ġbar rier +Ġstar ving +Ġmag azines +Ġdi aper +atter ing +iment ary +Ġgrad uation +ĠMart ha +Ġblock ed +ĠBur ke +CH UCK +ĠBu zz +Ġcontract s +ĠCould n +Ġimm ort +ĠMag gie +tt es +min ster +Ġdefend ing +wr iting +Ġpu ppet +Ġplain ly +Ġconsist ing +ĠGer ald +Ġvent ure +Ġsubsequ ent +ĠOtt oman +Ġatom ic +opp y +ĠArn old +Ġacknow led +App lause +Ġencoun ter +ĠChel sea +Ġunsu ccess +Ġvamp ire +Ġcompre hens +Ġsociet ies +ĠAborig inal +ĠCraw ford +ĠHeb rew +7 8 +H ar +W ait +c ons +n ell +o ks +r ater +Ġthe rm +Ġw ides +Ġb a +Ġb rew +Ġf urious +Ġd um +ed a +ed om +Ġl ime +ĠA ub +ĠS port +ay ed +ĠH OW +ĠB rew +ĠY vonne +out ing +Ġme lt +ĠD ur +ĠD est +ĠP earl +ĠE X +ĠE ug +ĠK el +ĠK ab +Ġ19 16 +Ġag gressive +Ġtr ump +Ġle o +Ġro ast +Ġbu cket +ĠAl ger +Ġcount s +Ġcr ushed +Ġatt ach +rest rial +ĠSe an +Ġgl orious +ĠSp encer +ĠAb bey +Ġconf ession +ov ich +arch y +Ġsol ved +Ġorgan isms +Ġdam ned +ien ces +ĠMc M +Ġfootball er +Ġcat hedral +ĠHigh way +Ġrespons ibilities +Ġtravel s +Ġemploy ee +ĠCr icket +Ġpet rol +Ġattract ion +ĠIm agine +itar ian +Ġcopy right +ĠOb ama +ĠSom ers +Ġdemocr atic +Ġgri p +ĠLes lie +Ġforb idden +Ġcompar ison +Ġcraw l +Ġprecise ly +ĠRoc he +Ġsty les +Ġportra it +belie vable +A p +B M +D ear +I RE +L O +P ar +P lease +h on +p owder +à ¸ +Ġt ab +Ġw aking +Ġs or +Ġo ak +Ġc atherine +Ġd ing +Ġd ub +et us +us cript +Ġbe an +ĠW iz +am ation +ĠM ing +ĠC ode +ri ages +ad t +ĠB ach +Ġan k +ĠN ong +ĠD OWN +Ġwhat soever +ĠE c +ĠE mer +Ġor che +Ġor gans +Ġdon key +ĠK ham +ĠIn formation +ment ed +Ġle aning +Ġover night +Ġim perial +Ġad equ +cc ane +ob e +ham es +ple x +Ġgl ow +Ġ6 8 +Ġinter ference +Ġfil ed +Ġ9 1 +ĠGet ting +br id +Ġexper ts +ĠFl ore +Ġprof ile +ĠNe braska +ĠDan ish +amb oo +Ġview ers +Ġdefe ating +ĠGl ass +Ġcivil ian +Ġredu cing +Ġemer ged +Ġassoci ate +Ġremark s +Ġmeas uring +Ġmanufact ured +Ġconcent rate +ĠMir anda +Ġphotograph s +Ġbul k +ĠOper ation +ĠMot or +Ġassass in +Ġcompass ion +Ġthirst y +ĠMedic ine +Ġgrat itude +Ġwors hi +Ġpresum ably +ĠLenn on +0 3 +G N +M EN +e i +f olk +i ology +m ia +m ble +n ia +Ġt ails +Ġw ires +Ġc hampionships +an or +an ch +es y +Ġp istol +ic ial +Ġh ier +ĠS ic +ent e +im er +ĠH IM +ĠB ess +Ġme ad +ĠN OW +ĠO H +ĠO le +ĠP ain +ĠG U +ra ve +Ġj ar +Ġcon vey +Ġshe lf +ast ics +pe ople +ĠK yle +Ġnow adays +iv an +Ġcl erk +Ġover head +ne red +Ġpart ial +ff ff +Ġbl oom +Ġdes erted +Ġear ning +Ġhead ache +Ġent reprene +Ġperson nel +Ġpass port +Ġbre eding +Ġtrans action +Ġsk etch +Ġshall ow +Ġref lection +ĠEx cellent +Ġequ ipped +ai ro +Ġfoot age +Ġhat red +Ġsol utions +Ġadv ise +Ġhon ored +Ġsum mit +Ġmess ed +ĠWas n +Ġfail s +Ġmot ive +Ġcult ures +Ġphys ician +ĠCo ven +Ġvol umes +Ġinflu ences +Ġpark s +âĢİ ? +ĠPort land +Ġfool s +Ġcoast al +ĠSl ow +Ġcontrib uted +Ġwhis per +Ġremind ed +ĠInt erest +Ġcuri osity +Ġbac hel +Ġelement ary +ĠHor ace +Ġnurs es +ĠTer rit +Ġdim ensions +Ġcott age +ĠBudd h +Ġdrag ons +Ġincl ined +Ġsup reme +Ġkidna pped +din and +Ġmonaster y +Ġsuspend ed +Ġange ls +0 9 +E d +S ome +i ated +l og +n ard +p ill +v as +Ġt ed +Ġm asters +Ġd ug +Ġg inger +ĠT end +Ġh ob +ĠS ide +ĠS ang +ĠS kin +ĠC ad +st ones +ĠB ol +ĠB ain +ĠB ear +ĠB less +Ġ- ( +ĠN in +ĠN av +ĠN BC +if ting +ĠG ON +Ġli ar +ĠF oon +Ġde e +ist ant +Ġor bit +Ġcon j +os om +ig ious +ab e +Ġlike wise +ard ed +Ġwho lly +Ġint im +Ġar ray +Ġar rog +Ġen han +ang ular +ĠMar ian +Ġacc um +Ġpres idency +li er +Ġmat t +Ġ8 00 +ĠCar m +Ġ9 6 +Ġ9 7 +Ġmod ified +Ġweek ly +Ġfree ze +ĠWith in +ĠPer u +Ġarri ving +ĠJul ian +Ġyell ing +Ġhistor ians +Ġdecl are +ü h +Ġbi ology +ĠKent a +min ute +Ġesc ort +Ġduck s +Ġpil grim +ĠColumb us +Ġliqu or +Ġdetail ed +Ġshell s +Ġframe work +Ġmathemat ical +ĠEconom ics +Ġfare well +ĠLog an +ĠRus sell +Ġcance lled +Ġque ue +Ġceremon ies +Ġtherap y +S IGHS +l ist +Ġw ider +Ġc avalry +Ġy er +Ġg or +ĠT ab +ĠT IM +Ġh orm +Ġhe m +Ġhe x +ĠW ELL +ĠH amm +ĠM unicip +ĠP rest +ĠL ore +ĠL ist +ĠL iving +ĠL anc +Ġj elly +ĠE llen +Ġde eds +ie ls +âĢ ľ +Ġpro ven +Ġv ap +ĠSt ri +ĠSt range +pl ant +av id +ict ions +Ġnever theless +be at +Ġcr ust +Ġche f +air y +ĠInd ies +Ġem ail +ĠSc andin +Ġ7 2 +Ġ7 3 +Ġposs ibilities +Ġequ ations +ey ed +Ġfree zing +OR GE +Ġlay ers +Ġrepl acing +Ġnat ives +Ġconne ctions +Ġhy per +Ġhost s +Ġclos est +Ġaut on +Ġaut hent +Ġ190 2 +ĠPal m +Ġpath s +oura ge +Ġpet ition +str ong +Ġcru ise +fl ies +Ġcorrect ly +ĠBa gh +Ġfra g +Ġincred ibly +Ġbeast s +Ġinfect ions +Ġpubl ishing +ĠJos é +Ġcoordin ates +ĠCommon wealth +Ġsav age +Ġcler gy +ĠAB OUT +ĠBeng al +Ġrebell ion +Ġbicy cle +ĠHose yn +0 6 +7 2 +9 00 +I P +J apan +] : +a ving +f ol +m ans +r ades +t ar +t ail +Ġs hat +Ġs ciences +on ies +Ġl an +Ġl ined +Ġg own +Ġg oose +ĠT erm +Ġhe ating +ĠA gr +ĠA FC +ĠA aron +ĠW u +ĠH om +ĠH ence +Ġst ub +ĠN ana +ĠD y +ĠD oub +ĠP ie +ĠL oc +Ġkn ot +ĠF ra +ĠHe ming +Ġso ber +Ġsh h +ess ed +Ġr ows +Ġher itage +res pect +ĠSo ft +Ġsp ill +Ġsp ider +Ġcl am +are l +Ġam us +urn ed +Ġper f +Ġsc hem +Ġdes erved +Ġnight mare +ĠAr chie +ĠAr ctic +Ġmon k +Ġinst alled +Ġfar ming +Ġhum our +ĠPr im +Ġsk ip +Ġmod erate +Ġshort s +ĠEm erson +hy d +ĠMic hel +ĠEd gar +ĠWest minster +Ġmis chief +Ġcommand s +Ġfear s +Ġhost ile +Ġboard ing +Ġhun ts +Ġknock ing +ĠNever theless +ĠNat alie +Ġpred e +ĠArab ic +Ġren ov +Ġtim ing +Ġcomplic ations +ĠMod el +Ġconqu er +ĠViet namese +Ġwand ered +oty pe +ĠProm ise +Ġutter ly +GRUN TING +ĠYugoslav ia +onym ous +ĠJen na +Ġstead ily +ĠKurd ish +Ġwarri or +Ġnigg a +ĠDiam ond +Ġcertific ate +ĠAns wer +Ġpneum onia +ĠWals h +ĠSalz burg +" : +0 1 +5 2 +C or +H i +J e +J ack +e ast +k ets +p read +s l +w ould +w ig +re ction +er ness +is le +is ations +Ġc hi +Ġl ords +ĠT ag +ic ity +ĠS S +ĠS CH +ĠS alem +Ġe ut +ĠM itch +ĠM iles +Ġfor k +st ro +ĠB ali +Ġst er +Ġst all +Ġk ettle +ur st +ĠN it +ĠD ID +ill ance +ch y +ch urch +ĠG R +ĠG osp +ĠG host +ĠL av +ĠL amb +op es +ĠE yes +Ġcan s +um ed +Ġcon sole +Ġpl aint +ink y +Ġv ine +ĠSt upid +ough s +Ġoff s +Ġqu art +Ġen able +oy al +ach t +Ġhapp ier +Ġch ill +ĠBe ck +Ġrel uct +Ġel bow +Ġbo ards +Ġmet aph +ok a +ĠLe gend +sh in +Ġsol vent +Ġaw oke +Ġvis itor +Ġblack smith +Ġtem ples +ĠPer form +ĠSy l +Ġdin osaur +Ġdeb uted +ĠPaul ie +Ġeconom ics +Ġaut umn +Ġrain forest +ĠFin ance +ĠTur ks +ĠMaj nun +Ġcow boy +ĠRock y +Ġheaven s +ĠBell e +Ġdom ain +ĠTy ler +Ġterrit ories +book s +Ġproceed ed +ĠVal ent +Ġrein force +Ġsam ples +ĠFace book +Ġelimin ated +Ġswift ly +ĠVill age +Ġbrows er +Ġsquee ze +Ġcollaps ed +Ġtwe et +Ġgau ge +ĠBundes liga +ĠHeming way +, [ +- , +I ES +P r +i ator +l as +l isted +m ns +o ving +o ise +u ated +Ġs aints +Ġc ited +Ġd il +Ġto e +Ġin ward +ĠT aking +Ġhe al +ĠS ard +Ġre tained +ut o +ld er +Ġwe ars +ĠC ob +ĠC hampions +ĠC hamber +ri ers +st ration +Ġdo se +ĠG T +ĠG aga +ĠE aster +Ġso d +Ġsh ipping +ĠK or +Ġman uscript +ous y +ĠIn g +Ġen force +Ġco aching +Ġcomp elled +Ġun ple +Ġpo ems +ĠCh op +Ġcar b +ix ed +ĠAll iance +ĠCan on +ĠCan al +Ġfar ms +ok o +Ġhard ware +Ġ8 9 +ING S +Ġ9 4 +Ġref riger +Ġcontin ually +ik h +ĠPet ty +Ġcommun ist +Ġbeh old +co at +ĠBar cel +Ġappro aches +Ġdepart ments +Ġcompet ing +ĠAN Y +Ġsens ible +su it +Ġsettle ments +Ġcompl aints +ĠMil itary +Ġconvers ations +OS T +ĠHas an +ĠÎ ¥ +Ġcoal ition +ĠEst her +Ġmort al +Ph il +Ġfoss ils +ĠCamer on +Ġinher ited +Ġcoinc idence +Ġdynam ic +Ġlux ury +ĠNC AA +ĠVenez uela +ĠSop hia +C ap +G e +G RO +b ag +e ven +e lection +i h +i ott +in ery +Ġw iped +Ġs ul +Ġs aint +er re +Ġp uff +Ġp engu +Ġl ust +Ġl akes +as a +ic he +ic ious +Ġhe ars +ĠW ong +ac ular +ĠM ou +ĠM ut +ĠC R +ĠC reat +ĠC ale +ĠC elt +ĠC OME +ro lled +ĠB ri +ĠY ears +ĠN ep +ĠD onna +ĠP owell +ĠG ust +ĠR ah +our ces +qu al +Ġsa fer +Ġus age +ard o +ĠK um +ĠU l +Ġint u +are ttes +Ġback up +Ġun necess +Ġam p +Ġpr ick +ĠWhe never +ĠAn nie +Ġhand ful +Ġsha ft +Ġspe cially +ĠRe ad +Ġreal m +ĠSh r +cess or +Ġcha os +Ġlight ly +Ġsince re +Ġinter rog +Ġplan ets +Ġ8 7 +ats u +ĠEx pl +Ġrecord ings +Ġsn ap +Ġsqu eak +Ġcor pse +Ġcommun ications +ĠNe v +Ġbar r +Ġcost ume +Ġill usion +light s +Ġview ed +Ġgrand pa +ĠKe ith +Ġdirect ors +Ġhy mn +Ġsuggest ing +sc reen +Ġris es +Ġ190 8 +ĠMore over +Ġpsych ological +Ġsac rific +Ġprint s +Ġprint ing +Ġmoon light +ĠFred dy +ĠRome o +Ġvot ers +Don ald +Ġencoura ging +Ġow ing +ĠSpeak ing +ĠBat man +Ġneighbour s +ĠWork ers +Ġtransform ed +Ġdesper ately +Ġtor ped +Ġinqu ired +Ġwha les +Ġrac ial +ĠTest ament +Ġsurre ndered +Ġarrow s +ĠGlob e +Ġresident ial +ĠDub lin +Ġresign ation +Ġori ent +Ġcentim eters +Ġdoct rine +Ġanth rop +Ġsoph istic +Ġphenomen on +ĠGON NA +? ? +C O +E n +G M +J uly +a ire +c up +g age +i ast +l ishing +y la +in cluding +it ating +Ġd ys +Ġd ivers +Ġd imin +Ġin k +ar ity +Ġn ests +ĠA V +ĠS ue +Ġre ass +ac a +ĠH aut +ĠM ach +ri um +ĠL ost +Ġj olly +ĠE agle +th s +ĠJ ab +Ġr ides +Ġpl uck +Ġv ib +Ġtr amp +Ġun ity +Ġbl ues +Ġfl ock +Ġres ort +ĠIs le +ces ter +Ġspe eches +Ġcr imin +form ed +Ġrel ativity +Ġ18 00 +Ġsupp orters +ĠAr d +Ġsub tle +ok er +Ġfr action +Ġsong writer +Ġmonth ly +Ġste re +Ġpartic le +ĠAd vent +ĠHar bor +Ġvar iation +ĠComm ons +Ġtre ason +Ġsun light +Ġpost er +Ġcompet itive +sc ap +ĠQue bec +Ġhop eless +ho ibi +Ġclaim ing +Ġquar rel +Ġtend s +Ġdecl ine +Ġemploy er +Äģ r +Ġfort night +Ġaddress es +ĠMer cury +Ġsignific antly +Ġcustom s +ĠHy de +Ġbound ary +Ġmechan ics +Ġder iv +Ġbother ing +Ġtransport ation +ĠAtt orney +ĠMust ang +Ġcolon ial +Ġdraft ed +Ġath lete +TA IN +Ġrefe rences +Ġdepos it +ĠHistor ic +Ġelder ly +Ġabsor bed +Ġvolunte ers +Ġadvoc ate +ĠGodd amn +Ġpremie red +Ġtremb ling +Ġdestro ying +Ġantib iotics +Ġtempor arily +ĠMaur ice +Ġingred ients +Brit ish +ĠUR L +Ġpropos als +ĠAgr ic +ĠBarcel ona +7 00 +D T +D an +J une +P ol +a ud +b ishop +k u +n ings +t ra +Ï Ĥ +Ġt ense +Ġs ings +on so +is an +Ġb un +Ġm all +Ġm oth +at u +Ġn avy +ĠT ournament +ĠT hames +Ġhe ck +us er +id ay +ĠH BO +ĠC ult +se lling +ĠD R +ĠD im +ĠP ack +Ġse gment +Ġ" ". +ĠG ul +ĠL ET +ĠR ow +ol ine +Ġne ur +ell s +ist ocr +ie ves +Ġwhe at +Ġv ag +ĠU H +Ġag greg +Ġqu ery +Ġro ses +ub a +ress ing +av il +Ġfl ank +Ġfl ashed +ĠCh in +Ġcar n +Ġcar r +ave nder +ĠMar ine +ĠDe c +Ġche at +Ġ5 6 +Ġlight ed +Ġfr ust +uss ia +ĠEx cell +ĠEx press +Ġhur ting +Ġprot ests +Ġsol itary +Ġaw fully +ĠTw itter +Ġprocess ion +Ġfre ight +Ġcat al +Ġlim bs +arr ison +Ġgen es +AS T +Ġmass es +ĠBur g +yl on +Ġ190 5 +Ġpray ed +ĠIran ian +Ġ186 9 +Ġinvestig ate +Ġconvers ion +Ġsatisf y +ĠFer dinand +ĠAng lo +Ġstrugg led +Ġexcl usively +Ġprogress ive +osa urs +Ġunf air +Ġpassion ate +Ġcommission ed +Ġintegr ated +Ġrevolution ary +andal ay +ĠTam il +ĠOtt awa +ĠÄ Ģ +ĠRet urn +Ġvel ocity +Ġcondens er +ĠAx el +ĠSult an +Ġlandl ord +Ġsynd rome +Ġlegit imate +ĠScient ists +Ġvoc als +ĠSall ie +Ġremov al +B ig +G AS +c har +c ule +d i +e als +g reen +t ree +w hy +Ġs izes +Ġf ug +Ġp y +Ġl id +Ġn iece +ic us +Ġhe e +Ġhe aling +ĠS ony +Ġre ly +ĠC AP +st yle +ĠO ber +ĠP RO +ĠP orter +il ies +ĠG ol +ĠL ay +ant on +ĠR ot +ge red +ĠJ ur +ĠJ ava +ink le +ber ries +Ġint imate +ĠTh under +Ġsp it +Ġsp ine +Ġsp ont +Ġle isure +Ġro ar +Ġam azed +be cause +ps y +Ġra id +Ġrel ate +Ġind ign +Ġind irect +ĠFor ces +Ġsw ung +Ġsw ords +ner y +Ġdist ances +ĠZ oo +ered ith +Ġ8 6 +Ġgener ated +Ġcur se +ĠCon cha +Ġpri zes +Ġtri gger +ĠPl ummer +umb ers +con vex +Ġresp ir +Ġvill ain +Ġconcer ts +Ġpost s +ien ne +Ġfast est +Ġgrand son +Ġep ic +Ġstri kes +ĠPark er +Ġris en +inc inn +Ġindust ries +Ġgar ments +Ġà ī +Ġtall er +ĠPre viously +Ġroll er +Ġchallen ges +An n +Ġtim ber +ĠCat hedral +Ġearn est +ias m +ĠTre vor +ĠAndrew s +---- ---- +ĠStart ing +Ġvert ical +ĠFem ale +Ġignor ance +Ġconspir acy +ĠJama ica +Ġpian ist +Ġendea v +Ġwides pread +Ġbachel or +R aw +S outh +W oman +t or +ha ve +Ġb ade +Ġc ri +Ġf res +ĠI an +ĠI ike +or c +Ġd orm +Ġd ense +Ġd ominated +ed o +Ġin ex +ĠS ud +ĠS alt +ĠS ierra +ĠM eredith +ro ck +ĠB ark +ĠB ird +se ud +Ġst ating +ĠD unk +ill es +ĠO ft +ĠG ann +ĠL ucky +op ing +ĠR ac +ĠR oth +ĠF ab +ĠF arm +ul ator +Ġsh iver +el and +Ġpl ague +ĠAnd roid +ind e +ĠSt re +Ġtr act +ci als +Ġam bit +Ġbl ah +Ġbl amed +Ġgu ilt +ob a +Ġser geant +Ġsc orn +Ġsha ped +Ġcr ush +ĠRe in +ĠDe x +Ġ5 3 +ĠNot e +ĠNot ting +Ġmind fulness +Ġ8 2 +Ġ8 4 +Ġsort ed +Ġhalf way +Ġfore cast +Ġinf ant +Ġ16 8 +Ġabs ent +ĠPa vel +for ced +Ġrespect able +Ġcomput ing +Ġsus p +ĠSen ior +yl um +Ġwa ving +ET H +Ġfoc using +Ġaffect s +ĠDel hi +ĠMike y +ĠRad hika +Ġcompl ained +Ġcontrib ute +Ar t +Ġbomb ing +Ġalcoh olic +Ġcontr ad +pher d +Ġcalcul ate +Ġautom atic +Ġaim ed +Ġwithd rew +Ġwha le +Ġconqu ered +ĠGreg ory +ĠCL ARE +Ġkilomet ers +cour t +ĠMun ich +Ġresear chers +Ġsubt ract +Ġaffili ate +Ġhoriz ont +ĠWag ner +Ġchim ney +Ġyog urt +Ġhosp itals +rast ructure +Ġoat meal +M arch +P R +h op +m ill +o ffic +s ized +t in +z ig +Î µ +Ġt s +Ġt ad +Ġt ens +er ts +ha y +Ġp and +Ġp ussy +Ġy up +ĠT oy +ĠT ax +ĠS or +ĠS yn +id o +ĠW ILL +ĠW OMAN +Ġwe pt +ĠM aking +ĠD oll +ĠD isc +ĠD odge +ĠL en +ĠL ess +ant h +ĠF A +ĠHe nd +Ġj aw +our ning +Ġso y +Ġal tered +Ġr ay +ig o +Ġout standing +Ġpl ug +res ident +od ka +ak ened +ĠSo ld +Ġtr im +ick ets +Ġun ions +Ġwr ist +Ġsha de +Ġsupp lied +ĠAt hens +Ġreg ulation +Ġ5 9 +olog ically +Ġread ily +Ġrep orter +ĠTH INK +ING ING +Ġ9 2 +Ġmod est +Ġmiss ions +Ġsound track +Ġspeak ers +ĠPl ant +OU ND +Ġadv ised +Ġadm iration +ĠRep ort +Ġmer c +Ġstri pes +IT T +Ġhun ter +Ġneck lace +Ġir regular +ĠSus sex +ĠFred die +Ġhom osexual +ÃŃ n +Ġdemon stration +Ġflow ing +ĠCare ful +ĠMove ment +Ġcous ins +Ġtrib ut +ĠAri el +ĠRh ine +Ġdescend ed +Ġcommit ment +Ġinfl amm +Ġsitu ated +ĠCroat ia +Ġcollabor ation +Ġfortun ate +Ġbrig ade +Ġdial ogue +Ġperce ived +Ġdio xide +ĠShir ley +Ġslee ve +Ġmans ion +ĠGE ORGE +Ġacquaint ance +Ġoffs pring +% ) +5 3 +A ugust +G O +a ired +b ear +b ility +f old +j ab +l oss +s ie + Ĵ +Å ¾ +Ġthe oret +Ġs ib +er d +ha ge +Ġb og +Ġb ounce +Ġc el +Ġc oup +Ġf itting +Ġin vention +ar in +Ġg ut +ĠT A +ĠT ate +ĠS ire +ĠC OM +ĠC incinn +ĠB it +ĠB il +ĠB og +ur ring +ĠD A +ĠO st +il ian +ĠE u +Ġal armed +Ġex clud +Ġex agger +Ġ19 11 +Ġar bit +iv a +Ġle aned +Ġover l +ne ys +Ġro d +ĠV ick +ĠUn iverse +ip her +Ġper il +be e +Ġsm ugg +ĠBe e +ĠSe ems +Ġche ated +Ġform ally +the m +ĠLe ader +Ġid le +Ġ10 1 +Ġconf ined +Ġtri ps +Ġpar rot +ĠPl ot +Ġcor al +Ġanim ation +ĠWar ner +fic ial +Ġcheck s +Ġdev ast +Ġconne cts +ĠPhil os +Ġburn s +Ġpark ed +ü l +Ġexam ination +ĠTra vis +Ġmaintain ing +ĠGar cia +Ġconsum ers +Ġwrest ler +Ġmathem atic +Ġhyd rogen +Ġinqu iry +Ġdescend ants +Ġrecommend ation +rim ination +Ġdepth s +Ġastron aut +ĠInf antry +ĠBah rain +ĠOrigin ally +Ġfisher men +hang ba +ĠHop kins +ĠCru z +Ġincorpor ated +Ġisol ated +Ġdistur bed +Ġimprison ed +Ġdeliber ately +Ġfest ivals +Ġpic nic +Ġbegg ar +Ġelabor ate +Ġtwent ieth +Rober t +ĠTW O +CHUCK LES +Ġamus ement +Ġschem es +5 1 +5 4 +5 9 +B est +E X +Q U +S W +S an +U F +W as +c ot +g reat +k an +o vers +r ays +w right +w ife +w orm +Ġ Ø +Ġt uck +Ġw age +Ġb ald +Ġc yl +Ġd iversity +ed ed +ĠT ib +ĠT ams +ic ism +ĠA ch +ĠS M +ĠM andalay +Ġst are +Ġst eak +ĠD od +ĠO bs +ol o +ĠE sp +Ġr am +Ġr amp +Ġr otten +ood le +Ġsa us +ĠTh row +Ġar istocr +Ġsp here +ian g +Ġover th +Ġback ed +Ġqu iz +ass y +Ġfe es +ĠV el +au er +uck le +Ġres id +Ġres olve +Ġsc old +ĠBe en +Ġmin ing +Ġrel ating +Ġsur plus +Ġmon sters +Ġ6 1 +Ġread s +Ġexp enses +Ġprob able +Ġtri als +Ġbas in +ĠTr acy +Ġclass ification +Ġste pping +Ġclear ing +umb ria +Ġhot els +Ġsuccess or +Ġelect ro +ĠCent ury +Ġtrad ed +Ġrespect ed +Ġgen re +Ġfix ing +Ġcirc ulation +Ġnon convex +Ġcivil ians +Ġban anas +Ġ190 1 +Ġ190 7 +Ġmarry ing +ĠTod d +back s +gl ass +ĠMont ana +Ġassoci ations +ĠAtlant is +apt ist +Ġlog ical +ĠSom alia +Ġquant um +Ġtap es +ĠNap les +Ġrepeated ly +ĠAssy rians +Ġowners hip +Ġpersu aded +Ġsar ah +Ġstrict ly +Ġuncertain ty +ĠUk raine +Ġconsec utive +Ġdiag ram +ATTER ING +Ġrabb its +Ġsophistic ated +G y +G eneral +P e +b ot +f an +f ty +f aced +g us +g irl +i ard +j ack +k now +l ane +t able +à ¸ +Ġc av +Ġc ham +Ġf t +or al +Ġl aund +as is +as an +Ġg ent +om ers +ĠT ill +ĠA part +ĠH erm +ĠM ak +ĠC her +ĠY or +ĠN AS +Ġwh irl +ĠP H +op ard +ĠR aid +ĠR oland +ĠF O +Ġne uro +Ġde ploy +ĠJ ed +Ġout come +ĠIn s +Ġint estine +ĠBut ter +na e +ĠV e +Ġun lock +iz en +Ġbl oss +ater al +av i +Ġper ception +Ġhome less +ĠRe gan +Ġmar ble +Ġac ute +Ġret ail +Ġmet eor +Ġbus hes +Ġcent ers +Ġexp on +Ġ9 3 +sh ore +ĠAh mad +Ġcor ruption +ĠAd rian +ĠPres ently +Ġquestion ing +Ġorgan ize +lev ard +Ġpoor ly +Ġsun set +Ġcompet itions +ĠRic a +ĠHen ri +ades hi +Ġbank rupt +ĠChan ge +Ġtast es +Ġmor ality +Ġcru cial +Ġstorm s +ĠArt ie +ĠIT V +Ġaccident ally +ĠLove ly +ĠMil an +Ġbroadcast ing +Ġstream s +ĠOw en +Ġflo at +pro fit +Ġnom i +Ġvirt ually +Ġcheer ful +ĠRich mond +Ġdies el +ĠConst ruction +Ġeager ly +Ġment ally +Ġbitter ly +Ġinvolve ment +Ġupd ate +Ġemphas is +omed ay +Ġpap a +Ġcray on +ĠAlexand ria +Ġinspect or +Ġinterse ction +ĠMiy amoto +imens ional +Ġbrut al +Ġau ction +ĠPier re +Ġrh omb +olley ball +ĠPhoen ix +Ġlan tern +Ġunple asant +ĠDunk irk +ĠNotting ham +5 6 +J anuary +L M +O ur +P EN +V EN +g am +m und +p in +r ans +u ana +w ald +à ī +Ġ á +Ġt asks +re c +re f +Ġc her +Ġf uss +Ġf itted +om ena +Ġn oun +et he +ĠA irlines +ĠS ie +ĠS OME +id al +ld a +ĠH ok +ĠC any +ĠC hess +ĠC airo +st ead +Ġst ored +Ġan ts +Ġdo d +ĠD ays +ter stock +ĠO il +ĠP ey +Ġse als +ĠG oth +ĠF ortun +un ity +ĠE ner +Ġr ated +os o +em a +ack Down +res a +od ing +ĠU sing +ĠIn vest +Ġsp otted +Ġoff ense +ĠV II +Ġcomp act +ub by +Ġcont amin +Ġpre st +Ġres ur +ĠAs soci +Ġend ure +Ġtra itor +ĠSe vent +Ġsub stitute +Ġadd s +Ġ6 2 +Ġca ut +ĠCl ar +ĠLe x +Ġrest ra +Ġinter face +Ġrep ro +ĠPro vin +Ġext rater +Ġ7 4 +Ġprov isions +Ġri ot +pend ing +Ġcor rected +ĠAd olf +ĠSha d +Ġstrong est +Ġstra in +Ġprofess ors +Ġdep ict +ĠSw an +ĠSy riac +Ġpot atoes +Ġsepar ately +ĠReg iment +Ġsal ad +Ġdecl ined +ĠWil bur +Ġ186 1 +Ġchick ens +ĠHon estly +ĠMel issa +Ġattend ing +Ġ187 0 +ĠStud ies +Ġign ored +Ġow l +Ġbast ards +Ġscream ed +Ġcolon ies +Ġdisappoint ment +Not hing +ĠDef initely +Ġwitch craft +ĠGa elic +Ġsufficient ly +ĠBudd hist +Ġsan ct +ĠLeg isl +Ġscholars hip +Ġjew els +ĠPot ter +Ġdomin ant +Ġindic ates +Ġkilomet res +Ġinher it +ĠCamb odia +Ġey ew +ĠOak land +Ġenthus iasm +Ġoffend ed +Ġsurve illance +Ġcondem ned +Ġdispl ays +child ren +Ġsubstant ial +ĠRaven s +ellig ence +Ġdatab ase +Ġmatt ress +ĠCincinn ati +ĠTams ui +# # +D ER +P ad +b ling +e yes +f orth +i y +m ag +p uts +r ust +r ates +y x +he nd +he rent +er ie +ha lf +Ġb oun +Ġc unning +Ġf ag +Ġd iverse +at isf +ĠT ouch +Ġhe ated +ac ter +ĠH ER +ĠM ap +ri ved +ct ica +ĠD rew +ĠD uc +ĠP ink +ĠG har +ĠL anguage +ĠF aw +ĠF OUR +ea p +Ġ( ). +ig ible +Ġwor m +Ġany how +ĠBut t +so on +Ġcl aws +ount ered +ĠV III +Ġco c +Ġcomp at +Ġcomp ute +Ġbl og +cl ed +ob i +Ġsm ack +ĠMar x +Ġtra uma +Ġind ul +Ġhar ass +Ġinv al +Ġmet ropolitan +ĠAre na +iet ies +Ġinter val +Ġfil thy +by ter +Ġinf rastructure +Ġdevelop ments +ĠTr ad +Ġval ve +ĠMiss ion +Ġexpect ations +ĠEd en +Ġrepl acement +Ġpract iced +Ġrespect s +ĠFrank ie +AM E +ĠBra vo +Ġ190 6 +Ġattempt ing +Ġrob bed +EA H +ustom ed +Ġess ence +ĠPre p +ĠShut terstock +Ġcred its +ĠFre edom +Ġya wn +ĠHaw kins +Ġmut tered +Ġtarget s +Ġamb ition +Ġhast ily +Ġassum ing +keep ing +Ġneighbour ing +Ġtal ented +Ġcig ar +Ġcig arettes +Ġiniti ative +Ġinfect ed +Ġparad ox +Ġtoss ed +Ġpip es +Ġthrill er +ĠBenn et +ĠGab riel +Ġscen ario +Ġware house +Ġimpat ient +Ġwret ched +ĠCry stal +Ġcust ody +ĠBroadcast ing +minar ayan +ĠCany on +C R +M al +R ight +f ront +g rand +i ago +l ore +p it +y on +z el +á º +Ġw ig +re ra +Ġs ip +is hi +Ġo m +Ġd amp +Ġp ets +Ġl ur +Ġg ard +Ġg ee +Ġn ope +ĠT ot +ĠA ctor +ĠS ug +ĠS aints +ay ing +ĠW en +ld om +im s +ac ea +am as +ĠC ic +ĠB rent +ĠB els +ĠY EAH +ur red +ch t +ĠL illy +ant o +ĠR ing +ĠR ice +ĠR ug +ĠE isen +Ġde ed +Ġde ity +ĠAnd ersen +Ġex ca +Ġv ivid +ap arte +ĠWe ather +Ġtheir s +Ġgr in +av ian +Ġmean while +ĠCh p +Ġer rors +Ġrel ics +Ġreg ime +li est +IN A +Ġmother fucker +ĠQ aleh +Ġca f +ĠAb u +Ġconf using +idd ing +Ġsleep s +Ġhat s +ĠMan ager +Ġquestion ed +Ġdev otion +Ġlow ered +work ing +Ġrad ar +lo aded +Ġinvest ors +zz ar +Ġris ks +Ġnecess ity +Ġvol untary +Ġenc ountered +Ġpack ing +ĠPal mer +Ġap ology +Ġpsych ology +Ġmic ros +Ġlif estyle +ĠDa ily +ĠMont real +ó t +Ġrank ing +ĠTurn er +ĠMust afa +Ġprem ises +Ġwebs ites +Ġgre edy +ĠCir c +Ġunlike ly +ĠElect ric +Ġdece ased +ĠMort on +Ġabdom en +Ġdischar ge diff --git a/model.safetensors b/model.safetensors new file mode 100644 index 0000000..d926d10 --- /dev/null +++ b/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c395338b407c70d09a063b062de558d209d06e26fd7ecf455ef962b328c1fab3 +size 233395888 diff --git a/mrclean.py b/mrclean.py new file mode 100644 index 0000000..9ecf9f9 --- /dev/null +++ b/mrclean.py @@ -0,0 +1,95 @@ +import re + +# START_TOKEN = '' +# END_TOKEN = '' +# PADDING_TOKEN = '' + +START_TOKEN = '' +END_TOKEN = '' +PADDING_TOKEN = '' + +def _make_padding_sequence(seq_length): + return ''.join([END_TOKEN] + seq_length * [PADDING_TOKEN]) + +def cleanup_simple_wikipedia(text, seq_length): + pad_seq = _make_padding_sequence(seq_length) + text = START_TOKEN + re.sub(r'\n\n', pad_seq + START_TOKEN, text) + pad_seq + return text + +def cleanup_wikipedia(text, seq_length): + pad_seq = _make_padding_sequence(seq_length) + text = re.sub(r'= = = (.+?) = = =\n', r'\1', text) + lines = [line.strip() for line in text.splitlines()] + text = START_TOKEN + re.sub(r'\n\n', pad_seq + START_TOKEN, '\n'.join(lines)[1:]) + pad_seq + return text + +def cleanup_qed(text, seq_length): + # TODO: this should probably be padded too, but it’s difficult to detect when subtitles start and end + # The handling of proper nouns and of parentheses isn’t perfect, but this is still an improvement over the base text + punctuation_ex = re.compile(r'([.!?]\s*)') + unimportant_chars_ex = re.compile(r'\(.*?\)|[.!?]') + lines = [] + for line in text.splitlines(): + nchars = len(line) + if nchars > 0: + line_body = unimportant_chars_ex.sub('', line) + f_upper = sum(c.isupper() for c in line_body) / len(line_body) + if f_upper >= 0.5: # Mostly uppercase characters + # Taken from https://stackoverflow.com/a/41662260 + split_on_punctuation = punctuation_ex.split(line.replace('l', 'I')) + line = ''.join([sentence.capitalize() for sentence in split_on_punctuation]) + lines.append(line.strip()) + return START_TOKEN + '\n'.join(lines) + END_TOKEN + ''.join(seq_length * [PADDING_TOKEN]) + +def cleanup_extra_spaces(text): + multiple_spaces_ex = re.compile(r'[ \t\u00A0]+') + space_before_punctuation_ex = re.compile(r'[ \t\u00A0]([.,;!?])') + text = multiple_spaces_ex.sub(' ', text) + text = space_before_punctuation_ex.sub(r'\1', text) + return text + +def cleanup_bnc_spoken(text, seq_length): + pad_seq = _make_padding_sequence(seq_length) + text = cleanup_extra_spaces(text) + text = START_TOKEN + re.sub(r'\n\n', pad_seq + START_TOKEN, text) + pad_seq + return text + +def cleanup_aochildes(text, seq_length): + text = cleanup_extra_spaces(text) + return START_TOKEN + text + _make_padding_sequence(seq_length) + +def cleanup_cbt(text, seq_length): + text = cleanup_extra_spaces(text) + space_before_apostroph = re.compile(r"([\w\d])[ \t\u00A0](['’]\w)") + #space_before_quote = re.compile(r"[ \t\u00A0](['’])") + #space_after_quote = re.compile(r"([`])[ \t\u00A0]") + #text = space_before_quote.sub(r'\1', text) + #text = space_after_quote.sub(r'\1', text) + text = space_before_apostroph.sub(r'\1\2', text) + return START_TOKEN + text + _make_padding_sequence(seq_length) + +def cleanup_children_stories(text, seq_length): + # Sometimes one skipped line marks the beginning of a new story, + # but sometimes it is present within a same story, which doesn’t + # make it very useful for separating independent stories. + return START_TOKEN + text + _make_padding_sequence(seq_length) + +def cleanup_gutenberg(text, seq_length): + # Overall, the text is clean, however some entries don’t seem + # very useful, e.g. figure captions preceded by a number. + # Not sure if we should remove them, because that would also + # remove bullet lists which are otherwise consistent with the + # surrounding text. + # No start or end tokens because the text seems to be cut. + return text + ''.join(seq_length * [PADDING_TOKEN]) + +def cleanup_open_subtitles(text, seq_length): + # The text is mostly clean, apart from some subtitle credits + # such as "Subtitles by ...". + subtitle_credit_ex = re.compile(r'^.*subtitle.*$\n', re.MULTILINE | re.IGNORECASE) + text = subtitle_credit_ex.sub('', text) + return START_TOKEN + text + _make_padding_sequence(seq_length) + +def cleanup_switchboard(text, seq_length): + # No start or end tokens because the text seems to be cut. + return text + ''.join(seq_length * [PADDING_TOKEN]) \ No newline at end of file diff --git a/plot_eval_scores.ipynb b/plot_eval_scores.ipynb new file mode 100644 index 0000000..34a5f7d --- /dev/null +++ b/plot_eval_scores.ipynb @@ -0,0 +1,12354 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "ZF2ruR7koa27" + }, + "source": [ + "# Compare the eval scores" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "id": "ktOHD34Yoa25" + }, + "outputs": [], + "source": [ + "import os\n", + "import json\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "from matplotlib import rc\n", + "%config InlineBackend.figure_formats = ['svg']\n", + "plt.style.use('seaborn-v0_8-darkgrid')\n", + "rc('font',**{'family':'serif','size':10})\n", + "rc('text', usetex=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Scores" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "ALL_SCORES = {\n", + " 'Llama-58M': {\n", + " 'qa_congruence_easy': 0.5,\n", + " 'island_effects': 0.5728699551569507,\n", + " 'irregular_forms': 0.7414758269720102,\n", + " 'npi_licensing': 0.5109322805952019,\n", + " 'turn_taking': 0.6392857142857142,\n", + " 'argument_structure': 0.7233268671193016,\n", + " 'hypernym': 0.4872093023255814,\n", + " 'qa_congruence_tricky': 0.32727272727272727,\n", + " 'determiner_noun_agreement': 0.8780164412622646,\n", + " 'binding': 0.711635500148412,\n", + " 'control_raising': 0.6752098983650022,\n", + " 'subject_verb_agreement': 0.7300813008130081,\n", + " 'subject_aux_inversion': 0.7740912417662844,\n", + " 'anaphor_agreement': 0.8701431492842536,\n", + " 'filler_gap': 0.7093059446000622,\n", + " 'quantifiers': 0.6421947449768161,\n", + " 'ellipsis': 0.6732101616628176,\n", + " 'zeroshot_average': 0.6568388856827299,\n", + " },\n", + " 'Llama-360M': {\n", + " 'argument_structure': 0.73545101842871,\n", + " 'turn_taking': 0.6857142857142857,\n", + " 'determiner_noun_agreement': 0.8959162025987801,\n", + " 'hypernym': 0.4941860465116279,\n", + " 'control_raising': 0.6743261157755193,\n", + " 'anaphor_agreement': 0.876278118609407,\n", + " 'qa_congruence_easy': 0.53125,\n", + " 'subject_verb_agreement': 0.6971996386630533,\n", + " 'island_effects': 0.5044843049327354,\n", + " 'npi_licensing': 0.5734892195566352,\n", + " 'quantifiers': 0.5904173106646059,\n", + " 'filler_gap': 0.7060379707438531,\n", + " 'irregular_forms': 0.689058524173028,\n", + " 'ellipsis': 0.684757505773672,\n", + " 'subject_aux_inversion': 0.8433764332764089,\n", + " 'qa_congruence_tricky': 0.41818181818181815,\n", + " 'binding': 0.7209854556248145,\n", + " 'zeroshot_average': 0.665947645248762,\n", + " },\n", + " 'GPT2-705M': {\n", + " 'subject_aux_inversion': 0.8172725054891437,\n", + " 'island_effects': 0.515695067264574,\n", + " 'turn_taking': 0.6571428571428571,\n", + " 'argument_structure': 0.7348448108632396,\n", + " 'hypernym': 0.49186046511627907,\n", + " 'subject_verb_agreement': 0.6751580849141825,\n", + " 'irregular_forms': 0.8305343511450382,\n", + " 'qa_congruence_easy': 0.5625,\n", + " 'determiner_noun_agreement': 0.8741713073455317,\n", + " 'quantifiers': 0.6983513652756311,\n", + " 'npi_licensing': 0.5050106286061342,\n", + " 'binding': 0.7151973879489463,\n", + " 'ellipsis': 0.6991916859122402,\n", + " 'qa_congruence_tricky': 0.45454545454545453,\n", + " 'filler_gap': 0.7023031434796141,\n", + " 'control_raising': 0.6840477242598321,\n", + " 'anaphor_agreement': 0.8962167689161554,\n", + " 'zeroshot_average': 0.6772966828367561,\n", + " },\n", + " 'Baby-Llama-58M-distilled': {\n", + " 'irregular_forms': 0.9307888040712469,\n", + " 'quantifiers': 0.732612055641422,\n", + " 'binding': 0.7273671712674384,\n", + " 'hypernym': 0.4930232558139535,\n", + " 'qa_congruence_tricky': 0.41818181818181815,\n", + " 'island_effects': 0.5123318385650224,\n", + " 'filler_gap': 0.7183317771553066,\n", + " 'determiner_noun_agreement': 0.9081145584725537,\n", + " 'npi_licensing': 0.5646826601882782,\n", + " 'anaphor_agreement': 0.8982617586912065,\n", + " 'turn_taking': 0.6607142857142857,\n", + " 'ellipsis': 0.733256351039261,\n", + " 'argument_structure': 0.7314500484966052,\n", + " 'qa_congruence_easy': 0.515625,\n", + " 'subject_verb_agreement': 0.7542908762420958,\n", + " 'subject_aux_inversion': 0.8850939253476457,\n", + " 'control_raising': 0.6749889527176315,\n", + " 'zeroshot_average': 0.6975950080944572,\n", + " 'cola': 0.7046123743057251,\n", + " 'sst2': 0.8720472455024719,\n", + " 'mrpc': 0.8200000000000001,\n", + " 'qqp': 0.8295147660946076,\n", + " 'mnli': 0.7285888195037842,\n", + " 'mnli-mm': 0.7369509935379028,\n", + " 'qnli': 0.8114610910415649,\n", + " 'rte': 0.6161616444587708,\n", + " 'boolq': 0.6721991896629333,\n", + " 'multirc': 0.5892661809921265,\n", + " 'wsc': 0.6144578456878662,\n", + " 'main_verb_control': 0.9990825653076172,\n", + " 'control_raising_control': 0.9362576603889465,\n", + " 'syntactic_category_control': 0.9431824684143066,\n", + " 'lexical_content_the_control': 0.9777472615242004,\n", + " 'relative_position_control': 0.9976232647895813,\n", + " 'main_verb_lexical_content_the': 0.6731526255607605,\n", + " 'main_verb_relative_token_position': 0.6802076697349548,\n", + " 'syntactic_category_lexical_content_the': 0.9469174146652222,\n", + " 'syntactic_category_relative_position': 0.7421950697898865,\n", + " 'control_raising_lexical_content_the': 0.7405232191085815,\n", + " 'control_raising_relative_token_position': 0.671150803565979,\n", + " },\n", + " 'Ensemble-of-teachers': {\n", + " 'npi_licensing': 0.5508654722137868,\n", + " 'determiner_noun_agreement': 0.8976398833200743,\n", + " 'control_raising': 0.6767565178965974,\n", + " 'turn_taking': 0.6642857142857143,\n", + " 'subject_aux_inversion': 0.8453281288119053,\n", + " 'quantifiers': 0.6460587326120556,\n", + " 'island_effects': 0.507473841554559,\n", + " 'irregular_forms': 0.833587786259542,\n", + " 'qa_congruence_tricky': 0.4303030303030303,\n", + " 'binding': 0.7221727515583259,\n", + " 'argument_structure': 0.7526673132880698,\n", + " 'qa_congruence_easy': 0.5,\n", + " 'subject_verb_agreement': 0.7029810298102981,\n", + " 'hypernym': 0.5011627906976744,\n", + " 'anaphor_agreement': 0.8957055214723927,\n", + " 'ellipsis': 0.7165127020785219,\n", + " 'filler_gap': 0.7108621226268285,\n", + " 'zeroshot_average': 0.6796684316934927,\n", + " }, \n", + " 'OPT-125M': {\n", + " 'anaphor_agreement': 0.638,\n", + " 'argument_structure': 0.706,\n", + " 'binding': 0.671,\n", + " 'control_raising': 0.665,\n", + " 'determiner_noun_agreement': 0.785,\n", + " 'ellipsis': 0.620,\n", + " 'filler_gap': 0.638,\n", + " 'irregular_forms': 0.675,\n", + " 'island_effects': 0.486,\n", + " 'npi_licensing': 0.467,\n", + " 'quantifiers': 0.596,\n", + " 'subject_verb_agreement': 0.569,\n", + " 'hypernym': 0.500,\n", + " 'qa_congruence_easy': 0.547,\n", + " 'qa_congruence_tricky': 0.315,\n", + " 'subject_aux_inversion': 0.803,\n", + " 'turn_taking': 0.571,\n", + " 'zeroshot_average': 0.6030588235294118,\n", + " 'cola': 0.646,\n", + " 'sst2': 0.819,\n", + " 'mrpc': 0.725,\n", + " 'qqp': 0.604,\n", + " 'mnli': 0.576,\n", + " 'mnli-mm': 0.600,\n", + " 'qnli': 0.615,\n", + " 'rte': 0.600,\n", + " 'boolq': 0.633,\n", + " 'multirc': 0.552,\n", + " 'wsc': 0.602,\n", + " 'control_raising_control': 0.864,\n", + " 'lexical_content_the_control': 0.861,\n", + " 'main_verb_control': 0.998,\n", + " 'relative_position_control': 1.000,\n", + " 'syntactic_category_control': 0.943,\n", + " 'control_raising_lexical_content_the': 0.665,\n", + " 'control_raising_relative_token_position': 0.670,\n", + " 'main_verb_lexical_content_the': 0.665,\n", + " 'main_verb_relative_token_position': 0.676,\n", + " 'syntactic_category_lexical_content_the': 0.802,\n", + " 'syntactic_category_relative_position': 0.675,\n", + " },\n", + " 'RoBERTa-base': {\n", + " 'anaphor_agreement': 0.815,\n", + " 'argument_structure': 0.671,\n", + " 'binding': 0.673,\n", + " 'control_raising': 0.679,\n", + " 'determiner_noun_agreement': 0.908,\n", + " 'ellipsis': 0.764,\n", + " 'filler_gap': 0.635,\n", + " 'irregular_forms': 0.874,\n", + " 'island_effects': 0.399,\n", + " 'npi_licensing': 0.559,\n", + " 'quantifiers': 0.705,\n", + " 'subject_verb_agreement': 0.654,\n", + " 'hypernym': 0.494,\n", + " 'qa_congruence_easy': 0.313,\n", + " 'qa_congruence_tricky': 0.321,\n", + " 'subject_aux_inversion': 0.717,\n", + " 'turn_taking': 0.532,\n", + " 'zeroshot_average': 0.6301764705882353,\n", + " 'cola': 0.708,\n", + " 'sst2': 0.870,\n", + " 'mrpc': 0.792,\n", + " 'qqp': 0.737,\n", + " 'mnli': 0.732,\n", + " 'mnli-mm': 0.740,\n", + " 'qnli': 0.770,\n", + " 'rte': 0.616,\n", + " 'boolq': 0.663,\n", + " 'multirc': 0.614,\n", + " 'wsc': 0.614,\n", + " 'control_raising_control': 0.841,\n", + " 'lexical_content_the_control': 1.000,\n", + " 'main_verb_control': 0.994,\n", + " 'relative_position_control': 0.935,\n", + " 'syntactic_category_control': 0.964,\n", + " 'control_raising_lexical_content_the': 0.677,\n", + " 'control_raising_relative_token_position': 0.686,\n", + " 'main_verb_lexical_content_the': 0.667,\n", + " 'main_verb_relative_token_position': 0.686,\n", + " 'syntactic_category_lexical_content_the': 0.842,\n", + " 'syntactic_category_relative_position': 0.657,\n", + " },\n", + " 'T5-base': {\n", + " 'anaphor_agreement': 0.689,\n", + " 'argument_structure': 0.638,\n", + " 'binding': 0.604,\n", + " 'control_raising': 0.609,\n", + " 'determiner_noun_agreement': 0.722,\n", + " 'ellipsis': 0.344,\n", + " 'filler_gap': 0.482,\n", + " 'irregular_forms': 0.776,\n", + " 'island_effects': 0.456,\n", + " 'npi_licensing': 0.478,\n", + " 'quantifiers': 0.612,\n", + " 'subject_verb_agreement': 0.650,\n", + " 'hypernym': 0.480,\n", + " 'qa_congruence_easy': 0.406,\n", + " 'qa_congruence_tricky': 0.212,\n", + " 'subject_aux_inversion': 0.649,\n", + " 'turn_taking': 0.450,\n", + " 'zeroshot_average': 0.5445294117647057,\n", + " 'cola': 0.612,\n", + " 'sst2': 0.781,\n", + " 'mrpc': 0.805,\n", + " 'qqp': 0.662,\n", + " 'mnli': 0.480,\n", + " 'mnli-mm': 0.503,\n", + " 'qnli': 0.620,\n", + " 'rte': 0.494,\n", + " 'boolq': 0.660,\n", + " 'multirc': 0.471,\n", + " 'wsc': 0.614,\n", + " 'control_raising_control': 0.784,\n", + " 'lexical_content_the_control': 1.000,\n", + " 'main_verb_control': 0.727,\n", + " 'relative_position_control': 0.955,\n", + " 'syntactic_category_control': 0.944,\n", + " 'control_raising_lexical_content_the': 0.667,\n", + " 'control_raising_relative_token_position': 0.697,\n", + " 'main_verb_lexical_content_the': 0.666,\n", + " 'main_verb_relative_token_position': 0.669,\n", + " 'syntactic_category_lexical_content_the': 0.736,\n", + " 'syntactic_category_relative_position': 0.678,\n", + " },\n", + "}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plots" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "BLIMP_EVAL_NAMES = {\n", + " 'anaphor_agreement': 'Anaphor Agr.',\n", + " 'argument_structure': 'Arg. Structure',\n", + " 'binding': 'Binding',\n", + " 'control_raising': 'Control/Raising',\n", + " 'determiner_noun_agreement': 'Det.-Noun Agr.',\n", + " 'ellipsis': 'Ellipsis',\n", + " 'filler_gap': 'Filler-Gap',\n", + " 'irregular_forms': 'Irregular Forms',\n", + " 'island_effects': 'Island Effects',\n", + " 'npi_licensing': 'NPI Licensing',\n", + " 'quantifiers': 'Quantifiers',\n", + " 'subject_verb_agreement': 'Subj.-Verb Agr.',\n", + "}\n", + "\n", + "BLIMP_SUPPLEMENTARY_EVAL_NAMES = {\n", + " 'hypernym': 'Hypernym',\n", + " 'qa_congruence_easy': 'QA Congruence (easy)',\n", + " 'qa_congruence_tricky': 'QA Congruence (tricky)',\n", + " 'subject_aux_inversion': 'Subj.-Aux. Inversion',\n", + " 'turn_taking': 'Turn Taking',\n", + "}\n", + "\n", + "SUPERGLUE_EVAL_NAMES = {\n", + " 'cola': 'CoLA',\n", + " 'sst2': 'SST-2',\n", + " 'mrpc': r'MRPC ($F_1$)',\n", + " 'qqp': r'QQP ($F_1$)',\n", + " 'mnli': 'MNLI',\n", + " 'mnli-mm': 'MNLI-mm',\n", + " 'qnli': 'QNLI',\n", + " 'rte': 'RTE',\n", + " 'boolq': 'BoolQ',\n", + " 'multirc': 'MultiRC',\n", + " 'wsc': 'WSC',\n", + "}\n", + "\n", + "MSGS_EVAL_NAMES = {\n", + " 'control_raising_control': 'CR (Control)',\n", + " 'lexical_content_the_control': 'LC (Control)',\n", + " 'main_verb_control': 'MV (Control)',\n", + " 'relative_position_control': 'RP (Control)',\n", + " 'syntactic_category_control': 'SC (Control)',\n", + " 'control_raising_lexical_content_the': r'CR\\_LC',\n", + " 'control_raising_relative_token_position': r'CR\\_RTP',\n", + " 'main_verb_lexical_content_the': r'MV\\_LC',\n", + " 'main_verb_relative_token_position': r'MV\\_RTP',\n", + " 'syntactic_category_lexical_content_the': r'SC\\_LC',\n", + " 'syntactic_category_relative_position': r'SC\\_RP',\n", + "}\n", + "\n", + "MODEL_STYLES_DISTIL = {\n", + " 'Llama-58M': {\n", + " 'label': 'LLaMA (58M)',\n", + " 'sty': {\n", + " 'color': 'tab:cyan',\n", + " 'linestyle': ':',\n", + " },\n", + " },\n", + " 'Llama-360M': {\n", + " 'label': 'LLaMA (360M)',\n", + " 'sty': {\n", + " 'color': 'tab:orange',\n", + " 'linestyle': '--',\n", + " },\n", + " },\n", + " 'GPT2-705M': {\n", + " 'label': 'GPT-2 (705M)',\n", + " 'sty': {\n", + " 'color': 'tab:purple',\n", + " 'linestyle': '-.',\n", + " },\n", + " },\n", + " 'Ensemble-of-teachers': {\n", + " 'label': 'Ensemble of teachers',\n", + " 'sty': {\n", + " 'color': 'tab:brown',\n", + " 'linestyle': (0, (3, 1, 1, 1, 1, 1)),\n", + " },\n", + " },\n", + " 'Baby-Llama-58M-distilled': {\n", + " 'label': 'Baby Llama',\n", + " 'sty': {\n", + " 'color': 'black',\n", + " 'linestyle': '-',\n", + " },\n", + " },\n", + "}\n", + "\n", + "MODEL_STYLES_BASELINE = {\n", + " 'OPT-125M': {\n", + " 'label': 'OPT (125M)',\n", + " 'sty': {\n", + " 'color': 'tab:blue',\n", + " 'linestyle': ':',\n", + " },\n", + " },\n", + " 'RoBERTa-base': {\n", + " 'label': 'RoBERTa (base)',\n", + " 'sty': {\n", + " 'color': 'tab:red',\n", + " 'linestyle': '--',\n", + " },\n", + " },\n", + " 'T5-base': {\n", + " 'label': 'T5 (base)',\n", + " 'sty': {\n", + " 'color': 'tab:green',\n", + " 'linestyle': '-.',\n", + " },\n", + " },\n", + " 'Baby-Llama-58M-distilled': {\n", + " 'label': 'Baby Llama',\n", + " 'sty': {\n", + " 'color': 'black',\n", + " 'linestyle': '-',\n", + " },\n", + " },\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "id": "JQXvlgHKoa27" + }, + "outputs": [], + "source": [ + "def plot_scores(ax, all_scores, eval_names, model_styles, ylim, title, ylab=None, legend=False, legend_kw=dict()):\n", + "\n", + " model_names = list(all_scores.keys())\n", + " x = range(len(eval_names))\n", + "\n", + " best_scores = dict()\n", + " for eval in eval_names.keys():\n", + " best_scores[eval] = float('-inf')\n", + " for model in model_styles.keys():\n", + " best_scores[eval] = max(best_scores[eval], all_scores[model].get(eval, float('-inf')))\n", + "\n", + " sorted_evals = [first for (first, second) in sorted(best_scores.items(), key=lambda x: x[1], reverse=True)]\n", + " sorted_eval_names = [eval_names[eval] for eval in sorted_evals]\n", + "\n", + " for model_name in model_styles.keys():\n", + " scores = [all_scores[model_name].get(test, None) for test in sorted_evals]\n", + " props = model_styles[model_name]\n", + " ax.plot(x, scores, marker='_', label=props['label'],\n", + " markersize=9, markeredgewidth=1.5, linewidth=1, clip_on=False, **props['sty'])\n", + " \n", + " ax.set_xticks(x, sorted_eval_names, rotation=60, ha='right', rotation_mode='anchor')\n", + " ax.set_xlim((-0.5, len(x)-0.5))\n", + " ax.set_ylim(ylim)\n", + " ax.grid(True, which='both', axis='y') # Adds major and minor gridlines\n", + " if ylab is not None:\n", + " ax.set_ylabel(ylab)\n", + " if legend:\n", + " ax.legend(**legend_kw)\n", + " if title is not None:\n", + " ax.set_title(title)\n", + "\n", + "def plot_average_score(ax, all_scores, model_styles, ylim, which_average='zeroshot_average', label='Zero-shot average', title=None):\n", + " \n", + " for (i, model_name) in enumerate(model_styles.keys()):\n", + " props = model_styles[model_name]\n", + " offset = i / (len(all_scores) - 1) - 0.5\n", + " ax.plot([offset*0.5], [all_scores[model_name].get(which_average, None)], marker='_',\n", + " markersize=9, markeredgewidth=1.5, linewidth=1, clip_on=False, **props['sty'])\n", + " \n", + " ax.set_ylim(ylim)\n", + " ax.grid(True, which='both', axis='y') # Adds major and minor gridlines\n", + " ax.set_xlim((-0.5, +0.5))\n", + " ax.set_xticks([0], [label], rotation=60, ha='right', rotation_mode='anchor')\n", + " if title is not None:\n", + " ax.set_title(title)\n", + "\n", + "def plot_zeroshot_scores(all_scores, model_styles, figsize=(8,3), ylim=(None,None), title=None, legend_kw=dict()):\n", + "\n", + " fig, axs = plt.subplots(1, 3, width_ratios=[len(BLIMP_EVAL_NAMES), len(BLIMP_SUPPLEMENTARY_EVAL_NAMES), 1],\n", + " sharey=True, figsize=figsize)\n", + " fig.subplots_adjust(wspace=0.05)\n", + "\n", + " plot_scores(axs[0], all_scores, BLIMP_EVAL_NAMES, model_styles, ylim=ylim, title='BLiMP', legend=True, ylab='Accuracy', legend_kw=legend_kw)\n", + " plot_scores(axs[1], all_scores, BLIMP_SUPPLEMENTARY_EVAL_NAMES, model_styles, ylim=ylim, title='BLiMP Suppl.')\n", + " plot_average_score(axs[2], all_scores, model_styles, ylim=ylim, title='Avg.')\n", + "\n", + " if title is not None:\n", + " fig.suptitle(title, y=1.05)\n", + "\n", + " return fig, axs\n", + "\n", + "def plot_fine_tuning_scores(all_scores, model_styles, figsize=(8,3), ylim=(None,None), title=None, legend_kw=dict()):\n", + "\n", + " fig, axs = plt.subplots(1, 2, width_ratios=[len(SUPERGLUE_EVAL_NAMES), len(MSGS_EVAL_NAMES)],\n", + " sharey=True, figsize=figsize)\n", + " fig.subplots_adjust(wspace=0.05)\n", + "\n", + " plot_scores(axs[0], all_scores, SUPERGLUE_EVAL_NAMES, model_styles, ylim=ylim, title='(Super)GLUE', legend=True, ylab=r'Accuracy (or $F_1$)', legend_kw=legend_kw)\n", + " plot_scores(axs[1], all_scores, MSGS_EVAL_NAMES, model_styles, ylim=ylim, title='MSGS')\n", + "\n", + " if title is not None:\n", + " fig.suptitle(title, y=1.05)\n", + "\n", + " return fig, axs\n", + "\n", + "def plot_SuperGLUE_scores(all_scores, model_styles, figsize=(3.4,3), ylim=(None,None), legend_kw=dict()):\n", + " fig, ax = plt.subplots(figsize=figsize)\n", + " plot_scores(ax, all_scores, SUPERGLUE_EVAL_NAMES, model_styles, ylim=ylim, title='(Super)GLUE', legend=True, ylab=r'Accuracy (or $F_1$)', legend_kw=legend_kw)\n", + " return fig, ax\n", + "\n", + "def plot_MSGS_scores(all_scores, model_styles, figsize=(3.4,3), ylim=(None,None), legend_kw=dict()):\n", + " fig, ax = plt.subplots(figsize=figsize)\n", + " plot_scores(ax, all_scores, MSGS_EVAL_NAMES, model_styles, ylim=ylim, title='MSGS', legend=True, ylab='Accuracy', legend_kw=legend_kw)\n", + " return fig, ax" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Zero-shot" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Comparison with non-distilled and teacher models" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " 2023-08-02T19:06:39.482553\n", + " image/svg+xml\n", + " \n", + " \n", + " Matplotlib v3.7.1, https://matplotlib.org/\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n" + ], + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, axs = plot_zeroshot_scores(ALL_SCORES, MODEL_STYLES_DISTIL, figsize=(7,2.6), ylim=(0.3, 1),\n", + " title=r'Zero-shot performance vs.\\ non-distilled and teacher models', legend_kw={'loc': 'lower left', 'ncols': 2})\n", + "h, l = axs[0].get_legend_handles_labels()\n", + "h.insert(3, plt.plot([], [], color=(0, 0, 0, 0), label=\" \")[0])\n", + "l.insert(3, '')\n", + "axs[0].legend(h, l, **{'loc': 'lower left', 'ncols': 2})" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "fig.savefig('../plots/zeroshot-distil.pdf', bbox_inches='tight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Comparison with baselines" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " 2023-08-02T19:06:39.990176\n", + " image/svg+xml\n", + " \n", + " \n", + " Matplotlib v3.7.1, https://matplotlib.org/\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n" + ], + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, _ = plot_zeroshot_scores(ALL_SCORES, MODEL_STYLES_BASELINE, figsize=(7,3.3), ylim=(0.15, 1),\n", + " title=r'Zero-shot performance vs.\\ baselines', legend_kw={'loc': 'lower center', 'ncols': 2})" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "fig.savefig('../plots/zeroshot-vs-baselines.pdf', bbox_inches='tight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Fine-tuning" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### All scores" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " 2023-08-02T19:06:40.351876\n", + " image/svg+xml\n", + " \n", + " \n", + " Matplotlib v3.7.1, https://matplotlib.org/\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n" + ], + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, _ = plot_fine_tuning_scores(ALL_SCORES, MODEL_STYLES_BASELINE, figsize=(7,3), ylim=(0.4, 1.),\n", + " title=r'Fine-tuning performance vs.\\ baselines')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "fig.savefig('../plots/finetuning-all.pdf', bbox_inches='tight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### (Super)GLUE" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " 2023-08-02T19:06:40.650507\n", + " image/svg+xml\n", + " \n", + " \n", + " Matplotlib v3.7.1, https://matplotlib.org/\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n" + ], + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, _ = plot_SuperGLUE_scores(ALL_SCORES, MODEL_STYLES_BASELINE, ylim=(0.4, 1))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "fig.savefig('../plots/superglue.pdf', bbox_inches='tight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### MSGS" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " 2023-08-02T19:06:40.895636\n", + " image/svg+xml\n", + " \n", + " \n", + " Matplotlib v3.7.1, https://matplotlib.org/\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n" + ], + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, _ = plot_MSGS_scores(ALL_SCORES, MODEL_STYLES_BASELINE, ylim=(0.45, 1), figsize=(3.4,2.75))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "fig.savefig('../plots/msgs.pdf', bbox_inches='tight')" + ] + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pytorch_model.bin b/pytorch_model.bin new file mode 100644 index 0000000..7b456be --- /dev/null +++ b/pytorch_model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e70f468fa96d3315408eb500704ecab718cc4d2afeb44acdd9e4389fec53ab +size 233432542 diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..be28abd --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,6 @@ +{ + "bos_token": "", + "eos_token": "", + "pad_token": "", + "unk_token": "<|endoftext|>" +} diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..f51ccba --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,31862 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "NFKC" + }, + "pre_tokenizer": { + "type": "ByteLevel", + "add_prefix_space": false, + "trim_offsets": true, + "use_regex": true + }, + "post_processor": { + "type": "ByteLevel", + "add_prefix_space": true, + "trim_offsets": true, + "use_regex": true + }, + "decoder": { + "type": "ByteLevel", + "add_prefix_space": true, + "trim_offsets": true, + "use_regex": true + }, + "model": { + "type": "BPE", + "dropout": null, + "unk_token": null, + "continuing_subword_prefix": null, + "end_of_word_suffix": null, + "fuse_unk": false, + "byte_fallback": false, + "vocab": { + "": 0, + "": 1, + "": 2, + "!": 3, + "\"": 4, + "#": 5, + "$": 6, + "%": 7, + "&": 8, + "'": 9, + "(": 10, + ")": 11, + "*": 12, + "+": 13, + ",": 14, + "-": 15, + ".": 16, + "/": 17, + "0": 18, + "1": 19, + "2": 20, + "3": 21, + "4": 22, + "5": 23, + "6": 24, + "7": 25, + "8": 26, + "9": 27, + ":": 28, + ";": 29, + "<": 30, + "=": 31, + ">": 32, + "?": 33, + "@": 34, + "A": 35, + "B": 36, + "C": 37, + "D": 38, + "E": 39, + "F": 40, + "G": 41, + "H": 42, + "I": 43, + "J": 44, + "K": 45, + "L": 46, + "M": 47, + "N": 48, + "O": 49, + "P": 50, + "Q": 51, + "R": 52, + "S": 53, + "T": 54, + "U": 55, + "V": 56, + "W": 57, + "X": 58, + "Y": 59, + "Z": 60, + "[": 61, + "\\": 62, + "]": 63, + "^": 64, + "_": 65, + "`": 66, + "a": 67, + "b": 68, + "c": 69, + "d": 70, + "e": 71, + "f": 72, + "g": 73, + "h": 74, + "i": 75, + "j": 76, + "k": 77, + "l": 78, + "m": 79, + "n": 80, + "o": 81, + "p": 82, + "q": 83, + "r": 84, + "s": 85, + "t": 86, + "u": 87, + "v": 88, + "w": 89, + "x": 90, + "y": 91, + "z": 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, + "IJ": 188, + "ij": 189, + "Ĵ": 190, + "ĵ": 191, + "Ķ": 192, + "ķ": 193, + "ĸ": 194, + "Ĺ": 195, + "ĺ": 196, + "Ļ": 197, + "ļ": 198, + "Ľ": 199, + "ľ": 200, + "Ŀ": 201, + "ŀ": 202, + "Ł": 203, + "ł": 204, + "Ń": 205, + "Ġt": 206, + "he": 207, + "Ġa": 208, + "in": 209, + "Ġthe": 210, + "Ġw": 211, + "re": 212, + "ou": 213, + "Ġs": 214, + "on": 215, + "er": 216, + "ha": 217, + "nd": 218, + "is": 219, + "Ġo": 220, + "Ġb": 221, + "it": 222, + "Ġc": 223, + "Ġm": 224, + "Ġf": 225, + "ĠI": 226, + "ing": 227, + "or": 228, + "Ġd": 229, + "ed": 230, + "an": 231, + "ll": 232, + "en": 233, + "Ġto": 234, + "es": 235, + "Ġp": 236, + "Ġy": 237, + "Ġof": 238, + "Ġin": 239, + "ar": 240, + "Ġand": 241, + "at": 242, + "Ġl": 243, + "Ġyou": 244, + "hat": 245, + "as": 246, + "Ġg": 247, + "om": 248, + "Ġn": 249, + "ĠT": 250, + "ic": 251, + "ow": 252, + "ve": 253, + "le": 254, + "Ġh": 255, + "ot": 256, + "Ġhe": 257, + "et": 258, + "al": 259, + "Ġha": 260, + "'s": 261, + "us": 262, + "ĠA": 263, + "ĠS": 264, + "Ġth": 265, + "Ġit": 266, + "ay": 267, + "Ġthat": 268, + "Ġis": 269, + "Ġbe": 270, + "Ġon": 271, + "ion": 272, + "id": 273, + "Ġe": 274, + "ĠW": 275, + "gh": 276, + "Ġre": 277, + "ut": 278, + "ld": 279, + "ent": 280, + "im": 281, + "Ġwas": 282, + "Ġwe": 283, + "ac": 284, + "ĠH": 285, + "ĠĊ": 286, + "ver": 287, + "am": 288, + "ĠM": 289, + "ĠC": 290, + "Ġfor": 291, + "..": 292, + "ly": 293, + "ri": 294, + "ĠThe": 295, + "st": 296, + "ro": 297, + "ir": 298, + "ad": 299, + "ĠB": 300, + "Ġ-": 301, + "ke": 302, + "se": 303, + "Ġst": 304, + "ght": 305, + "ĠY": 306, + "oo": 307, + "'t": 308, + "out": 309, + "ith": 310, + "Ġme": 311, + "Ġk": 312, + "Ġu": 313, + "all": 314, + "Ġan": 315, + "Ġwith": 316, + "Ġdo": 317, + "Ġas": 318, + "ur": 319, + "ĠN": 320, + "ct": 321, + "ĠD": 322, + "ce": 323, + "Ġwh": 324, + "her": 325, + "ill": 326, + "ter": 327, + "if": 328, + "ch": 329, + "ĠO": 330, + "ĠP": 331, + "Ġse": 332, + "Ġ\"": 333, + "ome": 334, + "Ġare": 335, + "Ġnot": 336, + "Ġ1": 337, + "il": 338, + "Ġhave": 339, + "ĠG": 340, + "Ġthis": 341, + "Ġat": 342, + "ould": 343, + "ĠL": 344, + "Ġgo": 345, + "ra": 346, + "ant": 347, + "Ġli": 348, + "ust": 349, + "ation": 350, + "op": 351, + "Ġkn": 352, + "ĠR": 353, + "ĠF": 354, + "ea": 355, + "ĠHe": 356, + "ge": 357, + "ĠYou": 358, + "un": 359, + "ol": 360, + "Ġhis": 361, + "ĠIt": 362, + "ul": 363, + "Ġne": 364, + "rom": 365, + "Ġj": 366, + "...": 367, + "ore": 368, + "Ġknow": 369, + "ain": 370, + "and": 371, + "Ġwhat": 372, + "ĠE": 373, + "Ġde": 374, + "th": 375, + "ĠJ": 376, + "Ġcan": 377, + "Ġthey": 378, + "pp": 379, + "our": 380, + "Ġso": 381, + "Ġal": 382, + "ell": 383, + "um": 384, + "Ġall": 385, + "est": 386, + "Ġab": 387, + "Ġmy": 388, + "ist": 389, + "ers": 390, + "Ġyour": 391, + "ie": 392, + "Ġby": 393, + "Ġsh": 394, + "art": 395, + "Ġfrom": 396, + "Ġor": 397, + "Ġ2": 398, + "Ġwhe": 399, + "Ġ(": 400, + "ess": 401, + "Ġthere": 402, + "ĠĠ": 403, + "Ġr": 404, + "Ġcon": 405, + "nt": 406, + "Ġone": 407, + "Ġbut": 408, + "os": 409, + "ig": 410, + "Ġup": 411, + "han": 412, + "ally": 413, + "ight": 414, + "Ġcom": 415, + "Ġsu": 416, + "qu": 417, + "Ġher": 418, + "Ġhad": 419, + "one": 420, + "'re": 421, + "em": 422, + "Ġhim": 423, + "ry": 424, + "red": 425, + "el": 426, + "ab": 427, + "Ġout": 428, + "Ġlike": 429, + "ack": 430, + "ate": 431, + "ood": 432, + "Ġwor": 433, + "Ġsa": 434, + "very": 435, + "ook": 436, + "Ġpl": 437, + "ĠAnd": 438, + "res": 439, + "ame": 440, + "Ġus": 441, + "ive": 442, + "Ġshe": 443, + "'m": 444, + "Ġwere": 445, + "ong": 446, + "âĢ": 447, + "ake": 448, + "ink": 449, + "Ġpro": 450, + "Ġex": 451, + "ck": 452, + "od": 453, + "Ġabout": 454, + "Ġget": 455, + "Ġv": 456, + "ast": 457, + "pe": 458, + "ort": 459, + "Ġdon": 460, + "ound": 461, + "ard": 462, + "ind": 463, + "ity": 464, + "ĠK": 465, + "Ġno": 466, + "ich": 467, + "Ġjust": 468, + "right": 469, + "Ġwho": 470, + "Ġ19": 471, + "Ġhere": 472, + "Ġdid": 473, + "ies": 474, + "ĠWhat": 475, + "ĠU": 476, + "ear": 477, + "eah": 478, + "ak": 479, + "Ġthem": 480, + "ber": 481, + "ime": 482, + "Ġwould": 483, + "Ġman": 484, + "ine": 485, + "Ġwant": 486, + "'ll": 487, + "Ġif": 488, + "Ġ20": 489, + "Ġwill": 490, + "Ġsome": 491, + "Ġthink": 492, + "ud": 493, + "ous": 494, + "ĠIn": 495, + "ven": 496, + "ost": 497, + "Ġint": 498, + "ap": 499, + "ep": 500, + "Ġany": 501, + "hing": 502, + "Ġright": 503, + "own": 504, + "Ġwhich": 505, + "ice": 506, + "ĠNo": 507, + "Ġgot": 508, + "ment": 509, + "ide": 510, + "ther": 511, + "Ġhas": 512, + "itt": 513, + "use": 514, + "Ġsee": 515, + "ĠSt": 516, + "ough": 517, + "ĠWe": 518, + "ag": 519, + "Ġwhen": 520, + "ĠTh": 521, + "ĠSo": 522, + "Ġsaid": 523, + "fe": 524, + "ca": 525, + "hi": 526, + "Ġag": 527, + "Ġpe": 528, + "Ġar": 529, + "Ġsay": 530, + "ure": 531, + "Ġtw": 532, + "Ġtime": 533, + "way": 534, + "ia": 535, + "Ġ'": 536, + "ĠBut": 537, + "Ġnow": 538, + "iv": 539, + "Ġbeen": 540, + "Ġsp": 541, + "Ġlook": 542, + "ian": 543, + "Ġtr": 544, + "ace": 545, + "ick": 546, + "ople": 547, + "'ve": 548, + "ci": 549, + "Ġlo": 550, + "Ġtheir": 551, + "Ġle": 552, + "so": 553, + "Ġcl": 554, + "Ġthen": 555, + "Ġmore": 556, + "ĠOh": 557, + "ish": 558, + "reat": 559, + "Ġgoing": 560, + "lf": 561, + "are": 562, + "ĠYeah": 563, + "na": 564, + "Ġother": 565, + "ite": 566, + "Ġpeople": 567, + "Ġcould": 568, + "ree": 569, + "ĠThat": 570, + "ose": 571, + "ary": 572, + "Ġoff": 573, + "Ġover": 574, + "Ġback": 575, + "ue": 576, + "other": 577, + "irst": 578, + "age": 579, + "act": 580, + "Ġqu": 581, + "ne": 582, + "Ġvery": 583, + "Ġro": 584, + "ass": 585, + "ount": 586, + "Ġthing": 587, + "ble": 588, + "Ġgood": 589, + "ond": 590, + "cause": 591, + "Ġaf": 592, + "Ġfe": 593, + "pt": 594, + "Ġtwo": 595, + "per": 596, + "Ġwork": 597, + "Ġtoo": 598, + "Ġhow": 599, + "ĠV": 600, + "ans": 601, + "Ġen": 602, + "ĠThey": 603, + "erm": 604, + "omet": 605, + "Ġco": 606, + "Ġwhere": 607, + "Ġcomp": 608, + "Ġfirst": 609, + "ĠThis": 610, + "Ġinto": 611, + "ated": 612, + "end": 613, + "Ġthan": 614, + "Ġpart": 615, + "ĠWh": 616, + "ions": 617, + "hed": 618, + "Ġun": 619, + "ase": 620, + "ĠShe": 621, + "Ġdown": 622, + "kay": 623, + "ord": 624, + "00": 625, + "orn": 626, + "alk": 627, + "Ġway": 628, + "Ġcome": 629, + "ub": 630, + "ran": 631, + "ade": 632, + "ire": 633, + "Ġalso": 634, + "Ġam": 635, + "ĠWell": 636, + "Ġcall": 637, + "og": 638, + "ittle": 639, + "iz": 640, + "Ġyear": 641, + "mer": 642, + "ought": 643, + "oy": 644, + "Ġwell": 645, + "ĠĠĠĠ": 646, + "ff": 647, + "Ġpr": 648, + "Ġbl": 649, + "Ġgr": 650, + "ater": 651, + "Ġim": 652, + "Ġour": 653, + "Ġbr": 654, + "ved": 655, + "Ġagain": 656, + "pl": 657, + "--": 658, + "nder": 659, + "Ġonly": 660, + "ach": 661, + "Ġad": 662, + "Ġevery": 663, + "ife": 664, + "Ġlittle": 665, + "ng": 666, + "Ġlet": 667, + "cc": 668, + "ĠâĢ": 669, + "Ġsomet": 670, + "urn": 671, + "Ġday": 672, + "Ġmo": 673, + "ru": 674, + "Ġbet": 675, + "har": 676, + "wn": 677, + "Ġplay": 678, + "Ġbecause": 679, + "we": 680, + "ving": 681, + "Ġdis": 682, + "Ġact": 683, + "amp": 684, + "Ġte": 685, + "Ġcont": 686, + "ĠWhe": 687, + "Ġneed": 688, + "ence": 689, + "ress": 690, + "Ġgu": 691, + "orm": 692, + "uch": 693, + "Ġmake": 694, + "Ġtake": 695, + "Ġafter": 696, + "Ġi": 697, + ".\"": 698, + "ty": 699, + "self": 700, + "Ġshould": 701, + "Ġ`": 702, + "ren": 703, + "ory": 704, + "Ġreally": 705, + "fore": 706, + "Ġbu": 707, + "ĠUn": 708, + "able": 709, + "ign": 710, + "cl": 711, + "ew": 712, + "ĠThere": 713, + "Ġpo": 714, + "ark": 715, + "Ġwr": 716, + "int": 717, + "thing": 718, + "Ġthese": 719, + "av": 720, + "Ġput": 721, + "ip": 722, + "iss": 723, + "ical": 724, + "Ġ[": 725, + "Ġpre": 726, + "Ġtell": 727, + "Ġhapp": 728, + "ang": 729, + "ens": 730, + "Ġdoes": 731, + "ict": 732, + "Ġthr": 733, + "ather": 734, + "Ġfl": 735, + "Ġunder": 736, + "Ġ201": 737, + "Ġapp": 738, + "au": 739, + "ult": 740, + "Ġmuch": 741, + "onna": 742, + "Ġper": 743, + "uck": 744, + "Ġsomething": 745, + "Ġmean": 746, + "ft": 747, + "Ġnew": 748, + "ates": 749, + "land": 750, + "ied": 751, + "ĠYes": 752, + "ool": 753, + "oll": 754, + "Ġgonna": 755, + "ance": 756, + "ĠCh": 757, + "ĠHow": 758, + "ile": 759, + "Ġres": 760, + "les": 761, + "ons": 762, + "ect": 763, + "Ġmay": 764, + "Ġmade": 765, + "ob": 766, + "'d": 767, + "Ġser": 768, + "Ġlong": 769, + "Ġcomm": 770, + "Ġsc": 771, + "Ġer": 772, + "Ġeven": 773, + "ations": 774, + "Ġch": 775, + "ody": 776, + "Ġ''": 777, + "ull": 778, + "Ġ``": 779, + "Ġtalk": 780, + "ĠIf": 781, + "Ġbefore": 782, + "ath": 783, + "Ġnever": 784, + "Ġits": 785, + "be": 786, + "Ġ3": 787, + "ited": 788, + "Ġcar": 789, + "Ġsm": 790, + "ady": 791, + "du": 792, + "Ġdidn": 793, + "Ġrem": 794, + "vers": 795, + "ting": 796, + "port": 797, + "ually": 798, + "ily": 799, + "vel": 800, + "ks": 801, + "te": 802, + "ouse": 803, + "ves": 804, + "Ġke": 805, + "ors": 806, + "ĠAn": 807, + "ps": 808, + "Ġhand": 809, + "ious": 810, + "ition": 811, + "Ġrec": 812, + "Ġmany": 813, + "ried": 814, + "ĠMr": 815, + "Ġdif": 816, + "ĠDo": 817, + "Ġgreat": 818, + "old": 819, + "ail": 820, + "Ġyears": 821, + "tain": 822, + "Ġokay": 823, + "aw": 824, + "Ġlife": 825, + "Ġthrough": 826, + "Ġmost": 827, + "ward": 828, + "Ġsha": 829, + "âĢĿ": 830, + "Ġhel": 831, + "ĠâĢľ": 832, + "ĠIs": 833, + "ise": 834, + "ix": 835, + "rent": 836, + "ĠAs": 837, + "Ġchan": 838, + "ful": 839, + "ĠAl": 840, + "Ġ200": 841, + "ces": 842, + "ave": 843, + "Ġthought": 844, + "Ġstill": 845, + "Ġthose": 846, + "igh": 847, + "ction": 848, + "Ġthings": 849, + "Ġsec": 850, + "Ġbel": 851, + "ĠAll": 852, + "day": 853, + "gin": 854, + "Ġold": 855, + "Ġra": 856, + "Ġspe": 857, + "Ġbec": 858, + "oh": 859, + "ince": 860, + "Ġthree": 861, + "Ġwent": 862, + "get": 863, + "ial": 864, + "Ġaway": 865, + "Ġstart": 866, + "Ġask": 867, + "Ġcame": 868, + "Ġyeah": 869, + "hes": 870, + "ever": 871, + "Ġcount": 872, + "Ġfound": 873, + "Ġused": 874, + "Ġdes": 875, + "Ġcalled": 876, + "oss": 877, + "oney": 878, + "Ġlast": 879, + "Ġlove": 880, + "ock": 881, + "Ġmust": 882, + "oth": 883, + "Ġshow": 884, + "ents": 885, + "ĠBe": 886, + "ings": 887, + "Ġfind": 888, + "Ġdoing": 889, + "ys": 890, + "tern": 891, + "Ġhome": 892, + "oc": 893, + "Ġcr": 894, + "Ġoh": 895, + "riend": 896, + "imes": 897, + "Ġend": 898, + "ĠNow": 899, + "\".": 900, + "Ġhelp": 901, + "Ġbeing": 902, + "Ġatt": 903, + "Ġgive": 904, + "xt": 905, + "Ġown": 906, + "gan": 907, + "ĠMar": 908, + "ced": 909, + "lease": 910, + "ened": 911, + "ĠRe": 912, + "Ġsuch": 913, + "Ġmin": 914, + "atch": 915, + "meric": 916, + "Ġwhy": 917, + "ĠWhy": 918, + "oot": 919, + "Ġear": 920, + "Ġlea": 921, + "Ġname": 922, + "als": 923, + "Ġcour": 924, + "Ġfam": 925, + "hild": 926, + "Ġsame": 927, + "form": 928, + "irl": 929, + "ĠWhen": 930, + "Ġnight": 931, + "up": 932, + "Ġkind": 933, + "ways": 934, + "Ġdiffe": 935, + "Ġlot": 936, + "Ġtry": 937, + "ph": 938, + "Ġtra": 939, + "Ġwon": 940, + "ĠBr": 941, + "chool": 942, + "Ġbig": 943, + "ait": 944, + "ĠDon": 945, + "my": 946, + "ĠOn": 947, + "ident": 948, + "Ġrel": 949, + "Ġcare": 950, + "ĠAmeric": 951, + "ye": 952, + "Ġop": 953, + "ning": 954, + "ont": 955, + "aking": 956, + "Ġ18": 957, + "rest": 958, + "Ġsl": 959, + "ham": 960, + "gg": 961, + "Ġwom": 962, + "Ġworld": 963, + "Ġchild": 964, + "Ġsupp": 965, + "outh": 966, + "body": 967, + "Ġmight": 968, + "Ġ4": 969, + "Ġfeel": 970, + "Ġplace": 971, + "ild": 972, + "ĠDe": 973, + "Ġpol": 974, + "Ġhead": 975, + "erson": 976, + "Ġnum": 977, + "ĠAr": 978, + "man": 979, + "ased": 980, + "ĠLet": 981, + "der": 982, + "Ġkill": 983, + "ĠSe": 984, + "Ġind": 985, + "Ġmar": 986, + "Ġturn": 987, + "ember": 988, + "ower": 989, + "Ġcons": 990, + "ational": 991, + "Ġuse": 992, + "Ġfriend": 993, + "ating": 994, + "ute": 995, + "The": 996, + "lic": 997, + "Ġaround": 998, + "any": 999, + "uring": 1000, + ").": 1001, + "ĠCome": 1002, + "Ġche": 1003, + "ĠAt": 1004, + "air": 1005, + "Ġanother": 1006, + "Ġreg": 1007, + "Ġhar": 1008, + "Ġfin": 1009, + "\",": 1010, + "Ġph": 1011, + "Ġset": 1012, + "Ġacc": 1013, + "ĠMy": 1014, + "Ġalways": 1015, + "Ġac": 1016, + "ts": 1017, + "ĠOkay": 1018, + "pect": 1019, + "mb": 1020, + "),": 1021, + "Ġsure": 1022, + "ros": 1023, + "vent": 1024, + "ween": 1025, + "âĻ": 1026, + "Ġpres": 1027, + "ah": 1028, + "Ġhouse": 1029, + "Ġleft": 1030, + "li": 1031, + "Ġ5": 1032, + "ĠThan": 1033, + "Ġsy": 1034, + "Ġmom": 1035, + "Ġform": 1036, + "ular": 1037, + "ĠFor": 1038, + "Ġmoney": 1039, + "Ġbetter": 1040, + "clud": 1041, + "ics": 1042, + "Ġanything": 1043, + "ĠHey": 1044, + "aught": 1045, + "ib": 1046, + "gr": 1047, + "ĠUnited": 1048, + "ener": 1049, + "é": 1050, + "ĠThen": 1051, + "Ġkeep": 1052, + "Ġfour": 1053, + "Ġsur": 1054, + "led": 1055, + "orry": 1056, + "Ġbelie": 1057, + "ible": 1058, + "Ġreal": 1059, + "ott": 1060, + "ĠNot": 1061, + "ollow": 1062, + "ness": 1063, + "mber": 1064, + "az": 1065, + "Ġel": 1066, + "Ġdifferent": 1067, + "Ġele": 1068, + "Ġbo": 1069, + "Ġbit": 1070, + "Ġtold": 1071, + "Ġboy": 1072, + "ĠâĻ": 1073, + "Ġdone": 1074, + "IN": 1075, + "ars": 1076, + "und": 1077, + "ĠFran": 1078, + "Ġmon": 1079, + "ins": 1080, + "Ġbetween": 1081, + "ters": 1082, + "ug": 1083, + "fect": 1084, + "Ġword": 1085, + "ĠNew": 1086, + "Ġrun": 1087, + "ĠGod": 1088, + "Ġ|": 1089, + "ird": 1090, + "ple": 1091, + "ual": 1092, + "Ġgirl": 1093, + ",\"": 1094, + "cial": 1095, + "Ġent": 1096, + "ĠAf": 1097, + "Ġdr": 1098, + "Ġcity": 1099, + "Ġsecond": 1100, + "Ġuh": 1101, + "io": 1102, + "Ġerm": 1103, + "Ġknown": 1104, + "Ġwhile": 1105, + "Ġpoint": 1106, + "Ġgl": 1107, + "Ġever": 1108, + "Ġschool": 1109, + "Ġperson": 1110, + "ĠCan": 1111, + "ale": 1112, + "ĠâĻª": 1113, + "Ġins": 1114, + "ished": 1115, + "ason": 1116, + "Ġret": 1117, + "orth": 1118, + "Ġyes": 1119, + "Ġmat": 1120, + "ĠMay": 1121, + "Ġtook": 1122, + "ric": 1123, + "ject": 1124, + "Ġsw": 1125, + "ames": 1126, + "Ġ199": 1127, + "Ġsub": 1128, + "Ġunt": 1129, + "Ġdec": 1130, + "Ġcle": 1131, + "Ġinv": 1132, + "Ġchar": 1133, + "ĠStates": 1134, + "akes": 1135, + "Ġmen": 1136, + "Ġinclud": 1137, + "ove": 1138, + "Ġmet": 1139, + "ner": 1140, + "Ġstud": 1141, + "Ġwar": 1142, + "Ġwater": 1143, + "âĢĻ": 1144, + "Ġbook": 1145, + "rew": 1146, + "row": 1147, + "ĠEng": 1148, + "Ġdist": 1149, + "aj": 1150, + "ities": 1151, + "ĠSh": 1152, + "Ġstop": 1153, + "Ġinst": 1154, + "cept": 1155, + "Ġob": 1156, + "Ġmus": 1157, + "ative": 1158, + "Ġfollow": 1159, + "olog": 1160, + "ork": 1161, + "Ġnext": 1162, + "Ġbus": 1163, + "ĠGo": 1164, + "ĠJust": 1165, + "Ġcourse": 1166, + "ohn": 1167, + "cess": 1168, + "Ġass": 1169, + "Ġfar": 1170, + "hip": 1171, + "Ġboth": 1172, + "ret": 1173, + "Ġseem": 1174, + "Ġnothing": 1175, + "oun": 1176, + "Ġ--": 1177, + "its": 1178, + "uh": 1179, + "ged": 1180, + "Ġpass": 1181, + "ope": 1182, + "ĠWho": 1183, + "Ġcent": 1184, + "eak": 1185, + "ĠInd": 1186, + "ivers": 1187, + "ctor": 1188, + "cy": 1189, + "ĠWhere": 1190, + "Ġcap": 1191, + "Ġbest": 1192, + "ton": 1193, + "Ġsaw": 1194, + "Ġuntil": 1195, + "Ġprodu": 1196, + "vie": 1197, + "Ġwee": 1198, + "Ġeach": 1199, + "une": 1200, + "ger": 1201, + "Ġsing": 1202, + "ross": 1203, + "ER": 1204, + "ling": 1205, + "ĠCom": 1206, + "Ġsmall": 1207, + "Ġpop": 1208, + "Ġactually": 1209, + "Ġnumber": 1210, + "ision": 1211, + "ures": 1212, + "vern": 1213, + "ĠAre": 1214, + "Ġcha": 1215, + "Ġlater": 1216, + "Ġfather": 1217, + "ax": 1218, + "stand": 1219, + "Ġbre": 1220, + "Ġlar": 1221, + "Ġlight": 1222, + "ok": 1223, + "Ġdoesn": 1224, + "Ġem": 1225, + "here": 1226, + "Ġlist": 1227, + "ĠJohn": 1228, + "ash": 1229, + "osed": 1230, + "Ġmother": 1231, + "ote": 1232, + "Ġfun": 1233, + "ĠQ": 1234, + "Ġadd": 1235, + "cer": 1236, + "ĠZ": 1237, + "ms": 1238, + "ream": 1239, + "Ġhigh": 1240, + "ny": 1241, + "Ġonce": 1242, + "ired": 1243, + "Ġ6": 1244, + "ĠSp": 1245, + "ier": 1246, + "Ġwait": 1247, + "Ġwanted": 1248, + "ĠAmerican": 1249, + "Ġinc": 1250, + "iet": 1251, + "Ġca": 1252, + "Ġelse": 1253, + "Ġagainst": 1254, + "Ġgra": 1255, + "ution": 1256, + "Ġ_": 1257, + "less": 1258, + "uff": 1259, + "Ġfamily": 1260, + "ĠLook": 1261, + "uth": 1262, + "Ġroom": 1263, + "Ġimp": 1264, + "Ġenough": 1265, + "ublic": 1266, + "Ġproble": 1267, + "rist": 1268, + "Ġloc": 1269, + "Ġseen": 1270, + "ered": 1271, + "the": 1272, + "ific": 1273, + "ĠOne": 1274, + "Ġbecame": 1275, + "ĠCl": 1276, + "Ġfact": 1277, + "Ġstand": 1278, + "gether": 1279, + "ĠLe": 1280, + "Ġtogether": 1281, + "ĠGood": 1282, + "ung": 1283, + "Ġinte": 1284, + "rib": 1285, + "Ġfew": 1286, + "me": 1287, + "ably": 1288, + "ten": 1289, + "ned": 1290, + "Ġeverything": 1291, + "Ġsays": 1292, + "Ġhard": 1293, + "ines": 1294, + "Ġyoung": 1295, + "ined": 1296, + "Ġwithout": 1297, + "Ġopen": 1298, + "ĠHis": 1299, + "Ġsim": 1300, + "Ġsince": 1301, + "19": 1302, + "Ġrest": 1303, + "Ġquite": 1304, + "ister": 1305, + "Ġinter": 1306, + "Ġfr": 1307, + "Ġside": 1308, + "Ġstr": 1309, + "Ġimport": 1310, + "Ġstay": 1311, + "yes": 1312, + "iness": 1313, + "ury": 1314, + "Ġsorry": 1315, + "ism": 1316, + "ries": 1317, + "Ġmind": 1318, + "part": 1319, + "Ġread": 1320, + "Ġplan": 1321, + "ĠMe": 1322, + "dd": 1323, + "Ġmeet": 1324, + "Ġdied": 1325, + "Ġsign": 1326, + "Ġ198": 1327, + "Ġhear": 1328, + "ĠThank": 1329, + "Ġbad": 1330, + "Ġcoll": 1331, + "ene": 1332, + "Ġlooking": 1333, + "Ġid": 1334, + "Ġrep": 1335, + "Ġdra": 1336, + "Ġsix": 1337, + "ĠPro": 1338, + "Ġlive": 1339, + "Ġcoming": 1340, + "orning": 1341, + "Ġduring": 1342, + "ised": 1343, + "Ġfive": 1344, + "Ġunderstand": 1345, + "Ġev": 1346, + "ike": 1347, + "ral": 1348, + "ted": 1349, + "ense": 1350, + "Ġleave": 1351, + "uc": 1352, + "ertain": 1353, + "Ġpret": 1354, + "Ġhum": 1355, + "Ġsit": 1356, + "Ġthough": 1357, + "ĠRight": 1358, + "Ġdisc": 1359, + "Ġbelieve": 1360, + "Ġhappened": 1361, + "ĠTH": 1362, + "Ġdire": 1363, + "ina": 1364, + "Ġquest": 1365, + "Ġmain": 1366, + "Ġexp": 1367, + "Ġdri": 1368, + "Ġwhole": 1369, + "Ġtoday": 1370, + "son": 1371, + "ĠOr": 1372, + "ĠPr": 1373, + "Ġisn": 1374, + "att": 1375, + "Ġland": 1376, + "Ġext": 1377, + "Ġchildren": 1378, + "ĠSc": 1379, + "Ġteam": 1380, + "ank": 1381, + "ĠDid": 1382, + "Ġplease": 1383, + "Ġkid": 1384, + "ither": 1385, + "Ġdays": 1386, + "sel": 1387, + "ĠUh": 1388, + "Ġ8": 1389, + "Ġmove": 1390, + "Ġtown": 1391, + "ĠMm": 1392, + "Ġson": 1393, + "Ġgetting": 1394, + "Ġtimes": 1395, + "ital": 1396, + "Ġface": 1397, + "stem": 1398, + "Ġtrans": 1399, + "Ġinterest": 1400, + "Ġmed": 1401, + "ING": 1402, + "Ġnice": 1403, + "Ġsle": 1404, + "anna": 1405, + "Ġasked": 1406, + "Ġsir": 1407, + "Ġbro": 1408, + "Ġheard": 1409, + "Ġ7": 1410, + "Ġposs": 1411, + "Ġhimself": 1412, + "ĠKing": 1413, + "Ġmusic": 1414, + "Ġed": 1415, + "aster": 1416, + "ists": 1417, + "ield": 1418, + "Ġbuild": 1419, + "000": 1420, + "Ġart": 1421, + "Ġsort": 1422, + "ets": 1423, + "iversity": 1424, + "Ġwoman": 1425, + "ball": 1426, + "Ġgener": 1427, + "ĠCar": 1428, + "cted": 1429, + "Ġnear": 1430, + "Ġcountry": 1431, + "Ġjob": 1432, + "aid": 1433, + "ĠEr": 1434, + "oup": 1435, + "ready": 1436, + "Ġeyes": 1437, + "ants": 1438, + "Ġ197": 1439, + "Ġwalk": 1440, + "Ġ10": 1441, + "Ġcol": 1442, + "ments": 1443, + "Ġsk": 1444, + "Ġeas": 1445, + "ized": 1446, + "Ġmorning": 1447, + "Ġgave": 1448, + "Ġyet": 1449, + "Ġ...": 1450, + "Ġdeath": 1451, + "ĠTo": 1452, + "ows": 1453, + "lish": 1454, + "Ġmil": 1455, + "Ġhaving": 1456, + "Ġimportant": 1457, + "che": 1458, + "Ġeat": 1459, + "Ġans": 1460, + "ĠBl": 1461, + "Ġhold": 1462, + "Ġlead": 1463, + "Ġpower": 1464, + "Ġheart": 1465, + "Ġfil": 1466, + "ĠAb": 1467, + "Ġhalf": 1468, + "Ġalready": 1469, + "uss": 1470, + "Ġdead": 1471, + "ery": 1472, + "ĠAfter": 1473, + "ane": 1474, + "Ġstate": 1475, + "Ġhour": 1476, + "ize": 1477, + "Ġremember": 1478, + "Ġ9": 1479, + "Ġknew": 1480, + "ĠGerm": 1481, + "ta": 1482, + "?\"": 1483, + "Ġupon": 1484, + "Ġwrong": 1485, + "ĠYour": 1486, + "Ġshall": 1487, + "ives": 1488, + "aughter": 1489, + "ĠSome": 1490, + "Ġgame": 1491, + "Ġcase": 1492, + "ĠChrist": 1493, + "Ġref": 1494, + "Ġsaying": 1495, + "Ġair": 1496, + "ĠGet": 1497, + "Ġpay": 1498, + "Ġprob": 1499, + "Ġmod": 1500, + "aut": 1501, + "AN": 1502, + "ues": 1503, + "wards": 1504, + "gt": 1505, + "pped": 1506, + "Ġcur": 1507, + "velop": 1508, + "ison": 1509, + "ĠCon": 1510, + "ying": 1511, + "Ġfore": 1512, + ".âĢĿ": 1513, + "Ġtalking": 1514, + "ats": 1515, + "Ġmeans": 1516, + "Ġbegan": 1517, + "dy": 1518, + "Ġsoon": 1519, + "most": 1520, + "Ġguy": 1521, + "ober": 1522, + "Ġbab": 1523, + "Ġborn": 1524, + "ĠEx": 1525, + "Ġsystem": 1526, + "ched": 1527, + "ee": 1528, + "Ġmill": 1529, + "Ġreturn": 1530, + "Ġsong": 1531, + "Ġfull": 1532, + "ĠHere": 1533, + "Ġconf": 1534, + "Ġpri": 1535, + "Ġtrying": 1536, + "ically": 1537, + "Ġmonth": 1538, + "Ġstarted": 1539, + "Ġgi": 1540, + "Ġ*": 1541, + "Ġhist": 1542, + "ony": 1543, + "Ġrecord": 1544, + "side": 1545, + "Ġoffic": 1546, + "Ġlaw": 1547, + "ural": 1548, + "20": 1549, + "Ġmiss": 1550, + "Ġgovern": 1551, + "Ġalong": 1552, + "reen": 1553, + "Ġbring": 1554, + "ided": 1555, + "Ġdoor": 1556, + "ĠĠĠĠĠĠĠĠ": 1557, + "by": 1558, + "Ġequ": 1559, + "Ġoften": 1560, + "Ġround": 1561, + "Ġcertain": 1562, + "leased": 1563, + "Ġhur": 1564, + "Ġexpl": 1565, + "ron": 1566, + "med": 1567, + "ages": 1568, + "Ġcomple": 1569, + "Ġwind": 1570, + "Ġ15": 1571, + "Ġidea": 1572, + "Ġprom": 1573, + "Ġgone": 1574, + "Ġwife": 1575, + "Ġbrother": 1576, + "llo": 1577, + "ature": 1578, + "Ġfight": 1579, + "ility": 1580, + "ai": 1581, + "ering": 1582, + "Ġ196": 1583, + "ĠâĢĵ": 1584, + "Ġwanna": 1585, + "sh": 1586, + "rop": 1587, + "Ġjo": 1588, + "rict": 1589, + "Ġchange": 1590, + "Ġprov": 1591, + "Ġhands": 1592, + "Ġwin": 1593, + "ush": 1594, + "ern": 1595, + "Ġfell": 1596, + "Ġhappen": 1597, + "ately": 1598, + "Ġserv": 1599, + "ĠWill": 1600, + "Ġfoot": 1601, + "Ġsent": 1602, + "Ġtri": 1603, + "Ġline": 1604, + "ĠCount": 1605, + "Ġbas": 1606, + "Ġlear": 1607, + "Ġsound": 1608, + "Ġpretty": 1609, + "ges": 1610, + "amed": 1611, + "Ġplayed": 1612, + "Ġcontin": 1613, + "ured": 1614, + "Ġ17": 1615, + "Ġless": 1616, + "Ġspeak": 1617, + "Ġty": 1618, + "ĠBecause": 1619, + "br": 1620, + "Ġmatter": 1621, + "ional": 1622, + "ney": 1623, + "Ġorder": 1624, + "Ġstory": 1625, + "Ġfuck": 1626, + "Ġgoes": 1627, + "aken": 1628, + "Ġwatch": 1629, + "ped": 1630, + "Ġdet": 1631, + "Ġcreat": 1632, + "Ġpar": 1633, + "ides": 1634, + "Ġable": 1635, + "Ġmoment": 1636, + "cle": 1637, + "Ġinf": 1638, + "ov": 1639, + "eth": 1640, + "Ġdad": 1641, + "idd": 1642, + "Ġri": 1643, + "Ġbed": 1644, + "iter": 1645, + "oon": 1646, + "Ġes": 1647, + "Ġ.": 1648, + "Ġdevelop": 1649, + "ĠTr": 1650, + "Ġtop": 1651, + "Ġsleep": 1652, + "mor": 1653, + "Ġproblem": 1654, + "oice": 1655, + "Ġwomen": 1656, + "ĠPl": 1657, + "rigin": 1658, + "OU": 1659, + "Ġdef": 1660, + "ik": 1661, + "rence": 1662, + "Ġarea": 1663, + "ĠGe": 1664, + "pend": 1665, + "where": 1666, + "gs": 1667, + "Ġclass": 1668, + "ole": 1669, + "Ġsomeone": 1670, + "anu": 1671, + "Ġlost": 1672, + "ared": 1673, + "Ġfall": 1674, + "ices": 1675, + "Ġwasn": 1676, + "ĠEnglish": 1677, + "Ġste": 1678, + "iam": 1679, + "Ġpartic": 1680, + "Ġmaking": 1681, + "Ġpat": 1682, + "apan": 1683, + "Ġbusiness": 1684, + "Ġpain": 1685, + "Ġlarge": 1686, + "Ġsn": 1687, + "ilt": 1688, + "Ġprobably": 1689, + "ches": 1690, + "uro": 1691, + "Ġfriends": 1692, + "Ġshort": 1693, + "Ġpolit": 1694, + "de": 1695, + "Ġterm": 1696, + "Ġpresent": 1697, + "ler": 1698, + "Ġcomes": 1699, + "Ġhat": 1700, + "Ġyourself": 1701, + "âĢĵ": 1702, + "Ġexper": 1703, + "Ġlooked": 1704, + "Ġsqu": 1705, + "ĠTe": 1706, + "Ġbeaut": 1707, + "app": 1708, + "Ġpur": 1709, + "ĠBrit": 1710, + "!\"": 1711, + "ract": 1712, + "aces": 1713, + "Ġdrink": 1714, + "arch": 1715, + "Ġtrue": 1716, + "ians": 1717, + "Ġguys": 1718, + "Ġmark": 1719, + "Ġ#": 1720, + "ĠAh": 1721, + "ĠEvery": 1722, + "Ġstre": 1723, + "Ġwond": 1724, + "ement": 1725, + "ample": 1726, + "to": 1727, + "ator": 1728, + "aper": 1729, + "Ġcontro": 1730, + "wer": 1731, + "Ġbecome": 1732, + "Ġblood": 1733, + "Ġready": 1734, + "ĠFl": 1735, + "ĠJapan": 1736, + "ention": 1737, + "Ġalmost": 1738, + "Ġprot": 1739, + "ama": 1740, + "Ġbody": 1741, + "Ġcor": 1742, + "Ġworking": 1743, + "ulation": 1744, + "ĠAd": 1745, + "Ġprof": 1746, + "Ġweek": 1747, + "ey": 1748, + "Ġship": 1749, + "Ġmaybe": 1750, + "iver": 1751, + "ON": 1752, + "erv": 1753, + "Ġfine": 1754, + "Ġsol": 1755, + "Ġanim": 1756, + "lt": 1757, + "Ġdiv": 1758, + "ĠEm": 1759, + "angu": 1760, + "Ġago": 1761, + "gy": 1762, + "ĠHer": 1763, + "ĠPet": 1764, + "ĠPres": 1765, + "Ġpie": 1766, + "ĠĠĠ": 1767, + "rand": 1768, + "Ġwouldn": 1769, + "Ġaw": 1770, + "ĠWar": 1771, + "Ġbaby": 1772, + "Ġcommun": 1773, + "ient": 1774, + "ĠUniversity": 1775, + "Ġage": 1776, + "ley": 1777, + "ĠMan": 1778, + "Ġhope": 1779, + "Ġorigin": 1780, + "ĠThese": 1781, + "Ġcut": 1782, + "Ġpick": 1783, + "gram": 1784, + "ĠFrance": 1785, + "used": 1786, + "Ġocc": 1787, + "Ġfree": 1788, + "Ġpos": 1789, + "Ġswe": 1790, + "arent": 1791, + "Ġearly": 1792, + "Ġgiven": 1793, + "ze": 1794, + "ĠSha": 1795, + "Ġvis": 1796, + "Ġ194": 1797, + "ĠMrs": 1798, + "Ġdeal": 1799, + "Ġgroup": 1800, + "ĠPlease": 1801, + "Ġconst": 1802, + "ode": 1803, + "Ġcou": 1804, + "hm": 1805, + "ouble": 1806, + "enty": 1807, + "Ġadv": 1808, + "Ġ16": 1809, + "AT": 1810, + "Ġhor": 1811, + "Ġhaven": 1812, + "ĠHar": 1813, + "Ġmovie": 1814, + "Ġopp": 1815, + "anuary": 1816, + "Ġhon": 1817, + "Ġbeh": 1818, + "Ġter": 1819, + "Ġ12": 1820, + "urch": 1821, + "Ġspec": 1822, + "Ġquestion": 1823, + "ajor": 1824, + "Ġmyself": 1825, + "Ġvar": 1826, + "ards": 1827, + "pr": 1828, + "uly": 1829, + "Ġlate": 1830, + "Ġclose": 1831, + "Ġbrought": 1832, + "eb": 1833, + "Ġbegin": 1834, + "ĠWor": 1835, + "Ġclear": 1836, + "Ġbreak": 1837, + "co": 1838, + "ept": 1839, + "ety": 1840, + "ief": 1841, + "Ġoper": 1842, + "Ġreleased": 1843, + "umb": 1844, + "Ġfire": 1845, + "Ġnews": 1846, + "Ġblack": 1847, + "Ġrece": 1848, + "Ġleast": 1849, + "Ġstuff": 1850, + "ĠWith": 1851, + "ccess": 1852, + "ĠSouth": 1853, + "ĠAm": 1854, + "ĠCal": 1855, + "Ġkilled": 1856, + "Ġthank": 1857, + "ster": 1858, + "Ġfood": 1859, + "oke": 1860, + "Ġeight": 1861, + "Ġdaughter": 1862, + "Ġcra": 1863, + "ĠPe": 1864, + "Ġwords": 1865, + "Ġtaken": 1866, + "Ġking": 1867, + "ĠJanuary": 1868, + "haps": 1869, + "AR": 1870, + "iful": 1871, + "con": 1872, + "ĠCounty": 1873, + "Ġten": 1874, + "Ġreason": 1875, + "not": 1876, + "oor": 1877, + "Ġstation": 1878, + "Ġpublic": 1879, + "Ġpast": 1880, + "utes": 1881, + "elt": 1882, + "ino": 1883, + "selves": 1884, + "Ġsever": 1885, + "ived": 1886, + "Ġgovernment": 1887, + "Ġmillion": 1888, + "ĠTw": 1889, + "Ġran": 1890, + "Ġguess": 1891, + "Ġbehind": 1892, + "Ġexample": 1893, + "Ġ&": 1894, + "sy": 1895, + "Ġball": 1896, + "Ġ195": 1897, + "Ġhappy": 1898, + "Ġlangu": 1899, + "oman": 1900, + "ump": 1901, + "iting": 1902, + "Ġcompany": 1903, + "Ġfront": 1904, + "ĠComm": 1905, + "ĠYork": 1906, + "Ġorgan": 1907, + "alth": 1908, + "ology": 1909, + "born": 1910, + "ĠGr": 1911, + "ining": 1912, + "Ġrather": 1913, + "Ġwhite": 1914, + "els": 1915, + "cent": 1916, + "ĠChar": 1917, + "Ġseveral": 1918, + "ĠAust": 1919, + "Ġmarried": 1920, + "ma": 1921, + "Ġallow": 1922, + "lev": 1923, + "ese": 1924, + "ĠPh": 1925, + "Ġcharac": 1926, + "ude": 1927, + "OR": 1928, + "Ġtaking": 1929, + "Ġmakes": 1930, + "vious": 1931, + "Ġexc": 1932, + "of": 1933, + "ality": 1934, + "Ġinde": 1935, + "fic": 1936, + "Ġtre": 1937, + "ert": 1938, + "Ġsold": 1939, + "oud": 1940, + "Ġnorth": 1941, + "ĠEuro": 1942, + "gue": 1943, + "ones": 1944, + "ĠNe": 1945, + "Ġpict": 1946, + "Ġval": 1947, + "iqu": 1948, + "Ġeither": 1949, + "osp": 1950, + "aced": 1951, + "eng": 1952, + "Ġalone": 1953, + "ĠMiss": 1954, + "Ġeng": 1955, + "Ġbar": 1956, + "undred": 1957, + "Ġhuman": 1958, + "Ġest": 1959, + "ains": 1960, + "Ġinform": 1961, + "Ġve": 1962, + "bum": 1963, + "ĠTHE": 1964, + ",âĢĿ": 1965, + "Ġhot": 1966, + "Ġsat": 1967, + "Ġturned": 1968, + "Ġdesign": 1969, + "ring": 1970, + "ience": 1971, + "Ġred": 1972, + "Ġreport": 1973, + "ox": 1974, + "Ġprogram": 1975, + "itten": 1976, + "Ġstrong": 1977, + "rench": 1978, + "ĠHello": 1979, + "ĠWorld": 1980, + "head": 1981, + "enn": 1982, + "Ġattack": 1983, + "ium": 1984, + "ament": 1985, + "Ġseries": 1986, + "Ġ0": 1987, + "cient": 1988, + "ming": 1989, + "You": 1990, + "ency": 1991, + "Ġsuccess": 1992, + "Ġquick": 1993, + "ĠX": 1994, + "Ġliving": 1995, + "ĠPar": 1996, + "ully": 1997, + "atic": 1998, + "ĠAp": 1999, + "Ġann": 2000, + "Ġresp": 2001, + "Ġthinking": 2002, + "Ġsupport": 2003, + "la": 2004, + "Ġparty": 2005, + "Ġadm": 2006, + "Ġdem": 2007, + "ĠGu": 2008, + "hy": 2009, + "ĠMarch": 2010, + "ĠEurope": 2011, + "Ġcommon": 2012, + "Ġ$": 2013, + "ently": 2014, + "Ġothers": 2015, + "ford": 2016, + "Ġdream": 2017, + "ril": 2018, + "ĠOf": 2019, + "Ġlay": 2020, + "Ġfig": 2021, + "ĠCap": 2022, + "ĠJo": 2023, + "Ġhundred": 2024, + "Ġlooks": 2025, + "Ġcouldn": 2026, + "oub": 2027, + "band": 2028, + "ĠNorth": 2029, + "ĠDr": 2030, + "hamp": 2031, + "ĠHave": 2032, + "ES": 2033, + "Ġsometimes": 2034, + "ead": 2035, + "ained": 2036, + "ĠAny": 2037, + "Ġgrow": 2038, + "ĠBritish": 2039, + "Ġsum": 2040, + "men": 2041, + "Ġlisten": 2042, + "ogra": 2043, + "idge": 2044, + "Ġtou": 2045, + "Ġstru": 2046, + "Ġalbum": 2047, + "actly": 2048, + "ĠMic": 2049, + "ĠGeor": 2050, + "hern": 2051, + "unk": 2052, + "cha": 2053, + "ots": 2054, + "Ġwithin": 2055, + "Ġhistory": 2056, + "Ġnamed": 2057, + "Ġtem": 2058, + "hen": 2059, + "Ġband": 2060, + "Ġcheck": 2061, + "com": 2062, + "ffect": 2063, + "ĠBar": 2064, + "itting": 2065, + "ior": 2066, + "Ġleg": 2067, + "Ġheld": 2068, + "eptember": 2069, + "oint": 2070, + "range": 2071, + "Ġmess": 2072, + "Ġbeautiful": 2073, + "bit": 2074, + "Ġce": 2075, + "Ġcost": 2076, + "Ġexpect": 2077, + "par": 2078, + "Ġfilm": 2079, + "Ġ11": 2080, + "aim": 2081, + "Ġwants": 2082, + "Ġz": 2083, + "Ġthird": 2084, + "ĠWas": 2085, + "ĠCha": 2086, + "Ġstra": 2087, + "Ġvill": 2088, + "Ġresult": 2089, + "Ġsouth": 2090, + "Ġminute": 2091, + "ĠMin": 2092, + "Ġhit": 2093, + "Ġbuilt": 2094, + "Ġusually": 2095, + "iving": 2096, + "rie": 2097, + "Ġroad": 2098, + "lished": 2099, + "augh": 2100, + "ĠDan": 2101, + "Ġpoor": 2102, + "Ġperform": 2103, + "Ġinside": 2104, + "Ġappro": 2105, + "ĠJack": 2106, + "Ġspecial": 2107, + "Ġrock": 2108, + "ĠPresident": 2109, + "Ġrequ": 2110, + "ĠFrench": 2111, + "Ġbra": 2112, + "Ġcir": 2113, + "ĠSeptember": 2114, + "Ġsingle": 2115, + "ald": 2116, + "Ġill": 2117, + "Ġgold": 2118, + "Ġacross": 2119, + "Ġav": 2120, + "estern": 2121, + "ugust": 2122, + "ider": 2123, + "Ġcond": 2124, + "ĠJuly": 2125, + "fully": 2126, + "ĠTom": 2127, + "Ġmemb": 2128, + "Ġplaying": 2129, + "ondon": 2130, + "Ġdear": 2131, + "Ġpossible": 2132, + "Ġmonths": 2133, + "ĠEd": 2134, + "Ġminutes": 2135, + "amb": 2136, + "Ġoutside": 2137, + "ination": 2138, + "ĠPer": 2139, + "unt": 2140, + "Ġseason": 2141, + "Ġrepl": 2142, + "Ġteac": 2143, + "Ġstat": 2144, + "ĠCol": 2145, + "zy": 2146, + "Ġgotta": 2147, + "Ġstar": 2148, + "Ġbuy": 2149, + "ege": 2150, + "Ġeffect": 2151, + "Ġusing": 2152, + "Ġappear": 2153, + "Ġsil": 2154, + "Ġincluding": 2155, + "ĠBy": 2156, + "Ġwonder": 2157, + "ousand": 2158, + "ĠMaybe": 2159, + "Ġ193": 2160, + "EN": 2161, + "Ġtot": 2162, + "Ġsweet": 2163, + "Ġamong": 2164, + "ffic": 2165, + "Ġbuilding": 2166, + "Ġmag": 2167, + "Ġsend": 2168, + "ounds": 2169, + "Ġelect": 2170, + "chn": 2171, + "ĠSu": 2172, + "Ġconcer": 2173, + "morrow": 2174, + "Ġdepart": 2175, + "Ġtried": 2176, + "Ġcop": 2177, + "ued": 2178, + "Ġlocal": 2179, + "Ġdark": 2180, + "iew": 2181, + "Ġhuh": 2182, + "ĠLike": 2183, + "ĠRep": 2184, + "Ġdest": 2185, + "Ġhair": 2186, + "bs": 2187, + "usband": 2188, + "Ġcamp": 2189, + "ĠLondon": 2190, + "ls": 2191, + "ctober": 2192, + "ĠJune": 2193, + "ached": 2194, + "ĠNational": 2195, + "Ġ13": 2196, + "ĠLea": 2197, + "Ġabs": 2198, + "ĠEngland": 2199, + "dom": 2200, + "ales": 2201, + "Ġlived": 2202, + "ĠAugust": 2203, + "irth": 2204, + "Ġmembers": 2205, + "Ġmur": 2206, + "Ġprofess": 2207, + "ĠPa": 2208, + "itch": 2209, + "Ġ14": 2210, + "Ġcre": 2211, + "ĠHowever": 2212, + "Ġpopulation": 2213, + "mp": 2214, + "Ġtest": 2215, + "Ġlevel": 2216, + "Ġfollowing": 2217, + "Ġmajor": 2218, + "Ġoffice": 2219, + "ases": 2220, + "Ġfelt": 2221, + "Ġnat": 2222, + "ressed": 2223, + "Ġwritten": 2224, + "ĠQu": 2225, + "ĠSir": 2226, + "LL": 2227, + "attle": 2228, + "Ġdev": 2229, + "view": 2230, + "||": 2231, + "resent": 2232, + "cember": 2233, + "uthor": 2234, + "iddle": 2235, + "gest": 2236, + "Ġvide": 2237, + "Ġdie": 2238, + "yn": 2239, + "Ġanyone": 2240, + "fort": 2241, + "Ġprocess": 2242, + "unch": 2243, + "Ġworry": 2244, + "ories": 2245, + "Ġanswer": 2246, + "Ġsea": 2247, + "Ġparticular": 2248, + "Ġbird": 2249, + "Ġthousand": 2250, + "ĠCent": 2251, + "ĠApril": 2252, + "cing": 2253, + "What": 2254, + "Ġgun": 2255, + "Ġvoice": 2256, + "ĠDad": 2257, + "Ġhusband": 2258, + "read": 2259, + "eared": 2260, + "Ġgets": 2261, + "Ġtill": 2262, + "Ġiss": 2263, + "ĠSee": 2264, + "ified": 2265, + "ĠItal": 2266, + "II": 2267, + "Ġsun": 2268, + "Ġfa": 2269, + "key": 2270, + "ana": 2271, + "ĠWest": 2272, + "Ġtreat": 2273, + "Ġla": 2274, + "bers": 2275, + "hile": 2276, + "Ġhell": 2277, + "ipp": 2278, + "light": 2279, + "Ġpull": 2280, + "Ġseven": 2281, + "Ġlanguage": 2282, + "levision": 2283, + "iod": 2284, + "Ġfav": 2285, + "though": 2286, + "Ġview": 2287, + "Ġ!": 2288, + "Ġformer": 2289, + "ĠDav": 2290, + "Ġcomplete": 2291, + "Ġworked": 2292, + "Ġ30": 2293, + "een": 2294, + "soci": 2295, + "Ġdep": 2296, + "Ġmember": 2297, + "ĠOctober": 2298, + "ĠFrom": 2299, + "Ġtable": 2300, + "ο": 2301, + "urs": 2302, + "ruary": 2303, + "ebruary": 2304, + "ored": 2305, + "itions": 2306, + "ĠCity": 2307, + "Ġcannot": 2308, + "Ġdefe": 2309, + "Ġhours": 2310, + "Ġcross": 2311, + "let": 2312, + "Ġwhether": 2313, + "Ġworks": 2314, + "Ġmer": 2315, + "Ġeveryone": 2316, + "ĠTake": 2317, + "Ġpract": 2318, + "Ġcentury": 2319, + "ograph": 2320, + "Ġfre": 2321, + "ĠSw": 2322, + "Ġord": 2323, + "Ġbased": 2324, + "Ġones": 2325, + "iron": 2326, + "Ġproper": 2327, + "ĠDecember": 2328, + "huh": 2329, + "vember": 2330, + "Ġdiffic": 2331, + "Ġinvol": 2332, + "Ġchance": 2333, + "Ġcry": 2334, + "Ġforg": 2335, + "Ġseems": 2336, + "Ġwrote": 2337, + "....": 2338, + "Ġclean": 2339, + "Ġeasy": 2340, + "Ġlow": 2341, + "ĠHi": 2342, + "ĠNovember": 2343, + "ĠGerman": 2344, + "Ġtomorrow": 2345, + "Ġwear": 2346, + "Ġfur": 2347, + "Ġwrite": 2348, + "Ġpolice": 2349, + "ĠThanks": 2350, + "Ġcouple": 2351, + "airs": 2352, + "Ġwish": 2353, + "Ġinformation": 2354, + "Ġhowever": 2355, + "cil": 2356, + "Ġton": 2357, + "Ġfif": 2358, + "Ġdam": 2359, + "asure": 2360, + "ĠEar": 2361, + "Ġpaper": 2362, + "Ġbox": 2363, + "raid": 2364, + "rit": 2365, + "Ġwall": 2366, + "Ġknows": 2367, + "Ġboys": 2368, + "Ġprotect": 2369, + "bo": 2370, + "por": 2371, + "Ġ?": 2372, + "Ġsense": 2373, + "Ġtrad": 2374, + "Ġlives": 2375, + "Ġcold": 2376, + "iding": 2377, + "Ġservice": 2378, + "Ġcal": 2379, + "ĠAmerica": 2380, + "Ġpost": 2381, + "Ġground": 2382, + "Ġevent": 2383, + "ien": 2384, + "ternational": 2385, + "Ġcurrent": 2386, + "Ġfeet": 2387, + "Ġchanged": 2388, + "Ġlad": 2389, + "ĠFebruary": 2390, + "Ġtwenty": 2391, + "Ġru": 2392, + "Ġpub": 2393, + "kes": 2394, + "aint": 2395, + "Ġfast": 2396, + "ging": 2397, + "Ġgrand": 2398, + "Ġmine": 2399, + "Ġmoved": 2400, + "Ġprop": 2401, + "ourn": 2402, + "work": 2403, + "Ġrad": 2404, + "ĠIndian": 2405, + "Ġexactly": 2406, + "Ġlonger": 2407, + "idence": 2408, + "ula": 2409, + "cially": 2410, + "ĠOK": 2411, + "ising": 2412, + "Ġisland": 2413, + "ĠWait": 2414, + "Ġdog": 2415, + "Ġsuper": 2416, + "Ġalright": 2417, + "Ġ2013": 2418, + "Ġfield": 2419, + "go": 2420, + "Ġcompet": 2421, + "ĠMc": 2422, + "Ġsupposed": 2423, + "room": 2424, + "Ġdraw": 2425, + "oose": 2426, + "Ġbirth": 2427, + "ration": 2428, + "Ġsca": 2429, + "Ġfail": 2430, + "lu": 2431, + "ĠEn": 2432, + "ĠJames": 2433, + "Ġphone": 2434, + "Ġparent": 2435, + "itive": 2436, + "Ġdi": 2437, + "ata": 2438, + "Ġthemselves": 2439, + "Ġstep": 2440, + "yr": 2441, + "ays": 2442, + "Ġdro": 2443, + "Ġhig": 2444, + "irty": 2445, + "Ġperiod": 2446, + "Ġcontrol": 2447, + "Ġlady": 2448, + "Ġ202": 2449, + "Ġfair": 2450, + "ille": 2451, + "Ġcommune": 2452, + "Ġcharacter": 2453, + "ops": 2454, + "Ġrelig": 2455, + "ances": 2456, + "lex": 2457, + "ivil": 2458, + "Ġ2010": 2459, + "Ġcareer": 2460, + "ument": 2461, + "Ġpriv": 2462, + "Ġvers": 2463, + "ida": 2464, + "Ġgeneral": 2465, + "Ġafraid": 2466, + "Ġtruth": 2467, + "come": 2468, + "Ġbott": 2469, + "Ġshot": 2470, + "Ġincre": 2471, + "ift": 2472, + "Ġcried": 2473, + "Ġperhaps": 2474, + "Ġregion": 2475, + "Ġmot": 2476, + "irgin": 2477, + "ask": 2478, + "ĠKe": 2479, + "uri": 2480, + "rodu": 2481, + "Ġdesc": 2482, + "ĠYOU": 2483, + "ization": 2484, + "ĠDist": 2485, + "Ġhurt": 2486, + "ĠPeter": 2487, + "ording": 2488, + "Ġtit": 2489, + "Ġnational": 2490, + "Ġ25": 2491, + "Ġauthor": 2492, + "ĠPart": 2493, + "hael": 2494, + "Ġsister": 2495, + "cience": 2496, + "ĠRoman": 2497, + "conom": 2498, + "Ġtrouble": 2499, + "Ġkept": 2500, + "IC": 2501, + "uk": 2502, + "emy": 2503, + "Ġsex": 2504, + "Ġdirect": 2505, + "Ġdeep": 2506, + "Ġneeds": 2507, + "ĠAfric": 2508, + "Ġreceived": 2509, + "ended": 2510, + "ĠGeorge": 2511, + "lo": 2512, + "irt": 2513, + "Ġletter": 2514, + "fer": 2515, + "uation": 2516, + "entle": 2517, + "Ġrunning": 2518, + "Ġcook": 2519, + "stit": 2520, + "ogn": 2521, + "ĠLa": 2522, + "Ġseemed": 2523, + "ption": 2524, + "Ġtelevision": 2525, + "Ġshoot": 2526, + "Ġkids": 2527, + "ĠHa": 2528, + "Ġpicture": 2529, + "Ġcos": 2530, + "Ġpopular": 2531, + "IS": 2532, + "ĠEl": 2533, + "more": 2534, + "ĠSer": 2535, + "Ġcourt": 2536, + "Ġaccept": 2537, + "RE": 2538, + "Ġentire": 2539, + "Ġvideo": 2540, + "Ġtonight": 2541, + "Ġconne": 2542, + "Ġarri": 2543, + "Ġabove": 2544, + "ffe": 2545, + "ilar": 2546, + "Ġfootball": 2547, + "ĠChe": 2548, + "Ġtechn": 2549, + "anger": 2550, + "ission": 2551, + "owers": 2552, + "Ġforget": 2553, + "Ġspace": 2554, + "for": 2555, + "Ġeduc": 2556, + "Ġdoctor": 2557, + "Ġprin": 2558, + "Ġcat": 2559, + "Ġserious": 2560, + "Ġtree": 2561, + "Ġmount": 2562, + "Ġlim": 2563, + "ĠSorry": 2564, + "Ġinstead": 2565, + "ada": 2566, + "Ġwhatever": 2567, + "Ġclot": 2568, + "hard": 2569, + "lant": 2570, + "Ġtype": 2571, + "ĠSy": 2572, + "Ġvillage": 2573, + "ĠGreat": 2574, + "Ġrespect": 2575, + "Ġlab": 2576, + "aged": 2577, + "Ġtouch": 2578, + "Ġwood": 2579, + "Ġfly": 2580, + "Ġperfect": 2581, + "Ġcollect": 2582, + "over": 2583, + "Ġnorm": 2584, + "Ġexcept": 2585, + "Ġvi": 2586, + "avy": 2587, + "inal": 2588, + "Ġhy": 2589, + "Ġwaiting": 2590, + "eder": 2591, + "Ġpress": 2592, + "ĠEven": 2593, + "ggest": 2594, + "Ġinclude": 2595, + "dden": 2596, + "ĠTell": 2597, + "oes": 2598, + "Ġitself": 2599, + "Ġgod": 2600, + "ĠIll": 2601, + "ills": 2602, + "joy": 2603, + "ĠAct": 2604, + "ĠErm": 2605, + "Ġclub": 2606, + "illy": 2607, + "Ġcountries": 2608, + "Ġcult": 2609, + "Ġfut": 2610, + "cture": 2611, + "Ġsomebody": 2612, + "Ġaren": 2613, + "Ġposition": 2614, + "ĠPeople": 2615, + "Ġport": 2616, + "Ġcreated": 2617, + "atter": 2618, + "Ġluck": 2619, + "Ġsuggest": 2620, + "Ġpiece": 2621, + "eal": 2622, + "Ġhorse": 2623, + "ror": 2624, + "Ġple": 2625, + "18": 2626, + "Ġep": 2627, + "Ġdepartment": 2628, + "bur": 2629, + "ĠLord": 2630, + "olute": 2631, + "ĠStop": 2632, + "Ġeverybody": 2633, + "arr": 2634, + "Ġsudden": 2635, + "tle": 2636, + "ĠSec": 2637, + "Ġplayer": 2638, + "10": 2639, + "It": 2640, + "oul": 2641, + "Ġrul": 2642, + "Ġrepresent": 2643, + "ec": 2644, + "ĠCor": 2645, + "ĠRic": 2646, + "Ġinvest": 2647, + "hampions": 2648, + "ding": 2649, + "ken": 2650, + "ĠPol": 2651, + "Ġblue": 2652, + "ospital": 2653, + "alt": 2654, + "Ġtrust": 2655, + "Ġbear": 2656, + "Ġdin": 2657, + "Ġfucking": 2658, + "val": 2659, + "Ġdifficult": 2660, + "lect": 2661, + "acy": 2662, + "ky": 2663, + "ĠVirgin": 2664, + "ially": 2665, + "Ġmist": 2666, + "Ġang": 2667, + "ĠState": 2668, + "Ġdue": 2669, + "ĠHen": 2670, + "Ġdeb": 2671, + "Ġproject": 2672, + "ĠCaptain": 2673, + "reet": 2674, + "Ġrecogn": 2675, + "ĠHouse": 2676, + "ference": 2677, + "Ġtakes": 2678, + "Ġamount": 2679, + "ĠWilliam": 2680, + "Ġgirls": 2681, + "Ġled": 2682, + "Ġfamous": 2683, + "Ġgen": 2684, + "Ġ24": 2685, + "Ġcrit": 2686, + "Ġsurpr": 2687, + "olution": 2688, + "ĠAustral": 2689, + "Ġcomput": 2690, + "pes": 2691, + "Ġworth": 2692, + "Ġda": 2693, + "Ġstraight": 2694, + "Ġhang": 2695, + "ĠUS": 2696, + "ĠSomet": 2697, + "omin": 2698, + "ĠDistrict": 2699, + "Ġdecided": 2700, + "Ġcoun": 2701, + "ray": 2702, + "Ġet": 2703, + "Ġmult": 2704, + "ĠColl": 2705, + "rian": 2706, + "Ġcapital": 2707, + "Ġweeks": 2708, + "ĠSm": 2709, + "bed": 2710, + "Ġ]": 2711, + "ĠTwo": 2712, + "Ġstood": 2713, + "Ġfeeling": 2714, + "Ġphot": 2715, + "Ġpen": 2716, + "Ġum": 2717, + "Ġlearn": 2718, + "Ġserved": 2719, + "Ġproduct": 2720, + "lling": 2721, + "Ġgreen": 2722, + "ĠMary": 2723, + "rog": 2724, + "Ġrole": 2725, + "rey": 2726, + "pecially": 2727, + "Ġcarry": 2728, + "Ġpassed": 2729, + "Ġsafe": 2730, + "Ġbooks": 2731, + "Ġcast": 2732, + "ades": 2733, + "Ġstri": 2734, + "Ġshit": 2735, + "Ġexist": 2736, + "Ġslow": 2737, + "Ġnine": 2738, + "Ġspir": 2739, + "Ġimag": 2740, + "Ġfunny": 2741, + "ara": 2742, + "ĠJe": 2743, + "Ġfuture": 2744, + "ival": 2745, + "Ġevening": 2746, + "ris": 2747, + "Ġgentle": 2748, + "Ġsecret": 2749, + "Ġhealth": 2750, + "Ġtelling": 2751, + "Ġvict": 2752, + "Ġfurther": 2753, + "Ġgames": 2754, + "Ġeye": 2755, + "itary": 2756, + "Ġmeant": 2757, + "Ġengine": 2758, + "sc": 2759, + "ĠAg": 2760, + "GH": 2761, + "reg": 2762, + "Ġearth": 2763, + "Ġproblems": 2764, + "Ġver": 2765, + "Ġfill": 2766, + "amer": 2767, + "ĠGl": 2768, + "Ġdoll": 2769, + "ĠPark": 2770, + "Ġdoub": 2771, + "ĠJim": 2772, + "Ġcomb": 2773, + "riage": 2774, + "ĠSchool": 2775, + "Ġjud": 2776, + "Ġcover": 2777, + "ĠQue": 2778, + "ping": 2779, + "zz": 2780, + "Ġsubject": 2781, + "Ġbene": 2782, + "Ġhoney": 2783, + "Ġpolic": 2784, + "Ġide": 2785, + "Ġherself": 2786, + "Ġfix": 2787, + "Ġphys": 2788, + "Ġreturned": 2789, + "Ġtrack": 2790, + "ĠFrank": 2791, + "Ġmis": 2792, + "Ġahead": 2793, + "Ġsocial": 2794, + "Ġmatch": 2795, + "ĠHigh": 2796, + "Ġfollowed": 2797, + "Ġfigure": 2798, + "Ġanyway": 2799, + "ression": 2800, + "Ġcounty": 2801, + "Ġmommy": 2802, + "ciety": 2803, + "eneral": 2804, + "ĠIndia": 2805, + "No": 2806, + "iment": 2807, + "Ġain": 2808, + "Ġ192": 2809, + "Ġmeeting": 2810, + "ceed": 2811, + "ĠDavid": 2812, + "ĠPaul": 2813, + "mon": 2814, + "reme": 2815, + "Ġcatch": 2816, + "Ġsus": 2817, + "king": 2818, + "Ġrelations": 2819, + "ĠFirst": 2820, + "ĠDuring": 2821, + "Ġfamil": 2822, + "ĠGive": 2823, + "Ġcirc": 2824, + "lled": 2825, + "Ġcommand": 2826, + "Ġtrain": 2827, + "Ġdrive": 2828, + "ĠJapanese": 2829, + "teen": 2830, + "ĠGermany": 2831, + "AS": 2832, + "ĠRuss": 2833, + "ĠEast": 2834, + "Ġsail": 2835, + "Ġchair": 2836, + "inois": 2837, + "viously": 2838, + "ĠCo": 2839, + "Ġmouth": 2840, + "Ġopened": 2841, + "Ġpresident": 2842, + "Ġobject": 2843, + "Ġcause": 2844, + "Ġparents": 2845, + "Ġmm": 2846, + "ĠCour": 2847, + "Ġ100": 2848, + "ĠMichael": 2849, + "yle": 2850, + "Ġarm": 2851, + "Ġfear": 2852, + "Ġpot": 2853, + "empt": 2854, + "ĠRepublic": 2855, + "Ġwhose": 2856, + "Ġnon": 2857, + "Ġrese": 2858, + "Ġdanger": 2859, + "Ġhop": 2860, + "Ġprison": 2861, + "Ġanimals": 2862, + "Ġcool": 2863, + "Ġ2011": 2864, + "ho": 2865, + "ager": 2866, + "Ġviol": 2867, + "lin": 2868, + "Ġring": 2869, + "Ġthrow": 2870, + "Ġhappens": 2871, + "ĠPhil": 2872, + "Ġsave": 2873, + "ploy": 2874, + "Ġenjoy": 2875, + "Ġmass": 2876, + "Ġdistrict": 2877, + "Ġspecies": 2878, + "Ġant": 2879, + "ĠIsland": 2880, + "Ġteacher": 2881, + "ocr": 2882, + "bor": 2883, + "Ġwhom": 2884, + "Ġ2006": 2885, + "Ġris": 2886, + "Ġparts": 2887, + "Ġfish": 2888, + "ician": 2889, + "Ġcrazy": 2890, + "Ġstick": 2891, + "ĠSte": 2892, + "like": 2893, + "iny": 2894, + "omb": 2895, + "Ġbull": 2896, + "Ġpal": 2897, + "Ġ2012": 2898, + "Ġbecom": 2899, + "Ġneg": 2900, + "Ġmoving": 2901, + "Ġbeginning": 2902, + "âĢĶ": 2903, + "Ġener": 2904, + "Ġsimilar": 2905, + "oly": 2906, + "ĠĠĠĠĠĠ": 2907, + "af": 2908, + "chan": 2909, + "Ġsick": 2910, + "Ġhost": 2911, + "Ġestab": 2912, + "medi": 2913, + "Ġlie": 2914, + "inc": 2915, + "ĠMon": 2916, + "ĠReally": 2917, + "Ġcertainly": 2918, + "ĠVirginia": 2919, + "ED": 2920, + "Ġshar": 2921, + "Ġnecess": 2922, + "Ġforce": 2923, + "Ġkiss": 2924, + "Ġburn": 2925, + "Ġbag": 2926, + "Ġeconom": 2927, + "ams": 2928, + "Ġsepar": 2929, + "wered": 2930, + "ville": 2931, + "Ġmater": 2932, + "now": 2933, + "Ġdisapp": 2934, + "Ġsitting": 2935, + "ĠRober": 2936, + "Ġplaces": 2937, + "Ġfloor": 2938, + "ĠNothing": 2939, + "Ġmiddle": 2940, + "Ġtowards": 2941, + "Ġagre": 2942, + "Ġquickly": 2943, + "Ġsoft": 2944, + "Ġ21": 2945, + "Ġinteresting": 2946, + "ĠIllinois": 2947, + "Ġhm": 2948, + "Ġself": 2949, + "Ġbeat": 2950, + "ĠAN": 2951, + "itted": 2952, + "Ġclos": 2953, + "ĠMed": 2954, + "ĠMost": 2955, + "Ġchurch": 2956, + "Ġspend": 2957, + "you": 2958, + "inite": 2959, + "ishing": 2960, + "Ġpaid": 2961, + "ĠLou": 2962, + "Ġfinished": 2963, + "Ġmad": 2964, + "ĠCong": 2965, + "roy": 2966, + "Ġvol": 2967, + "Ġfinal": 2968, + "ĠMa": 2969, + "ĠMom": 2970, + "Ġoriginal": 2971, + "Ġident": 2972, + "Ġbreat": 2973, + "ĠMus": 2974, + "rible": 2975, + "vin": 2976, + "ica": 2977, + "Ġfeat": 2978, + "ires": 2979, + "pha": 2980, + "ĠMo": 2981, + "Ġanswered": 2982, + "Ġcorn": 2983, + "Ġgiving": 2984, + "ples": 2985, + "Ġquestions": 2986, + "Ġstreet": 2987, + "cher": 2988, + "ume": 2989, + "Ġquiet": 2990, + "Ġleaving": 2991, + "itor": 2992, + "imate": 2993, + "Ġshut": 2994, + "nel": 2995, + "Ġactiv": 2996, + "Ġannoun": 2997, + "iforn": 2998, + "aff": 2999, + "Ġmention": 3000, + "iers": 3001, + "_,": 3002, + "ply": 3003, + "Ġdaddy": 3004, + ".,": 3005, + "cast": 3006, + "ĠHel": 3007, + "Ġbelong": 3008, + "ĠFlor": 3009, + "TER": 3010, + "uge": 3011, + "ĠSan": 3012, + "uty": 3013, + "Ġsuppose": 3014, + "ĠHenry": 3015, + "Ġreached": 3016, + "ĠMor": 3017, + "Ġgrad": 3018, + "Ġbill": 3019, + "Ġ(\"": 3020, + "ifornia": 3021, + "Ġlose": 3022, + "ĠWhich": 3023, + "Ġinflu": 3024, + "ĠMad": 3025, + "Ġpolitical": 3026, + "St": 3027, + "off": 3028, + "Ġpark": 3029, + "isten": 3030, + "Ġstudents": 3031, + "Ġterms": 3032, + "hel": 3033, + "ĠBet": 3034, + "Ġrail": 3035, + "Ġtotal": 3036, + "Ġ23": 3037, + "Ġaccount": 3038, + "ked": 3039, + "hips": 3040, + "Ġexperience": 3041, + "Ġforward": 3042, + "itional": 3043, + "Ġcommunity": 3044, + "IT": 3045, + "eg": 3046, + "Ġneigh": 3047, + "Ġmodern": 3048, + "ĠMart": 3049, + "Ġ50": 3050, + "ĠGovern": 3051, + "ĠGeneral": 3052, + "ĠRo": 3053, + "ivid": 3054, + "Ġforest": 3055, + "Ġriver": 3056, + "time": 3057, + "Ġ,": 3058, + "Ġcivil": 3059, + "Ġways": 3060, + "Ġvarious": 3061, + "Ġglass": 3062, + "inger": 3063, + "ĠMany": 3064, + "ĠCalifornia": 3065, + "Ġrespons": 3066, + "Ġmach": 3067, + "ĠRiver": 3068, + "Ġthou": 3069, + "Ġsearch": 3070, + "Ġnumbers": 3071, + "gar": 3072, + "line": 3073, + "Ġhospital": 3074, + "Ġaut": 3075, + "irm": 3076, + "Ġnin": 3077, + "Ġindust": 3078, + "Ġglad": 3079, + "ka": 3080, + "unic": 3081, + "Ġpublished": 3082, + "Ġinn": 3083, + "Ġlaugh": 3084, + "Ġegg": 3085, + "ĠSar": 3086, + "ĠSure": 3087, + "Ġdepend": 3088, + "Ġintrodu": 3089, + "17": 3090, + "15": 3091, + "ensive": 3092, + "Ġconsider": 3093, + "well": 3094, + "Ġrev": 3095, + "ctions": 3096, + "orts": 3097, + "Ġtax": 3098, + "Ġallowed": 3099, + "night": 3100, + "ena": 3101, + "Ġdiscuss": 3102, + "Ġdress": 3103, + "Ġmarket": 3104, + "rab": 3105, + "Ġobs": 3106, + "Ġwindow": 3107, + "ĠChurch": 3108, + "cious": 3109, + "Ġclaim": 3110, + "ensus": 3111, + "Ġnatural": 3112, + "Ġnet": 3113, + "uted": 3114, + "ĠBoy": 3115, + "xic": 3116, + "Ġrain": 3117, + "Ġ..": 3118, + "ĠJes": 3119, + "Ġanymore": 3120, + "ites": 3121, + "ĠHist": 3122, + "ĠOther": 3123, + "Ġequal": 3124, + "Ġmiles": 3125, + "hem": 3126, + "Ġcaught": 3127, + "Ġbroad": 3128, + "Oh": 3129, + "het": 3130, + "ĠII": 3131, + "Ġhey": 3132, + "âĢİ": 3133, + "Ġblock": 3134, + "olutely": 3135, + "Ġshows": 3136, + "Ġinvolved": 3137, + "road": 3138, + "cape": 3139, + "Ġstudy": 3140, + "rid": 3141, + "ĠTV": 3142, + "istic": 3143, + "ĠChristian": 3144, + "Ġstrange": 3145, + "ĠLeague": 3146, + "Ġespecially": 3147, + "Ġmaterial": 3148, + "Ġfem": 3149, + "ĠSen": 3150, + "ĠBen": 3151, + "Ġsomewhere": 3152, + "Th": 3153, + "Ġ)": 3154, + "Ġstage": 3155, + "idered": 3156, + "ortun": 3157, + "Ġtravel": 3158, + "Ġboard": 3159, + "Ġaud": 3160, + "Ġstore": 3161, + "ĠOnly": 3162, + "ĠComp": 3163, + "ĠWould": 3164, + "Ġclothes": 3165, + "ius": 3166, + "ĠSam": 3167, + "Ġsimple": 3168, + "Ġlocated": 3169, + "Ġsad": 3170, + "?âĢĿ": 3171, + "Ġenv": 3172, + "oe": 3173, + "inary": 3174, + "abad": 3175, + "ruction": 3176, + "ĠFlorida": 3177, + "14": 3178, + "AM": 3179, + "hood": 3180, + "Ġ2014": 3181, + "inist": 3182, + "Ġgives": 3183, + "Ġnature": 3184, + "Ġemb": 3185, + "ĠKen": 3186, + "Ġalive": 3187, + "ĠFin": 3188, + "Ġneeded": 3189, + "overed": 3190, + "Ġ01": 3191, + "ĠRichard": 3192, + "\")": 3193, + "Ġvalue": 3194, + "Ġdru": 3195, + "ĠSim": 3196, + "Ġseat": 3197, + "Ġfinally": 3198, + "ĠBel": 3199, + "Ġyours": 3200, + "We": 3201, + "ĠDem": 3202, + "ĠRed": 3203, + "ength": 3204, + "Ġanybody": 3205, + "ĠScott": 3206, + "Ġdinner": 3207, + "Ġapart": 3208, + "Ġsize": 3209, + "ĠGree": 3210, + "Ġdeg": 3211, + "Ġpeace": 3212, + "ĠSince": 3213, + "ils": 3214, + "Ġdel": 3215, + "OT": 3216, + "wood": 3217, + "ĠOur": 3218, + "Ġboat": 3219, + "Ġvisit": 3220, + "Ġta": 3221, + "upid": 3222, + "van": 3223, + "action": 3224, + "Ġappeared": 3225, + "Ġshop": 3226, + "Ġquar": 3227, + "rill": 3228, + "olic": 3229, + "Ġsurv": 3230, + "OM": 3231, + "iel": 3232, + "ĠUnion": 3233, + "Ġsituation": 3234, + "Ġperm": 3235, + "Ġfavor": 3236, + "Ġenergy": 3237, + "mm": 3238, + "Ġx": 3239, + "Ġban": 3240, + "Ġfac": 3241, + "ago": 3242, + "Ġfund": 3243, + "Ġprivate": 3244, + "erve": 3245, + "ences": 3246, + "ĠBur": 3247, + "bon": 3248, + "Ġadded": 3249, + "AL": 3250, + "yl": 3251, + "Ġbur": 3252, + "ĠGrand": 3253, + "Ġconsidered": 3254, + "Ġcolor": 3255, + "ause": 3256, + "erry": 3257, + "Ġgar": 3258, + "ĠRob": 3259, + "Ġmhm": 3260, + "12": 3261, + "Ġspent": 3262, + "Ġtitle": 3263, + "ĠLu": 3264, + "Ġplant": 3265, + "Ġthanks": 3266, + "Ġdise": 3267, + "Ġkey": 3268, + "ĠReg": 3269, + "ns": 3270, + "Ġwild": 3271, + "rem": 3272, + "ĠOk": 3273, + "Ġ26": 3274, + "gu": 3275, + "amm": 3276, + "Ġarmy": 3277, + "Ġ2016": 3278, + "face": 3279, + "ids": 3280, + "Ġaction": 3281, + "Ġ2007": 3282, + "Ġstopped": 3283, + "uses": 3284, + "Ġenc": 3285, + "ero": 3286, + "ĠJul": 3287, + "Ġimmedi": 3288, + "Ġpurp": 3289, + "asons": 3290, + "Ġsour": 3291, + "ĠBra": 3292, + "Ġbought": 3293, + "Ġdance": 3294, + "Ġprofessional": 3295, + "Ġgrew": 3296, + "ĠPri": 3297, + "Ġ22": 3298, + "ĠBlack": 3299, + "Ġliter": 3300, + "illa": 3301, + "ounded": 3302, + "Ġcell": 3303, + "ae": 3304, + "ĠListen": 3305, + "Ġ190": 3306, + "Ġindeed": 3307, + "sp": 3308, + "Ġwa": 3309, + "Ġtea": 3310, + "oups": 3311, + "Ġpers": 3312, + "CH": 3313, + "Ġwriting": 3314, + "ĠParty": 3315, + "ĠAnt": 3316, + "ĠVery": 3317, + "olly": 3318, + "Ġproduced": 3319, + "Ġextra": 3320, + "bour": 3321, + "ĠTO": 3322, + "iff": 3323, + "ĠUm": 3324, + "ria": 3325, + "Ġstanding": 3326, + "llen": 3327, + "Ġbroke": 3328, + "Ġearli": 3329, + "Ġyell": 3330, + "Ġfle": 3331, + "ĠMal": 3332, + "Ġprim": 3333, + "ails": 3334, + "Ġsummer": 3335, + "field": 3336, + "Ġspirit": 3337, + "house": 3338, + "Ġmid": 3339, + "Ġye": 3340, + "omas": 3341, + "Ġcompan": 3342, + "ĠDoes": 3343, + "He": 3344, + "Ġattempt": 3345, + "rief": 3346, + "itz": 3347, + "ĠPort": 3348, + "ĠIts": 3349, + "Ġtro": 3350, + "outhern": 3351, + "Ġavail": 3352, + "13": 3353, + "ests": 3354, + "tered": 3355, + "cuse": 3356, + "Ġsens": 3357, + "Ġremain": 3358, + "Ġattention": 3359, + "Ġpack": 3360, + "ĠPat": 3361, + "Ġrid": 3362, + "Ġrout": 3363, + "Ġseeing": 3364, + "uel": 3365, + "Ġdevelopment": 3366, + "ya": 3367, + "orthern": 3368, + "Ġblow": 3369, + "AP": 3370, + "ners": 3371, + "pire": 3372, + "ators": 3373, + "ĠAlex": 3374, + "cell": 3375, + "ander": 3376, + "ET": 3377, + "inct": 3378, + "ura": 3379, + "iques": 3380, + "rel": 3381, + "ĠTur": 3382, + "Ġdate": 3383, + "ĠBob": 3384, + "Ġmix": 3385, + "Ġnames": 3386, + "ĠDar": 3387, + "Ġhistor": 3388, + "Ġtend": 3389, + "rer": 3390, + "Ġsal": 3391, + "udd": 3392, + "Ġofficial": 3393, + "ĠIN": 3394, + "igg": 3395, + "ibility": 3396, + "ique": 3397, + "cul": 3398, + "Ġsimply": 3399, + "vince": 3400, + "Ġwide": 3401, + "icket": 3402, + "Ġbow": 3403, + "Ġcand": 3404, + "Ġdecl": 3405, + "Ġalthough": 3406, + "Ġaff": 3407, + "sych": 3408, + "At": 3409, + "ĠApp": 3410, + "ously": 3411, + "Ġice": 3412, + "Ġscience": 3413, + "Ġmilitary": 3414, + "sha": 3415, + "ises": 3416, + "ground": 3417, + "Ġredu": 3418, + "ify": 3419, + "apers": 3420, + "ironment": 3421, + "Ġdoubt": 3422, + "Ġgroups": 3423, + "Ġcollege": 3424, + "OW": 3425, + "Ġhung": 3426, + "osing": 3427, + "Ġcarried": 3428, + "Ġindivid": 3429, + "Ġopportun": 3430, + "Ġepis": 3431, + "Ġarms": 3432, + "Ġincluded": 3433, + "Ġbattle": 3434, + "hod": 3435, + "Ġdry": 3436, + "Ġhun": 3437, + "Ġdestroy": 3438, + "wise": 3439, + "lebr": 3440, + "ĠOly": 3441, + "ĠQueen": 3442, + "ĠBo": 3443, + "Ġasking": 3444, + "Ġdifference": 3445, + "Ġcaptain": 3446, + "su": 3447, + "Ġlargest": 3448, + "gon": 3449, + "ively": 3450, + "pper": 3451, + "Ġmarriage": 3452, + "Ġpoints": 3453, + "Ġhate": 3454, + "ĠNor": 3455, + "hington": 3456, + "Ġwest": 3457, + "Ġofficer": 3458, + "bye": 3459, + "que": 3460, + "Ġpersonal": 3461, + "Ġbeha": 3462, + "Ġloved": 3463, + "Ġmedic": 3464, + "Ġcompletely": 3465, + "Ġinj": 3466, + "ĠAcc": 3467, + "ĠDick": 3468, + "Ġ28": 3469, + "Ġeducation": 3470, + "Ġtour": 3471, + "ĠWhile": 3472, + "Ġspeed": 3473, + "Ġbroken": 3474, + "ĠAir": 3475, + "ĠPal": 3476, + "ological": 3477, + "urity": 3478, + "Ġ2009": 3479, + "Ġmurder": 3480, + "no": 3481, + "ĠBu": 3482, + "Ġsell": 3483, + "Ġemploy": 3484, + "resh": 3485, + "ĠAlan": 3486, + "Äģ": 3487, + "rect": 3488, + "Ġlock": 3489, + "ĠWhite": 3490, + "Ġcomputer": 3491, + "Ġmaster": 3492, + "Ġlength": 3493, + "board": 3494, + "Ġreach": 3495, + "Ġversion": 3496, + "Ġfort": 3497, + "ability": 3498, + "gged": 3499, + "Ġrefer": 3500, + "ĠMark": 3501, + "ĠExcuse": 3502, + "Ġwatching": 3503, + "anc": 3504, + "astic": 3505, + "Ġmeaning": 3506, + "ĠAnge": 3507, + "Ġcontract": 3508, + "Ġ2008": 3509, + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 3510, + "Ġjoined": 3511, + "sociation": 3512, + "Yes": 3513, + "Ġbank": 3514, + "Ġshouldn": 3515, + "Ġcapt": 3516, + "gress": 3517, + "Ġheavy": 3518, + "chie": 3519, + "Ġrob": 3520, + "Ġ2015": 3521, + "ĠRobert": 3522, + "Ġplays": 3523, + "Ġbelow": 3524, + "Ġsight": 3525, + "Ġfool": 3526, + "Ġpath": 3527, + "ĠChan": 3528, + "ĠDes": 3529, + "ki": 3530, + "Ġprep": 3531, + "Ġexplain": 3532, + "ĠCourt": 3533, + "nes": 3534, + "US": 3535, + "Ġrich": 3536, + "ĠThree": 3537, + "ĠStreet": 3538, + "50": 3539, + "itude": 3540, + "Ġeff": 3541, + "Ġarch": 3542, + "Ġoccur": 3543, + "Ġlying": 3544, + "Ġcoast": 3545, + "ĠScot": 3546, + "Ġanimal": 3547, + "ancy": 3548, + "terday": 3549, + "arden": 3550, + "ears": 3551, + "Ġ40": 3552, + "isc": 3553, + "mas": 3554, + "Ġwat": 3555, + "Ġ27": 3556, + "Ġtalked": 3557, + "ension": 3558, + "Ġsuddenly": 3559, + "oura": 3560, + "Ġbase": 3561, + "ĠAc": 3562, + "Ġwel": 3563, + "ĠCr": 3564, + "antly": 3565, + "Ġimpro": 3566, + "oid": 3567, + "Ġ2000": 3568, + "Ġnearly": 3569, + "ĠRoy": 3570, + "Ġcaused": 3571, + "Ġhonest": 3572, + "Ġindepend": 3573, + "ĠWashington": 3574, + "200": 3575, + "west": 3576, + "ĠPut": 3577, + "Ġplus": 3578, + "Ġregard": 3579, + "EA": 3580, + "asion": 3581, + "omm": 3582, + "Ġnor": 3583, + "Ġshare": 3584, + "ledge": 3585, + "ü": 3586, + "hest": 3587, + "Ġpage": 3588, + "Ġ2022": 3589, + "Ġstates": 3590, + "Ġareas": 3591, + "Ġappoint": 3592, + "á": 3593, + "Ġexam": 3594, + "Ġhappening": 3595, + "Ġbud": 3596, + "vies": 3597, + "Ġscient": 3598, + "Ġinit": 3599, + "icle": 3600, + "oph": 3601, + "ss": 3602, + "Ġfellow": 3603, + "ĠCharles": 3604, + "Ġhigher": 3605, + "Ġfat": 3606, + "Ġcelebr": 3607, + "Ġsand": 3608, + "Ġaccess": 3609, + "ĠEarth": 3610, + "LE": 3611, + "Ġsite": 3612, + "Ġcensus": 3613, + "ĠSal": 3614, + "hire": 3615, + "Ġevidence": 3616, + "Ġnormal": 3617, + "ID": 3618, + "LA": 3619, + "ĠGot": 3620, + "play": 3621, + "iction": 3622, + "Ġtrees": 3623, + "how": 3624, + "Ġah": 3625, + "ĠFather": 3626, + "Ġregular": 3627, + "Ġpromise": 3628, + "And": 3629, + "anish": 3630, + "iced": 3631, + "Ġeast": 3632, + "Ġstupid": 3633, + "bert": 3634, + "ffee": 3635, + "Ġmanage": 3636, + "Ġwarm": 3637, + "hampionship": 3638, + "Ġfamilies": 3639, + "Ġinterested": 3640, + "Ġsquare": 3641, + "Ġpun": 3642, + "Ġsnow": 3643, + "Ġcases": 3644, + "Ġhol": 3645, + "ĠMore": 3646, + "aded": 3647, + "Ġdoc": 3648, + "ustom": 3649, + "ĠCollege": 3650, + "unicip": 3651, + "ĠJesus": 3652, + "ĠMac": 3653, + "ĠDam": 3654, + "ĠOF": 3655, + "Ġrace": 3656, + "Ġmilk": 3657, + "Ġsongs": 3658, + "Ġspeaking": 3659, + "arily": 3660, + "Ġpray": 3661, + "Ġformed": 3662, + "Ġcontinued": 3663, + "Ġradio": 3664, + "ari": 3665, + "iled": 3666, + "Ġmarry": 3667, + "Ġfit": 3668, + "vered": 3669, + "Ġthreat": 3670, + "uts": 3671, + "Ġshowed": 3672, + "Ġdeveloped": 3673, + "kn": 3674, + "Ġbes": 3675, + "ouses": 3676, + "Ġscene": 3677, + "ĠEuropean": 3678, + "Ġavailable": 3679, + "ĠSch": 3680, + "Ġ29": 3681, + "ĠAfrica": 3682, + "ek": 3683, + "orrow": 3684, + "Ġcoffee": 3685, + "Ġfoc": 3686, + "Ġtrade": 3687, + "Ġ2005": 3688, + "Ġtemper": 3689, + "Ġbottom": 3690, + "Ġdescrib": 3691, + "Ġbi": 3692, + "Ġcard": 3693, + "Ġpet": 3694, + "ĠSat": 3695, + "ords": 3696, + "yer": 3697, + "aven": 3698, + "Ġhuge": 3699, + "Ġactor": 3700, + "ĠChina": 3701, + "Ġden": 3702, + "Ġdig": 3703, + "ĠRes": 3704, + "Ġneck": 3705, + "Ġbirthday": 3706, + "Ġannounced": 3707, + "Ġfeed": 3708, + "Ġmovies": 3709, + "ĠAustralia": 3710, + "Ġgas": 3711, + "ĠMexic": 3712, + "Ġmovement": 3713, + "Ġcab": 3714, + "Ġlines": 3715, + "Ġsuff": 3716, + "Ġpercent": 3717, + "aker": 3718, + "Ġhelped": 3719, + "Ġbath": 3720, + "ibly": 3721, + "Ġeating": 3722, + "aur": 3723, + "set": 3724, + "what": 3725, + "ĠWil": 3726, + "Ġspoke": 3727, + "nie": 3728, + "né": 3729, + "usion": 3730, + "omen": 3731, + "ĠTod": 3732, + "iles": 3733, + "Ġweren": 3734, + "Ġfounded": 3735, + "Ġwonderful": 3736, + "ĠMaster": 3737, + "alley": 3738, + "initely": 3739, + "ĠCup": 3740, + "16": 3741, + "Ġdata": 3742, + "Ġphil": 3743, + "olk": 3744, + "Ġtired": 3745, + "Ġoffe": 3746, + "ĠDep": 3747, + "Ġknock": 3748, + "ĠInternational": 3749, + "icks": 3750, + "Ġscared": 3751, + "lim": 3752, + "za": 3753, + "Ġwed": 3754, + "ĠCath": 3755, + "ĠTheir": 3756, + "Ġsevent": 3757, + "Ġpieces": 3758, + "Ġtast": 3759, + "ĠCH": 3760, + "Ġstories": 3761, + "hib": 3762, + "Ġended": 3763, + "Ġoil": 3764, + "ĠHall": 3765, + "Ġexec": 3766, + "ĠParis": 3767, + "Ġsociety": 3768, + "Ġdemand": 3769, + "Ġap": 3770, + "itche": 3771, + "Ġur": 3772, + "Ġcomfort": 3773, + "Ġmethod": 3774, + "ĠAbout": 3775, + "but": 3776, + "Ġ:": 3777, + "Ġbright": 3778, + "Ġund": 3779, + "Ġdeli": 3780, + "Ġsounds": 3781, + "ĠÃ": 3782, + "Ġoffer": 3783, + "Ġenvironment": 3784, + "Ġnovel": 3785, + "useum": 3786, + "Ġclosed": 3787, + "Ġraised": 3788, + "Ġcareful": 3789, + "Ġlearned": 3790, + "iation": 3791, + "Ġir": 3792, + "ĠBer": 3793, + "Ġworse": 3794, + "Ġresearch": 3795, + "cean": 3796, + "Ġwalked": 3797, + "Ġmor": 3798, + "Ġlower": 3799, + "ĠTra": 3800, + "ĠAward": 3801, + "Ġputting": 3802, + "Ġstarting": 3803, + "Ġaddress": 3804, + "ĠÂ": 3805, + "ĠAdd": 3806, + "ĠCould": 3807, + "Ġrights": 3808, + "Ġimm": 3809, + "Ġchanges": 3810, + "VE": 3811, + "oted": 3812, + "ether": 3813, + "ĠMaj": 3814, + "str": 3815, + "Ġdisp": 3816, + "Ġdeterm": 3817, + "atform": 3818, + "Ġaward": 3819, + "ĠIran": 3820, + "Ġarrest": 3821, + "Ġtraining": 3822, + "ĠItalian": 3823, + "ĠOlymp": 3824, + "Ġhero": 3825, + "ental": 3826, + "Ġtext": 3827, + "Ġassist": 3828, + "ĠCoun": 3829, + "ols": 3830, + "ummer": 3831, + "Ġcenter": 3832, + "Ġbirds": 3833, + "Ġprinci": 3834, + "Ġbenef": 3835, + "year": 3836, + "ential": 3837, + "Ġ=": 3838, + "Ġnobody": 3839, + "Ġdecision": 3840, + "Ġaver": 3841, + "ĠGold": 3842, + "Ġpolitician": 3843, + "ex": 3844, + "Ġcow": 3845, + "roat": 3846, + "Ġlikely": 3847, + "Ġchoice": 3848, + "Ġpush": 3849, + "ston": 3850, + "Ġletters": 3851, + "ography": 3852, + "aign": 3853, + "ji": 3854, + "Ġmem": 3855, + "ĠBefore": 3856, + "ĠHistory": 3857, + "elve": 3858, + "Ġcrew": 3859, + "ushed": 3860, + "Ġyesterday": 3861, + "Ġess": 3862, + "isf": 3863, + "Ġble": 3864, + "Ġcru": 3865, + "Ġbell": 3866, + "Ġsmell": 3867, + "ĠAND": 3868, + "UN": 3869, + "that": 3870, + "under": 3871, + "Ġdistance": 3872, + "noon": 3873, + "yond": 3874, + "edy": 3875, + "Ġthirty": 3876, + "Ġsuit": 3877, + "Ġcharge": 3878, + "Ġangry": 3879, + "lam": 3880, + "iling": 3881, + "Ġride": 3882, + "ittee": 3883, + "Ġbelieved": 3884, + "Ġought": 3885, + "Ġschools": 3886, + "Ġdouble": 3887, + "ĠCle": 3888, + "Ġcalling": 3889, + "ĠMinister": 3890, + "iar": 3891, + "Ġtall": 3892, + "Ġpsych": 3893, + "raft": 3894, + "ube": 3895, + "Ġfinish": 3896, + "Ġwit": 3897, + "ani": 3898, + "ĠNever": 3899, + "ateg": 3900, + "Ġmostly": 3901, + "Ġreview": 3902, + "ĠMet": 3903, + "rif": 3904, + "Ġspread": 3905, + "Ġaffect": 3906, + "Ġmodel": 3907, + "Ġbrain": 3908, + "Ġideas": 3909, + "using": 3910, + "ĠThose": 3911, + "ranch": 3912, + "ruit": 3913, + "Ġfourth": 3914, + "ĠCentral": 3915, + "asc": 3916, + "Ġuniversity": 3917, + "oring": 3918, + "pping": 3919, + "Ġjoin": 3920, + "Ġnecessary": 3921, + "Ġancient": 3922, + "liament": 3923, + "Ġevents": 3924, + "Ġspecific": 3925, + "Ġcreate": 3926, + "Ġstorm": 3927, + "Ġemot": 3928, + "Ġleader": 3929, + "Ġbloody": 3930, + "Ġmessage": 3931, + "Ġissue": 3932, + "ux": 3933, + "Ġsac": 3934, + "ste": 3935, + "ĠArmy": 3936, + "Ġimmediately": 3937, + "Ġtheory": 3938, + "ĠMag": 3939, + "ĠRem": 3940, + "Ġafternoon": 3941, + "Ġchief": 3942, + "Ġfaith": 3943, + "ilities": 3944, + "cket": 3945, + "fl": 3946, + "yal": 3947, + "sec": 3948, + "Ġstars": 3949, + "ĠPyr": 3950, + "ĠFuck": 3951, + "ĠJew": 3952, + "Ġbusy": 3953, + ".'": 3954, + "ket": 3955, + "ĠOver": 3956, + "Ġvac": 3957, + "pen": 3958, + "Ġagree": 3959, + "Ġenemy": 3960, + "Ġdisease": 3961, + "Ġdan": 3962, + "ables": 3963, + "ĠCongress": 3964, + "oved": 3965, + "Ġtail": 3966, + "Ġcup": 3967, + "ĠHold": 3968, + "ript": 3969, + "Ġtruck": 3970, + "Ġcovered": 3971, + "Ġlovely": 3972, + "ĠItaly": 3973, + "Ġrule": 3974, + "30": 3975, + "western": 3976, + "ĠSa": 3977, + "ĠCa": 3978, + "ession": 3979, + "Ġtherefore": 3980, + "Ġfarm": 3981, + "Ġdirector": 3982, + "ĠPrin": 3983, + "Ġsoul": 3984, + "ĠMat": 3985, + "Ġanal": 3986, + "ĠDel": 3987, + "ashion": 3988, + "Ġearlier": 3989, + "uten": 3990, + "Ġproduction": 3991, + "Ġstreng": 3992, + "eter": 3993, + "ĠMike": 3994, + "Ġstyle": 3995, + "ores": 3996, + "Ġarg": 3997, + "Ġspl": 3998, + "Ġ2004": 3999, + "Ġchem": 4000, + "Ġformula": 4001, + "isions": 4002, + "Ġflight": 4003, + "ĠAnother": 4004, + "Ġarrived": 4005, + "burg": 4006, + "ini": 4007, + "ĠKore": 4008, + "berg": 4009, + "Ġbridge": 4010, + "Ġmic": 4011, + "aps": 4012, + "Ġslight": 4013, + "ĠCanada": 4014, + "sequ": 4015, + "ĠProvince": 4016, + "ipped": 4017, + "pir": 4018, + "Ġaha": 4019, + "erved": 4020, + "ĠMer": 4021, + "Ġ189": 4022, + "ĠArt": 4023, + "ĠCarol": 4024, + "Atlant": 4025, + "Ġcro": 4026, + "atives": 4027, + "ĠHur": 4028, + "ĠUnder": 4029, + "oseph": 4030, + "Ġopin": 4031, + "Ġcontinue": 4032, + "Ġfault": 4033, + "ĠProf": 4034, + "Ġterrible": 4035, + "Ġweap": 4036, + "esty": 4037, + "ĠAnne": 4038, + "ange": 4039, + "Ġstone": 4040, + "Ġpurpose": 4041, + "ĠOnce": 4042, + "11": 4043, + "BC": 4044, + "back": 4045, + "ech": 4046, + "Ġelection": 4047, + "Ġnone": 4048, + "leep": 4049, + "ĠThomas": 4050, + "ucky": 4051, + "Ġattract": 4052, + "Ġmum": 4053, + "Ġkick": 4054, + "Ġprice": 4055, + "Ġestablished": 4056, + "gl": 4057, + "ĠIT": 4058, + "Ġforth": 4059, + "ĠPre": 4060, + "Ġcoach": 4061, + "Ġcontact": 4062, + "ĠEverything": 4063, + "Ġsuccessful": 4064, + "va": 4065, + "Ġcamer": 4066, + "ĠAlright": 4067, + "Ġaccident": 4068, + "Ġsignific": 4069, + "fast": 4070, + "Ġlif": 4071, + "vere": 4072, + "uments": 4073, + "Ġcities": 4074, + "Ġjump": 4075, + "Ġfighting": 4076, + "ĠKeep": 4077, + "ĠOut": 4078, + "Ġcondu": 4079, + "Ġ186": 4080, + "Ġsettle": 4081, + "azing": 4082, + "ĠDay": 4083, + "rupt": 4084, + "ĠShut": 4085, + "Ġmountain": 4086, + "Ġpolicy": 4087, + "ĠAccording": 4088, + "Ġwelcome": 4089, + "Ġtar": 4090, + "Ġfro": 4091, + "Ġweight": 4092, + "sey": 4093, + "ĠJud": 4094, + "Ġ()": 4095, + "éné": 4096, + "ients": 4097, + "Ġcred": 4098, + "eds": 4099, + "ĠLaw": 4100, + "Ġprint": 4101, + "ees": 4102, + "ĠVict": 4103, + "Ġ2001": 4104, + "Ġcrow": 4105, + "Ġrelationship": 4106, + "Ġcy": 4107, + "aled": 4108, + "ĠNat": 4109, + "ĠRad": 4110, + "Ġshown": 4111, + "ĠKent": 4112, + "Ġskin": 4113, + "Ġabsolutely": 4114, + "Ġhall": 4115, + "Ġforces": 4116, + "Ġliked": 4117, + "ocol": 4118, + "Ġholding": 4119, + "asant": 4120, + "ĠSus": 4121, + "ĠGirl": 4122, + "Ġ2020": 4123, + "Ġescape": 4124, + "iverse": 4125, + "ĠSl": 4126, + "Ġrepe": 4127, + "ĠMount": 4128, + "Ġknowledge": 4129, + "Ġ2018": 4130, + "Ġinvestig": 4131, + "ĠWin": 4132, + "Ġforced": 4133, + "ĠBye": 4134, + "Ġminus": 4135, + "Ġmultip": 4136, + "tt": 4137, + "atory": 4138, + "Ġcorner": 4139, + "ĠScotland": 4140, + "ĠIm": 4141, + "Ġinternational": 4142, + "ĠWow": 4143, + "vert": 4144, + "ĠOoh": 4145, + "Ġcampaign": 4146, + "zen": 4147, + "Ġlink": 4148, + "Ġspot": 4149, + "Ġchick": 4150, + "uke": 4151, + "Ġloss": 4152, + "omp": 4153, + "Ġthus": 4154, + "ĠLove": 4155, + "aug": 4156, + "ĠSpanish": 4157, + "Ġyellow": 4158, + "Ch": 4159, + "ship": 4160, + "aries": 4161, + "ĠHon": 4162, + "otten": 4163, + "iety": 4164, + "iot": 4165, + "ĠHill": 4166, + "stairs": 4167, + "Ġtells": 4168, + "ĠLee": 4169, + "Ġpractice": 4170, + "âĢİ.": 4171, + "known": 4172, + "aves": 4173, + "inese": 4174, + "énées": 4175, + "Ġdrop": 4176, + "rig": 4177, + "izing": 4178, + "Ġwalking": 4179, + "ĠPyrénées": 4180, + "Ġsch": 4181, + "Ġextreme": 4182, + "ĠKingdom": 4183, + "bing": 4184, + "Ġrate": 4185, + "ĠKar": 4186, + "Ġphilos": 4187, + "itation": 4188, + "Ġpan": 4189, + "Ġbeyond": 4190, + "Ġoppos": 4191, + "Atlantiques": 4192, + "Ġintern": 4193, + "Ġcompl": 4194, + "Ġdirected": 4195, + "eh": 4196, + "Ġreve": 4197, + "Ġkinds": 4198, + "ses": 4199, + "Ġemer": 4200, + "rial": 4201, + "ĠGreen": 4202, + "Ġmachine": 4203, + "wh": 4204, + "Ġcode": 4205, + "ĠWH": 4206, + "ĠMil": 4207, + "ĠLat": 4208, + "Ġintell": 4209, + "Ġservices": 4210, + "That": 4211, + "Ġmunicip": 4212, + "Ġweak": 4213, + "aching": 4214, + "Ġtwice": 4215, + "Ġmoon": 4216, + "Ġleaves": 4217, + "Ġacqu": 4218, + "Ġsigned": 4219, + "ĠCast": 4220, + "ĠBay": 4221, + "ĠDis": 4222, + "anda": 4223, + "hedron": 4224, + "Ġunless": 4225, + "Ġlots": 4226, + "Ġpatient": 4227, + "Ġopening": 4228, + "ournal": 4229, + "ĠLouis": 4230, + "Ġpounds": 4231, + "ĠMur": 4232, + "Ġempt": 4233, + "Ġreading": 4234, + "Ġmedia": 4235, + "ram": 4236, + "ĠFred": 4237, + "ĠToday": 4238, + "But": 4239, + "kin": 4240, + "Ġut": 4241, + "Ġthee": 4242, + "ĠCos": 4243, + "Ġconvers": 4244, + "Ġhasn": 4245, + "Ġdropped": 4246, + "Ġimagine": 4247, + "asing": 4248, + "Ġdiscovered": 4249, + "enth": 4250, + "ĠBab": 4251, + "OS": 4252, + "RI": 4253, + "min": 4254, + "ĠSing": 4255, + "Ġflowers": 4256, + "Ġaverage": 4257, + "ban": 4258, + "yan": 4259, + "Ġhom": 4260, + "Ġsinger": 4261, + "Ġnewsp": 4262, + "Ġopportunity": 4263, + "ĠRoyal": 4264, + "Ġsides": 4265, + "Ġrelease": 4266, + "Ġrose": 4267, + "ossible": 4268, + "Ġhi": 4269, + "Ġlegs": 4270, + "ĠRock": 4271, + "ulations": 4272, + "Ġsystems": 4273, + "cks": 4274, + "ĠSuper": 4275, + "CK": 4276, + "In": 4277, + "Ġachie": 4278, + "Ġcustom": 4279, + "ĠBig": 4280, + "Ġcalls": 4281, + "Ġsymb": 4282, + "ification": 4283, + "ederal": 4284, + "Ġbrief": 4285, + "ĠTony": 4286, + "Ġreb": 4287, + "Ġbiggest": 4288, + "Ġreligious": 4289, + "Ġdollars": 4290, + "ett": 4291, + "ĠWel": 4292, + "ĠDa": 4293, + "Ġnose": 4294, + "Ġdriving": 4295, + "utions": 4296, + "isted": 4297, + "Ġaccording": 4298, + "Ġsoldiers": 4299, + "Ġfifty": 4300, + "oms": 4301, + "ĠMother": 4302, + "Ġge": 4303, + "Ġdefend": 4304, + "Ġvictim": 4305, + ".--": 4306, + "ĠAlthough": 4307, + "Ġsurface": 4308, + "Ġforeign": 4309, + "ĠCouncil": 4310, + "iant": 4311, + "lor": 4312, + "ication": 4313, + "Ġanywhere": 4314, + "Ġ1980": 4315, + "ĠTex": 4316, + "ÃŃ": 4317, + "arm": 4318, + "etic": 4319, + "ĠWestern": 4320, + "Ġ2017": 4321, + "Ġelected": 4322, + "Ġentered": 4323, + "ĠSometimes": 4324, + "Ġdangerous": 4325, + "ĠMont": 4326, + "ĠCharl": 4327, + "Ġhighest": 4328, + "Ġfemale": 4329, + "ware": 4330, + "Ġdogs": 4331, + "wr": 4332, + "Ġfirm": 4333, + "Ġfresh": 4334, + "Ġswim": 4335, + "Ġcharacters": 4336, + "ĠPerhaps": 4337, + "Ġmistake": 4338, + "Ġmemory": 4339, + "Ġmir": 4340, + "ĠCont": 4341, + "Ġproud": 4342, + "phone": 4343, + "Ġesc": 4344, + "Ġgrowing": 4345, + "isters": 4346, + "Ġ1990": 4347, + "istan": 4348, + "host": 4349, + "Ġclim": 4350, + "Ġresour": 4351, + "Ġthroughout": 4352, + "Ġeasily": 4353, + "Ġreligion": 4354, + "Ġtur": 4355, + "ademy": 4356, + "order": 4357, + "Ġsmaller": 4358, + "Ġteams": 4359, + "ó": 4360, + "Ġboss": 4361, + "utch": 4362, + "eless": 4363, + "Ġtwelve": 4364, + "Ġteach": 4365, + "ĠDemocr": 4366, + "._": 4367, + "kins": 4368, + "ĠBas": 4369, + "ĠFour": 4370, + "Ġpictures": 4371, + ",--": 4372, + "Ġgarden": 4373, + "ĠChinese": 4374, + "orses": 4375, + "!âĢĿ": 4376, + "Ġpig": 4377, + "Ġvan": 4378, + "Ġsky": 4379, + "Ġcurrently": 4380, + "uf": 4381, + "ads": 4382, + "Ġsurr": 4383, + "Ġsatisf": 4384, + "Ġepisode": 4385, + "ule": 4386, + "Ġrub": 4387, + "Ġplants": 4388, + "Ġrisk": 4389, + "Ġlaid": 4390, + "Ġremained": 4391, + "Ġincludes": 4392, + "Ġexpected": 4393, + "vi": 4394, + "Ġopt": 4395, + "Ġassoci": 4396, + "olf": 4397, + "aine": 4398, + "Ġdesp": 4399, + "Ġmissing": 4400, + "ĠBro": 4401, + "oses": 4402, + "ĠUp": 4403, + "Ġplayers": 4404, + "ulf": 4405, + "Ġolder": 4406, + "ĠJoe": 4407, + "Ġindustry": 4408, + "Ġpu": 4409, + "Ġpound": 4410, + "Ġcommer": 4411, + "Ġuses": 4412, + "Ġfunction": 4413, + "Ġcondition": 4414, + "Ġcit": 4415, + "umber": 4416, + "Ġgrown": 4417, + "ĠAssociation": 4418, + "Ġwinter": 4419, + "Ġoriginally": 4420, + "Ġpositive": 4421, + "Ġwearing": 4422, + "Ġrules": 4423, + "icago": 4424, + "Ġwine": 4425, + "Ġpred": 4426, + "ĠPan": 4427, + "ĠJer": 4428, + "estival": 4429, + "Ġspring": 4430, + "Ġdirection": 4431, + "Ġnote": 4432, + "ĠDoctor": 4433, + "acing": 4434, + "ĠHas": 4435, + "Ġparticularly": 4436, + "Ġforty": 4437, + "Ġroll": 4438, + "Ġ188": 4439, + "ĠTor": 4440, + "rap": 4441, + "Ġcrime": 4442, + "ĠShow": 4443, + "Ġbasket": 4444, + "Ġadminist": 4445, + "Ġnegative": 4446, + "Ġcars": 4447, + "ĠCatholic": 4448, + "den": 4449, + "Ġhide": 4450, + "istry": 4451, + "Ġthinks": 4452, + "Ġtrip": 4453, + "Ġdefinitely": 4454, + "bl": 4455, + "Ġsett": 4456, + "ĠPrince": 4457, + "Ġeggs": 4458, + "Ġduty": 4459, + "Ġlack": 4460, + "astern": 4461, + "Well": 4462, + "cies": 4463, + "itar": 4464, + "lected": 4465, + "Ġstaff": 4466, + "Ġcontrib": 4467, + "ĠJackson": 4468, + "Ġfrequ": 4469, + "ĠHy": 4470, + "Ġflat": 4471, + "ga": 4472, + "ĠDiv": 4473, + "ĠNext": 4474, + "stitution": 4475, + "utenant": 4476, + "ba": 4477, + "peror": 4478, + "Ġcompos": 4479, + "ĠAtlant": 4480, + "Ġcritic": 4481, + "ĠSomething": 4482, + "ĠOld": 4483, + "Ġplaced": 4484, + "Ġchoose": 4485, + "Ġcorrect": 4486, + "dé": 4487, + "ashed": 4488, + "icated": 4489, + "Ġheaven": 4490, + "ĠSay": 4491, + "lands": 4492, + "Ġremark": 4493, + "Ġmaintain": 4494, + "Ġculture": 4495, + "ĠSmith": 4496, + "Ġslowly": 4497, + "Ġstrength": 4498, + "Ġyouth": 4499, + "ĠSil": 4500, + "ĠBell": 4501, + "cend": 4502, + "ĠPac": 4503, + "ĠBrother": 4504, + "Ġfinan": 4505, + "Ġcolour": 4506, + "mus": 4507, + "Ġhello": 4508, + "Ġrough": 4509, + "ems": 4510, + "Ġvote": 4511, + "Ġdegree": 4512, + "gn": 4513, + "ö": 4514, + "ola": 4515, + "Ġbread": 4516, + "Ġlarger": 4517, + "Ġprovide": 4518, + "Ġgradu": 4519, + "ĠProfess": 4520, + "NA": 4521, + "mad": 4522, + "Ġrom": 4523, + "Ġhill": 4524, + "ĠRay": 4525, + "Ġparticip": 4526, + "cis": 4527, + "ĠRail": 4528, + "Ġcontain": 4529, + "Ġlawyer": 4530, + "Ġdreams": 4531, + "Ġmentioned": 4532, + "Ġfashion": 4533, + "ann": 4534, + "alled": 4535, + "Ġworried": 4536, + "ĠStep": 4537, + "Ġ2003": 4538, + "ĠSpain": 4539, + "Ġagreed": 4540, + "ĠFil": 4541, + "ĠTime": 4542, + "gel": 4543, + "fficient": 4544, + "Ġelectric": 4545, + "UT": 4546, + "ĠBill": 4547, + "Ġappre": 4548, + "bered": 4549, + "Ġaddition": 4550, + "Ġsouthwestern": 4551, + "Ar": 4552, + "oned": 4553, + "arrow": 4554, + "Ġnotice": 4555, + "Ġsecurity": 4556, + "Ġstudent": 4557, + "Ġorders": 4558, + "itchen": 4559, + "Ġcrowd": 4560, + "Ġiron": 4561, + "ita": 4562, + "Ġhouses": 4563, + "ĠHam": 4564, + "rank": 4565, + "Ġissues": 4566, + "coh": 4567, + "ĠMu": 4568, + "Ġforms": 4569, + "Ġpicked": 4570, + "gen": 4571, + "Ġheat": 4572, + "ĠMass": 4573, + "Ġconcept": 4574, + "Ġrap": 4575, + "Ġpowerful": 4576, + "ĠVictor": 4577, + "Ġthy": 4578, + "Ġacting": 4579, + "Ġcontent": 4580, + "ĠAlso": 4581, + "Ġbigger": 4582, + "Ġchallen": 4583, + "Ġbrothers": 4584, + "Ġjudge": 4585, + "Ġtape": 4586, + "ĠPak": 4587, + "ĠLife": 4588, + "Ġrecords": 4589, + "ĠAdm": 4590, + "Ġdesigned": 4591, + "Ġtotally": 4592, + "Ġdamn": 4593, + "Ġlucky": 4594, + "Ġinfluence": 4595, + "Ġindividual": 4596, + "Ġtight": 4597, + "ĠIr": 4598, + "ĠLittle": 4599, + "ĠFre": 4600, + "Ġuncle": 4601, + "Ġguard": 4602, + "Ġdrunk": 4603, + "Ġbreath": 4604, + "ĠHelp": 4605, + "ĠChicago": 4606, + "Ġconditions": 4607, + "Ġbecomes": 4608, + "icles": 4609, + "Ġsection": 4610, + "Ġbye": 4611, + "Ġrelated": 4612, + "Ġtroops": 4613, + "hand": 4614, + "Ġaware": 4615, + "Ġsource": 4616, + "Ġcompanies": 4617, + "Ġtaught": 4618, + "owa": 4619, + "Ġserve": 4620, + "Ġscreen": 4621, + "gypt": 4622, + "Ġreplaced": 4623, + "Ġwedding": 4624, + "ĠTexas": 4625, + "Ġwhis": 4626, + "Ġ(,": 4627, + "abor": 4628, + "Ġbrown": 4629, + "Ġbound": 4630, + "istics": 4631, + "Ġmainly": 4632, + "Ġgenerally": 4633, + "Ġpir": 4634, + "ĠSpe": 4635, + "ĠFine": 4636, + "Ġplans": 4637, + "Ġ2002": 4638, + "Ġplanet": 4639, + "Ġperformance": 4640, + "Ġpressure": 4641, + "Ġetc": 4642, + ";/": 4643, + "iber": 4644, + "Ġya": 4645, + "Ġweather": 4646, + "...?": 4647, + "Ġwriter": 4648, + "Ġscr": 4649, + "Ġsmart": 4650, + "ĠDev": 4651, + "ĠChristmas": 4652, + "Ġreported": 4653, + "ĠSand": 4654, + "ĠON": 4655, + "Ġwilling": 4656, + "agon": 4657, + "Ġspeech": 4658, + "Ġmedical": 4659, + "Ġleading": 4660, + "Ġbasically": 4661, + "Ġtypes": 4662, + "igned": 4663, + "Ġenter": 4664, + "Ġtransl": 4665, + "Ġhonor": 4666, + "Ġrange": 4667, + "Ġfilled": 4668, + "ĠSund": 4669, + "ĠMel": 4670, + "ĠFe": 4671, + "Ġsmile": 4672, + "Ġobviously": 4673, + "Ġperformed": 4674, + "Ġ2021": 4675, + "ĠPrincess": 4676, + "can": 4677, + "è": 4678, + "hal": 4679, + "ĠSun": 4680, + "ĠHaw": 4681, + "raw": 4682, + "Ġarchite": 4683, + "Ġpair": 4684, + "ĠBoth": 4685, + "ĠFoot": 4686, + "Ġplatform": 4687, + "Ġteeth": 4688, + "idden": 4689, + "Ġempty": 4690, + "mark": 4691, + "ĠHuh": 4692, + "Ġcomplex": 4693, + "ĠMajesty": 4694, + "hold": 4695, + "ĠOff": 4696, + "ulous": 4697, + "apt": 4698, + "ĠChief": 4699, + "Ġsinging": 4700, + "Ġrecorded": 4701, + "Ġreplied": 4702, + "Ġforgot": 4703, + "stitute": 4704, + "Ġmedicine": 4705, + "Ġoffered": 4706, + "ona": 4707, + "Ġloud": 4708, + "oop": 4709, + "ĠRome": 4710, + "Ġjack": 4711, + "Ġ1970": 4712, + "Ġox": 4713, + "vey": 4714, + "rol": 4715, + "ili": 4716, + "Ġvot": 4717, + "Ġclearly": 4718, + "Ġeventually": 4719, + "Ġcompetition": 4720, + "Ġpleasure": 4721, + "Ġmaid": 4722, + "ali": 4723, + "Ġwaste": 4724, + "Ġweird": 4725, + "ĠChampionship": 4726, + "Ġstuck": 4727, + "ĠLake": 4728, + "osh": 4729, + "Ġlegal": 4730, + "Ġdescri": 4731, + "ĠAfrican": 4732, + "Ġfeatures": 4733, + "Ġdescribed": 4734, + "ĠNice": 4735, + "ĠRoad": 4736, + "Ġnetwork": 4737, + "Ġfinger": 4738, + "aring": 4739, + "ĠSant": 4740, + "Ġlies": 4741, + "aked": 4742, + "Ġinstr": 4743, + "Ġfailed": 4744, + "IR": 4745, + "mn": 4746, + "Ġfright": 4747, + "Ġbeg": 4748, + "Ġjour": 4749, + "Ġsake": 4750, + "Ġremind": 4751, + "Ġdistrib": 4752, + "Ġhole": 4753, + "Ġhorses": 4754, + "Ġmeasure": 4755, + "ĠFer": 4756, + "Ġships": 4757, + "Ġcalm": 4758, + "ipe": 4759, + "uries": 4760, + "ĠAng": 4761, + "ĠLater": 4762, + "Ġbless": 4763, + "Ġma": 4764, + "Ġnorthern": 4765, + "ching": 4766, + "vention": 4767, + "Ġcentral": 4768, + "ĠPlay": 4769, + "Ġhotel": 4770, + "Ġbecoming": 4771, + "Why": 4772, + "hered": 4773, + "Ġnative": 4774, + "Ġstock": 4775, + "Ġbutter": 4776, + "onel": 4777, + "ĠâĢĶ": 4778, + "Ġpoll": 4779, + "Ġharm": 4780, + "partement": 4781, + "Ġconcerned": 4782, + "ima": 4783, + "ĠMajor": 4784, + "Ġneither": 4785, + "Ġactress": 4786, + "Ġmissed": 4787, + "ĠST": 4788, + "ardon": 4789, + "ĠRec": 4790, + "Ġkilling": 4791, + "ĠGreek": 4792, + "Ġopinion": 4793, + "département": 4794, + "Ġwet": 4795, + "ĠRog": 4796, + "ulty": 4797, + "Ġtele": 4798, + "Ġgreatest": 4799, + "ĠBrown": 4800, + "Ġoccup": 4801, + "Ġresults": 4802, + "ournament": 4803, + "Ġquarter": 4804, + "AY": 4805, + "IGH": 4806, + "craft": 4807, + "win": 4808, + "ishes": 4809, + "Ġkitchen": 4810, + "ĠLos": 4811, + "ĠLady": 4812, + "Ġaged": 4813, + "Ġedge": 4814, + "Ġofficers": 4815, + "ĠSecret": 4816, + "see": 4817, + "ĠEgypt": 4818, + "odies": 4819, + "Ġapplic": 4820, + "Ġpainting": 4821, + "Ġbreakfast": 4822, + "Ġphilosop": 4823, + "Ġduck": 4824, + "Ġsaved": 4825, + "iano": 4826, + "Ġhandle": 4827, + "Ġproperty": 4828, + "ĠRussian": 4829, + "ĠAcademy": 4830, + "Ġcitiz": 4831, + "ij": 4832, + "Ġalt": 4833, + "Ġshock": 4834, + "Ġgreater": 4835, + "Ġattend": 4836, + "Ġmut": 4837, + "Ġfaces": 4838, + "Ġnation": 4839, + "Ġroof": 4840, + "Ġ2019": 4841, + "Ġproduce": 4842, + "ĠClub": 4843, + "Ġhurry": 4844, + "Ġexperien": 4845, + "Ġdivided": 4846, + "Ġstrugg": 4847, + "odes": 4848, + "yeh": 4849, + "Ġinterview": 4850, + "Ġtarget": 4851, + "viet": 4852, + "Ġreasons": 4853, + "aches": 4854, + "Ġmere": 4855, + "ĠEs": 4856, + "Ġmission": 4857, + "Ġstructure": 4858, + "Ġcircum": 4859, + "Don": 4860, + "do": 4861, + "Ġbrand": 4862, + "Ġpapers": 4863, + "Ġmanager": 4864, + "Ġ187": 4865, + "Ġrealize": 4866, + "Ġstudied": 4867, + "Ġstudio": 4868, + "Ġbal": 4869, + "anced": 4870, + "Ġgoal": 4871, + "Ġpartner": 4872, + "ips": 4873, + "ĠGovernment": 4874, + "Ġwitness": 4875, + "Ġmechan": 4876, + "Ġshape": 4877, + "Ġordered": 4878, + "Ġdirectly": 4879, + ";&": 4880, + "Ġwow": 4881, + "Ġdom": 4882, + "ĠLy": 4883, + "Ġburied": 4884, + "ĠServ": 4885, + "imin": 4886, + "ĠJac": 4887, + "Ġbitch": 4888, + "Ġeasier": 4889, + "Ġpalace": 4890, + "cise": 4891, + "ĠEach": 4892, + "Ġshout": 4893, + "ĠStud": 4894, + "Ġstarts": 4895, + "Ġheads": 4896, + "oken": 4897, + "Ġimpossible": 4898, + "Ġsurprised": 4899, + "gent": 4900, + "ĠIowa": 4901, + "ĠSid": 4902, + "Ġworst": 4903, + "ĠSoviet": 4904, + "iance": 4905, + "Ġdetect": 4906, + "Ġgentlemen": 4907, + "ĠJimmy": 4908, + "EL": 4909, + "ĠMill": 4910, + "Ġkeeping": 4911, + "Ġdecide": 4912, + "Ġleaders": 4913, + "Ġtechnology": 4914, + "Ġcamera": 4915, + "'.": 4916, + "sed": 4917, + "ĠId": 4918, + "ĠArab": 4919, + "ĠBa": 4920, + "Ġstran": 4921, + "rences": 4922, + "Ġrare": 4923, + "azine": 4924, + "Ġruns": 4925, + "sing": 4926, + "Ġsilly": 4927, + "Ġmeat": 4928, + "Ġlikes": 4929, + "Ġartist": 4930, + "Ġincrease": 4931, + "Ġsurprise": 4932, + "Ġprepared": 4933, + "Ġthick": 4934, + "stood": 4935, + "ĠBest": 4936, + "ĠBack": 4937, + "Ġshoes": 4938, + "Ġlog": 4939, + "Ġamb": 4940, + "Ġign": 4941, + "Ġbomb": 4942, + "ato": 4943, + "imately": 4944, + "Ġ1999": 4945, + "ĠTrans": 4946, + "Ġzero": 4947, + "Ġteaching": 4948, + "Ġflying": 4949, + "Ġtaste": 4950, + "Ġder": 4951, + "Ġlunch": 4952, + "Ġadult": 4953, + "Ġevil": 4954, + "Ġlearning": 4955, + "had": 4956, + "ĠSea": 4957, + "ĠBang": 4958, + "Ġcancer": 4959, + "Ġalcoh": 4960, + "iger": 4961, + "ĠKh": 4962, + "rance": 4963, + "Ġblind": 4964, + "Ġourselves": 4965, + "Ġseconds": 4966, + "arently": 4967, + "Ġcrying": 4968, + "ĠMexico": 4969, + "ault": 4970, + "oom": 4971, + "Ġsen": 4972, + "Ġcart": 4973, + "ami": 4974, + "Ġju": 4975, + "Ġexcl": 4976, + "Ġmetal": 4977, + "ĠEmpire": 4978, + "RO": 4979, + "ĠMake": 4980, + "Ġasleep": 4981, + "Ġrecently": 4982, + "Ġstandard": 4983, + "Ġsleeping": 4984, + "Ġdrinking": 4985, + "If": 4986, + "vis": 4987, + "Ġmemor": 4988, + "Ġtraditional": 4989, + "ĠTai": 4990, + "urday": 4991, + "Ġjoy": 4992, + "Ġsuc": 4993, + "asty": 4994, + "Ġbuildings": 4995, + "ĠMartin": 4996, + "IM": 4997, + "just": 4998, + "ĠSaint": 4999, + "Ġonto": 5000, + "ĠGar": 5001, + "Ġ31": 5002, + "ighs": 5003, + "bel": 5004, + "Ġbelief": 5005, + "Ġappreci": 5006, + "Ġsucceed": 5007, + ".]": 5008, + "ĠTed": 5009, + "ette": 5010, + "Ġrank": 5011, + "Ġactual": 5012, + "Ġconsum": 5013, + "ucle": 5014, + "Ġlic": 5015, + "Ġdelight": 5016, + "Ġprove": 5017, + "ĠStill": 5018, + "Ġimage": 5019, + "iously": 5020, + "Ġprovince": 5021, + "Ġrequest": 5022, + "IF": 5023, + "eral": 5024, + "ĠSqu": 5025, + "Ġeld": 5026, + "iring": 5027, + "semb": 5028, + "ĠLine": 5029, + "Ġpocket": 5030, + "Ġprevent": 5031, + "Ġchap": 5032, + "mit": 5033, + "pic": 5034, + "ĠWood": 5035, + "urt": 5036, + "Ġladies": 5037, + "ĠCons": 5038, + "Ġplain": 5039, + "Ġcouncil": 5040, + "Ġholid": 5041, + "ios": 5042, + "ĠInt": 5043, + "orks": 5044, + "aret": 5045, + "Ġremem": 5046, + "Ġforever": 5047, + "Ġkingdom": 5048, + "ĠWomen": 5049, + "rier": 5050, + "...\"": 5051, + "Ġhungry": 5052, + "ĠProfessor": 5053, + "bles": 5054, + "Ġfrog": 5055, + "lection": 5056, + "ading": 5057, + "ansas": 5058, + "Ġseparate": 5059, + "Ġdocument": 5060, + "rate": 5061, + "Ġast": 5062, + "ingers": 5063, + "ĠDire": 5064, + "ĠYoung": 5065, + "ishop": 5066, + "Ġamazing": 5067, + "rated": 5068, + "Ġcash": 5069, + "iform": 5070, + "Ġscar": 5071, + "Ġstayed": 5072, + "Ġpromised": 5073, + "Ġcosts": 5074, + "fortun": 5075, + "ĠWal": 5076, + "Ġsequ": 5077, + "ĠFore": 5078, + "igan": 5079, + "Ġsaf": 5080, + "onds": 5081, + "Ġgrant": 5082, + "Ġlights": 5083, + "Ġpretend": 5084, + "Ġlistening": 5085, + "ĠCompany": 5086, + "My": 5087, + "ni": 5088, + "Ġpure": 5089, + "ota": 5090, + "ĠMax": 5091, + "Ġconstit": 5092, + "Ġsuspect": 5093, + "ĠRemember": 5094, + "friend": 5095, + "ening": 5096, + "ĠOpen": 5097, + "icked": 5098, + "Ġtyp": 5099, + "Ġsoldier": 5100, + "How": 5101, + "law": 5102, + "orough": 5103, + "ĠActually": 5104, + "Ġencoura": 5105, + "Ġmultiple": 5106, + "ĠShi": 5107, + "ĠCall": 5108, + "aval": 5109, + "ĠFrancis": 5110, + "Ġplanning": 5111, + "Ġ1960": 5112, + "Ġlanguages": 5113, + "Ġmunicipality": 5114, + "Ġturns": 5115, + "ĠCarl": 5116, + "All": 5117, + "Ġthrew": 5118, + "ĠCamp": 5119, + "urance": 5120, + "Ġprevious": 5121, + "Ġprograms": 5122, + "Ġfavorite": 5123, + "Ġjourney": 5124, + "ĠSol": 5125, + "ctors": 5126, + "Ġspell": 5127, + "ras": 5128, + "ĠTy": 5129, + "Ġcentre": 5130, + "Ġpattern": 5131, + "Ġrequired": 5132, + "ora": 5133, + "utive": 5134, + "Ġrat": 5135, + "ĠConf": 5136, + "Ġorganization": 5137, + "ĠJeff": 5138, + "ĠAgain": 5139, + "ĠÎ": 5140, + "Ġmate": 5141, + "Ġren": 5142, + "Ġreven": 5143, + "ĠLong": 5144, + "ĠâĢĺ": 5145, + "Ġswear": 5146, + "Ġfreed": 5147, + "Ġmotor": 5148, + "Ġcastle": 5149, + "40": 5150, + "60": 5151, + "Ġfra": 5152, + "Ġdrew": 5153, + "Ġgodd": 5154, + "antic": 5155, + "Ġloves": 5156, + "Ġqual": 5157, + "Ġ--&": 5158, + "Ġappointed": 5159, + "ocolate": 5160, + "Ġow": 5161, + "ĠLight": 5162, + "Ġjournal": 5163, + "Ġactive": 5164, + "Ġears": 5165, + "Ġreality": 5166, + "ĠAnyway": 5167, + "Ġstruck": 5168, + "ĠIndiana": 5169, + "Ġninet": 5170, + "ĠAngeles": 5171, + "ĠFar": 5172, + "Ġgrass": 5173, + "Ġcrack": 5174, + "Ġbroadcast": 5175, + "wan": 5176, + "asy": 5177, + "ĠIslam": 5178, + "Ġplane": 5179, + "Ġstreets": 5180, + "Ġexcuse": 5181, + "ĠGovernor": 5182, + "lig": 5183, + "oured": 5184, + "Ġpil": 5185, + "Ġgain": 5186, + "oma": 5187, + "Ġscrew": 5188, + "Ġturning": 5189, + "ĠCanad": 5190, + "Ġbeauty": 5191, + "Ġcopy": 5192, + "ĠKenned": 5193, + "Ġschol": 5194, + "RB": 5195, + "Ġtick": 5196, + "Ġreact": 5197, + "ĠHal": 5198, + "Ġsports": 5199, + "Ġpoet": 5200, + "ĠAmericans": 5201, + "ĠCarter": 5202, + "Ġdemon": 5203, + "Ġsilver": 5204, + "war": 5205, + "gend": 5206, + "Ġmanaged": 5207, + "Ġcontr": 5208, + "ĠProt": 5209, + "Ġsplit": 5210, + "Ġsignificant": 5211, + "ELL": 5212, + "Ġbother": 5213, + "Ġunit": 5214, + "Ġdestroyed": 5215, + "ĠSaturday": 5216, + "AD": 5217, + "An": 5218, + "isher": 5219, + "Ġpin": 5220, + "ira": 5221, + "Ġstream": 5222, + "ordin": 5223, + "azz": 5224, + "Ġtransfer": 5225, + "Ġphysical": 5226, + "Ġintroduced": 5227, + "riday": 5228, + "ef": 5229, + "isl": 5230, + "Ġcuri": 5231, + "ĠHans": 5232, + "Ġprogress": 5233, + "Ġunits": 5234, + "Ġ60": 5235, + "Ġfavour": 5236, + "ĠFootball": 5237, + "rison": 5238, + "rees": 5239, + "Ġsouthern": 5240, + "Ġchat": 5241, + "ĠPope": 5242, + "ĠStar": 5243, + "Ġmob": 5244, + "ĠUncle": 5245, + "Ġtransport": 5246, + "Ġpossibly": 5247, + "ĠParliament": 5248, + "ĠSecond": 5249, + "Ġdare": 5250, + "Ġgall": 5251, + "ache": 5252, + "ĠHot": 5253, + "ĠOw": 5254, + "ppy": 5255, + "Ġunc": 5256, + "Ġsmoke": 5257, + "Ġlocation": 5258, + "Ġterrit": 5259, + "Ġoperation": 5260, + "Ġmagn": 5261, + "rs": 5262, + "Ġtim": 5263, + "ĠPenn": 5264, + "Ġappears": 5265, + "ev": 5266, + "uz": 5267, + "ĠWay": 5268, + "stra": 5269, + "ado": 5270, + "osen": 5271, + "Ġuniverse": 5272, + "ĠIsn": 5273, + "Ġ1996": 5274, + "Ġeconomic": 5275, + "Ġroute": 5276, + "ĠKennedy": 5277, + "bre": 5278, + "tr": 5279, + "itan": 5280, + "Ġlosing": 5281, + "ĠThink": 5282, + "awa": 5283, + "Ġfinding": 5284, + "Ġinstru": 5285, + "ĠEverybody": 5286, + "Ġwake": 5287, + "Ġbub": 5288, + "orter": 5289, + "Ġdressed": 5290, + "Ġtoward": 5291, + "arian": 5292, + "ĠSon": 5293, + "Ġstret": 5294, + "Ġrelative": 5295, + "Ġhardly": 5296, + "Ġconstruction": 5297, + "Ġaccepted": 5298, + "Ġdrug": 5299, + "TS": 5300, + "Ġmale": 5301, + "ivity": 5302, + "Ġunivers": 5303, + "Ġlaws": 5304, + "ĠSunday": 5305, + "oices": 5306, + "Ġbast": 5307, + "Ġdirty": 5308, + "ĠTurn": 5309, + "Ġaltern": 5310, + "umped": 5311, + "Ġafterwards": 5312, + "Ġshowing": 5313, + "Ġfeels": 5314, + "199": 5315, + "Ġhumans": 5316, + "Ġadvant": 5317, + "Ġrocks": 5318, + "Ġtreatment": 5319, + "Ġindependent": 5320, + "mo": 5321, + "Ġfought": 5322, + "Ġlaug": 5323, + "ushing": 5324, + "Ġwash": 5325, + "ooper": 5326, + "Ġclock": 5327, + "clock": 5328, + "Ġfalling": 5329, + "book": 5330, + "Ġfruit": 5331, + "aling": 5332, + "ĠLie": 5333, + "Ġflo": 5334, + "Ġrequire": 5335, + "Al": 5336, + "pro": 5337, + "Ġ1998": 5338, + "Ġresponsible": 5339, + "Ġinha": 5340, + "ĠWhatever": 5341, + "Ġquality": 5342, + "Ġscream": 5343, + "Ġtrial": 5344, + ",'": 5345, + "ker": 5346, + "ĠDO": 5347, + "ĠVer": 5348, + "Ġretired": 5349, + "Ġsword": 5350, + "ĠPrime": 5351, + "Ġbrave": 5352, + "Ġsweetie": 5353, + "ĠCenter": 5354, + "Ġsymbol": 5355, + "Ġtong": 5356, + "Ġ1997": 5357, + "Americ": 5358, + "LD": 5359, + "bell": 5360, + "with": 5361, + "Ġboo": 5362, + "ĠCat": 5363, + "riff": 5364, + "Ġhadn": 5365, + "Ġprince": 5366, + "Ġhelping": 5367, + "Ġlands": 5368, + "Ġoccasion": 5369, + "Ġfixed": 5370, + "Ġneighbor": 5371, + "ĠScottish": 5372, + "Ġfinancial": 5373, + "80": 5374, + "ĠLast": 5375, + "ĠJane": 5376, + "artment": 5377, + "Ġcomplic": 5378, + "chant": 5379, + "Ġstatement": 5380, + "25": 5381, + "nam": 5382, + "Ġpleased": 5383, + "geant": 5384, + "ĠNobody": 5385, + "ĠAsia": 5386, + "Ġ185": 5387, + "Ġbottle": 5388, + "hetic": 5389, + "Ġcandid": 5390, + "Ġrent": 5391, + "ĠUK": 5392, + "ĠStay": 5393, + "achus": 5394, + "Ġrecent": 5395, + "Ġinstit": 5396, + "ĠTHAT": 5397, + "Ġdivision": 5398, + "UR": 5399, + "Ġdiam": 5400, + "Ġpra": 5401, + "Ġghost": 5402, + "rage": 5403, + "Ġrise": 5404, + "Ġadop": 5405, + "Ġnumer": 5406, + "ĠSpeak": 5407, + "Ġgiant": 5408, + "Ġlaughed": 5409, + "ties": 5410, + "ĠWatch": 5411, + "Ġmeas": 5412, + "tering": 5413, + "Ġconv": 5414, + "oston": 5415, + "Ġcoat": 5416, + "Ġshad": 5417, + "Ġmatters": 5418, + "Ġaudience": 5419, + "Ġdrugs": 5420, + "\"?": 5421, + "look": 5422, + "rat": 5423, + "kend": 5424, + "ĠFive": 5425, + "Ġflow": 5426, + "ufact": 5427, + "rough": 5428, + "heast": 5429, + "Ġgro": 5430, + "ĠShar": 5431, + "Ġscore": 5432, + "Ġexchan": 5433, + "Ġpulled": 5434, + "Ġdying": 5435, + "Ġthroat": 5436, + "Ġcomedy": 5437, + "Ġyounger": 5438, + "Ġexpress": 5439, + "Ġjobs": 5440, + "Ġapproach": 5441, + "Ġproducts": 5442, + "Ġrailway": 5443, + "Ġtemperature": 5444, + "ront": 5445, + "Ġodd": 5446, + "ala": 5447, + "iral": 5448, + "Ġnoticed": 5449, + "Ġmanufact": 5450, + "ĠDivision": 5451, + "Ġsafety": 5452, + "pher": 5453, + "Ġfingers": 5454, + "icide": 5455, + "imum": 5456, + "ĠBull": 5457, + "Ġjail": 5458, + "fection": 5459, + "oking": 5460, + "ĠBritain": 5461, + "och": 5462, + "oles": 5463, + "Ġprefer": 5464, + "Ġends": 5465, + "Ġminor": 5466, + "ĠBlue": 5467, + "Ġentirely": 5468, + "ĠRussia": 5469, + "Ġimprove": 5470, + "Ġbac": 5471, + "Ġlord": 5472, + "Ġgay": 5473, + "ĠDen": 5474, + "Ġdisplay": 5475, + "There": 5476, + "ĠTommy": 5477, + "Ġwalls": 5478, + "imp": 5479, + "ĠCare": 5480, + "ĠDou": 5481, + "ĠFriday": 5482, + "Ġarrange": 5483, + "ĠValley": 5484, + "Ġuniform": 5485, + "Ġpoly": 5486, + "Ġremains": 5487, + "ĠAtt": 5488, + "ĠDidn": 5489, + "Ġveh": 5490, + "ĠDamn": 5491, + "atre": 5492, + "ĠWind": 5493, + "aming": 5494, + "Ġwheel": 5495, + "agn": 5496, + "ĠRev": 5497, + "Ġsilence": 5498, + "ĠLeave": 5499, + "ĠSwed": 5500, + "ĠMusic": 5501, + "mar": 5502, + "Ġtiny": 5503, + "Ġtournament": 5504, + "ĠIS": 5505, + "Ġgrave": 5506, + "Ġgentleman": 5507, + "Ġmanagement": 5508, + "Ġcards": 5509, + "ĠIre": 5510, + "essel": 5511, + "Ġreform": 5512, + "Ġlibr": 5513, + "cles": 5514, + "ĠShit": 5515, + "ĠEveryone": 5516, + "Ġconstant": 5517, + "23": 5518, + "AC": 5519, + "lict": 5520, + "oir": 5521, + "uyeh": 5522, + "Ġdar": 5523, + "ĠMod": 5524, + "lying": 5525, + "cts": 5526, + "ilty": 5527, + "hia": 5528, + "Ġdefeated": 5529, + "ĠCanadian": 5530, + "Ġpit": 5531, + "iana": 5532, + "ocent": 5533, + "ĠMaria": 5534, + "Ġthousands": 5535, + "Ġsteps": 5536, + "TH": 5537, + "Ġsin": 5538, + "Ġbodies": 5539, + "icate": 5540, + "ĠSit": 5541, + "idents": 5542, + "ĠMove": 5543, + "Ġremoved": 5544, + "Ġpolitics": 5545, + "ominated": 5546, + "Ġopposite": 5547, + "onse": 5548, + "irk": 5549, + "ĠBre": 5550, + "Ġliber": 5551, + "atherine": 5552, + "ysis": 5553, + "ĠSomeone": 5554, + "Ġbasic": 5555, + "Ġsolution": 5556, + "Ġeffort": 5557, + "Yeah": 5558, + "ua": 5559, + "amin": 5560, + "ĠShould": 5561, + "Ġreceive": 5562, + "Ġcircle": 5563, + "ĠDaddy": 5564, + "ĠEarly": 5565, + "cellent": 5566, + "stein": 5567, + "Ġbat": 5568, + "Ġmax": 5569, + "Ġnucle": 5570, + "Ġhast": 5571, + "ĠSummer": 5572, + "ĠWall": 5573, + "ĠRose": 5574, + "ĠRural": 5575, + "ĠFort": 5576, + "Ġknowing": 5577, + "elly": 5578, + "Ġproceed": 5579, + "Ġtrave": 5580, + "Ġentertain": 5581, + "Ġauthority": 5582, + "uous": 5583, + "Ġfaster": 5584, + "enced": 5585, + "etts": 5586, + "Ġbeach": 5587, + "ĠOx": 5588, + "Ġdelic": 5589, + "ĠVal": 5590, + "Ġassum": 5591, + "Ġdetails": 5592, + "Ġconnected": 5593, + "EC": 5594, + "Ġusual": 5595, + "Ġagent": 5596, + "Ġqueen": 5597, + "Ġafford": 5598, + "Ġraise": 5599, + "Ġmusical": 5600, + "Ġguns": 5601, + "Ġfifth": 5602, + "This": 5603, + "ĠSusan": 5604, + "ĠHoly": 5605, + "Ġmel": 5606, + "ĠKoh": 5607, + "Ġsomewhat": 5608, + "Ġeverywhere": 5609, + "Ġchocolate": 5610, + "ockey": 5611, + "hammad": 5612, + "Ġattacked": 5613, + "ĠLatin": 5614, + "Ġsettled": 5615, + "Ġrapid": 5616, + "UGH": 5617, + "Ġbare": 5618, + "ĠMich": 5619, + "hio": 5620, + "--\"": 5621, + "Ġcontains": 5622, + "Ġ35": 5623, + "hampion": 5624, + "ĠOb": 5625, + "ĠEll": 5626, + "Ġcomment": 5627, + "Ġspoken": 5628, + "Ġmatches": 5629, + "Ġ1994": 5630, + "Ġ1995": 5631, + "Ġcompleted": 5632, + "Ġprovided": 5633, + "24": 5634, + "pa": 5635, + "Ġtun": 5636, + "ĠNick": 5637, + "ctic": 5638, + "ĠJoseph": 5639, + "bey": 5640, + "ĠConstitution": 5641, + "Ġawful": 5642, + "Ġconversation": 5643, + "Do": 5644, + "uals": 5645, + "Ġcous": 5646, + "ĠSH": 5647, + "ĠSur": 5648, + "ĠDutch": 5649, + "ĠGO": 5650, + "Ġknife": 5651, + "Ġmanner": 5652, + "ĠAnn": 5653, + "Ġjoke": 5654, + "ean": 5655, + "ĠAwards": 5656, + "Ġkm": 5657, + "Ġanx": 5658, + "Ġsees": 5659, + "Ġeh": 5660, + "ĠBon": 5661, + "Ġroyal": 5662, + "Ġgoods": 5663, + "ogether": 5664, + "Ġflu": 5665, + "Ġhighly": 5666, + "Ġcauses": 5667, + "197": 5668, + "Ġforgotten": 5669, + "Ġcloser": 5670, + "Ġcredit": 5671, + "bb": 5672, + "bar": 5673, + "overy": 5674, + "ĠMi": 5675, + "Ġflower": 5676, + "Ġslightly": 5677, + "Ġchicken": 5678, + "Ġnewspaper": 5679, + "achusetts": 5680, + "da": 5681, + "ja": 5682, + "vad": 5683, + "Ġfired": 5684, + "aning": 5685, + "ĠMem": 5686, + "keep": 5687, + "Ġability": 5688, + "Ġinterp": 5689, + "ugg": 5690, + "Ġwestern": 5691, + "Ġfal": 5692, + "ĠNorm": 5693, + "Ġshore": 5694, + "ĠĠĠĠĠĠĠ": 5695, + "Ġuseful": 5696, + "Ġpresence": 5697, + "ĠWhoa": 5698, + "Ġexpensive": 5699, + "Ġwinning": 5700, + "ĠCommun": 5701, + "ĠDaniel": 5702, + "Ġavoid": 5703, + "Ġmajority": 5704, + "Ġcounter": 5705, + "Ġactivity": 5706, + "Ġbudget": 5707, + "Ġpa": 5708, + "Ġstro": 5709, + "Ġlips": 5710, + "Ġsugar": 5711, + "Ġbringing": 5712, + "Ġfocus": 5713, + "ĠSecretary": 5714, + "rick": 5715, + "ĠBat": 5716, + "ĠInter": 5717, + "aging": 5718, + "Ġadvent": 5719, + "Ġrecomm": 5720, + "Ġfeelings": 5721, + "Ġglob": 5722, + "Ġstudies": 5723, + "Ġrestaur": 5724, + "Ġcalcul": 5725, + "ĠRepublican": 5726, + "gil": 5727, + "lied": 5728, + "put": 5729, + "water": 5730, + "stances": 5731, + "ĠRoll": 5732, + "emic": 5733, + "ĠColumb": 5734, + "ĠEliz": 5735, + "vania": 5736, + "gers": 5737, + "ĠGra": 5738, + "thur": 5739, + "Ġearn": 5740, + "Ġweekend": 5741, + "Ġshooting": 5742, + "Ġprincess": 5743, + "Ġvictory": 5744, + "ĠMuslim": 5745, + "Ġchemical": 5746, + "Ġalcohol": 5747, + "ĠTown": 5748, + "ĠDet": 5749, + "Ġswitch": 5750, + "ception": 5751, + "ĠAustralian": 5752, + "Ġextremely": 5753, + "ĠMassachusetts": 5754, + "EE": 5755, + "down": 5756, + "Ġmap": 5757, + "uman": 5758, + "Ġrow": 5759, + "Ġtrick": 5760, + "tained": 5761, + "Ġsuggested": 5762, + "car": 5763, + "uit": 5764, + "uan": 5765, + "ndy": 5766, + "Ġocean": 5767, + "Ġinvent": 5768, + "ĠSix": 5769, + "ĠMust": 5770, + "ĠBru": 5771, + "ĠJon": 5772, + "Ġexer": 5773, + "aren": 5774, + "Ġprem": 5775, + "Ġdrama": 5776, + "ĠGeorg": 5777, + "Ġstatus": 5778, + "Ġautom": 5779, + "boy": 5780, + "ĠMum": 5781, + "ĠRick": 5782, + "umn": 5783, + "Ġ32": 5784, + "Is": 5785, + "PS": 5786, + "ingu": 5787, + "Ġlin": 5788, + "ĠDun": 5789, + "ĠRun": 5790, + "Ġshirt": 5791, + "ĠInst": 5792, + "Ġconsist": 5793, + "Ġelement": 5794, + "Ġgraph": 5795, + "Ġadvice": 5796, + "father": 5797, + "pea": 5798, + "Ġaim": 5799, + "ĠSouthern": 5800, + "ĠChild": 5801, + "eman": 5802, + "place": 5803, + "Ġguilty": 5804, + "Ġunderstood": 5805, + "Ġprior": 5806, + "Ġconstru": 5807, + "Ġresources": 5808, + "jo": 5809, + "sm": 5810, + "vest": 5811, + "Ġwrest": 5812, + "eding": 5813, + "ila": 5814, + "ĠGames": 5815, + "ĠRel": 5816, + "Ġvessel": 5817, + "Ġchest": 5818, + "Ġfully": 5819, + "Ġgolden": 5820, + "ĠAddons": 5821, + "Ġescap": 5822, + "Ġnineteen": 5823, + "bow": 5824, + "Ġtough": 5825, + "leg": 5826, + "Ġrum": 5827, + "Ġnoise": 5828, + "ĠSociety": 5829, + "izes": 5830, + "intend": 5831, + "Ġowned": 5832, + "Ġsetting": 5833, + "ĠFrances": 5834, + "ĠCarolina": 5835, + "enger": 5836, + "ĠAy": 5837, + "Ġliqu": 5838, + "ĠKansas": 5839, + "Ġcoal": 5840, + "Ġprime": 5841, + "uckles": 5842, + "Ġresist": 5843, + "Ġtradition": 5844, + "Ġflew": 5845, + "ĠMichigan": 5846, + "col": 5847, + "à¤": 5848, + "Ġnerv": 5849, + "ĠSub": 5850, + "Ġult": 5851, + "Ġupstairs": 5852, + "Ġplanned": 5853, + "Ġdrawing": 5854, + "Ġcollection": 5855, + "Ġbenefit": 5856, + "ION": 5857, + "Ġpassing": 5858, + "Ġdamage": 5859, + "ĠSenate": 5860, + "ĠPrize": 5861, + "Ġcommercial": 5862, + "zil": 5863, + "ĠTay": 5864, + "ĠLis": 5865, + "unched": 5866, + "olved": 5867, + "Ġresc": 5868, + "Ġdesire": 5869, + "Ġappearance": 5870, + "Ġoccurred": 5871, + "Ġawarded": 5872, + "Ġtrib": 5873, + "Ġbranch": 5874, + "enes": 5875, + "Ġthin": 5876, + "ĠHmm": 5877, + "Ġsem": 5878, + "ports": 5879, + "Ġcarefully": 5880, + "acle": 5881, + "Ġproof": 5882, + "ĠInstitute": 5883, + "Ġhelps": 5884, + "Ġkeeps": 5885, + "Ġdram": 5886, + "Ġ1992": 5887, + "ANT": 5888, + "Ġmagic": 5889, + "porary": 5890, + "Ġgift": 5891, + "ulate": 5892, + "osa": 5893, + "Ġupset": 5894, + "Ġotherwise": 5895, + "Ġparties": 5896, + "Ġflag": 5897, + "Ġtraffic": 5898, + "hamber": 5899, + "Ġexpression": 5900, + "Ġpresented": 5901, + "ĠGroup": 5902, + "ĠOlympics": 5903, + "Äĩ": 5904, + "ĠTen": 5905, + "Ġnotes": 5906, + "ĠFire": 5907, + "abeth": 5908, + "Ġcloud": 5909, + "Ġunf": 5910, + "Ġshoulder": 5911, + "Ġcarbon": 5912, + "Ġexpand": 5913, + "Ġperfectly": 5914, + "Ġhanging": 5915, + "ias": 5916, + "inent": 5917, + "Ġfederal": 5918, + "ĠMhm": 5919, + "Ġchosen": 5920, + "ĠBrad": 5921, + "Ġinstance": 5922, + "Ġsexual": 5923, + "Ġintellig": 5924, + "fall": 5925, + "gment": 5926, + "onia": 5927, + "ĠBad": 5928, + "ĠNaz": 5929, + "ĠDor": 5930, + "ĠDaw": 5931, + "cel": 5932, + "Ġate": 5933, + "Ġappeal": 5934, + "ĠDeath": 5935, + "ricane": 5936, + "ERE": 5937, + "Ġdetail": 5938, + "syl": 5939, + "Ġmurd": 5940, + "Ġscale": 5941, + "Ġconnection": 5942, + "Ġlimited": 5943, + "Ġpunish": 5944, + "heart": 5945, + "ĠCam": 5946, + "irlf": 5947, + "Ġdoors": 5948, + "Ġ1991": 5949, + "Ġsignal": 5950, + "Ġmountains": 5951, + "Ġneighbour": 5952, + "itzer": 5953, + "Ġwatched": 5954, + "ĠDepartment": 5955, + "irlfriend": 5956, + "isy": 5957, + "ĠWater": 5958, + "ĠHad": 5959, + "ĠOhio": 5960, + "Ġconcent": 5961, + "Ġunderstanding": 5962, + "Ġadmit": 5963, + "Ġrepresented": 5964, + "Ġcabin": 5965, + "peare": 5966, + ".)": 5967, + "ĠTry": 5968, + "ĠVen": 5969, + "Ġblank": 5970, + "Ġdisci": 5971, + "Ġkiller": 5972, + "Ġexcited": 5973, + "Ġeffects": 5974, + "kespeare": 5975, + "iest": 5976, + "Ġtears": 5977, + "Ġcream": 5978, + "Ġspin": 5979, + "Ġapple": 5980, + "Ġchain": 5981, + "Ġbreaking": 5982, + "Ġnorthwest": 5983, + "Ġlabor": 5984, + "gle": 5985, + "rant": 5986, + "Ġpill": 5987, + "Ġnarrow": 5988, + "Ġwebs": 5989, + "ĠStand": 5990, + "Ġ45": 5991, + "Ġ1993": 5992, + "Ġpassion": 5993, + "ĠHarry": 5994, + "Ġincreased": 5995, + "Ġdancing": 5996, + "ĠKohgil": 5997, + "ĠKohgiluyeh": 5998, + "21": 5999, + "pal": 6000, + "Ġeth": 6001, + "Ġwings": 6002, + "ĠAunt": 6003, + "ĠHor": 6004, + "ĠNic": 6005, + "rain": 6006, + "Ġconc": 6007, + "resp": 6008, + "Ġapolog": 6009, + "Ġadvantage": 6010, + "ano": 6011, + "Ġhook": 6012, + "etch": 6013, + "ĠBes": 6014, + "Ġune": 6015, + "urd": 6016, + "Ġhearing": 6017, + "Ġpossess": 6018, + "Ġbeside": 6019, + "Ġcateg": 6020, + "ĠTre": 6021, + "ĠMen": 6022, + "ĠCO": 6023, + "Ġstations": 6024, + "ĠStan": 6025, + "Ġ90": 6026, + "Ġresponse": 6027, + "Ġcarrying": 6028, + "Ġlaughing": 6029, + "Ġdeclared": 6030, + "Ġremembered": 6031, + "Ġloose": 6032, + "ĠAv": 6033, + "Ġstated": 6034, + "Ġmagazine": 6035, + "Ġteachers": 6036, + "Ġninety": 6037, + "erves": 6038, + "Ġheight": 6039, + "Ġreaction": 6040, + "Ġbutton": 6041, + "inda": 6042, + "Ġtroub": 6043, + "Ġquit": 6044, + "Ġsigns": 6045, + "Ġ70": 6046, + "Ġbasis": 6047, + "ervation": 6048, + "Ġgrowth": 6049, + "Ġbullet": 6050, + "ĠPennsyl": 6051, + "æ": 6052, + "enny": 6053, + "Ġnurs": 6054, + "ĠSom": 6055, + "ĠMaz": 6056, + "ĠBal": 6057, + "urse": 6058, + "ĠDave": 6059, + "quar": 6060, + "Ġunique": 6061, + "Ġforgive": 6062, + "Ġachieve": 6063, + "vy": 6064, + "Ġlit": 6065, + "Ġnom": 6066, + "Ġnea": 6067, + "ĠHit": 6068, + "ĠOffic": 6069, + "Ġsevere": 6070, + "ĠUnt": 6071, + "Ġansw": 6072, + "Ġballs": 6073, + "Ġdrove": 6074, + "Ġbillion": 6075, + "RA": 6076, + "Ġfan": 6077, + "Ġfold": 6078, + "ĠIII": 6079, + "ĠTer": 6080, + "icy": 6081, + "Ġhiding": 6082, + "olks": 6083, + "ulated": 6084, + "Ġmyster": 6085, + "ĠKim": 6086, + "Ġshared": 6087, + "Ġmicro": 6088, + "ĠWelcome": 6089, + "Ġdyn": 6090, + "ĠAri": 6091, + "ĠWork": 6092, + "ĠBroad": 6093, + "Ġmyth": 6094, + "Ġgrab": 6095, + "Ġkidding": 6096, + "Ġdivor": 6097, + "Ġhonour": 6098, + "Ġfigures": 6099, + "Ġnormally": 6100, + "ĠHurry": 6101, + "ĠKentucky": 6102, + "ĠIreland": 6103, + "Cause": 6104, + "Ġfurn": 6105, + "Ġdim": 6106, + "ĠOs": 6107, + "Ġshr": 6108, + "Ġclimate": 6109, + "Ġcommittee": 6110, + "Ġthoughts": 6111, + "ĠExactly": 6112, + "Ġfailure": 6113, + "Ġdaily": 6114, + "29": 6115, + "Ġbang": 6116, + "Ġmuseum": 6117, + "verse": 6118, + "ounding": 6119, + "Ġquant": 6120, + "Ġpoison": 6121, + "Ġowner": 6122, + "Ġleague": 6123, + "Ġdriver": 6124, + "ĠAnything": 6125, + "ĠMcC": 6126, + "ĠJean": 6127, + "Ġsharp": 6128, + "\").": 6129, + "_.": 6130, + "Ġug": 6131, + "Ġplenty": 6132, + "ĠClass": 6133, + "Ġstaying": 6134, + "ĠPete": 6135, + "ĠShakespeare": 6136, + "aughs": 6137, + "ĠBrazil": 6138, + "Ġcomfortable": 6139, + "ĠDemocratic": 6140, + "American": 6141, + "Ġcas": 6142, + "Ġpha": 6143, + "Ġlatter": 6144, + "ĠTa": 6145, + "ented": 6146, + "ĠHea": 6147, + "ĠBern": 6148, + "Ġshell": 6149, + "Ġsheep": 6150, + "ĠAsian": 6151, + "Ġfollows": 6152, + "ĠJohnson": 6153, + "ropri": 6154, + "Ġmixed": 6155, + "ui": 6156, + "Ġtal": 6157, + "Ġfant": 6158, + "Ġpowers": 6159, + "ĠMuseum": 6160, + "Ġstom": 6161, + "ĠLand": 6162, + "ĠAndrew": 6163, + "ĠSoon": 6164, + "Ġblame": 6165, + "Ġeastern": 6166, + "Ġviolence": 6167, + "ĠPennsylvania": 6168, + "ĠSel": 6169, + "ĠFollow": 6170, + "Ġworkers": 6171, + "Ġconscious": 6172, + "Ġinvited": 6173, + "Ġwindows": 6174, + "ropical": 6175, + "Ġvariety": 6176, + "ĠPacific": 6177, + "gency": 6178, + "iven": 6179, + "ko": 6180, + "nic": 6181, + "Ġlat": 6182, + "ĠHung": 6183, + "ĠDra": 6184, + "ĠJones": 6185, + "ĠKat": 6186, + "ĠKhan": 6187, + "Ġmathem": 6188, + "ĠInde": 6189, + "Ġimpact": 6190, + "Ġadvance": 6191, + "ĠWilliams": 6192, + "Ġmail": 6193, + "ustration": 6194, + "Ġvirt": 6195, + "Ġguitar": 6196, + "Ġcrim": 6197, + "ĠOrder": 6198, + "Ġtransform": 6199, + "Ġcolon": 6200, + "Ġprize": 6201, + "Ġclasses": 6202, + "Ġapprox": 6203, + "Ġgods": 6204, + "Ġdebut": 6205, + "Ġdisappeared": 6206, + "Ġhistorical": 6207, + "Ġdeliver": 6208, + "Ġcitizens": 6209, + "mpt": 6210, + "ois": 6211, + "Ġtask": 6212, + "Ġded": 6213, + "ĠAmy": 6214, + "ĠCivil": 6215, + "aki": 6216, + "Ġunion": 6217, + "Ġdesper": 6218, + "ocal": 6219, + "Ġdragon": 6220, + "Ġprotection": 6221, + "arrass": 6222, + "Man": 6223, + "ĠBeth": 6224, + "ĠBrand": 6225, + "ĠOl": 6226, + "ĠEst": 6227, + "ĠEdu": 6228, + "aka": 6229, + "Ġsomehow": 6230, + "onder": 6231, + "ĠLooks": 6232, + "Ġslept": 6233, + "Ġsilent": 6234, + "Ġhyp": 6235, + "Ġtongue": 6236, + "Ġtied": 6237, + "ĠMond": 6238, + "ĠBoston": 6239, + "Ġaspect": 6240, + "ĠPap": 6241, + "rael": 6242, + "estic": 6243, + "ĠKong": 6244, + "Ġchanging": 6245, + "Ġtowns": 6246, + "Ġpurcha": 6247, + "ĠShall": 6248, + "Ġproposed": 6249, + "Ġcaptured": 6250, + "ĠSidney": 6251, + "ĠLieutenant": 6252, + "Ġinhabit": 6253, + "rd": 6254, + "while": 6255, + "Å«": 6256, + "Ġwid": 6257, + "ĠHan": 6258, + "ĠBea": 6259, + "Ġmyst": 6260, + "Ġsuffe": 6261, + "Ġunknown": 6262, + "icted": 6263, + "ĠChris": 6264, + "Ġcheese": 6265, + "Ġdrawn": 6266, + "Ġartists": 6267, + "Ġfallen": 6268, + "Ġsquared": 6269, + "Ġoperations": 6270, + "Be": 6271, + "Ġtor": 6272, + "Ġcig": 6273, + "ĠTri": 6274, + "ĠMAN": 6275, + "ĠDown": 6276, + "ĠGil": 6277, + "ĠRaj": 6278, + "angle": 6279, + "Ġserving": 6280, + "chestra": 6281, + "Ġ1950": 6282, + "ĠSteve": 6283, + "incol": 6284, + "LY": 6285, + "mat": 6286, + "inity": 6287, + "otion": 6288, + "ĠSuch": 6289, + "entially": 6290, + "amily": 6291, + "Ġkil": 6292, + "ĠNight": 6293, + "ctures": 6294, + "Ġselling": 6295, + "Ġshame": 6296, + "Ġconflict": 6297, + "ĠEdward": 6298, + "ipping": 6299, + "Ġmotion": 6300, + "Ġassociated": 6301, + "sembly": 6302, + "Ä«": 6303, + "Ġtap": 6304, + "ĠMiddle": 6305, + "Ġconference": 6306, + "Ġeaten": 6307, + "Ġsupported": 6308, + "Ġsettlement": 6309, + "Ġgirlfriend": 6310, + "owed": 6311, + "Ġroles": 6312, + "Ġoldest": 6313, + "Ġpaying": 6314, + "Ġfairly": 6315, + "Ġnervous": 6316, + "IV": 6317, + "heim": 6318, + "Ġwave": 6319, + "Ġsalt": 6320, + "ĠCross": 6321, + "Ġorange": 6322, + "Ġdism": 6323, + "Ġdiss": 6324, + "Ġwrit": 6325, + "Ġchose": 6326, + "Ġsteel": 6327, + "Ġrespond": 6328, + "hens": 6329, + "Ġfifteen": 6330, + "Ġmulti": 6331, + "Ġstrike": 6332, + "Ġarrested": 6333, + "ĠCastle": 6334, + "Ġholiday": 6335, + "She": 6336, + "cest": 6337, + "run": 6338, + "zer": 6339, + "ĠTol": 6340, + "Ġbeer": 6341, + "ĠWalk": 6342, + "stone": 6343, + "ĠYear": 6344, + "ĠGy": 6345, + "ĠGame": 6346, + "Ġseek": 6347, + "ĠWendy": 6348, + "Ġcricket": 6349, + "Ġfields": 6350, + "Ġmaterials": 6351, + "ĠKorea": 6352, + "Ġfreedom": 6353, + "Ġax": 6354, + "Ġboot": 6355, + "Ġcake": 6356, + "illed": 6357, + "endment": 6358, + "Ġprimary": 6359, + "Ġbastard": 6360, + "Ġdarling": 6361, + "28": 6362, + "Ġfile": 6363, + "Ġtow": 6364, + "Ġpiano": 6365, + "Ġlone": 6366, + "Ġwealth": 6367, + "ĠRam": 6368, + "Ġpreviously": 6369, + "ĠEnter": 6370, + "burgh": 6371, + "Ġfeatured": 6372, + "70": 6373, + "gor": 6374, + "yo": 6375, + "Ġseasons": 6376, + "ĠLar": 6377, + "ĠEv": 6378, + "ĠEric": 6379, + "Ġaband": 6380, + "acks": 6381, + "pered": 6382, + "Ġimpl": 6383, + "Ġadvert": 6384, + "Ġrealized": 6385, + "Ġproducer": 6386, + "Ġsixty": 6387, + "ĠEmperor": 6388, + "Ġordinary": 6389, + "Ġfamiliar": 6390, + "Ġstomach": 6391, + "wide": 6392, + "Ġtie": 6393, + "Ġsust": 6394, + "Ġooh": 6395, + "Ġgate": 6396, + "ĠEh": 6397, + "osition": 6398, + "Ġbackground": 6399, + "amps": 6400, + "Ġcheer": 6401, + "Ġboyfriend": 6402, + "Ġinsurance": 6403, + "Ġpatients": 6404, + "Ġterror": 6405, + "Ġtreated": 6406, + "Ġembarrass": 6407, + "Ġdetermined": 6408, + "Ġsuffered": 6409, + "bury": 6410, + "spect": 6411, + "Ġmama": 6412, + "ĠHu": 6413, + "ĠHome": 6414, + "adium": 6415, + "urb": 6416, + "Ġpartners": 6417, + "Ġbride": 6418, + "Ġ80": 6419, + "Ġexperiment": 6420, + "Ġvari": 6421, + "Ġveget": 6422, + "Ġhyd": 6423, + "Ġhoping": 6424, + "Ġpink": 6425, + "ati": 6426, + "ĠTim": 6427, + "elled": 6428, + "ĠThus": 6429, + "ĠArthur": 6430, + "Ġ1989": 6431, + "Ġlabel": 6432, + "Ġresponsibility": 6433, + "Ġinnocent": 6434, + "Ġscientific": 6435, + "Ġphilosophy": 6436, + "SP": 6437, + "bi": 6438, + "Ġdiet": 6439, + "Ġgang": 6440, + "ĠHE": 6441, + "ĠYet": 6442, + "Ġsport": 6443, + "Ġlegend": 6444, + "Ġminister": 6445, + "Ġbegins": 6446, + "ĠCommission": 6447, + "ĠJulie": 6448, + "Ġargument": 6449, + "Ġweapons": 6450, + "rical": 6451, + "ups": 6452, + "Ġham": 6453, + "Ġreck": 6454, + "roll": 6455, + "ĠBE": 6456, + "Ġsoil": 6457, + "ella": 6458, + "Ġguest": 6459, + "Ġapparently": 6460, + "Ġsupply": 6461, + "ĠZeal": 6462, + "Ġpriest": 6463, + "Ġhundreds": 6464, + "ĠSergeant": 6465, + "Ġbasketball": 6466, + "ALL": 6467, + "iser": 6468, + "Ġfancy": 6469, + "ĠHol": 6470, + "add": 6471, + "Ġbrings": 6472, + "ulture": 6473, + "Ġsolid": 6474, + "Ġeconomy": 6475, + "Ġactivities": 6476, + "Ġapartment": 6477, + "Ġweapon": 6478, + "Ġappreciate": 6479, + "lock": 6480, + "Ġbite": 6481, + "inging": 6482, + "ĠTimes": 6483, + "ĠSup": 6484, + "ĠWales": 6485, + "urally": 6486, + "ĠRh": 6487, + "Ġsole": 6488, + "Ġprepar": 6489, + "Ġjoint": 6490, + "Ġwondering": 6491, + "ĠAdam": 6492, + "Ġcircumstances": 6493, + "ĠHard": 6494, + "ums": 6495, + "ements": 6496, + "reek": 6497, + "Ġsched": 6498, + "Ġchannel": 6499, + "osphere": 6500, + "Ġexistence": 6501, + "Ġburned": 6502, + "ĠPortug": 6503, + "IGHT": 6504, + "SB": 6505, + "ST": 6506, + "pet": 6507, + "Ġtone": 6508, + "isation": 6509, + "Ġbunch": 6510, + "Ġcott": 6511, + "Ġinqu": 6512, + "alls": 6513, + "ĠLincol": 6514, + "Ġcock": 6515, + "Ġarticle": 6516, + "Ġfilms": 6517, + "Ġengaged": 6518, + "Ġprofessor": 6519, + "Ġdisappoint": 6520, + "ĠFilm": 6521, + "27": 6522, + "bet": 6523, + "isp": 6524, + "aman": 6525, + "ĠMir": 6526, + "ĠCab": 6527, + "Ġwithd": 6528, + "ĠUs": 6529, + "Ġgoodness": 6530, + "Ġpregn": 6531, + "ĠIsrael": 6532, + "ĠAlice": 6533, + "They": 6534, + "198": 6535, + "Ġseriously": 6536, + "ĠJacob": 6537, + "34": 6538, + "35": 6539, + "Ġonline": 6540, + "ĠFestival": 6541, + "Ġens": 6542, + "Ġunus": 6543, + "ĠMarsha": 6544, + "Ġrooms": 6545, + "Ġ1988": 6546, + "Ġcourage": 6547, + "Ġcrossed": 6548, + "Ġhomes": 6549, + "ĠPakistan": 6550, + "Not": 6551, + "otic": 6552, + "Ġupper": 6553, + "Ġsuck": 6554, + "emies": 6555, + "ardens": 6556, + "Ġfeature": 6557, + "Ġdescend": 6558, + "Ġfinds": 6559, + "standing": 6560, + "bridge": 6561, + "Ġlevels": 6562, + "iggler": 6563, + "Ġjuice": 6564, + "ĠBesides": 6565, + "Ġwished": 6566, + "Ġbatter": 6567, + "Ġdish": 6568, + "ĠTha": 6569, + "ĠStation": 6570, + "Ġmayor": 6571, + "ĠAsh": 6572, + "Ġcrown": 6573, + "Ġrelax": 6574, + "Ġboom": 6575, + "Ġclever": 6576, + "ĠZiggler": 6577, + "Ġlaunched": 6578, + "Ġincreasing": 6579, + "Ġlimit": 6580, + "Ġsuffering": 6581, + "Let": 6582, + "erk": 6583, + "Ġborder": 6584, + "lyn": 6585, + "Ġnoted": 6586, + "ĠGal": 6587, + "ĠLuc": 6588, + "ĠRich": 6589, + "Ġ(;": 6590, + "Ġincred": 6591, + "Ġstring": 6592, + "Ġ1979": 6593, + "Ġislands": 6594, + "Ġsuspic": 6595, + "Ġsales": 6596, + "ito": 6597, + "Ġdu": 6598, + "Ġgather": 6599, + "Ġheav": 6600, + "ĠNorthern": 6601, + "Ġexact": 6602, + "hess": 6603, + "ĠCla": 6604, + "Ġsolve": 6605, + "ĠAtlantic": 6606, + "Ġfalse": 6607, + "ĠZealand": 6608, + "FL": 6609, + "Ġwise": 6610, + "arn": 6611, + "Ġho": 6612, + "ĠNap": 6613, + "iece": 6614, + "Ġconsequ": 6615, + "Ġroot": 6616, + "weet": 6617, + "Ġcheap": 6618, + "Ġdiscover": 6619, + "ĠCalvad": 6620, + "Ġrecognized": 6621, + "Ġinstrument": 6622, + "ĠCalvados": 6623, + "Good": 6624, + "rot": 6625, + "owder": 6626, + "uther": 6627, + "amn": 6628, + "ĠPop": 6629, + "ĠRom": 6630, + "ĠEastern": 6631, + "Ġriding": 6632, + "Ġdistinct": 6633, + "Ġ1982": 6634, + "Ġhandsome": 6635, + "Ġcontinues": 6636, + "Ġanti": 6637, + "Ġwaited": 6638, + "ĠService": 6639, + "GE": 6640, + "Ġwha": 6641, + "ario": 6642, + "ĠRon": 6643, + "Ġconqu": 6644, + "Ġplate": 6645, + "Ġintended": 6646, + "Ġattended": 6647, + "ĠDef": 6648, + "Ġaccomp": 6649, + "Ġstands": 6650, + "Ġfalls": 6651, + "ĠJewish": 6652, + "Ġlibrary": 6653, + "ares": 6654, + "Ġdust": 6655, + "ĠTalk": 6656, + "ĠNE": 6657, + "ĠNavy": 6658, + "ĠLab": 6659, + "ĠFOR": 6660, + "ĠFox": 6661, + "Ġwhoa": 6662, + "ĠĠĠĠĠ": 6663, + "Ġshake": 6664, + "inson": 6665, + "oked": 6666, + "Ġadditional": 6667, + "Ġframe": 6668, + "Ġ1984": 6669, + "Ġconcert": 6670, + "Ġchallenge": 6671, + "CE": 6672, + "rad": 6673, + "Ġwounded": 6674, + "Ġsed": 6675, + "iden": 6676, + "Ġancest": 6677, + "ĠMarg": 6678, + "Ġeleven": 6679, + "okes": 6680, + "Ġsentence": 6681, + "Ġlegisl": 6682, + "ĠDanny": 6683, + "Ġconcern": 6684, + "Ġestablish": 6685, + "Ġridic": 6686, + "Ġrepeated": 6687, + "ĠJersey": 6688, + "ĠConfeder": 6689, + "Ġugly": 6690, + "Bl": 6691, + "Ġwitch": 6692, + "ĠToo": 6693, + "ĠCop": 6694, + "Ġatm": 6695, + "Ġrac": 6696, + "Ġrang": 6697, + "izations": 6698, + "Ġspect": 6699, + "Ġimportance": 6700, + "Ġpaint": 6701, + "Ġcommonly": 6702, + "Ġsurvive": 6703, + "Ġefforts": 6704, + "ĠEduc": 6705, + "Sp": 6706, + "ext": 6707, + "jan": 6708, + "nde": 6709, + "Ġbrill": 6710, + "aly": 6711, + "Ġhabit": 6712, + "Ġstir": 6713, + "ĠVan": 6714, + "erman": 6715, + "Ġcompon": 6716, + "Ġhappiness": 6717, + "ologist": 6718, + "Ġcapac": 6719, + "ĠAbs": 6720, + "Ġrefused": 6721, + "Ġgovernor": 6722, + "Ġexchange": 6723, + "OD": 6724, + "uart": 6725, + "Ġ{": 6726, + "aria": 6727, + "ĠOcean": 6728, + "ĠPic": 6729, + "Ġgotten": 6730, + "Ġarran": 6731, + "Ġclient": 6732, + "Ġearned": 6733, + "Ġtrail": 6734, + "Ġsenior": 6735, + "fortunately": 6736, + "Ġcousin": 6737, + "ĠElizabeth": 6738, + "22": 6739, + "As": 6740, + "OB": 6741, + "mond": 6742, + "rich": 6743, + "ä": 6744, + "Ġpool": 6745, + "ĠSong": 6746, + "ĠGrey": 6747, + "ĠRyan": 6748, + "ĠInc": 6749, + "Ġfriendly": 6750, + "Ġ1987": 6751, + "Ġcritical": 6752, + "Ġcombination": 6753, + "ĠOxford": 6754, + "Ġsons": 6755, + "Ġrecognize": 6756, + "Ġagreement": 6757, + "box": 6758, + "ti": 6759, + "uce": 6760, + "Åį": 6761, + "Ġwore": 6762, + "Ġmort": 6763, + "Ġdies": 6764, + "Ġlake": 6765, + "ĠTem": 6766, + "Ġ\"\"": 6767, + "ĠGreg": 6768, + "ĠRa": 6769, + "Ġrot": 6770, + "akh": 6771, + "Ġcommission": 6772, + "Ġelements": 6773, + "ĠNews": 6774, + "Ġpointed": 6775, + "Ġdecisions": 6776, + "Ġ64": 6777, + "196": 6778, + "ĠIrish": 6779, + "Sc": 6780, + "Ġdun": 6781, + "ashing": 6782, + "ĠGer": 6783, + "ivered": 6784, + "Ġvia": 6785, + "----": 6786, + "Ġcontest": 6787, + "ection": 6788, + "Ġbreast": 6789, + "Ġexped": 6790, + "Ġliterature": 6791, + "Ġinterpret": 6792, + "VER": 6793, + "ded": 6794, + "mes": 6795, + "wo": 6796, + "Ġowe": 6797, + "ĠYep": 6798, + "Ġworship": 6799, + "Ġproced": 6800, + "ĠArch": 6801, + "Ġintegr": 6802, + "Ġsorts": 6803, + "Ġassistant": 6804, + "ĠUntil": 6805, + "don": 6806, + "lies": 6807, + "Ġfolk": 6808, + "Ġtower": 6809, + "Ġhidden": 6810, + "ĠBus": 6811, + "ĠBush": 6812, + "Ġjustice": 6813, + "Ġthrown": 6814, + "phy": 6815, + "Ġsympt": 6816, + "ĠForce": 6817, + "Ġobvious": 6818, + "ĠColonel": 6819, + "Ġbeneath": 6820, + "ĠLincoln": 6821, + "esh": 6822, + "ĠAk": 6823, + "ĠHind": 6824, + "ĠLA": 6825, + "Ġshook": 6826, + "eps": 6827, + "ĠAss": 6828, + "Ġdevil": 6829, + "Ġhunting": 6830, + "ĠAT": 6831, + "Ġallows": 6832, + "ĠWere": 6833, + "Ġflood": 6834, + "Ġgarage": 6835, + "Ġterritory": 6836, + "500": 6837, + "she": 6838, + "ê¯": 6839, + "rets": 6840, + "Ġdread": 6841, + "ĠWant": 6842, + "elp": 6843, + "ague": 6844, + "Ġspare": 6845, + "perial": 6846, + "Ġacid": 6847, + "Ġcorpor": 6848, + "ĠEmily": 6849, + "phant": 6850, + "ĠDirector": 6851, + "90": 6852, + "Ġic": 6853, + "Ġaunt": 6854, + "Ġweb": 6855, + "ĠEle": 6856, + "Ġexcellent": 6857, + "Ġ184": 6858, + "ierce": 6859, + "apping": 6860, + "Ġconnect": 6861, + "Ġphoto": 6862, + "hibition": 6863, + "ooth": 6864, + "ô": 6865, + "Ġfishing": 6866, + "ĠCy": 6867, + "ĠGall": 6868, + "unny": 6869, + "ĠJill": 6870, + "Ġplot": 6871, + "Ġagric": 6872, + "ĠViet": 6873, + "Ġcommitted": 6874, + "Ġsymp": 6875, + "Ġevolution": 6876, + "Ġcreating": 6877, + "Ġilleg": 6878, + "Ġdarkness": 6879, + "force": 6880, + "ĠBelg": 6881, + ".[": 6882, + "TING": 6883, + "Who": 6884, + "wa": 6885, + "Ġmood": 6886, + "ĠMid": 6887, + "ĠGa": 6888, + "Ġidiot": 6889, + "Ġexplained": 6890, + "Ġdegrees": 6891, + "Ġlocked": 6892, + "ĠBerlin": 6893, + "ĠRoger": 6894, + "eer": 6895, + "rell": 6896, + "ĠAis": 6897, + "ĠWE": 6898, + "ĠME": 6899, + "rose": 6900, + "Ġaside": 6901, + "Ġselected": 6902, + "ĠIntern": 6903, + "Ġattitude": 6904, + "Ġsurely": 6905, + "alem": 6906, + "Ġ1971": 6907, + "Ġofficially": 6908, + "ĠRomanized": 6909, + "Ġreferred": 6910, + "Ġseventy": 6911, + "Ġcomplicated": 6912, + "ĠRevolution": 6913, + "Ġcriminal": 6914, + "38": 6915, + "Now": 6916, + "works": 6917, + "inn": 6918, + "Ġwound": 6919, + "Ġpages": 6920, + "ĠTest": 6921, + "ĠMatt": 6922, + "oops": 6923, + "ĠDi": 6924, + "usted": 6925, + "Ġconvin": 6926, + "ĠKill": 6927, + "Ġenemies": 6928, + "ordon": 6929, + "Ġ1981": 6930, + "Ġexplos": 6931, + "hmm": 6932, + "ĠCommittee": 6933, + "Ġvalues": 6934, + "Ġeffective": 6935, + "ĠMonday": 6936, + "ĠSupreme": 6937, + "gues": 6938, + "pre": 6939, + "ouri": 6940, + "Ġcute": 6941, + "asp": 6942, + "ĠTop": 6943, + "ĠHand": 6944, + "ĠHolly": 6945, + "ader": 6946, + "Ġkitt": 6947, + "ĠPerson": 6948, + "ĠFair": 6949, + "aints": 6950, + "Ġproved": 6951, + "Ġarmed": 6952, + "Ġunable": 6953, + "Ġmoves": 6954, + "ava": 6955, + "ultural": 6956, + "gery": 6957, + "Ġnearby": 6958, + "Ġmillions": 6959, + "ĠIslands": 6960, + "ĠSarah": 6961, + "ĠAlexander": 6962, + "itzerland": 6963, + "Ġlion": 6964, + "lend": 6965, + "Ġhired": 6966, + "Ġdeck": 6967, + "Ġrand": 6968, + "Ġ180": 6969, + "Ġharder": 6970, + "Ġsubst": 6971, + "Ġgeneration": 6972, + "Ġdealing": 6973, + "ĠTwenty": 6974, + "Ġestate": 6975, + "Ġtouched": 6976, + "Ġhealthy": 6977, + "Ġglasses": 6978, + "Ġscientists": 6979, + "OL": 6980, + "nce": 6981, + "zing": 6982, + "Ġgre": 6983, + "iments": 6984, + "ĠCro": 6985, + "ĠDuke": 6986, + "Ġrhy": 6987, + "ĠKn": 6988, + "Ġfeather": 6989, + "ĠVice": 6990, + "Ġcompared": 6991, + "Ġcrash": 6992, + "Ġsurre": 6993, + "ronic": 6994, + "Ġsteal": 6995, + "Ġreports": 6996, + "ealous": 6997, + "Ġscarce": 6998, + "].": 6999, + "ingly": 7000, + "arant": 7001, + "Ġnut": 7002, + "ĠWr": 7003, + "outs": 7004, + "ĠRoss": 7005, + "ĠEdd": 7006, + "Ġbuying": 7007, + "Ġmedal": 7008, + "Ġcommunities": 7009, + "Ġcere": 7010, + "aimed": 7011, + "Ġdepends": 7012, + "ĠBoard": 7013, + "36": 7014, + "ĠBrian": 7015, + "Ġdozen": 7016, + "Ġwhist": 7017, + "eaks": 7018, + "umes": 7019, + "Ġconce": 7020, + "Ġsale": 7021, + "cahedron": 7022, + "Ġretire": 7023, + "Ġempire": 7024, + "ĠEras": 7025, + "Ġdisappear": 7026, + "ĠSimon": 7027, + "Ġdelay": 7028, + "\"),": 7029, + "So": 7030, + "hu": 7031, + "Ġsisters": 7032, + "isms": 7033, + "oto": 7034, + "ĠHang": 7035, + "olen": 7036, + "ĠJr": 7037, + "Ġmole": 7038, + "Ġelev": 7039, + "ĠJohnny": 7040, + "ĠSwitzerland": 7041, + "adesh": 7042, + "Ġbelongs": 7043, + "IFA": 7044, + "ĠMazra": 7045, + "',": 7046, + "orge": 7047, + "ĠCut": 7048, + "Ġsufficient": 7049, + "eping": 7050, + "Ġwhenever": 7051, + "Ġtruly": 7052, + "Ġlecture": 7053, + "ĠBeach": 7054, + "Ġfuneral": 7055, + "ĠConst": 7056, + "Ġequals": 7057, + "Ġcreature": 7058, + "Ġvector": 7059, + "Ġproperly": 7060, + "Ġsoftware": 7061, + "APTER": 7062, + "ĠRecords": 7063, + "TV": 7064, + "bably": 7065, + "Ġlift": 7066, + "ĠHun": 7067, + "ĠBook": 7068, + "ĠBank": 7069, + "ĠNether": 7070, + "celer": 7071, + "Ġplastic": 7072, + "Ġshel": 7073, + "Ġtheme": 7074, + "bec": 7075, + "ĠAnna": 7076, + "Ġsimpl": 7077, + "Ġ1976": 7078, + "appy": 7079, + "Ġhorrible": 7080, + "ĠGuard": 7081, + "Ġspending": 7082, + "ĠTurk": 7083, + "Ġcruel": 7084, + "ĠAdmiral": 7085, + "ĠInstead": 7086, + "ĠMazraeh": 7087, + "foot": 7088, + "ĠAD": 7089, + "ĠYo": 7090, + "chief": 7091, + "ours": 7092, + "Ġsuicide": 7093, + "ender": 7094, + "iley": 7095, + "athy": 7096, + "Ġ1986": 7097, + "Ġcolors": 7098, + "Ġclosely": 7099, + "Ġmerchant": 7100, + "SC": 7101, + "based": 7102, + "Ġtoile": 7103, + "Ġbeast": 7104, + "ĠCub": 7105, + "ĠBow": 7106, + "ĠNan": 7107, + "ĠGre": 7108, + "Ġ36": 7109, + "ĠGermans": 7110, + "ervative": 7111, + "........": 7112, + "Ġbathroom": 7113, + "Ġanalysis": 7114, + "writer": 7115, + "Ġnumerous": 7116, + "Ġrandom": 7117, + "La": 7118, + "aa": 7119, + "greg": 7120, + "hole": 7121, + "Ġmental": 7122, + "Ġnest": 7123, + "ĠBattle": 7124, + "ĠBilly": 7125, + "ĠOli": 7126, + "ĠTrust": 7127, + "Ġmarked": 7128, + "Ġeighty": 7129, + "Ġpleasant": 7130, + "ĠCoast": 7131, + "Ġemergency": 7132, + "Ġdescribe": 7133, + "Ġinstructions": 7134, + "ropriate": 7135, + "ĠErasmus": 7136, + "RUN": 7137, + "pired": 7138, + "Ġtort": 7139, + "reck": 7140, + "Ġbon": 7141, + "orial": 7142, + "Ġrear": 7143, + "unte": 7144, + "Ġscript": 7145, + "Ġnights": 7146, + "gging": 7147, + "aho": 7148, + "Ġhighway": 7149, + "Ġsixth": 7150, + "Ġwoods": 7151, + "Ġenjoyed": 7152, + "ĠBetty": 7153, + "Ġinjury": 7154, + "ĠCHAPTER": 7155, + "Ġreviews": 7156, + "Ġinvestigation": 7157, + "Foot": 7158, + "Where": 7159, + "Ġborrow": 7160, + "itors": 7161, + "Ġfate": 7162, + "Ġdude": 7163, + "ĠTon": 7164, + "Ġhorn": 7165, + "uties": 7166, + "ĠBoss": 7167, + "elle": 7168, + "aph": 7169, + "Ġ500": 7170, + "eaking": 7171, + "Ġ1985": 7172, + "Ġexplan": 7173, + "Ġadvanced": 7174, + "ĠPolice": 7175, + "Ġrevolution": 7176, + "ĠTurkey": 7177, + "Ġapplication": 7178, + "Ġstole": 7179, + "ĠLib": 7180, + "ĠRab": 7181, + "ĠRod": 7182, + "andy": 7183, + "ipment": 7184, + "Ġflash": 7185, + "Ġairport": 7186, + "Ġwinner": 7187, + "Ġprotest": 7188, + "ĠSupp": 7189, + "ĠGeorgia": 7190, + "KE": 7191, + "KING": 7192, + "New": 7193, + "iat": 7194, + "â": 7195, + "Ġrib": 7196, + "Ġtooth": 7197, + "Ġtoys": 7198, + "Ġtools": 7199, + "Ġnominated": 7200, + "ĠSab": 7201, + "ĠSocial": 7202, + "Ġload": 7203, + "Ġcomposed": 7204, + "Ġera": 7205, + "Ġobserved": 7206, + "which": 7207, + "Ġswimming": 7208, + "bra": 7209, + "Ġtear": 7210, + "Ġbran": 7211, + "Ġpity": 7212, + "ela": 7213, + "onscious": 7214, + "Ġdraft": 7215, + "Ġ1964": 7216, + "Ġillust": 7217, + "Ġcooking": 7218, + "Ġphotograph": 7219, + "ĠSenator": 7220, + "Ġmoral": 7221, + "ĠFrancisco": 7222, + "cri": 7223, + "worth": 7224, + "Ġok": 7225, + "ĠShan": 7226, + "imal": 7227, + "ĠMah": 7228, + "ĠBha": 7229, + "unction": 7230, + "olt": 7231, + "osal": 7232, + "Ġphr": 7233, + "Ġcollea": 7234, + "Ġcommunication": 7235, + "Ġstronger": 7236, + "ĠChair": 7237, + "Ġpotential": 7238, + "Ġbuddy": 7239, + "Ġ¶": 7240, + "BS": 7241, + "Norm": 7242, + "Ph": 7243, + "san": 7244, + "ĠÌ": 7245, + "Ġticket": 7246, + "ĠBudd": 7247, + "ĠFa": 7248, + "Ġsaving": 7249, + "agement": 7250, + "Ġtalks": 7251, + "ĠAnth": 7252, + "ĠGoodbye": 7253, + "Ġbadly": 7254, + "ĠGreece": 7255, + "Ġperman": 7256, + "Ġindependence": 7257, + "Ġrecommend": 7258, + "Ġlonely": 7259, + "lav": 7260, + "Ġpale": 7261, + "Ġyard": 7262, + "lem": 7263, + "ĠMind": 7264, + "ĠDie": 7265, + "ĠPers": 7266, + "andal": 7267, + "osis": 7268, + "ogue": 7269, + "Ġtrains": 7270, + "aze": 7271, + "Ġeditor": 7272, + "Ġ1978": 7273, + "Ġexciting": 7274, + "ENT": 7275, + "Ġmethods": 7276, + "Ġatmosphere": 7277, + "Come": 7278, + "cont": 7279, + "wich": 7280, + "Ġchampion": 7281, + "Ġmile": 7282, + "ĠAw": 7283, + "Ġec": 7284, + "Ġvent": 7285, + "ĠVol": 7286, + "ĠAssy": 7287, + "Ġcenturies": 7288, + "Ġrecording": 7289, + "Ġopera": 7290, + "Ġoperating": 7291, + "rogen": 7292, + "Ġburning": 7293, + "Ġadopted": 7294, + "Ġwebsite": 7295, + "Ġwand": 7296, + "Ġfolks": 7297, + "ĠNa": 7298, + "unior": 7299, + "Ġdecor": 7300, + "Ġpainted": 7301, + "ĠMissouri": 7302, + "Ġstatistics": 7303, + "Ġruled": 7304, + "ĠWilson": 7305, + "Ġfrightened": 7306, + "Ġsucceeded": 7307, + "sa": 7308, + "hew": 7309, + "Ġsink": 7310, + "Ġdumb": 7311, + "Ġreference": 7312, + "ĠChi": 7313, + "rific": 7314, + "ĠFIFA": 7315, + "Ġapply": 7316, + "Ġapplied": 7317, + "ERS": 7318, + "Ġdifficulty": 7319, + "Ġidentity": 7320, + "ĠWalter": 7321, + "Ġrestaurant": 7322, + "Ġ/": 7323, + "Ġcert": 7324, + "Ġstab": 7325, + "ĠPen": 7326, + "Ġvision": 7327, + "weight": 7328, + "enses": 7329, + "Ġcommit": 7330, + "Ġregret": 7331, + "Ġsyn": 7332, + "Ġ1983": 7333, + "ĠSomebody": 7334, + "Ġdefin": 7335, + "Ġsteam": 7336, + "Ġsending": 7337, + "ĠPhilipp": 7338, + "ĠOffice": 7339, + "iÄĩ": 7340, + "Ġfart": 7341, + "encies": 7342, + "ĠTang": 7343, + "irus": 7344, + "sex": 7345, + "Ġanger": 7346, + "iffe": 7347, + "ĠPower": 7348, + "Ġjealous": 7349, + "elling": 7350, + "Ġbutt": 7351, + "ĠStuart": 7352, + "Ġdesert": 7353, + "thew": 7354, + "Ġfactory": 7355, + "Ġedition": 7356, + "Ġ1975": 7357, + "Ġreflect": 7358, + "ropol": 7359, + "Ġcorresp": 7360, + "Ġladder": 7361, + "Ġtracks": 7362, + "Ġenvironmental": 7363, + "Ġpuzz": 7364, + "100": 7365, + "fish": 7366, + "Ġnick": 7367, + "ĠCur": 7368, + "Ġath": 7369, + "this": 7370, + "venue": 7371, + "ĠThrough": 7372, + "Ġcovers": 7373, + "ĠAli": 7374, + "Ġacceler": 7375, + "chester": 7376, + "Ġbabies": 7377, + "ĠCommander": 7378, + "Ġregarded": 7379, + "glas": 7380, + "Ġrevealed": 7381, + "ĠVictoria": 7382, + "Ġridiculous": 7383, + "IE": 7384, + "ILL": 7385, + "sen": 7386, + "was": 7387, + "Ġwo": 7388, + "ompl": 7389, + "alo": 7390, + "Ġkeys": 7391, + "Ġequipment": 7392, + "Ġprovin": 7393, + "Ġvolume": 7394, + "Ġfleet": 7395, + "Ġexamples": 7396, + "Ġconduct": 7397, + "Ġcycle": 7398, + "Ġsurrounded": 7399, + "Ġromantic": 7400, + "39": 7401, + "BA": 7402, + "Ġtub": 7403, + "Ġsan": 7404, + "oti": 7405, + "Ġbeating": 7406, + "ĠHo": 7407, + "ĠHong": 7408, + "oof": 7409, + "Ġmeal": 7410, + "haniel": 7411, + "aws": 7412, + "Ġsecure": 7413, + "onto": 7414, + "Ġimpress": 7415, + "Ġ1930": 7416, + "Ġauthorities": 7417, + "Ġengineering": 7418, + "Ġburst": 7419, + "ĠCharlie": 7420, + "ĠBangl": 7421, + "Ġunusual": 7422, + "May": 7423, + "bage": 7424, + "hin": 7425, + "who": 7426, + "Ġtorn": 7427, + "Ġbul": 7428, + "itter": 7429, + "asters": 7430, + "ĠThing": 7431, + "otte": 7432, + "ĠAye": 7433, + "ĠSC": 7434, + "ĠHA": 7435, + "ĠCra": 7436, + "ĠNone": 7437, + "geon": 7438, + "Ġconver": 7439, + "ĠBeat": 7440, + "Ġending": 7441, + "Ġtrained": 7442, + "Ġincome": 7443, + "Ġincident": 7444, + "ĠLeg": 7445, + "195": 7446, + "Ġdevice": 7447, + "Ġdawn": 7448, + "Ġsymptoms": 7449, + "mother": 7450, + "Ġfans": 7451, + "omy": 7452, + "also": 7453, + "ĠEver": 7454, + "ĠKnow": 7455, + "Ġspo": 7456, + "Ġinstant": 7457, + "Ġinterests": 7458, + "Ġvisited": 7459, + "Ġannual": 7460, + "οu": 7461, + "ĠSystem": 7462, + "Ġindustrial": 7463, + "Ġliterally": 7464, + "ĠStephen": 7465, + "Ġdiscipl": 7466, + "ĠOliver": 7467, + "32": 7468, + "Ġpushed": 7469, + "Ġgained": 7470, + "Ġreject": 7471, + "achel": 7472, + "Ġven": 7473, + "agger": 7474, + "Ġspite": 7475, + "cip": 7476, + "Ġ1973": 7477, + "Ġ1974": 7478, + "Ġconfused": 7479, + "ĠHaven": 7480, + "Ġseparated": 7481, + "ĠKorean": 7482, + "ĠRadio": 7483, + "Ġvictims": 7484, + "Ġcurious": 7485, + "ĠSweden": 7486, + "quarters": 7487, + "45": 7488, + "kh": 7489, + "rim": 7490, + "tes": 7491, + "Ġwaves": 7492, + "onne": 7493, + "itable": 7494, + "Ġnod": 7495, + "ĠWed": 7496, + "Ġreward": 7497, + "utation": 7498, + "allel": 7499, + "ĠNumber": 7500, + "ĠPublic": 7501, + "ĠFound": 7502, + "Ġoverall": 7503, + "new": 7504, + "Ġputs": 7505, + "ensions": 7506, + "Ġelephant": 7507, + "Ġentrance": 7508, + "Ġimpression": 7509, + "Ġdrag": 7510, + "Ġholds": 7511, + "Ġinfl": 7512, + "Ġdefeat": 7513, + "Ġclaimed": 7514, + "Ġshopping": 7515, + "ĠDisney": 7516, + "Ġscholars": 7517, + "ĠAisne": 7518, + "TA": 7519, + "vo": 7520, + "Ġing": 7521, + "rete": 7522, + "ĠScience": 7523, + "ĠBalt": 7524, + "ĠPost": 7525, + "ĠEve": 7526, + "Ġwanting": 7527, + "Ġspr": 7528, + "izz": 7529, + "Ġconsult": 7530, + "Ġassume": 7531, + "ĠLeon": 7532, + "Ġinterrupt": 7533, + "ĠProbably": 7534, + "Ġleads": 7535, + "Ġ1969": 7536, + "ĠManip": 7537, + "Ġoccas": 7538, + "Ġopposed": 7539, + "Ġpractical": 7540, + "Ġmassive": 7541, + "Ġpermission": 7542, + "Ġinitial": 7543, + "IL": 7544, + "UD": 7545, + "iac": 7546, + "Ġfo": 7547, + "Ġyo": 7548, + "acher": 7549, + "ĠCL": 7550, + "ĠBBC": 7551, + "ifying": 7552, + "Ġrelation": 7553, + "Ġaccompl": 7554, + "ĠIndians": 7555, + "Ġincor": 7556, + "Ġfactor": 7557, + "Ġskills": 7558, + "Ġaircraft": 7559, + "Ġexpert": 7560, + "Ġ1940": 7561, + "Ġcreation": 7562, + "ĠQuick": 7563, + "Ġdepth": 7564, + "ursday": 7565, + "Ġremaining": 7566, + "Ġfortune": 7567, + "ĠProtest": 7568, + "Ġmathemat": 7569, + "ĠMargaret": 7570, + "note": 7571, + "Ġped": 7572, + "athered": 7573, + "ĠSn": 7574, + "Ġeager": 7575, + "Ġgoals": 7576, + "Ġdesk": 7577, + "Ġmargin": 7578, + "Ġregions": 7579, + "Ġcharged": 7580, + "Ġdriven": 7581, + "Ġmurdered": 7582, + "Ġbrilliant": 7583, + "SE": 7584, + "mouth": 7585, + "uable": 7586, + "iture": 7587, + "ĠIra": 7588, + "Ġpension": 7589, + "ĠTan": 7590, + "ĠSk": 7591, + "ĠCD": 7592, + "Ġrab": 7593, + "Ġsubsequ": 7594, + "attles": 7595, + "Ġ150": 7596, + "Ġcontrovers": 7597, + "comm": 7598, + "Ġclothing": 7599, + "Ġsources": 7600, + "Ġmobile": 7601, + "looking": 7602, + "ĠColumbia": 7603, + "ĠDawson": 7604, + "37": 7605, + "PP": 7606, + "Sh": 7607, + "vior": 7608, + "Ġwra": 7609, + "Ġgrey": 7610, + "Ġnort": 7611, + "ĠWW": 7612, + "Ġjumped": 7613, + "Ġsoci": 7614, + "ĠStra": 7615, + "Ġrode": 7616, + "hamed": 7617, + "Ġbits": 7618, + "Ġmilit": 7619, + "ĠWithout": 7620, + "ĠRobin": 7621, + "Ġsuffer": 7622, + "Ġaffected": 7623, + "ĠChildren": 7624, + "Ġapproximately": 7625, + "Å¡": 7626, + "Ġcore": 7627, + "Ġlung": 7628, + "ĠTenn": 7629, + "Ġrein": 7630, + "ĠOper": 7631, + "ĠGoo": 7632, + "ĠKr": 7633, + "Ġgrade": 7634, + "Ġacts": 7635, + "ĠHoward": 7636, + "Ġboats": 7637, + "Ġsubs": 7638, + "ĠJustice": 7639, + "Ġprovides": 7640, + "Ġdemocr": 7641, + "Ġlaunch": 7642, + "Ġgoddess": 7643, + "Ġescaped": 7644, + "intendo": 7645, + "lers": 7646, + "à¦": 7647, + "orage": 7648, + "Ġyep": 7649, + "Ġgri": 7650, + "ĠHay": 7651, + "stal": 7652, + "Ġdoctors": 7653, + "Ġknight": 7654, + "ĠJess": 7655, + "ieur": 7656, + "Ġshift": 7657, + "Ġvoices": 7658, + "Ġdeserve": 7659, + "ilding": 7660, + "fecture": 7661, + "Ġstudying": 7662, + "Ġpassage": 7663, + "Ġgrav": 7664, + "Ġsitu": 7665, + "Ġpossibility": 7666, + "Ġchecked": 7667, + "Ġpersons": 7668, + "Ġsacred": 7669, + "Ġbalance": 7670, + "Ġvehicle": 7671, + "Ġinhabitants": 7672, + "five": 7673, + "onic": 7674, + "Ġben": 7675, + "Ġcats": 7676, + "lets": 7677, + "Ġstress": 7678, + "ĠNar": 7679, + "ĠPoint": 7680, + "akers": 7681, + "Ġacted": 7682, + "Ġactions": 7683, + "ibi": 7684, + "ounce": 7685, + "Ġ1972": 7686, + "engers": 7687, + "Ġissued": 7688, + "Ġviews": 7689, + "Ġobjects": 7690, + "Ġwidely": 7691, + "Ġiniti": 7692, + "Ġknocked": 7693, + "Ġadministr": 7694, + "Ġstranger": 7695, + "Ġpregnant": 7696, + "point": 7697, + "uing": 7698, + "ĠTam": 7699, + "Ġrefe": 7700, + "sters": 7701, + "ĠBan": 7702, + "ĠNintendo": 7703, + "Ġneut": 7704, + "ĠJan": 7705, + "eline": 7706, + "ateful": 7707, + "Ġvalley": 7708, + "ĠDean": 7709, + "Ġcapable": 7710, + "Ġmusician": 7711, + "Ġ1968": 7712, + "rayed": 7713, + "Ġdistricts": 7714, + "Ġblocks": 7715, + "remony": 7716, + "Ġcapture": 7717, + "Ġmirror": 7718, + "Ġrevenge": 7719, + "ĠDouglas": 7720, + "ĠEddie": 7721, + "ĠNetherlands": 7722, + "26": 7723, + "Ġbones": 7724, + "orney": 7725, + "Ġpour": 7726, + "ĠCir": 7727, + "ador": 7728, + "ummy": 7729, + "Ġrings": 7730, + "apore": 7731, + "ĠThough": 7732, + "onsense": 7733, + "Ġhorror": 7734, + "Ġceremony": 7735, + "Ġcombined": 7736, + "Ġshadow": 7737, + "ĠAbsolutely": 7738, + "called": 7739, + "net": 7740, + "Ġpants": 7741, + "Ġreign": 7742, + "ĠCorn": 7743, + "ĠGen": 7744, + "ĠHead": 7745, + "uls": 7746, + "Ġjew": 7747, + "Ġconcl": 7748, + "Ġexha": 7749, + "owned": 7750, + "ĠThursday": 7751, + "Ġsplend": 7752, + "Ġuns": 7753, + "Ġimple": 7754, + "Ġshoulders": 7755, + "Ġconsists": 7756, + "Ġassign": 7757, + "Ġdrinks": 7758, + "Ġhoped": 7759, + "Ġprisoners": 7760, + "Ġnecessarily": 7761, + "Ġbesides": 7762, + "Ġastron": 7763, + "Ġpilot": 7764, + "Le": 7765, + "vor": 7766, + "Ġment": 7767, + "ĠMD": 7768, + "Ġseed": 7769, + "ĠLes": 7770, + "ĠHealth": 7771, + "ĠJoy": 7772, + "Ġrush": 7773, + "ĠStart": 7774, + "avan": 7775, + "ĠReady": 7776, + "Ġmonster": 7777, + "Ġlisted": 7778, + "Ġshortly": 7779, + "Ġtemple": 7780, + "chers": 7781, + "Ġdelivered": 7782, + "Ġwaters": 7783, + "Ġintellect": 7784, + "Ġadministration": 7785, + "Ġstruggle": 7786, + "Ġtypical": 7787, + "Ġtip": 7788, + "Ġsought": 7789, + "Ġfasc": 7790, + "ĠTok": 7791, + "etime": 7792, + "una": 7793, + "oli": 7794, + "andie": 7795, + "Ġconclud": 7796, + "Ġguarant": 7797, + "ĠBridge": 7798, + "Ġbitter": 7799, + "Ġpersonally": 7800, + "Ġpersonality": 7801, + "Ġconfidence": 7802, + "ĠTeam": 7803, + "Ġ1945": 7804, + "Ġtrem": 7805, + "laus": 7806, + "Ġcopies": 7807, + "ĠRepresent": 7808, + "Ġvideos": 7809, + "Ġearthqu": 7810, + "Ġdiscussion": 7811, + "Ġreduced": 7812, + "Ġindividuals": 7813, + "Ġbenefits": 7814, + "ĠSingapore": 7815, + "ĠMuhammad": 7816, + "elphia": 7817, + "AA": 7818, + "Ġwire": 7819, + "Ġmart": 7820, + "owing": 7821, + "ĠNi": 7822, + "ĠLad": 7823, + "ieve": 7824, + "ĠKa": 7825, + "ints": 7826, + "inton": 7827, + "Ġmeters": 7828, + "ĠBarb": 7829, + "Ġroads": 7830, + "aska": 7831, + "Ġcultural": 7832, + "Ġdebt": 7833, + "Ġmachines": 7834, + "Ġtender": 7835, + "Ġgraduated": 7836, + "ĠBruce": 7837, + "LES": 7838, + "bach": 7839, + "mail": 7840, + "Ġfuel": 7841, + "Ġtoast": 7842, + "Ġlt": 7843, + "ĠSin": 7844, + "adelphia": 7845, + "Ġstolen": 7846, + "ĠYe": 7847, + "ĠNet": 7848, + "ĠGib": 7849, + "ĠFree": 7850, + "ĠEight": 7851, + "ĠJay": 7852, + "earch": 7853, + "Ġ37": 7854, + "Ġ300": 7855, + "Ġmoments": 7856, + "aughters": 7857, + "Ġswall": 7858, + "Ġdiscovery": 7859, + "ĠAbd": 7860, + "Ġpurple": 7861, + "Ġprogramme": 7862, + "Ġcops": 7863, + "Ġfairy": 7864, + "Ġinvestment": 7865, + "Ġvert": 7866, + "Ġideal": 7867, + "ĠChannel": 7868, + "Ġsatisfied": 7869, + "ĠRailway": 7870, + "ĠTaiwan": 7871, + "Ġtoilet": 7872, + "John": 7873, + "Ġtale": 7874, + "Ġsoup": 7875, + "ĠAud": 7876, + "ĠFamily": 7877, + "eable": 7878, + "ulse": 7879, + "emet": 7880, + "Ġarts": 7881, + "Ġloyal": 7882, + "Ġguests": 7883, + "class": 7884, + "Ġregional": 7885, + "Ġequation": 7886, + "Ġsnake": 7887, + "Ġcrap": 7888, + "Ġversions": 7889, + "IST": 7890, + "hampionships": 7891, + "Ġverte": 7892, + "ĠEducation": 7893, + "Normandie": 7894, + "99": 7895, + "De": 7896, + "KS": 7897, + "era": 7898, + "ĠCost": 7899, + "rix": 7900, + "Ġrice": 7901, + "Ġrising": 7902, + "Ġours": 7903, + "ĠAlbert": 7904, + "Ġowners": 7905, + "ĠArts": 7906, + "Ġhearts": 7907, + "Ġ1963": 7908, + "Ġestim": 7909, + "ĠMetro": 7910, + "ĠCape": 7911, + "ĠBasse": 7912, + "Ġmerely": 7913, + "Ġneighborhood": 7914, + "RAT": 7915, + "UM": 7916, + "cus": 7917, + "cut": 7918, + "mph": 7919, + "Ġmal": 7920, + "Ġfed": 7921, + "Ġfestival": 7922, + "esome": 7923, + "asha": 7924, + "Ġnaked": 7925, + "Ġitems": 7926, + "ĠMorning": 7927, + "ĠBuck": 7928, + "ousing": 7929, + "Ġunha": 7930, + "Ġscenes": 7931, + "Ġremove": 7932, + "âĻª": 7933, + "Ġinsult": 7934, + "Ġmarks": 7935, + "Ġcontrolled": 7936, + "Ġfigured": 7937, + "ITH": 7938, + "OME": 7939, + "Ġprincipal": 7940, + "Ġmaiden": 7941, + "Ġgranted": 7942, + "31": 7943, + "HL": 7944, + "will": 7945, + "Ġbom": 7946, + "oria": 7947, + "Ġtomb": 7948, + "irmed": 7949, + "ĠBud": 7950, + "Ġknees": 7951, + "Ġvast": 7952, + "Ġslide": 7953, + "ĠArk": 7954, + "Ġminds": 7955, + "ĠConne": 7956, + "iami": 7957, + "Ġorganized": 7958, + "Ġdevices": 7959, + "ĠSteven": 7960, + "ĠBetter": 7961, + "Ġbowl": 7962, + "Ġliquid": 7963, + "Ġarranged": 7964, + "emetery": 7965, + "uv": 7966, + "ygen": 7967, + "Ġaid": 7968, + "lle": 7969, + "Ġnurse": 7970, + "ĠBand": 7971, + "ĠOtt": 7972, + "Ġ(_": 7973, + "ĠKan": 7974, + "oster": 7975, + "Ġrope": 7976, + "Ġcontem": 7977, + "issed": 7978, + "ĠBring": 7979, + "ĠSeven": 7980, + "azed": 7981, + "Ġextended": 7982, + "Ġcutting": 7983, + "Ġspiritual": 7984, + "ĠBaby": 7985, + "ĠMiller": 7986, + "Ġbranches": 7987, + "Cl": 7988, + "FC": 7989, + "bu": 7990, + "met": 7991, + "isk": 7992, + "Ġinfect": 7993, + "ĠAmb": 7994, + "ĠPress": 7995, + "ĠKal": 7996, + "Ġteen": 7997, + "Ġsmiled": 7998, + "ĠArgent": 7999, + "Ġlistened": 8000, + "Ġbedroom": 8001, + "derer": 8002, + "Ġ1947": 8003, + "ĠAustria": 8004, + "Ġkissed": 8005, + "ĠGrandma": 8006, + "nesday": 8007, + "Ġemotions": 8008, + "ón": 8009, + "Ġbegun": 8010, + "Ġanswers": 8011, + "cia": 8012, + "iency": 8013, + "Ġnuts": 8014, + "utor": 8015, + "ĠHoney": 8016, + "ĠMain": 8017, + "ĠBC": 8018, + "ĠPoor": 8019, + "ĠGordon": 8020, + "uled": 8021, + "Ġnoble": 8022, + "ĠUr": 8023, + "Ġprote": 8024, + "Ġcontext": 8025, + "Ġhousehold": 8026, + "Ġdistingu": 8027, + "Ġparish": 8028, + "Ġdepos": 8029, + "ĠCorpor": 8030, + "Ġquietly": 8031, + "ĠDarling": 8032, + "Ġdescription": 8033, + "Ġpunishment": 8034, + "ĠOfficer": 8035, + "Ġimplement": 8036, + "ãĥ": 8037, + "erable": 8038, + "Ġbike": 8039, + "Ġmamm": 8040, + "Ġlately": 8041, + "Ġstim": 8042, + "ctive": 8043, + "ĠFord": 8044, + "Ġarrow": 8045, + "Ġletting": 8046, + "Ġchildhood": 8047, + "Ġsurgery": 8048, + "Ġinspired": 8049, + "Ġstrate": 8050, + "uesday": 8051, + "ĠConference": 8052, + "Ġexplore": 8053, + "ĠShah": 8054, + "Ġnathaniel": 8055, + "Ġexecutive": 8056, + "Ġanaly": 8057, + "Ġdespite": 8058, + "ĠToronto": 8059, + "Ġpollution": 8060, + "Ġdemonstr": 8061, + "Ġnuclear": 8062, + "Ġabandoned": 8063, + "Ġexplanation": 8064, + "ĠÌģ": 8065, + "OP": 8066, + "Un": 8067, + "fly": 8068, + "press": 8069, + "Ġtag": 8070, + "Ġmud": 8071, + "Ġfond": 8072, + "Ġtoy": 8073, + "aro": 8074, + "kel": 8075, + "ĠPu": 8076, + "ĠLiber": 8077, + "Ġjoseph": 8078, + "Ġ1920": 8079, + "orders": 8080, + "Ġerror": 8081, + "Ġrelief": 8082, + "Ġalongside": 8083, + "Ġphotos": 8084, + "ĠDesp": 8085, + "ĠSpecial": 8086, + "Ġdomestic": 8087, + "Ġglobal": 8088, + "CT": 8089, + "Ġtries": 8090, + "Ġchampionship": 8091, + "Ġfab": 8092, + "Ġincl": 8093, + "athan": 8094, + "ĠSly": 8095, + "Ġforb": 8096, + "ĠPo": 8097, + "ĠFind": 8098, + "Ġjury": 8099, + "Ġcompar": 8100, + "Ġunlike": 8101, + "ĠAssembly": 8102, + "ĠAllen": 8103, + "Ġreturning": 8104, + "Ġpurs": 8105, + "lause": 8106, + "Ġvillages": 8107, + "Ġprofession": 8108, + "Ġpubl": 8109, + "Ġsailed": 8110, + "ĠHistor": 8111, + "Ġemotional": 8112, + "Ġcomposer": 8113, + "Ġjacket": 8114, + "Ġelder": 8115, + "Ġalternative": 8116, + "Ġsustain": 8117, + "Ġstrategy": 8118, + "gic": 8119, + "ouch": 8120, + "itched": 8121, + "Ġchamber": 8122, + "Ġgy": 8123, + "Ġgathered": 8124, + "Ġhockey": 8125, + "usive": 8126, + "ĠSweet": 8127, + "ifts": 8128, + "raph": 8129, + "usting": 8130, + "ĠInf": 8131, + "Ġuncom": 8132, + "Ġ34": 8133, + "Ġsmiling": 8134, + "ounced": 8135, + "Ġdrives": 8136, + "Ġ1977": 8137, + "Ġstepped": 8138, + "Ġ1944": 8139, + "Ġillness": 8140, + "Ġelections": 8141, + "phas": 8142, + "Ġreduce": 8143, + "Ġarchitect": 8144, + "Ġarchitecture": 8145, + "Ġmaximum": 8146, + "ĠPicard": 8147, + "Ġcorrespond": 8148, + "Tr": 8149, + "When": 8150, + "cop": 8151, + "hot": 8152, + "lan": 8153, + "ĠÄ": 8154, + "Ġfoss": 8155, + "ĠImp": 8156, + "lly": 8157, + "Ġyards": 8158, + "ĠBi": 8159, + "ĠBall": 8160, + "urches": 8161, + "ĠOd": 8162, + "umble": 8163, + "ĠUN": 8164, + "Ġspons": 8165, + "Ġimages": 8166, + "Ġdisg": 8167, + "Ġaccur": 8168, + "Ġcraw": 8169, + "Ġattacks": 8170, + "Ġannoy": 8171, + "Ġpersu": 8172, + "Ġdramatic": 8173, + "RY": 8174, + "gie": 8175, + "nat": 8176, + "Ġwars": 8177, + "Ġpeak": 8178, + "ombe": 8179, + "Ġthread": 8180, + "ĠMaine": 8181, + "ĠCroat": 8182, + "eau": 8183, + "ĠElect": 8184, + "ĠZe": 8185, + "Ġ1967": 8186, + "Ġdiagn": 8187, + "Ġcommander": 8188, + "ĠFinally": 8189, + "Ġ£": 8190, + "Ġsacrif": 8191, + "ĠCampbell": 8192, + "Ġcandidate": 8193, + "ĠGoogle": 8194, + "Ne": 8195, + "pent": 8196, + "ñ": 8197, + "Ġtack": 8198, + "imb": 8199, + "ĠHart": 8200, + "ĠRE": 8201, + "thm": 8202, + "ĠJu": 8203, + "Ġscored": 8204, + "Ġpromoted": 8205, + "Ġparliament": 8206, + "Ġpositions": 8207, + "Ġcrossing": 8208, + "ĠCheck": 8209, + "ĠPhiladelphia": 8210, + "Just": 8211, + "Mar": 8212, + "door": 8213, + "non": 8214, + "wing": 8215, + "Ġfir": 8216, + "aned": 8217, + "atures": 8218, + "ĠCole": 8219, + "rak": 8220, + "olves": 8221, + "Ġalpha": 8222, + "Ġagents": 8223, + "Ġthrone": 8224, + "Ġunderground": 8225, + "Ġassault": 8226, + "ĠIndones": 8227, + "Ġmeetings": 8228, + "ĠMmm": 8229, + "AND": 8230, + "Ġ1965": 8231, + "Ġparallel": 8232, + "Ġadmitted": 8233, + "ĠMcG": 8234, + "ĠKevin": 8235, + "ĠYOUR": 8236, + "Ġclubs": 8237, + "Ġidentified": 8238, + "ĠPalace": 8239, + "Ġfrequently": 8240, + "Ġpirate": 8241, + "ĠIdaho": 8242, + "Ġexpedition": 8243, + "Ġcooper": 8244, + "Ġfulf": 8245, + "Ġhills": 8246, + "Ġwashed": 8247, + "iao": 8248, + "Ġpron": 8249, + "Ġappropriate": 8250, + "onsieur": 8251, + "Ġwarning": 8252, + "ĠProdu": 8253, + "Ġfriendship": 8254, + "Ġoperated": 8255, + "ĠMatthew": 8256, + "ĠBrook": 8257, + "Ġelectricity": 8258, + "Ġexperiences": 8259, + "Ġheavily": 8260, + "Ġcapacity": 8261, + "Ah": 8262, + "Re": 8263, + "rons": 8264, + "sar": 8265, + "zed": 8266, + "Ġoption": 8267, + "Ġinse": 8268, + "Ġstairs": 8269, + "ĠDNA": 8270, + "Ġselect": 8271, + "Ġatom": 8272, + "Ġrug": 8273, + "ĠViv": 8274, + "Ġchrist": 8275, + "otted": 8276, + "Ġchart": 8277, + "Ġstrateg": 8278, + "Ġconfess": 8279, + "Ġlargely": 8280, + "ĠCentre": 8281, + "Ġexisting": 8282, + "ĠGlob": 8283, + "Ġintroduce": 8284, + "Ġaffair": 8285, + "Ġconstitution": 8286, + "33": 8287, + "oard": 8288, + "hab": 8289, + "ington": 8290, + "Ġdow": 8291, + "atically": 8292, + "Ġhunt": 8293, + "ĠAld": 8294, + "ĠAlf": 8295, + "Ġashamed": 8296, + "ifer": 8297, + "Ġcollabor": 8298, + "ographer": 8299, + "Ġcritics": 8300, + "Ġphysics": 8301, + "Ġviolent": 8302, + "ĠAirport": 8303, + "ĠHonor": 8304, + "ĠFreud": 8305, + "Ġvotes": 8306, + "ĠSanta": 8307, + "Ġconvinced": 8308, + "Ġrabbit": 8309, + "fit": 8310, + "iri": 8311, + "tan": 8312, + "ĠTar": 8313, + "ĠBishop": 8314, + "opher": 8315, + "ĠRilla": 8316, + "ĠForm": 8317, + "oyd": 8318, + "Ġprecious": 8319, + "Ġcolumn": 8320, + "amental": 8321, + "Ġreplace": 8322, + "Ġabsor": 8323, + "Ġsubjects": 8324, + "Ġchairman": 8325, + "Ġbreathing": 8326, + "rin": 8327, + "ĠAS": 8328, + "ĠSuff": 8329, + "Ġefficient": 8330, + "ĠHook": 8331, + "irts": 8332, + "ĠOri": 8333, + "ĠPot": 8334, + "ĠEconom": 8335, + "igs": 8336, + "velope": 8337, + "Ġheaded": 8338, + "Ġdefense": 8339, + "Ġexpecting": 8340, + "Ġabsolute": 8341, + "Ġdollar": 8342, + "Ġvolunte": 8343, + "Ġepisodes": 8344, + "Ġbehavior": 8345, + "ĠHawai": 8346, + "Ġexperienced": 8347, + "For": 8348, + "To": 8349, + "uate": 8350, + "Ġwicked": 8351, + "Ġsam": 8352, + "Ġfer": 8353, + "Ġdaughters": 8354, + "ĠSher": 8355, + "ĠSever": 8356, + "ĠMiami": 8357, + "ĠBor": 8358, + "ĠBible": 8359, + "Ġash": 8360, + "ĠFederal": 8361, + "Ġneat": 8362, + "Ġpartly": 8363, + "Ġgrateful": 8364, + "Ġsets": 8365, + "Ġreputation": 8366, + "Ġservant": 8367, + "ĠTechn": 8368, + "Ġpicking": 8369, + "Ġ1941": 8370, + "Ġengineer": 8371, + "ĠDoesn": 8372, + "Ġprepare": 8373, + "ĠGolden": 8374, + "ĠThings": 8375, + "Ill": 8376, + "pass": 8377, + "icia": 8378, + "ĠWonder": 8379, + "ĠHospital": 8380, + "roid": 8381, + "ĠPret": 8382, + "ĠJos": 8383, + "odge": 8384, + "Ġnowhere": 8385, + "ciences": 8386, + "Ġenorm": 8387, + "Ġcoordin": 8388, + "hedral": 8389, + "issa": 8390, + "pective": 8391, + "INE": 8392, + "certain": 8393, + "Ġsooner": 8394, + "Ġpursu": 8395, + "Ġtreasure": 8396, + "Ġalbums": 8397, + "Ġmessages": 8398, + "ĠMexican": 8399, + "Ġoxygen": 8400, + "Ġaltogether": 8401, + "ratulations": 8402, + "Ġdelicious": 8403, + "case": 8404, + "heme": 8405, + "erted": 8406, + "haw": 8407, + "Ġcod": 8408, + "Ġcattle": 8409, + "Ġtool": 8410, + "Ġpant": 8411, + "Ġwashing": 8412, + "ĠHog": 8413, + "ĠMos": 8414, + "ĠNOT": 8415, + "Ġseats": 8416, + "ĠLo": 8417, + "istol": 8418, + "ĠStone": 8419, + "Ġcontained": 8420, + "Ġrecy": 8421, + "Ġ48": 8422, + "Ġacad": 8423, + "Ġadding": 8424, + "Ġlesson": 8425, + "Ġhated": 8426, + "Ġallowing": 8427, + "ĠRomania": 8428, + "Ġprojects": 8429, + "Ġpresidential": 8430, + "Ġpurposes": 8431, + "Ġdocuments": 8432, + "ĠSpeaker": 8433, + "Ġmystery": 8434, + "ĠSlyne": 8435, + "Than": 8436, + "four": 8437, + "hus": 8438, + "mont": 8439, + "Ġinch": 8440, + "ĠCass": 8441, + "ĠBav": 8442, + "ĠDale": 8443, + "ĠGun": 8444, + "ĠLew": 8445, + "ello": 8446, + "aks": 8447, + "Ġspoon": 8448, + "Ġextent": 8449, + "Ġpossession": 8450, + "ĠBlood": 8451, + "Ġprobability": 8452, + "Ġmurderer": 8453, + "Ġnaturally": 8454, + "Ġrailroad": 8455, + "Ġbaseball": 8456, + "Ġthreatened": 8457, + "Ġessentially": 8458, + "ĠHeaven": 8459, + "ĠWednesday": 8460, + "One": 8461, + "long": 8462, + "laughter": 8463, + "wick": 8464, + "hah": 8465, + "Ġfaced": 8466, + "orious": 8467, + "Ġdating": 8468, + "ĠTuesday": 8469, + "Ġthir": 8470, + "Ġstones": 8471, + "ĠDu": 8472, + "ĠFC": 8473, + "ĠFu": 8474, + "agers": 8475, + "Ġformat": 8476, + "ĠForget": 8477, + "Ġlanded": 8478, + "ĠEmma": 8479, + "odecahedron": 8480, + "Ġtesting": 8481, + "Ġproperties": 8482, + "Ġdipl": 8483, + "Ġcollected": 8484, + "ĠBetween": 8485, + "Ġprinciple": 8486, + "Ġtelephone": 8487, + "Ġillegal": 8488, + "ĠAnthony": 8489, + "ĠPicardie": 8490, + ".&": 8491, + "erest": 8492, + "yard": 8493, + "Ġbone": 8494, + "usa": 8495, + "ĠAren": 8496, + "ĠSP": 8497, + "ĠSav": 8498, + "ĠSister": 8499, + "Ġbeings": 8500, + "ithm": 8501, + "ĠPrem": 8502, + "Ġnotable": 8503, + "ĠRet": 8504, + "Ġworn": 8505, + "itty": 8506, + "Ġages": 8507, + "Ġgray": 8508, + "Ġchoo": 8509, + "Ġsmooth": 8510, + "Ġdifferences": 8511, + "Ġoblig": 8512, + "Ġextend": 8513, + "ĠHarrison": 8514, + "Ġvaluable": 8515, + "ĠMorgan": 8516, + "Ġvacc": 8517, + "Ġadults": 8518, + "Ġfrank": 8519, + "ller": 8520, + "ĠYan": 8521, + "ĠDal": 8522, + "ilton": 8523, + "iga": 8524, + "Ġinches": 8525, + "Ġsites": 8526, + "Ġadvoc": 8527, + "Ġapproved": 8528, + "Ġpulling": 8529, + "smith": 8530, + "Ġlatest": 8531, + "Footnote": 8532, + "dney": 8533, + "has": 8534, + "itled": 8535, + "attered": 8536, + "Ġnap": 8537, + "Ġhes": 8538, + "ĠMY": 8539, + "ĠMot": 8540, + "ĠBah": 8541, + "Ġstable": 8542, + "Ġasks": 8543, + "ĠAndy": 8544, + "Ġuseless": 8545, + "Ġprosec": 8546, + "Ġtwin": 8547, + "Ġgrace": 8548, + "Ġbrid": 8549, + "Ġinvasion": 8550, + "Ġstops": 8551, + "Ġcausing": 8552, + "coming": 8553, + "Ġamongst": 8554, + "ĠWHAT": 8555, + "ĠInternet": 8556, + "95": 8557, + "bro": 8558, + "hist": 8559, + "rum": 8560, + "Ġtheatre": 8561, + "ĠAM": 8562, + "Ġthorough": 8563, + "ĠLuther": 8564, + "ĠFace": 8565, + "ules": 8566, + "agne": 8567, + "icking": 8568, + "ixon": 8569, + "ĠAsk": 8570, + "Ġattached": 8571, + "Ġcourts": 8572, + "Ġpasses": 8573, + "ĠAbb": 8574, + "Ġequival": 8575, + "Ġstrongly": 8576, + "ĠMinistry": 8577, + "bourne": 8578, + "Ġinitially": 8579, + "cers": 8580, + "Ġtank": 8581, + "iner": 8582, + "eness": 8583, + "Ġpipe": 8584, + "Ġhits": 8585, + "ĠNAR": 8586, + "ĠPass": 8587, + "Ġvul": 8588, + "pei": 8589, + "Ġlover": 8590, + "Ġadj": 8591, + "Ġprecise": 8592, + "fulness": 8593, + "formation": 8594, + "Ġformal": 8595, + "Ġdefined": 8596, + "prise": 8597, + "ĠAmong": 8598, + "Ġstarred": 8599, + "III": 8600, + "Ġportion": 8601, + "Ġclaims": 8602, + "Are": 8603, + "LRB": 8604, + "eenth": 8605, + "Ġtropical": 8606, + "Ġwing": 8607, + "Ġsar": 8608, + "Ġbark": 8609, + "Ġdea": 8610, + "oos": 8611, + "outheast": 8612, + "ĠOrigin": 8613, + "ĠLive": 8614, + "Ġdece": 8615, + "ĠJerry": 8616, + "udes": 8617, + "Ġdownstairs": 8618, + "gines": 8619, + "irds": 8620, + "Ġsingles": 8621, + "ĠMean": 8622, + "ĠPlan": 8623, + "Ġappointment": 8624, + "Ġinternal": 8625, + "Ġunconscious": 8626, + "Ġexercise": 8627, + "Ġunhappy": 8628, + "On": 8629, + "RRB": 8630, + "Siden": 8631, + "lie": 8632, + "pool": 8633, + "°": 8634, + "inem": 8635, + "essee": 8636, + "Ġnit": 8637, + "oty": 8638, + "Ġthief": 8639, + "ĠYug": 8640, + "ĠLock": 8641, + "...!": 8642, + "ĠEnd": 8643, + "Ġnewly": 8644, + "ggie": 8645, + "Ġcharges": 8646, + "Ġparad": 8647, + "Ġawake": 8648, + "Ġcleaning": 8649, + "Ġsuperior": 8650, + "Ġbeaten": 8651, + "Ġbanks": 8652, + "Ġlicense": 8653, + "Ġencourage": 8654, + "Ġlinear": 8655, + "ĠLisa": 8656, + "Ġdedicated": 8657, + "Ġdesperate": 8658, + "ĠIraq": 8659, + "Sidenote": 8660, + "bal": 8661, + "lad": 8662, + "oons": 8663, + "Ġfaint": 8664, + "oration": 8665, + "Ġdomin": 8666, + "Ġyield": 8667, + "ĠMs": 8668, + "ĠCamer": 8669, + "ĠLin": 8670, + "ĠLion": 8671, + "Ġsheet": 8672, + "Ġwherever": 8673, + "ordinary": 8674, + "cling": 8675, + "Ġshower": 8676, + "Ġslipped": 8677, + "Ġheadquarters": 8678, + "Ġindic": 8679, + "ĠTHIS": 8680, + "Ġmodels": 8681, + "ĠTomorrow": 8682, + "Ġspirits": 8683, + "Ġrepeat": 8684, + "ĠDespite": 8685, + "48": 8686, + "oz": 8687, + "ã": 8688, + "ç": 8689, + "Ġindu": 8690, + "ĠDri": 8691, + "ĠDog": 8692, + "ĠGran": 8693, + "opp": 8694, + "uda": 8695, + "rang": 8696, + "Ġpride": 8697, + "Ġ33": 8698, + "Ġ38": 8699, + "Ġcarriage": 8700, + "Ġleaf": 8701, + "ibilities": 8702, + "Ġentry": 8703, + "Ġinstinct": 8704, + "Ġrestrict": 8705, + "Ġdeveloping": 8706, + "Ġclassic": 8707, + "Ġruined": 8708, + "going": 8709, + "Ġnegoti": 8710, + "Ġstores": 8711, + "ĠAnton": 8712, + "ĠOlympic": 8713, + "Ġprinted": 8714, + "Ġacquired": 8715, + "ĠSilver": 8716, + "Ġpirates": 8717, + "Ġrenamed": 8718, + "Con": 8719, + "cript": 8720, + "die": 8721, + "fire": 8722, + "nor": 8723, + "sur": 8724, + "isen": 8725, + "ĠID": 8726, + "Ġdoo": 8727, + "Ġdates": 8728, + "ĠSO": 8729, + "ĠSally": 8730, + "acles": 8731, + "ĠHig": 8732, + "ĠMoo": 8733, + "Ġassociation": 8734, + "ĠNine": 8735, + "ĠGene": 8736, + "ĠRea": 8737, + "ĠFat": 8738, + "Ġsoap": 8739, + "Ġuser": 8740, + "aste": 8741, + "neath": 8742, + "teenth": 8743, + "ologists": 8744, + "Ġstandards": 8745, + "Ġyoungest": 8746, + "Ġstrict": 8747, + "Ġhurts": 8748, + "Ġ1966": 8749, + "Ġwondered": 8750, + "Ġconstantly": 8751, + "ĠCommon": 8752, + "ĠPhilip": 8753, + "Ġregarding": 8754, + "ĠMountain": 8755, + "keeper": 8756, + "Ġrescue": 8757, + "Mic": 8758, + "inter": 8759, + "Ġwoo": 8760, + "Ġwishes": 8761, + "hara": 8762, + "iders": 8763, + "ĠWon": 8764, + "ĠWars": 8765, + "ĠCas": 8766, + "ĠBorn": 8767, + "Ġanch": 8768, + "ĠDin": 8769, + "Ġseized": 8770, + "ĠLind": 8771, + "Ġsup": 8772, + "ĠKelly": 8773, + "Ġagency": 8774, + "Ġpeasant": 8775, + "Ġdisag": 8776, + "Ġcris": 8777, + "ĠArmen": 8778, + "Ġconfident": 8779, + "Ġrivers": 8780, + "Ġ1954": 8781, + "ĠDrink": 8782, + "aughing": 8783, + "idae": 8784, + "uki": 8785, + "ĠLaura": 8786, + "Ġtechnical": 8787, + "Ġgenus": 8788, + "Ġtaxes": 8789, + "ĠChristianity": 8790, + "Ġinjured": 8791, + "Ġprinciples": 8792, + "Ġblew": 8793, + "Ġnewspapers": 8794, + "Ġrelatively": 8795, + "Ġrapidly": 8796, + "Ġinvented": 8797, + "Ġmysterious": 8798, + "Ġfantastic": 8799, + "Ġcotton": 8800, + "Ġphrase": 8801, + "Ġnickn": 8802, + "47": 8803, + "iro": 8804, + "Ġtheater": 8805, + "Ġwreck": 8806, + "Ġfisher": 8807, + "Ġduties": 8808, + "Ġgal": 8809, + "icians": 8810, + "ĠSave": 8811, + "ĠSports": 8812, + "Ġthunder": 8813, + "ĠYoon": 8814, + "Ġgosh": 8815, + "unting": 8816, + "Ġsav": 8817, + "Ġargue": 8818, + "pert": 8819, + "ucker": 8820, + "Ġgreatly": 8821, + "Ġexpressed": 8822, + "Ġmovements": 8823, + "Ġ75": 8824, + "Ġfellows": 8825, + "Ġorganizations": 8826, + "Ġruin": 8827, + "ĠPolish": 8828, + "ĠJews": 8829, + "ĠPanama": 8830, + "Ġjournalist": 8831, + "Ġadventure": 8832, + "ĠFollowing": 8833, + "cular": 8834, + "phan": 8835, + "race": 8836, + "Ġphen": 8837, + "Ġlap": 8838, + "Ġgross": 8839, + "ĠAff": 8840, + "ĠSounds": 8841, + "ĠWild": 8842, + "urg": 8843, + "ĠFif": 8844, + "ĠKings": 8845, + "aga": 8846, + "Ġwrites": 8847, + "ĠAncient": 8848, + "Ġslip": 8849, + "ĠDevelop": 8850, + "Ġobst": 8851, + "Ġairpl": 8852, + "Ġ1956": 8853, + "Ġarrive": 8854, + "Ġgenius": 8855, + "Ġemotion": 8856, + "Ġresource": 8857, + "Ġoccupied": 8858, + "ĠRollo": 8859, + "Ġvessels": 8860, + "Ġkilomet": 8861, + "ifferent": 8862, + "Ex": 8863, + "ridge": 8864, + "Ġtube": 8865, + "Ġcant": 8866, + "ĠIV": 8867, + "ĠIce": 8868, + "Ġtoler": 8869, + "ĠHim": 8870, + "ĠHoll": 8871, + "ĠCook": 8872, + "stan": 8873, + "ĠProm": 8874, + "ĠLow": 8875, + "umps": 8876, + "Ġaboard": 8877, + "Ġproport": 8878, + "Ġoffering": 8879, + "Ġbrush": 8880, + "Ġguide": 8881, + "ensity": 8882, + "ĠChuck": 8883, + "Ġmighty": 8884, + "ilda": 8885, + "Ġelimin": 8886, + "Ġglance": 8887, + "ĠShort": 8888, + "ĠClark": 8889, + "Ġarticles": 8890, + "Ġsolo": 8891, + "Ġeighteen": 8892, + "Ġinvolve": 8893, + "Ġgrandfather": 8894, + "Ġdebate": 8895, + "Ġpolicies": 8896, + "Ġthrowing": 8897, + "Ġopportunities": 8898, + "Ġlifted": 8899, + "ĠHollywood": 8900, + "cription": 8901, + "Ġprovinces": 8902, + "ĠTennessee": 8903, + "uy": 8904, + "ÅŁ": 8905, + "ĠBase": 8906, + "ĠField": 8907, + "uma": 8908, + "Ġric": 8909, + "oslav": 8910, + "hang": 8911, + "abel": 8912, + "ĠKN": 8913, + "ĠUP": 8914, + "berry": 8915, + "hibit": 8916, + "Ġengines": 8917, + "rane": 8918, + "Ġscheme": 8919, + "Ġlasted": 8920, + "Ġcrimes": 8921, + "Ġopens": 8922, + "Ġslave": 8923, + "Ġswift": 8924, + "Ġhurricane": 8925, + "Ġgrandma": 8926, + "Ġprivile": 8927, + "Ġforests": 8928, + "Ġcells": 8929, + "Ġdistribution": 8930, + "Ġintelligence": 8931, + "ropolitan": 8932, + "ĠTokyo": 8933, + "Laughter": 8934, + "zes": 8935, + "Ġtiss": 8936, + "Ġdign": 8937, + "Ġdump": 8938, + "ico": 8939, + "icing": 8940, + "Ġbegged": 8941, + "imore": 8942, + "ĠNed": 8943, + "ĠPardon": 8944, + "Ġselection": 8945, + "Ġupd": 8946, + "ĠUt": 8947, + "tainment": 8948, + "Ġfourteen": 8949, + "Ġretreat": 8950, + "Ġemperor": 8951, + "Ġconfirmed": 8952, + "Ġservants": 8953, + "Ġrival": 8954, + "Ġprofit": 8955, + "ĠGrant": 8956, + "chae": 8957, + "ĠChap": 8958, + "Ġconcerns": 8959, + "Ġcompete": 8960, + "Ġsecretary": 8961, + "Ġprimarily": 8962, + "ĠPatrick": 8963, + "Ġfortun": 8964, + "rified": 8965, + "Ġwrestling": 8966, + "Ġnearer": 8967, + "Ġpermanent": 8968, + "BI": 8969, + "VID": 8970, + "cour": 8971, + "ds": 8972, + "Ġbot": 8973, + "Ġcub": 8974, + "ĠALL": 8975, + "ĠMA": 8976, + "cho": 8977, + "Ġjam": 8978, + "Ġconven": 8979, + "Ġintent": 8980, + "Ġintense": 8981, + "ĠArm": 8982, + "Ġaccused": 8983, + "Ġformation": 8984, + "Ġemphas": 8985, + "ĠAusten": 8986, + "Ġlaura": 8987, + "ĠSeries": 8988, + "ĠSydney": 8989, + "Ġangle": 8990, + "Ġcomputers": 8991, + "after": 8992, + "Ġsurvived": 8993, + "Ġcelebrated": 8994, + "ĠJudy": 8995, + "Ġinstruments": 8996, + "Ġbubbles": 8997, + "Ġconcrete": 8998, + "ĠLAUGH": 8999, + "75": 9000, + "Ahm": 9001, + "Hey": 9002, + "Ġsna": 9003, + "Ġbent": 9004, + "Ġbold": 9005, + "ori": 9006, + "ĠAvenue": 9007, + "Ġreaching": 9008, + "ĠYu": 9009, + "Ġangel": 9010, + "ĠDON": 9011, + "tery": 9012, + "Ġvon": 9013, + "Ġvain": 9014, + "Ġrolled": 9015, + "ĠUnless": 9016, + "ĠMarie": 9017, + "Ġworldwide": 9018, + "Ġregist": 9019, + "Ġdistant": 9020, + "Ġobtained": 9021, + "lessly": 9022, + "theless": 9023, + "Ġspeaker": 9024, + "Ġsquad": 9025, + "Ġ1948": 9026, + "Ġmerged": 9027, + "Ġwooden": 9028, + "Ġlieutenant": 9029, + "ĠCongratulations": 9030, + "ĠMoz": 9031, + "ĠLuke": 9032, + "Ġliterary": 9033, + "Ġholes": 9034, + "Ġprayer": 9035, + "Ġvacation": 9036, + "Ġplatforms": 9037, + "Ġtickets": 9038, + "ĠHitler": 9039, + "Ġincredible": 9040, + "Ġdefinition": 9041, + "ré": 9042, + "Ġaye": 9043, + "inations": 9044, + "inction": 9045, + "Ġsample": 9046, + "Ġobey": 9047, + "Ġmath": 9048, + "Ġfake": 9049, + "orf": 9050, + "omer": 9051, + "ĠSame": 9052, + "ĠWITH": 9053, + "ĠMun": 9054, + "ĠMolly": 9055, + "ĠPitt": 9056, + "ulating": 9057, + "umph": 9058, + "Ġcomed": 9059, + "Ġintention": 9060, + "ĠStat": 9061, + "Ġspark": 9062, + "Ġoffers": 9063, + "ĠVar": 9064, + "ĠVill": 9065, + "Ġfled": 9066, + "ĠReal": 9067, + "Ġ400": 9068, + "Ġheading": 9069, + "Ġpassengers": 9070, + "Ġcreatures": 9071, + "Ġ1942": 9072, + "ARD": 9073, + "Ġarrival": 9074, + "Ġrecognition": 9075, + "ĠContin": 9076, + "Ġwhispered": 9077, + "Ġconstructed": 9078, + "Ġsemi": 9079, + "Ġphase": 9080, + "ĠTolombe": 9081, + "Ġsplendid": 9082, + "Ahmad": 9083, + "ĠTolombeh": 9084, + "fa": 9085, + "kind": 9086, + "rary": 9087, + "ãĤ": 9088, + "Ġwounds": 9089, + "Ġsou": 9090, + "Ġmos": 9091, + "Ġfiction": 9092, + "arth": 9093, + "Ġnic": 9094, + "Ġnarr": 9095, + "icit": 9096, + "lete": 9097, + "Ġbend": 9098, + "ĠWoman": 9099, + "ĠBos": 9100, + "ĠDyn": 9101, + "Ġshoe": 9102, + "avig": 9103, + "Ġkeen": 9104, + "Ġfounder": 9105, + "ĠFranz": 9106, + "Ġproducing": 9107, + "Ġ1961": 9108, + "shit": 9109, + "ova": 9110, + "ĠTelevision": 9111, + "Ġdivide": 9112, + "Ġreasonable": 9113, + "Ġ1952": 9114, + "Ġcompeted": 9115, + "Ġdeeply": 9116, + "Ġexception": 9117, + "Ġhosted": 9118, + "Ġaffairs": 9119, + "Ġseventh": 9120, + "Ġethnic": 9121, + "Ġapologize": 9122, + "ĠBangladesh": 9123, + "uct": 9124, + "orous": 9125, + "Ġlamb": 9126, + "Ġna": 9127, + "ĠMort": 9128, + "Ġwhoops": 9129, + "ĠEp": 9130, + "Ġalgor": 9131, + "ellow": 9132, + "Ġwheels": 9133, + "Ġpreced": 9134, + "Ġremote": 9135, + "ĠAlways": 9136, + "Ġsla": 9137, + "iolet": 9138, + "ĠSpring": 9139, + "sels": 9140, + "Ġ1962": 9141, + "iki": 9142, + "Ġclassical": 9143, + "Ġidentify": 9144, + "ĠRegion": 9145, + "Ġearliest": 9146, + "ĠMountains": 9147, + "Ġclimb": 9148, + "Ġroughly": 9149, + "Ġmemories": 9150, + "Ġpoetry": 9151, + "Ġbacter": 9152, + "Ġaccompan": 9153, + "ĠReagan": 9154, + "from": 9155, + "Ġawards": 9156, + "Ġbars": 9157, + "Ġmouse": 9158, + "anne": 9159, + "Ġpushing": 9160, + "omed": 9161, + "ĠCON": 9162, + "ĠBry": 9163, + "ĠNations": 9164, + "Ġplates": 9165, + "Ġtrunk": 9166, + "Ġloan": 9167, + "ĠVeg": 9168, + "iped": 9169, + "Ġlongest": 9170, + "Ġ46": 9171, + "alend": 9172, + "ĠLeft": 9173, + "Ġdeaths": 9174, + "Ġ1958": 9175, + "ĠJohan": 9176, + "Ġstraw": 9177, + "Ġtests": 9178, + "ĠEnough": 9179, + "ĠMaryland": 9180, + "Ġbags": 9181, + "Ġgradually": 9182, + "Ġconsiderable": 9183, + "Ġdiseases": 9184, + "Ġhonestly": 9185, + "Ġdemanded": 9186, + "Ġachieved": 9187, + "Ġpaintings": 9188, + "lar": 9189, + "Ġsang": 9190, + "itals": 9191, + "Ġpap": 9192, + "Ġpump": 9193, + "Ġgreet": 9194, + "ĠHope": 9195, + "ĠBir": 9196, + "alling": 9197, + "uration": 9198, + "ĠGro": 9199, + "ĠLl": 9200, + "igen": 9201, + "abi": 9202, + "agle": 9203, + "pton": 9204, + "urname": 9205, + "Ġreply": 9206, + "ĠChristians": 9207, + "Ġmode": 9208, + "uese": 9209, + "ĠColor": 9210, + "Ġsailing": 9211, + "ĠClear": 9212, + "ĠCareer": 9213, + "Ġearthquake": 9214, + "42": 9215, + "instein": 9216, + "Ġsorrow": 9217, + "Ġdull": 9218, + "Ġgrief": 9219, + "ĠMoon": 9220, + "ĠBul": 9221, + "ĠPra": 9222, + "ĠGardens": 9223, + "Ġje": 9224, + "elson": 9225, + "Ġpee": 9226, + "Ġloving": 9227, + "actor": 9228, + "ruits": 9229, + "Ġchurches": 9230, + "Ġhanded": 9231, + "Ġcray": 9232, + "Ġ55": 9233, + "Ġmonarch": 9234, + "Ġinteract": 9235, + "Ġevident": 9236, + "Ġmedium": 9237, + "Ġawesome": 9238, + "Ġindex": 9239, + "Ġmerry": 9240, + "Ġimmediate": 9241, + "UST": 9242, + "Ġcategory": 9243, + "Ġcrisis": 9244, + "97": 9245, + "Can": 9246, + "cr": 9247, + "Ġmask": 9248, + "Ġgest": 9249, + "ĠHop": 9250, + "ĠMoney": 9251, + "ĠCru": 9252, + "sea": 9253, + "ĠDear": 9254, + "ĠGary": 9255, + "Ġshining": 9256, + "Ġrit": 9257, + "emon": 9258, + "resents": 9259, + "Ġvice": 9260, + "ĠKnight": 9261, + "Ġfever": 9262, + "Ġcounting": 9263, + "ternal": 9264, + "otto": 9265, + "Ġpassenger": 9266, + "OULD": 9267, + "Ġexcit": 9268, + "ĠUSA": 9269, + "ĠNorman": 9270, + "Go": 9271, + "NG": 9272, + "oves": 9273, + "rors": 9274, + "there": 9275, + "real": 9276, + "Ġfox": 9277, + "ingo": 9278, + "Ġinher": 9279, + "asia": 9280, + "ĠAR": 9281, + "ĠAz": 9282, + "idel": 9283, + "ĠNik": 9284, + "unts": 9285, + "ulpt": 9286, + "umin": 9287, + "ĠKaren": 9288, + "Ġwhoever": 9289, + "ĠVin": 9290, + "ordan": 9291, + "Ġunderneath": 9292, + "Ġextensive": 9293, + "Ġdivine": 9294, + "Ġ1946": 9295, + "ĠBoyer": 9296, + "Ġextraordinary": 9297, + "ĠGirls": 9298, + "Ġcontaining": 9299, + "ĠTaipei": 9300, + "ĠShiv": 9301, + "ĠWayne": 9302, + "Ġconsciousness": 9303, + "ĠSuffolk": 9304, + "des": 9305, + "jud": 9306, + "low": 9307, + "vation": 9308, + "Ġwoke": 9309, + "Ġbrig": 9310, + "Ġpup": 9311, + "Ġpowder": 9312, + "ĠSum": 9313, + "uting": 9314, + "ĠHappy": 9315, + "sell": 9316, + "ĠPict": 9317, + "ĠRu": 9318, + "oland": 9319, + "Ġroots": 9320, + "angers": 9321, + "ĠAnim": 9322, + "Ġassigned": 9323, + "Ġrepresents": 9324, + "Ġexposed": 9325, + "Ġlessons": 9326, + "Ġanimated": 9327, + "Ġcomplain": 9328, + "Ġutter": 9329, + "Ġrarely": 9330, + "Ġcontrast": 9331, + "ĠTaylor": 9332, + "Ġreckon": 9333, + "Ġfarther": 9334, + "Wh": 9335, + "bes": 9336, + "gas": 9337, + "mate": 9338, + "mates": 9339, + "nis": 9340, + "âģ": 9341, + "Ġfare": 9342, + "Ġinner": 9343, + "Ġholy": 9344, + "eters": 9345, + "ĠAst": 9346, + "Ġitem": 9347, + "idency": 9348, + "ĠTheatre": 9349, + "Ġ\"...": 9350, + "Ġknee": 9351, + "ĠFur": 9352, + "ntown": 9353, + "ighed": 9354, + "Ġserves": 9355, + "Ġfactors": 9356, + "ĠAdams": 9357, + "Ġ1943": 9358, + "ĠMiche": 9359, + "Ġrequires": 9360, + "Ġstarring": 9361, + "Ġ1938": 9362, + "load": 9363, + "Ġrelationships": 9364, + "Ġannounce": 9365, + "Ġessential": 9366, + "Ġdistributed": 9367, + "ĠForest": 9368, + "cticut": 9369, + "ĠJonathan": 9370, + "âģĦ": 9371, + "49": 9372, + "fle": 9373, + "life": 9374, + "pack": 9375, + "Ġboring": 9376, + "ĠHuman": 9377, + "ĠCamb": 9378, + "antry": 9379, + "ĠRos": 9380, + "Ġalien": 9381, + "osity": 9382, + "Ġexists": 9383, + "Ġcloth": 9384, + "ĠVI": 9385, + "Ġpoem": 9386, + "ĠDoc": 9387, + "Ġbelt": 9388, + "Then": 9389, + "Ġdecent": 9390, + "Ġsounded": 9391, + "ĠPlace": 9392, + "Ġstructures": 9393, + "Ġtemporary": 9394, + "Ġsweetheart": 9395, + "Ġmotiv": 9396, + "asket": 9397, + "ĠSecurity": 9398, + "ĠPoland": 9399, + "Ġmistakes": 9400, + "Ġamounts": 9401, + "Ġprisoner": 9402, + "Ġsearching": 9403, + "Ġfacilities": 9404, + "ĠBobby": 9405, + "Ġhistoric": 9406, + "Ġofficials": 9407, + "Ġcustomers": 9408, + "Ġremarkable": 9409, + "ĠHotel": 9410, + "ĠPapa": 9411, + "ĠPortuguese": 9412, + "EF": 9413, + "EM": 9414, + "dam": 9415, + "je": 9416, + "laughs": 9417, + "Ġtoss": 9418, + "Ġpond": 9419, + "aton": 9420, + "ĠHou": 9421, + "ĠHug": 9422, + "ĠCreek": 9423, + "ĠBY": 9424, + "ĠLog": 9425, + "Ġlied": 9426, + "olis": 9427, + "three": 9428, + "arts": 9429, + "Ġusers": 9430, + "Ġintend": 9431, + "Ġtram": 9432, + "Ġblast": 9433, + "Ġguards": 9434, + "ĠArn": 9435, + "gedy": 9436, + "ribed": 9437, + "Ġeval": 9438, + "Ġwinds": 9439, + "Ġpresentation": 9440, + "Ġ1959": 9441, + "Ġsumm": 9442, + "ĠSuz": 9443, + "Ġimagination": 9444, + "Ġfrozen": 9445, + "Ġopposition": 9446, + "Ġscholar": 9447, + "Ġanxious": 9448, + "Ġtroubles": 9449, + "ĠLabour": 9450, + "ĠConnecticut": 9451, + "43": 9452, + "IVE": 9453, + "num": 9454, + "organ": 9455, + "esar": 9456, + "otes": 9457, + "alph": 9458, + "Ġthri": 9459, + "ĠMale": 9460, + "ĠCE": 9461, + "Ġstorage": 9462, + "Ġkings": 9463, + "chi": 9464, + "ĠPR": 9465, + "ĠRus": 9466, + "ĠSof": 9467, + "Ġadapt": 9468, + "Ġ39": 9469, + "Ġrecovered": 9470, + "Ġtrap": 9471, + "Ġdistract": 9472, + "ĠGeography": 9473, + "Ġvisible": 9474, + "ĠXX": 9475, + "Ġprotected": 9476, + "Ġexisted": 9477, + "Ġvisitors": 9478, + "ĠAdminist": 9479, + "Ġgoddamn": 9480, + "Ġbubble": 9481, + "Ġuniversities": 9482, + "Ġmanufacture": 9483, + "ĠMuslims": 9484, + "ĠVietnam": 9485, + "ĠTurkish": 9486, + "ĠProtestant": 9487, + "Ġenormous": 9488, + "ão": 9489, + "Ġexcitement": 9490, + "gro": 9491, + "gate": 9492, + "occ": 9493, + "inet": 9494, + "itated": 9495, + "Ġdial": 9496, + "ĠSet": 9497, + "Ġey": 9498, + "Ġabst": 9499, + "Ġorphan": 9500, + "Ġrural": 9501, + "Ġspaces": 9502, + "Ġrecon": 9503, + "ĠBeing": 9504, + "Ġsynt": 9505, + "Ġoffices": 9506, + "Ġdepression": 9507, + "Ġpoliceman": 9508, + "ĠFinn": 9509, + "ĠAlexand": 9510, + "Ġspecifically": 9511, + "ĠCarlos": 9512, + "ĠEntertainment": 9513, + "ĠHAVE": 9514, + "ĠManipur": 9515, + "equ": 9516, + "wind": 9517, + "Ġcows": 9518, + "Ġmr": 9519, + "Ġmister": 9520, + "ushes": 9521, + "state": 9522, + "ĠPay": 9523, + "ĠJam": 9524, + "orted": 9525, + "Ġclown": 9526, + "Ġprices": 9527, + "pless": 9528, + "Ġbuff": 9529, + "gger": 9530, + "ĠProgram": 9531, + "shine": 9532, + "ĠPeace": 9533, + "alda": 9534, + "Ġclosing": 9535, + "Ġdepending": 9536, + "piration": 9537, + "Ġdivorced": 9538, + "ĠPersonal": 9539, + "Illustration": 9540, + "86": 9541, + "GRUN": 9542, + "MAN": 9543, + "hh": 9544, + "master": 9545, + "po": 9546, + "Ġtune": 9547, + "orters": 9548, + "Ġpunch": 9549, + "Ġnonsense": 9550, + "leans": 9551, + "ĠCard": 9552, + "Ġstamp": 9553, + "Ġdode": 9554, + "ĠLiz": 9555, + "ĠRan": 9556, + "ĠRound": 9557, + "olas": 9558, + "olve": 9559, + "ĠJordan": 9560, + "cknow": 9561, + "ĠKy": 9562, + "Ġscary": 9563, + "Ġwarn": 9564, + "Ġassass": 9565, + "Ġelsewhere": 9566, + "Ġfacts": 9567, + "ĠĠĠĠĠĠĠĠĠ": 9568, + "Ġproviding": 9569, + "Ġ1949": 9570, + "ĠGrace": 9571, + "Ġdamaged": 9572, + "Ġrepresenting": 9573, + "Ġhopes": 9574, + "Ġcelebrate": 9575, + "Ġconducted": 9576, + "Ġfrogs": 9577, + "Ġinternet": 9578, + "Ġsurrounding": 9579, + "Ġexclaimed": 9580, + "Ġwriters": 9581, + "ĠNapole": 9582, + "Ġincorpor": 9583, + "Ġtremend": 9584, + "ĠMeanwhile": 9585, + "'?": 9586, + "41": 9587, + "two": 9588, + "erick": 9589, + "nda": 9590, + "itage": 9591, + "Ġdirt": 9592, + "Ġisol": 9593, + "Ġbears": 9594, + "ĠWrest": 9595, + "ĠWAS": 9596, + "utiful": 9597, + "ĠCe": 9598, + "ĠNelson": 9599, + "ĠDude": 9600, + "Ġshops": 9601, + "Ġorchestra": 9602, + "Ġsauce": 9603, + "Ġgoodbye": 9604, + "Ġundert": 9605, + "ective": 9606, + "hesis": 9607, + "Ġkinda": 9608, + "Ġcleared": 9609, + "Ġfunctions": 9610, + "ribly": 9611, + "Ġcurtain": 9612, + "ĠAustrian": 9613, + "ĠHaving": 9614, + "Ġdifficulties": 9615, + "Ġsafely": 9616, + "Ġjudgment": 9617, + "Ġbreathe": 9618, + "Ġinjuries": 9619, + "Ġgraduate": 9620, + "Ġbarely": 9621, + "ĠCorporation": 9622, + "ĠPretty": 9623, + "ĠMoore": 9624, + "):": 9625, + "IA": 9626, + "SH": 9627, + "div": 9628, + "gi": 9629, + "xual": 9630, + "ÂĿ": 9631, + "Ġvel": 9632, + "Ġaired": 9633, + "orse": 9634, + "Ġdwell": 9635, + "Ġhid": 9636, + "idering": 9637, + "ĠCertain": 9638, + "Ġhers": 9639, + "about": 9640, + "Ġbackwards": 9641, + "ĠUnlike": 9642, + "pected": 9643, + "Ġinsist": 9644, + "Ġparticles": 9645, + "Ġlimits": 9646, + "Ġresear": 9647, + "Ġfunds": 9648, + "Ġattempted": 9649, + "Ġbehalf": 9650, + "LAUGH": 9651, + "Ġlinked": 9652, + "ĠHamilton": 9653, + "ĠBaltimore": 9654, + "cury": 9655, + "rome": 9656, + "sk": 9657, + "wi": 9658, + "wall": 9659, + "heastern": 9660, + "Ġwax": 9661, + "oust": 9662, + "oni": 9663, + "Ġnations": 9664, + "ĠNich": 9665, + "Ġseas": 9666, + "ĠGET": 9667, + "ĠFame": 9668, + "ĠJa": 9669, + "Ġcance": 9670, + "Ġrude": 9671, + "Ġarc": 9672, + "Ġclin": 9673, + "Ġfee": 9674, + "Ġenvelope": 9675, + "ermans": 9676, + "ĠTherefore": 9677, + "ailed": 9678, + "ocks": 9679, + "ahn": 9680, + "ĠGodd": 9681, + "Ġdecre": 9682, + "Ġtransm": 9683, + "ĠBarry": 9684, + "Ġdestruction": 9685, + "change": 9686, + "Ġintroduction": 9687, + "ĠCrown": 9688, + "ĠWinter": 9689, + "Ġtypically": 9690, + "Ġtransferred": 9691, + "ĠChairman": 9692, + "Ġgravity": 9693, + "ĠRepresentatives": 9694, + "ĠBavaria": 9695, + "?'": 9696, + "IG": 9697, + "Su": 9698, + "iors": 9699, + "nels": 9700, + "rine": 9701, + "Ġ+": 9702, + "inburgh": 9703, + "Ġbond": 9704, + "Ġfetch": 9705, + "orig": 9706, + "arse": 9707, + "Ġgran": 9708, + "ĠDall": 9709, + "ilst": 9710, + "ĠLO": 9711, + "ĠRen": 9712, + "ĠFriend": 9713, + "ĠHell": 9714, + "ainted": 9715, + "Ġalarm": 9716, + "Ġracing": 9717, + "Ġcomic": 9718, + "aby": 9719, + "inking": 9720, + "Ġque": 9721, + "Ġrecover": 9722, + "Ġshares": 9723, + "ocation": 9724, + "rett": 9725, + "ĠMeet": 9726, + "Ġlanding": 9727, + "Ġoppon": 9728, + "Ġstaring": 9729, + "Ġ1939": 9730, + "fficiency": 9731, + "Ġlads": 9732, + "Ġringing": 9733, + "ĠRoberts": 9734, + "ĠLucy": 9735, + "Ġcompanion": 9736, + "Ġdetermine": 9737, + "Ġdunno": 9738, + "Ġretirement": 9739, + "Ġadministrative": 9740, + "isdom": 9741, + "Ġbass": 9742, + "Ġbunny": 9743, + "Ġfierce": 9744, + "orld": 9745, + "ĠTower": 9746, + "Ġseated": 9747, + "Ġjazz": 9748, + "Ġshield": 9749, + "Ġexcess": 9750, + "ckets": 9751, + "udi": 9752, + "soft": 9753, + "ishna": 9754, + "Ġactors": 9755, + "Ġbuzz": 9756, + "Ġentering": 9757, + "ĠOrleans": 9758, + "Ġpayment": 9759, + "Ġequally": 9760, + "ONE": 9761, + "Ġtempt": 9762, + "Ġcampus": 9763, + "Ġscare": 9764, + "Ġbelonged": 9765, + "Ġinfluenced": 9766, + "Ġaccounts": 9767, + "ĠImperial": 9768, + "Ġdocumentary": 9769, + "Ġtalent": 9770, + "ĠLarry": 9771, + "ĠLadies": 9772, + "Ġthirteen": 9773, + "ĠYugoslav": 9774, + "dale": 9775, + "gun": 9776, + "Ġâ": 9777, + "Ġacknow": 9778, + "Ġgently": 9779, + "vet": 9780, + "Ġbeans": 9781, + "acement": 9782, + "ĠChile": 9783, + "ĠCooper": 9784, + "illing": 9785, + "ĠLax": 9786, + "antle": 9787, + "ĠFel": 9788, + "osure": 9789, + "Ġvoted": 9790, + "aku": 9791, + "oused": 9792, + "ĠVi": 9793, + "Ġadjust": 9794, + "ĠAllah": 9795, + "Ġslaves": 9796, + "Ġsurvey": 9797, + "Ġ65": 9798, + "Ġreprodu": 9799, + "ĠOrgan": 9800, + "Ġcontrols": 9801, + "ĠAmanda": 9802, + "Ġsuccessfully": 9803, + "ĠChand": 9804, + "Ġcondens": 9805, + "ICE": 9806, + "Ġperspective": 9807, + "uela": 9808, + "Ġblowing": 9809, + "ĠNorway": 9810, + "Ġfocused": 9811, + "Ġdigital": 9812, + "Ġfeeding": 9813, + "ĠDaisy": 9814, + "Ġoccasionally": 9815, + "ĠIndeed": 9816, + "Ġcomponents": 9817, + "Ġrhythm": 9818, + "RATOR": 9819, + "Ġequivalent": 9820, + "Ġ;": 9821, + "Ġauth": 9822, + "Ġsession": 9823, + "Ġsurname": 9824, + "atin": 9825, + "ĠCham": 9826, + "Ġstack": 9827, + "Ġseeds": 9828, + "Ġcomments": 9829, + "inder": 9830, + "ĠInspect": 9831, + "feld": 9832, + "Ġpeas": 9833, + "ansion": 9834, + "Ġwhereas": 9835, + "arson": 9836, + "Ġsubm": 9837, + "ĠScots": 9838, + "Ġprominent": 9839, + "airies": 9840, + "Ġ170": 9841, + "Ġbeds": 9842, + "ĠPlatform": 9843, + "Ġtermin": 9844, + "Ġperforming": 9845, + "Ġabsence": 9846, + "Ġbanana": 9847, + "Ġgarbage": 9848, + "Ġsensitive": 9849, + "ĠResearch": 9850, + "Ġattracted": 9851, + "ĠCharlotte": 9852, + "Ġchapter": 9853, + "Ġsequence": 9854, + "Ġstretched": 9855, + "Ġstroke": 9856, + "Ġfurniture": 9857, + "ĠTemple": 9858, + "Ġfeathers": 9859, + "Ġnortheast": 9860, + "44": 9861, + "UCK": 9862, + "gian": 9863, + "your": 9864, + "ndered": 9865, + "Ġbills": 9866, + "Ġyοu": 9867, + "ĠTour": 9868, + "alie": 9869, + "ĠNay": 9870, + "ĠDenn": 9871, + "herry": 9872, + "ĠOak": 9873, + "ĠGor": 9874, + "estion": 9875, + "bery": 9876, + "Ġeveryday": 9877, + "Ġperce": 9878, + "ĠMayor": 9879, + "Ġstopping": 9880, + "Ġsixteen": 9881, + "Ġvisual": 9882, + "Ġappearances": 9883, + "Ġtitles": 9884, + "Ġpalm": 9885, + "ĠSarhad": 9886, + "udden": 9887, + "ĠDeputy": 9888, + "Ġleadership": 9889, + "Ġfloating": 9890, + "Ġdiamond": 9891, + "Ġarrangement": 9892, + "Ġmicrophone": 9893, + "Ġintellectual": 9894, + "Ġsacrifice": 9895, + "ĠNARRATOR": 9896, + ".!": 9897, + "rings": 9898, + "itate": 9899, + "Ġchips": 9900, + "Ġdio": 9901, + "anes": 9902, + "ayan": 9903, + "ĠMP": 9904, + "Ġ120": 9905, + "ĠFBI": 9906, + "Ġabroad": 9907, + "ĠUgh": 9908, + "Ġmanif": 9909, + "ideo": 9910, + "ĠWeb": 9911, + "ureau": 9912, + "ogy": 9913, + "Ġdishes": 9914, + "Ġfoundation": 9915, + "Ġ47": 9916, + "Ġconscience": 9917, + "cluding": 9918, + "Ġswing": 9919, + "Ġmetro": 9920, + "ungle": 9921, + "ĠMeite": 9922, + "Ġdrift": 9923, + "Ġmusicians": 9924, + "Ġfiles": 9925, + "onym": 9926, + "Ġcraft": 9927, + "ipper": 9928, + "Ġmercy": 9929, + "ederation": 9930, + "iffs": 9931, + "culiar": 9932, + "Ġfoolish": 9933, + "Ġfarmers": 9934, + "ĠJudge": 9935, + "Ġbeliefs": 9936, + "Ġwithdraw": 9937, + "ĠMarshall": 9938, + "bits": 9939, + "rous": 9940, + "ser": 9941, + "ı": 9942, + "Ġbore": 9943, + "Ġcalend": 9944, + "atched": 9945, + "ĠMas": 9946, + "stock": 9947, + "ĠRoc": 9948, + "ĠFight": 9949, + "ĠJen": 9950, + "Ġshed": 9951, + "ĠKon": 9952, + "Ġcompass": 9953, + "ĠWhether": 9954, + "Ġsupper": 9955, + "Ġmonkey": 9956, + "ĠGoing": 9957, + "then": 9958, + "ĠProject": 9959, + "Ġskill": 9960, + "ĠChristopher": 9961, + "Ġrefers": 9962, + "Ġrefuse": 9963, + "ĠNeil": 9964, + "Ġsupporting": 9965, + "Ġeffectively": 9966, + "Ġworthy": 9967, + "Ġmeantime": 9968, + "Ġquarters": 9969, + "Ġfaithful": 9970, + "music": 9971, + "ĠLynde": 9972, + "ĠIndepend": 9973, + "Ġscarcely": 9974, + "ĠPremier": 9975, + "67": 9976, + "MS": 9977, + "Qu": 9978, + "gain": 9979, + "ught": 9980, + "uine": 9981, + "Ġbid": 9982, + "Ġfeared": 9983, + "Ġpip": 9984, + "ĠAha": 9985, + "Ġease": 9986, + "verty": 9987, + "rians": 9988, + "star": 9989, + "ĠOnt": 9990, + "ĠRy": 9991, + "Ġnep": 9992, + "quiao": 9993, + "Ġseeking": 9994, + "weather": 9995, + "Ġapples": 9996, + "Ġfinishing": 9997, + "ugs": 9998, + "Ġentitled": 9999, + "Ġsubt": 10000, + "ĠBlair": 10001, + "Ġprompt": 10002, + "Ġjoining": 10003, + "Ġdefence": 10004, + "Ġsteady": 10005, + "Ġruler": 10006, + "Ġprimitive": 10007, + "Ġemployed": 10008, + "Ġscratch": 10009, + "ĠEgyptian": 10010, + "Ġentertainment": 10011, + "Ġexpanded": 10012, + "Ġunex": 10013, + "ĠBroadway": 10014, + "ĠHindu": 10015, + "ĠPhilippines": 10016, + "Ġconclusion": 10017, + "ĠHawaii": 10018, + "ĠDevelopment": 10019, + "ĠInspector": 10020, + "his": 10021, + "Ġtheat": 10022, + "Ġbay": 10023, + "Ġpor": 10024, + "Ġpardon": 10025, + "Ġinject": 10026, + "otal": 10027, + "ĠAut": 10028, + "ĠNative": 10029, + "ĠDom": 10030, + "ĠPur": 10031, + "ĠLyn": 10032, + "ĠEth": 10033, + "ques": 10034, + "cker": 10035, + "Ġvary": 10036, + "Ġpoverty": 10037, + "issions": 10038, + "ĠAlmost": 10039, + "Ġ49": 10040, + "Ġdecades": 10041, + "Ġfollowers": 10042, + "they": 10043, + "Ġconfirm": 10044, + "Ġpriests": 10045, + "Ġ1957": 10046, + "ĠGuys": 10047, + "EST": 10048, + "ĠBaron": 10049, + "ĠEdinburgh": 10050, + "Ġstatue": 10051, + "Ġ1937": 10052, + "Ġseventeen": 10053, + "Ġbriefly": 10054, + "Ġromance": 10055, + "Ġphilosopher": 10056, + "Ġlandscape": 10057, + "ĠCOVID": 10058, + "ĠBusiness": 10059, + "Ġkittie": 10060, + "ĠFoundation": 10061, + "ĠSeveral": 10062, + "ĠVegas": 10063, + "App": 10064, + "BO": 10065, + "dog": 10066, + "fin": 10067, + "ghan": 10068, + "Ġaston": 10069, + "Ġfranch": 10070, + "Ġtom": 10071, + "omon": 10072, + "Ġhal": 10073, + "aya": 10074, + "ĠBurn": 10075, + "ĠNFL": 10076, + "ĠPad": 10077, + "Ġsear": 10078, + "Ġsector": 10079, + "ĠLas": 10080, + "ĠAnderson": 10081, + "Ġexceed": 10082, + "ccer": 10083, + "Ġdisaster": 10084, + "Ġsculpt": 10085, + "Ġinstantly": 10086, + "Ġobtain": 10087, + "Ġasshole": 10088, + "Ġfarmer": 10089, + "ifications": 10090, + "Ġconfront": 10091, + "umbled": 10092, + "yrics": 10093, + "Ġcookie": 10094, + "Ġexecution": 10095, + "Ġbleeding": 10096, + "Ġapplications": 10097, + "Ġdelighted": 10098, + "Ġassumed": 10099, + "ĠGyp": 10100, + "Ġbattery": 10101, + "Ġdiplom": 10102, + "ĠMeitei": 10103, + "sighs": 10104, + "Ġtiger": 10105, + "hall": 10106, + "Ġfence": 10107, + "orne": 10108, + "ĠShip": 10109, + "ĠMonsieur": 10110, + "Ġstadium": 10111, + "ifted": 10112, + "iland": 10113, + "Ġshots": 10114, + "ĠUse": 10115, + "ĠThird": 10116, + "Ġcoinc": 10117, + "Ġscra": 10118, + "ĠDove": 10119, + "Ġsecrets": 10120, + "ĠEngine": 10121, + "ĠShir": 10122, + "ĠShoot": 10123, + "ĠComing": 10124, + "Ġkidna": 10125, + "Ġeighth": 10126, + "Ġbands": 10127, + "Ġzone": 10128, + "ĠSerb": 10129, + "Ġtechniques": 10130, + "Ġeducated": 10131, + "Ġmiserable": 10132, + "Ġshark": 10133, + "Ġfacing": 10134, + "Ġlifetime": 10135, + "Ġpanel": 10136, + "Ġclouds": 10137, + "Ġdynam": 10138, + "Ġaspects": 10139, + "Ġdisappointed": 10140, + "Ġcolleagues": 10141, + "ĠNetwork": 10142, + "Ġestimated": 10143, + "ĠKNOW": 10144, + "**": 10145, + "ii": 10146, + "Ġwins": 10147, + "icop": 10148, + "alia": 10149, + "Ġthrill": 10150, + "Ġpros": 10151, + "ĠKil": 10152, + "ĠStew": 10153, + "Ġuncertain": 10154, + "Ġregister": 10155, + "IND": 10156, + "Ġenthus": 10157, + "Ġinsane": 10158, + "Ġimpressed": 10159, + "ĠExcept": 10160, + "Ġgovernments": 10161, + "Ġcreative": 10162, + "zech": 10163, + "ĠAmendment": 10164, + "ĠCommand": 10165, + "Ġboxes": 10166, + "Ġcultiv": 10167, + "Ġgenuine": 10168, + "Ġpencil": 10169, + "Ġsoftly": 10170, + "Ġmadam": 10171, + "Ġpatterns": 10172, + "ĠHalf": 10173, + "Ġensure": 10174, + "CC": 10175, + "bors": 10176, + "din": 10177, + "iable": 10178, + "Ġarose": 10179, + "Ġbin": 10180, + "Ġdrank": 10181, + "Ġlamp": 10182, + "Ġgates": 10183, + "ĠWat": 10184, + "ĠMack": 10185, + "roit": 10186, + "ĠFant": 10187, + "igr": 10188, + "ĠKu": 10189, + "Ġpeculiar": 10190, + "obile": 10191, + "ĠMars": 10192, + "Ġmarch": 10193, + "Ġdrum": 10194, + "Ġmetres": 10195, + "Ġwarrant": 10196, + "iversary": 10197, + "shot": 10198, + "ART": 10199, + "levant": 10200, + "ESS": 10201, + "Ġchecking": 10202, + "Ġetern": 10203, + "Ġjudges": 10204, + "ĠMadam": 10205, + "Ġmidnight": 10206, + "Ġroutes": 10207, + "Ġoffend": 10208, + "Ġtailor": 10209, + "ĠCaesar": 10210, + "Ġparticipate": 10211, + "ĠWindows": 10212, + "Ġdynasty": 10213, + "Ġnephew": 10214, + "!!": 10215, + "gments": 10216, + "piece": 10217, + "vable": 10218, + "rek": 10219, + "Ġsack": 10220, + "Ġcave": 10221, + "Ġpent": 10222, + "Ġinfection": 10223, + "ications": 10224, + "ĠSara": 10225, + "Ġthirst": 10226, + "Ġwelf": 10227, + "achi": 10228, + "ĠCold": 10229, + "stream": 10230, + "ĠBaker": 10231, + "raham": 10232, + "Ġvig": 10233, + "agan": 10234, + "Ġspy": 10235, + "ĠVis": 10236, + "ĠWhit": 10237, + "Ġlets": 10238, + "Ġresident": 10239, + "Ġhelpful": 10240, + "Ġcourses": 10241, + "ĠâĻªâĻª": 10242, + "Ġinspect": 10243, + "ĠArea": 10244, + "ĠProp": 10245, + "Ġstead": 10246, + "Ġ1955": 10247, + "ĠGuy": 10248, + "Ġversus": 10249, + "Ġkicked": 10250, + "Ġdespair": 10251, + "Ġshouted": 10252, + "ĠDragon": 10253, + "Ġagricultural": 10254, + "Ġwelfare": 10255, + "68": 10256, + "burn": 10257, + "dle": 10258, + "ige": 10259, + "mic": 10260, + "ww": 10261, + "Ġsore": 10262, + "Ġlaughter": 10263, + "ĠAuthor": 10264, + "ĠSA": 10265, + "ĠSaid": 10266, + "ĠMine": 10267, + "rob": 10268, + "ĠNO": 10269, + "ĠDer": 10270, + "ĠDub": 10271, + "ĠRud": 10272, + "ĠRachel": 10273, + "ĠFem": 10274, + "unning": 10275, + "Ġabdom": 10276, + "ĠKurd": 10277, + "ĠThought": 10278, + "Ġsometime": 10279, + "Ġmock": 10280, + "Ġrecall": 10281, + "othy": 10282, + "Ġchee": 10283, + "Ġpresents": 10284, + "Ġchase": 10285, + "Ġtriangle": 10286, + "Ġreceiving": 10287, + "ĠMinnes": 10288, + "ĠDavis": 10289, + "ienna": 10290, + "Ġtouching": 10291, + "Ġcounsel": 10292, + "Ġdiscussed": 10293, + "Ġobser": 10294, + "Ġaffili": 10295, + "Ġoptim": 10296, + "Ġoptions": 10297, + "Ġcriticism": 10298, + "Ġscreaming": 10299, + "Ġpossessed": 10300, + "Ġsurrender": 10301, + "Ġshelter": 10302, + "Ġathlet": 10303, + "ĠIndonesia": 10304, + "ĠLewis": 10305, + "Ġairplane": 10306, + "ture": 10307, + "Ġ~": 10308, + "Ġcough": 10309, + "Ġfame": 10310, + "Ġnerves": 10311, + "Ġhollow": 10312, + "alty": 10313, + "ĠAth": 10314, + "ĠGriff": 10315, + "ĠRub": 10316, + "ĠRalph": 10317, + "ĠJae": 10318, + "ppet": 10319, + "Ġabe": 10320, + "ateur": 10321, + "pering": 10322, + "Ġgrounds": 10323, + "Ġflesh": 10324, + "mann": 10325, + "Ġsurve": 10326, + "Ġcares": 10327, + "ĠClare": 10328, + "ĠExec": 10329, + "century": 10330, + "Ġdesigns": 10331, + "Ġresulted": 10332, + "Ġpractically": 10333, + "Ġradiation": 10334, + "ĠSeriously": 10335, + "Ġsuggests": 10336, + "Ġtrusted": 10337, + "ĠApple": 10338, + "Ġchemistry": 10339, + "Ġfavourite": 10340, + "Ġtravelling": 10341, + "Ġtravelled": 10342, + "ĠCommunity": 10343, + "Ġultimately": 10344, + "Ġceremon": 10345, + "ĠHouston": 10346, + "With": 10347, + "lia": 10348, + "made": 10349, + "oa": 10350, + "oft": 10351, + "uits": 10352, + "hey": 10353, + "Ġtherap": 10354, + "rez": 10355, + "ester": 10356, + "Ġnaught": 10357, + "uster": 10358, + "ussels": 10359, + "acent": 10360, + "ammy": 10361, + "ĠCart": 10362, + "ĠCAN": 10363, + "rov": 10364, + "ĠYale": 10365, + "ĠDak": 10366, + "ĠPLA": 10367, + "ĠJob": 10368, + "Ġrushed": 10369, + "Ġconvince": 10370, + "ĠKermans": 10371, + "ranean": 10372, + "Ġflav": 10373, + "Ġshaking": 10374, + "Ġmatrix": 10375, + "ĠMayweather": 10376, + "umbling": 10377, + "engu": 10378, + "Ġprogramming": 10379, + "Ġcookies": 10380, + "Ġsharks": 10381, + "ĠBenj": 10382, + "ĠRobinson": 10383, + "Ġpackage": 10384, + "Ġimproved": 10385, + "Ġsuitable": 10386, + "Ġattractive": 10387, + "ĠMurray": 10388, + "ĠDevil": 10389, + "Ġmemorial": 10390, + "Ġinstitutions": 10391, + "Ġvehicles": 10392, + "Ġfluid": 10393, + "Ġdivorce": 10394, + "Ġfascin": 10395, + "lausner": 10396, + "Ġacademic": 10397, + "Ġaccompanied": 10398, + "ĠColorado": 10399, + "ĠKermanshah": 10400, + "Car": 10401, + "OK": 10402, + "Saint": 10403, + "cow": 10404, + "Ġtact": 10405, + "Ġwives": 10406, + "Ġpoo": 10407, + "armed": 10408, + "ican": 10409, + "Ġhitting": 10410, + "ĠSudden": 10411, + "idodecahedron": 10412, + "ĠWy": 10413, + "iration": 10414, + "ĠPun": 10415, + "ĠPoly": 10416, + "agu": 10417, + "Ġtrace": 10418, + "izza": 10419, + "Ġbrows": 10420, + "ruption": 10421, + "ĠUnivers": 10422, + "ĠAlicia": 10423, + "Ġsupplies": 10424, + "Ġsecondary": 10425, + "chen": 10426, + "ĠPlus": 10427, + "Ġhopefully": 10428, + "Ġbreaks": 10429, + "Ġcopper": 10430, + "Ġtitled": 10431, + "ĠMedic": 10432, + "Ġbehavi": 10433, + "Ġweakness": 10434, + "Ġrebu": 10435, + "ĠPacquiao": 10436, + "Ġparticipated": 10437, + "Ġdetective": 10438, + "Ġresistance": 10439, + "ĠAriz": 10440, + "Ġcasual": 10441, + "Ġboots": 10442, + "Ġnodded": 10443, + "ĠWWE": 10444, + "ĠOntario": 10445, + "64": 10446, + "kward": 10447, + "rm": 10448, + "rected": 10449, + "isible": 10450, + "anium": 10451, + "Ġga": 10452, + "Ġnaval": 10453, + "acc": 10454, + "ĠMuch": 10455, + "Ġstiff": 10456, + "ĠDomin": 10457, + "ĠFars": 10458, + "Ġabuse": 10459, + "Ġabund": 10460, + "Ġsho": 10461, + "odox": 10462, + "ags": 10463, + "ĠThom": 10464, + "Ġcler": 10465, + "never": 10466, + "ĠVas": 10467, + "Ġscattered": 10468, + "ailing": 10469, + "Ġhelicop": 10470, + "Ġraw": 10471, + "Ġminimum": 10472, + "Ġ41": 10473, + "Ġpolite": 10474, + "Ġaccord": 10475, + "aza": 10476, + "azon": 10477, + "Ġmeets": 10478, + "Ġpatri": 10479, + "Ġhoriz": 10480, + "Ġ1953": 10481, + "ĠNeither": 10482, + "Ġperformances": 10483, + "urious": 10484, + "ĠLaure": 10485, + "ĠPola": 10486, + "Ġsurprising": 10487, + "Ġcovering": 10488, + "Ġchairs": 10489, + "ĠOtherwise": 10490, + "Ġurban": 10491, + "Ġcrops": 10492, + "Ġcrook": 10493, + "Ġsolemn": 10494, + "Ġdreadful": 10495, + "Ġmilitia": 10496, + "Ġabstract": 10497, + "%.": 10498, + "Get": 10499, + "lah": 10500, + "Ġtan": 10501, + "Ġtables": 10502, + "Ġwipe": 10503, + "Ġsits": 10504, + "Ġmild": 10505, + "Ġloop": 10506, + "Ġgig": 10507, + "ĠAx": 10508, + "ĠSi": 10509, + "ĠCzech": 10510, + "ĠNag": 10511, + "ĠDream": 10512, + "ĠPant": 10513, + "ĠJin": 10514, + "Ġalle": 10515, + "estine": 10516, + "osaur": 10517, + "rying": 10518, + "Ġvital": 10519, + "Ġvirus": 10520, + "pecies": 10521, + "onsin": 10522, + "Ġsmoking": 10523, + "ĠAllison": 10524, + "ggy": 10525, + "Ġ44": 10526, + "Ġindicated": 10527, + "ĠTrue": 10528, + "Ġ1936": 10529, + "Ġattempts": 10530, + "ĠWelsh": 10531, + "Ġeldest": 10532, + "Ġfraud": 10533, + "Ġinstitution": 10534, + "ĠNazi": 10535, + "Ġquantity": 10536, + "ĠSelena": 10537, + "iveness": 10538, + "Ġvertex": 10539, + "Ġprotein": 10540, + "Ġashore": 10541, + "ĠNapoleon": 10542, + "Br": 10543, + "iop": 10544, + "tion": 10545, + "woman": 10546, + "Ġtide": 10547, + "hattan": 10548, + "Ġhoy": 10549, + "Ġbeef": 10550, + "ĠWake": 10551, + "ĠHorn": 10552, + "ĠCæ": 10553, + "Ġstern": 10554, + "Ġklausner": 10555, + "Ġgoin": 10556, + "ĠFle": 10557, + "eller": 10558, + "Ġraces": 10559, + "care": 10560, + "Ġaffection": 10561, + "Ġunfortunately": 10562, + "Ġamendment": 10563, + "Ġbron": 10564, + "Ġchuck": 10565, + "bean": 10566, + "Ġchances": 10567, + "Ġtragedy": 10568, + "Ġrelatives": 10569, + "Ġglory": 10570, + "Ġsubsc": 10571, + "Ġdistur": 10572, + "Ġedges": 10573, + "Ġ99": 10574, + "Ġrefuge": 10575, + "Ġ1951": 10576, + "Ġorganic": 10577, + "ĠGray": 10578, + "ĠMicro": 10579, + "Ġtested": 10580, + "Ġtrading": 10581, + "Ġeducational": 10582, + "Ġstrip": 10583, + "Ġinnit": 10584, + "Ġinnov": 10585, + "Here": 10586, + "shaped": 10587, + "Ġdeny": 10588, + "ĠSandy": 10589, + "Ġbutterfly": 10590, + "Ġcitizen": 10591, + "ĠEspecially": 10592, + "Ġignor": 10593, + "ĠSquare": 10594, + "liga": 10595, + "Ġtunnel": 10596, + "Ġpremie": 10597, + "ĠRicky": 10598, + "SPEA": 10599, + "Ġprocedure": 10600, + "ĠBhaer": 10601, + "ĠDallas": 10602, + "07": 10603, + "ACK": 10604, + "Gu": 10605, + "ND": 10606, + "VD": 10607, + "Will": 10608, + "got": 10609, + "mi": 10610, + "oi": 10611, + "walk": 10612, + "Ġfairies": 10613, + "Ġpanc": 10614, + "veland": 10615, + "Ġhousing": 10616, + "ĠAB": 10617, + "ĠSult": 10618, + "Ġego": 10619, + "Ġweigh": 10620, + "riet": 10621, + "Ġsty": 10622, + "term": 10623, + "ĠPin": 10624, + "ĠRidge": 10625, + "ĠYouT": 10626, + "Ġjur": 10627, + "ersen": 10628, + "Ġyourselves": 10629, + "udge": 10630, + "Ġpeep": 10631, + "Ġworker": 10632, + "Ġdisorder": 10633, + "Ġchop": 10634, + "Ġfounding": 10635, + "ĠâĻ«": 10636, + "Ġinvite": 10637, + "Ġinstall": 10638, + "Ġassess": 10639, + "Ġlighthouse": 10640, + "Ġaddressed": 10641, + "Ġimprison": 10642, + "Ġinterse": 10643, + "Ġbusinesses": 10644, + "Ġcondem": 10645, + "ographic": 10646, + "ĠEarl": 10647, + "Ġdeeper": 10648, + "Ġgenetic": 10649, + "isconsin": 10650, + "Ġmunicipal": 10651, + "ĠBrothers": 10652, + "Ġtranslation": 10653, + "Ġtranslated": 10654, + "ĠModern": 10655, + "Ġsituations": 10656, + "Ġdowntown": 10657, + "ĠMinnesota": 10658, + ");": 10659, + "57": 10660, + "God": 10661, + "give": 10662, + "Ġwolf": 10663, + "Ġmast": 10664, + "Ġgle": 10665, + "Ġnavig": 10666, + "ĠSis": 10667, + "ĠSnow": 10668, + "utter": 10669, + "ĠCool": 10670, + "ĠNancy": 10671, + "Ġgoat": 10672, + "ĠFR": 10673, + "ĠFood": 10674, + "Ġexternal": 10675, + "ĠUk": 10676, + "ferences": 10677, + "Ġquack": 10678, + "assador": 10679, + "Ġgrat": 10680, + "Ġflows": 10681, + "Ġresign": 10682, + "Ġresidents": 10683, + "Ġhelpless": 10684, + "Ġkindly": 10685, + "ĠBrussels": 10686, + "insula": 10687, + "ĠShh": 10688, + "Ġstays": 10689, + "Ġlandl": 10690, + "Ġoperate": 10691, + "ARS": 10692, + "Ġbarn": 10693, + "Ġceased": 10694, + "Ġapproaching": 10695, + "Ġavo": 10696, + "Ġethan": 10697, + "ĠFranklin": 10698, + "Ġsharing": 10699, + "ĠMedia": 10700, + "ĠMadame": 10701, + "Ġparking": 10702, + "Ġcivilization": 10703, + "âĢİ,": 10704, + "Ġmidst": 10705, + "Ġcandy": 10706, + "Ġdescribes": 10707, + "ĠLawrence": 10708, + "ĠLouisiana": 10709, + "Ġcolours": 10710, + "Ġimpressive": 10711, + "Ġguarantee": 10712, + "Ġfirms": 10713, + "Sm": 10714, + "pat": 10715, + "rade": 10716, + "Ġq": 10717, + "Ġaer": 10718, + "onge": 10719, + "Ġpairs": 10720, + "Ġgorge": 10721, + "ĠSky": 10722, + "ĠCre": 10723, + "ĠBenn": 10724, + "Ġstages": 10725, + "oret": 10726, + "emen": 10727, + "aboo": 10728, + "abilities": 10729, + "ĠNobel": 10730, + "Ġspeaks": 10731, + "Ġrolling": 10732, + "Ġunited": 10733, + "Ġgrim": 10734, + "Ġflies": 10735, + "Ġcaravan": 10736, + "upon": 10737, + "ĠDeh": 10738, + "Ġregiment": 10739, + "Ġsynd": 10740, + "Ġbelieves": 10741, + "Ġmonitor": 10742, + "Ġlighting": 10743, + "Ġdragged": 10744, + "ĠOrchestra": 10745, + "ĠErn": 10746, + "Ġreturns": 10747, + "Ġhurried": 10748, + "Ġ178": 10749, + "Ġinfinite": 10750, + "Ġlegit": 10751, + "Ġlabour": 10752, + "Ġrepresentative": 10753, + "ĠCorps": 10754, + "ĠAgent": 10755, + "mmet": 10756, + "Ġfaculty": 10757, + "ĠApparently": 10758, + "ĠBuilding": 10759, + "Ġdeliber": 10760, + "Ġgeomet": 10761, + "Ġpigs": 10762, + "Ġmaintained": 10763, + "Ġrevenue": 10764, + "Ġliberty": 10765, + "Ġsubstance": 10766, + "Ġdiscipline": 10767, + "Ġsubsequently": 10768, + "Ġalphabet": 10769, + "Ġcalendar": 10770, + "Ab": 10771, + "MA": 10772, + "Mr": 10773, + "bly": 10774, + "bie": 10775, + "pur": 10776, + "Ġcord": 10777, + "Ġfires": 10778, + "Ġdia": 10779, + "arians": 10780, + "omot": 10781, + "ĠMama": 10782, + "Ġuna": 10783, + "ĠNash": 10784, + "ĠPed": 10785, + "ĠPage": 10786, + "antine": 10787, + "ĠFull": 10788, + "Ġjunior": 10789, + "ĠEasy": 10790, + "quet": 10791, + "--_": 10792, + "Ġprev": 10793, + "Ġflour": 10794, + "aund": 10795, + "Ġconservative": 10796, + "Ġrealise": 10797, + "Ġgrain": 10798, + "ĠLooking": 10799, + "Ġfract": 10800, + "Ġsweat": 10801, + "ĠHarris": 10802, + "Ġinformed": 10803, + "Ġlaying": 10804, + "Ġapproval": 10805, + "Ġinvolves": 10806, + "Ġreligions": 10807, + "Ġneighbors": 10808, + "Ġirrit": 10809, + "Ġgrocer": 10810, + "Ġacceleration": 10811, + "Ġoccasions": 10812, + "igenous": 10813, + "ĠFurther": 10814, + "ĠSarhadi": 10815, + "lahoma": 10816, + "ĠCæsar": 10817, + "46": 10818, + "Ant": 10819, + "vate": 10820, + "Ġske": 10821, + "itches": 10822, + "Ġcage": 10823, + "Ġfest": 10824, + "ĠScient": 10825, + "ĠSection": 10826, + "uter": 10827, + "ĠBox": 10828, + "keys": 10829, + "oute": 10830, + "ilation": 10831, + "ĠLim": 10832, + "ĠRain": 10833, + "uns": 10834, + "ĠJenn": 10835, + "Ġexhibition": 10836, + "ĠKis": 10837, + "earl": 10838, + "Ġsprang": 10839, + "Ġclar": 10840, + "Ġadap": 10841, + "Ġdisgr": 10842, + "Ġrecovery": 10843, + "Ġraising": 10844, + "Ġconsidering": 10845, + "grad": 10846, + "Ġdisturb": 10847, + "Ġinterfe": 10848, + "Ġinterior": 10849, + "Ġpresently": 10850, + "Ġoccurs": 10851, + "ATH": 10852, + "Ġprocesses": 10853, + "Ġmistress": 10854, + "Ġcloset": 10855, + "ourable": 10856, + "Ġexecuted": 10857, + "ĠHurricane": 10858, + "ĠUpon": 10859, + "arette": 10860, + "Ġcandidates": 10861, + "ĠDetective": 10862, + "Ġschedule": 10863, + "ĠTonight": 10864, + "300": 10865, + "Or": 10866, + "fare": 10867, + "some": 10868, + "Ġtons": 10869, + "Ġtheories": 10870, + "Ġbattles": 10871, + "Ġlyrics": 10872, + "ashes": 10873, + "ĠAL": 10874, + "Ġbeard": 10875, + "ĠWisconsin": 10876, + "ĠCox": 10877, + "ĠBert": 10878, + "ĠGi": 10879, + "ĠGulf": 10880, + "ĠJason": 10881, + "Ġconvent": 10882, + "quis": 10883, + "Ġvic": 10884, + "Ġvoy": 10885, + "ĠInca": 10886, + "ĠStory": 10887, + "Ġdispl": 10888, + "ocated": 10889, + "Ġattorney": 10890, + "ĠDonald": 10891, + "Ġkills": 10892, + "Ġdifferently": 10893, + "Ġwarri": 10894, + "Ġcontinent": 10895, + "Ġsolar": 10896, + "Ġawkward": 10897, + "Ġelectronic": 10898, + "Ġperiods": 10899, + "Ġencoun": 10900, + "Äģn": 10901, + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 10902, + "Ġopinions": 10903, + "Ġjumping": 10904, + "Ġoxid": 10905, + "Ġnearest": 10906, + "ĠDiego": 10907, + "ĠLeonard": 10908, + "Ġmammals": 10909, + "ĠAlfred": 10910, + "NE": 10911, + "cham": 10912, + "ĠÅ": 10913, + "Ġsung": 10914, + "Ġbump": 10915, + "Ġcable": 10916, + "Ġdict": 10917, + "Ġlux": 10918, + "Ġnasty": 10919, + "ĠTerry": 10920, + "ĠAra": 10921, + "acious": 10922, + "kee": 10923, + "abled": 10924, + "astian": 10925, + "ĠKay": 10926, + "ĠVik": 10927, + "Ġbug": 10928, + "Ġbucks": 10929, + "azy": 10930, + "Ġlocations": 10931, + "Ġartific": 10932, + "Ġpublication": 10933, + "Ġtremb": 10934, + "fortable": 10935, + "Ġdirections": 10936, + "REAM": 10937, + "ĠAgency": 10938, + "Ġcircuit": 10939, + "Ġburnt": 10940, + "ommod": 10941, + "Ġnovels": 10942, + "Ġassistance": 10943, + "ĠPrefecture": 10944, + "Ġrubber": 10945, + "ĠONE": 10946, + "ĠForeign": 10947, + "Ġmagnific": 10948, + "Ġuniversal": 10949, + "Ġanxiety": 10950, + "ĠFrancesco": 10951, + "Ġmultipl": 10952, + "ĠClaire": 10953, + "ĠAssyrian": 10954, + "Ġdistinguished": 10955, + "Ġvulner": 10956, + "ĠYouTube": 10957, + "!'": 10958, + "55": 10959, + "fight": 10960, + "power": 10961, + "uary": 10962, + "zi": 10963, + "erior": 10964, + "ancing": 10965, + "esc": 10966, + "ĠTun": 10967, + "Ġhay": 10968, + "ĠABC": 10969, + "Ġrele": 10970, + "ĠMess": 10971, + "ĠCrow": 10972, + "ĠBou": 10973, + "Ġdoggie": 10974, + "uru": 10975, + "ĠLane": 10976, + "Ġgolf": 10977, + "ĠJose": 10978, + "ested": 10979, + "Ġouter": 10980, + "Ġwors": 10981, + "Ġvoc": 10982, + "inding": 10983, + "ĠKang": 10984, + "Ġpeek": 10985, + "Ġloaded": 10986, + "Ġgrows": 10987, + "ĠUnfortunately": 10988, + "Ġscan": 10989, + "velt": 10990, + "Ġmothers": 10991, + "ĠClause": 10992, + "Ġgenerations": 10993, + "ussy": 10994, + "Ġsentiment": 10995, + "ĠTruth": 10996, + "OUR": 10997, + "Ġpainter": 10998, + "Ġpurse": 10999, + "ĠEmmy": 11000, + "Ġbearing": 11001, + "scar": 11002, + "Ġfacility": 11003, + "ĠMalays": 11004, + "Ġtrucks": 11005, + "Ġreveal": 11006, + "Ġcrowded": 11007, + "Ġblessed": 11008, + "ĠTransport": 11009, + "orkshire": 11010, + "Ġmeasured": 11011, + "ĠMiy": 11012, + "Ġblanket": 11013, + "ĠSuddenly": 11014, + "Ġhoyt": 11015, + "Look": 11016, + "Your": 11017, + "yers": 11018, + "hent": 11019, + "rels": 11020, + "hak": 11021, + "Ġbum": 11022, + "Ġfict": 11023, + "org": 11024, + "Ġdat": 11025, + "Ġduke": 11026, + "ĠSad": 11027, + "Ġefficiency": 11028, + "ĠMaced": 11029, + "irs": 11030, + "ĠBUT": 11031, + "ĠNC": 11032, + "ĠNear": 11033, + "ĠLI": 11034, + "ĠLau": 11035, + "olin": 11036, + "ĠJuan": 11037, + "ĠKatherine": 11038, + "Ġtrun": 11039, + "asses": 11040, + "ĠVienna": 11041, + "Ġcoins": 11042, + "Ġbund": 11043, + "Ġtrapped": 11044, + "ĠDead": 11045, + "Ġpresum": 11046, + "asht": 11047, + "ĠClay": 11048, + "Ġdischar": 11049, + "ĠManchester": 11050, + "Ġfreely": 11051, + "Ġfoods": 11052, + "ĠPhys": 11053, + "Ġdreaming": 11054, + "Ġstatements": 11055, + "Ġproposal": 11056, + "rooms": 11057, + "Ġdropping": 11058, + "Ġcombat": 11059, + "ĠMommy": 11060, + "speaking": 11061, + "Ġfatal": 11062, + "Ġfrequent": 11063, + "ĠJefferson": 11064, + "ĠCommunist": 11065, + "heimer": 11066, + "Ġhydro": 11067, + "Ġrejected": 11068, + "ĠArizona": 11069, + "Bill": 11070, + "aus": 11071, + "oen": 11072, + "vol": 11073, + "Ġwisdom": 11074, + "erate": 11075, + "hant": 11076, + "Ġoath": 11077, + "Ġborders": 11078, + "Ġcure": 11079, + "Ġcries": 11080, + "Ġfits": 11081, + "Ġpitch": 11082, + "Ġgear": 11083, + "oting": 11084, + "ĠWolf": 11085, + "acon": 11086, + "ĠMaim": 11087, + "ĠCow": 11088, + "adays": 11089, + "ĠYorkshire": 11090, + "illery": 11091, + "child": 11092, + "olished": 11093, + "ulance": 11094, + "ĠEinstein": 11095, + "estly": 11096, + "Ġrust": 11097, + "Ġrats": 11098, + "ĠStadium": 11099, + "Ġlend": 11100, + "Ġfeud": 11101, + "ĠWhoo": 11102, + "Ġbuck": 11103, + "Ġpockets": 11104, + "Ġcharity": 11105, + "Ġcharming": 11106, + "Ġbreed": 11107, + "Ġexpansion": 11108, + "Ġfuckin": 11109, + "Ġtopic": 11110, + "Ġcuts": 11111, + "ĠMickey": 11112, + "Ġcreep": 11113, + "ĠQuite": 11114, + "oosevelt": 11115, + "Ġportra": 11116, + "Ġconsideration": 11117, + "ĠJesse": 11118, + "ĠOklahoma": 11119, + "Ġcompanions": 11120, + "Ġroutine": 11121, + "Ġemployment": 11122, + "Ġpraised": 11123, + "Ġdisgusting": 11124, + "ĠBrooklyn": 11125, + "Ġtissue": 11126, + "Ġbacteria": 11127, + "Ġtremendous": 11128, + "Am": 11129, + "XT": 11130, + "ez": 11131, + "nik": 11132, + "Ġwagon": 11133, + "Ġol": 11134, + "Ġbishop": 11135, + "Ġfert": 11136, + "ingle": 11137, + "Ġtoes": 11138, + "Ġgender": 11139, + "ĠSN": 11140, + "Ġrehe": 11141, + "Ġweary": 11142, + "ĠHicks": 11143, + "aments": 11144, + "iry": 11145, + "irit": 11146, + "ĠBeng": 11147, + "Ġstove": 11148, + "ĠNem": 11149, + "ĠOrange": 11150, + "iler": 11151, + "ĠLi": 11152, + "ĠRest": 11153, + "ĠRio": 11154, + "ĠFern": 11155, + "ĠExt": 11156, + "Ġconvention": 11157, + "employ": 11158, + "inks": 11159, + "Ġprospect": 11160, + "Ġdont": 11161, + "icken": 11162, + "ĠAlb": 11163, + "Ġattrib": 11164, + "oots": 11165, + "Ġrounds": 11166, + "Ġsleepy": 11167, + "Ġhumanity": 11168, + "Ġconcerning": 11169, + "Ġdestro": 11170, + "Ġtechnique": 11171, + "Ġpeaceful": 11172, + "Ġscientist": 11173, + "Ġdelivery": 11174, + "Ġpredict": 11175, + "Ġshocked": 11176, + "Ġpretending": 11177, + "ĠSolomon": 11178, + "ĠIslamic": 11179, + "ĠBelgium": 11180, + "ĠBowl": 11181, + "Ġbench": 11182, + "Ġassignment": 11183, + "Ġauthors": 11184, + "69": 11185, + "eges": 11186, + "song": 11187, + "town": 11188, + "vard": 11189, + "hai": 11190, + "Ġori": 11191, + "Ġchess": 11192, + "orus": 11193, + "ĠAle": 11194, + "ĠSound": 11195, + "Ġreci": 11196, + "utt": 11197, + "amar": 11198, + "ĠChampionships": 11199, + "rav": 11200, + "Ġlily": 11201, + "ĠRoosevelt": 11202, + "odore": 11203, + "Ġcompounds": 11204, + "Ġunre": 11205, + "Ġcarries": 11206, + "ĠSeb": 11207, + "Ġcheek": 11208, + "ĠAfghan": 11209, + "Ġcentim": 11210, + "Ġslee": 11211, + "annah": 11212, + "iterranean": 11213, + "Ġstealing": 11214, + "ĠAmazon": 11215, + "Ġvalid": 11216, + "headed": 11217, + "ĠChah": 11218, + "Ġsilk": 11219, + "ĠChel": 11220, + "ĠHighness": 11221, + "Ġselfish": 11222, + "Ġtaxi": 11223, + "Ġfundamental": 11224, + "ĠJuliet": 11225, + "Ġbelly": 11226, + "Christ": 11227, + "Ġpanic": 11228, + "ĠRogers": 11229, + "Ġshouting": 11230, + "Ġexerc": 11231, + "Ġtribes": 11232, + "ĠMoscow": 11233, + "Thank": 11234, + "ĠMaimie": 11235, + "800": 11236, + "DP": 11237, + "FF": 11238, + "away": 11239, + "kur": 11240, + "oqu": 11241, + "erg": 11242, + "Ġcul": 11243, + "Ġdick": 11244, + "Ġdated": 11245, + "arre": 11246, + "Ġnigg": 11247, + "leton": 11248, + "Ġhed": 11249, + "ĠBO": 11250, + "ĠBoo": 11251, + "Ġstake": 11252, + "ĠOt": 11253, + "thodox": 11254, + "ĠKi": 11255, + "Ġ1919": 11256, + "Ġclients": 11257, + "anga": 11258, + "Ġresigned": 11259, + "Ġmines": 11260, + "Ġconsent": 11261, + "Ġaccommod": 11262, + "tenance": 11263, + "Ġ83": 11264, + "ĠAbraham": 11265, + "Ġconfusion": 11266, + "Ġparam": 11267, + "ĠWarren": 11268, + "Ġ160": 11269, + "ĠJackie": 11270, + "ĠPerry": 11271, + "Ġfreak": 11272, + "Ġgrandmother": 11273, + "ĠGlad": 11274, + "Ġ1928": 11275, + "Ġenjoying": 11276, + "Ġantib": 11277, + "Ġfunding": 11278, + "ĠCleveland": 11279, + "Ġconductor": 11280, + "Ġsequel": 11281, + "avalry": 11282, + "Ġqualified": 11283, + "break": 11284, + "track": 11285, + "Ġconsequences": 11286, + "Ġancestors": 11287, + "Ġexhausted": 11288, + "LING": 11289, + "Me": 11290, + "Se": 11291, + "bone": 11292, + "cos": 11293, + "isa": 11294, + "isha": 11295, + "Ġmac": 11296, + "Ġdared": 11297, + "Ġloo": 11298, + "ashi": 11299, + "ĠTR": 11300, + "ĠSem": 11301, + "ĠWes": 11302, + "Ġrejo": 11303, + "imens": 11304, + "ĠHockey": 11305, + "ĠYa": 11306, + "ĠNHL": 11307, + "ĠDance": 11308, + "ĠDVD": 11309, + "ĠRO": 11310, + "ĠEli": 11311, + "ĠKirk": 11312, + "udible": 11313, + "Ġintr": 11314, + "ĠStr": 11315, + "Ġspray": 11316, + "Ġbacks": 11317, + "Ġbrut": 11318, + "Ġbrick": 11319, + "gins": 11320, + "Ġrage": 11321, + "grim": 11322, + "plete": 11323, + "Ġrestored": 11324, + "ĠProv": 11325, + "Ġdrill": 11326, + "Ġrecorder": 11327, + "Ġsneak": 11328, + "anguage": 11329, + "ĠGround": 11330, + "aima": 11331, + "Ġzoo": 11332, + "Ġmounted": 11333, + "Ġfilling": 11334, + "Ġcommanded": 11335, + "Ġbelonging": 11336, + "Ġnetworks": 11337, + "Ġconception": 11338, + "ĠPopeye": 11339, + "Ġstretch": 11340, + "Ġpurchase": 11341, + "ĠMarshal": 11342, + "Ġpuzzle": 11343, + "Ġslavery": 11344, + "Ind": 11345, + "Pl": 11346, + "bish": 11347, + "cribed": 11348, + "wear": 11349, + "when": 11350, + "ĠÐ": 11351, + "Ġbust": 11352, + "itis": 11353, + "Ġfib": 11354, + "athe": 11355, + "Ġgifts": 11356, + "ĠWag": 11357, + "imir": 11358, + "ĠCond": 11359, + "ĠDC": 11360, + "ĠKle": 11361, + "ĠKiss": 11362, + "Ġtwist": 11363, + "Ġfeast": 11364, + "Ġunp": 11365, + "izer": 11366, + "pled": 11367, + "Ġchim": 11368, + "rently": 11369, + "Ġmonaster": 11370, + "ieth": 11371, + "Ġstrings": 11372, + "Ġevolved": 11373, + "Ġtransition": 11374, + "Ġwalks": 11375, + "rington": 11376, + "Ġanniversary": 11377, + "former": 11378, + "ĠMediterranean": 11379, + "Star": 11380, + "Ġburden": 11381, + "Ġhistorian": 11382, + "gressive": 11383, + "USIC": 11384, + "Ġargued": 11385, + "ĠServices": 11386, + "Ġsouls": 11387, + "Ġgesture": 11388, + "Ġfranchise": 11389, + "\";": 11390, + "SR": 11391, + "UE": 11392, + "Ġtid": 11393, + "Ġcrop": 11394, + "icip": 11395, + "ĠSU": 11396, + "Ġbees": 11397, + "ĠMand": 11398, + "ĠBed": 11399, + "Ġdoct": 11400, + "ĠNixon": 11401, + "ĠDig": 11402, + "ĠDIC": 11403, + "Ġwhilst": 11404, + "Ġ(),": 11405, + "eling": 11406, + "ĠInn": 11407, + "iah": 11408, + "Ġunsu": 11409, + "Ġchoices": 11410, + "Ġchoir": 11411, + "ĠMario": 11412, + "Ġslope": 11413, + "Ġaccent": 11414, + "Ġgloom": 11415, + "cycle": 11416, + "ĠRights": 11417, + "Ġextract": 11418, + "aneously": 11419, + "Ġpromotion": 11420, + "Ġsquee": 11421, + "ĠCalm": 11422, + "Ġlayer": 11423, + "ambling": 11424, + "Ġ1934": 11425, + "REE": 11426, + "ĠQueens": 11427, + "ĠRoom": 11428, + "Ġimmense": 11429, + "Ġessay": 11430, + "ĠAtlanta": 11431, + "ère": 11432, + "Ġcontrary": 11433, + "ĠDetroit": 11434, + "ĠTayeb": 11435, + "Ġnursery": 11436, + "Ġsympathy": 11437, + "rella": 11438, + "Ġexplosion": 11439, + "Ġaccurate": 11440, + "ĠHolland": 11441, + "ĠDakota": 11442, + "Ġdialect": 11443, + "98": 11444, + "Did": 11445, + "Eng": 11446, + "cod": 11447, + "Ġtin": 11448, + "held": 11449, + "Ġsank": 11450, + "ingham": 11451, + "Ġdip": 11452, + "Ġyay": 11453, + "Ġlf": 11454, + "Ġgap": 11455, + "Ġgrie": 11456, + "ĠTall": 11457, + "owered": 11458, + "ĠARE": 11459, + "ĠSend": 11460, + "ĠSign": 11461, + "Ġreaches": 11462, + "ĠHills": 11463, + "rily": 11464, + "ĠFall": 11465, + "ĠFederation": 11466, + "ĠEt": 11467, + "Ġovert": 11468, + "ĠIsa": 11469, + "Ġphones": 11470, + "ĠLeo": 11471, + "Ġrepublic": 11472, + "Ġextension": 11473, + "Ġdealt": 11474, + "Ġterribly": 11475, + "ARE": 11476, + "ĠPhill": 11477, + "ĠMississ": 11478, + "Ġsatell": 11479, + "Ġelectron": 11480, + "Ġelectrical": 11481, + "Ġformerly": 11482, + "ĠMohammad": 11483, + "Ġpacked": 11484, + "cules": 11485, + "Ġhunger": 11486, + "ĠChang": 11487, + "ĠFrederick": 11488, + "Ġrebell": 11489, + "Ġclimbed": 11490, + "Ġcabinet": 11491, + "ĠBeautiful": 11492, + "Ġhammer": 11493, + "ĠLucas": 11494, + "Ġinterpretation": 11495, + "Ġwrapped": 11496, + "Ġpursue": 11497, + "ĠTayebi": 11498, + "600": 11499, + "Char": 11500, + "cal": 11501, + "Ġbored": 11502, + "Ġpressed": 11503, + "Ġnaima": 11504, + "Ġreverse": 11505, + "ĠMong": 11506, + "ĠCatherine": 11507, + "roph": 11508, + "Ġanth": 11509, + "ĠNation": 11510, + "ĠOp": 11511, + "Ġsections": 11512, + "ilight": 11513, + "ĠFig": 11514, + "thy": 11515, + "ĠJenny": 11516, + "Ġvamp": 11517, + "ichi": 11518, + "actory": 11519, + "Ġbloke": 11520, + "Ġhappily": 11521, + "Ġsurf": 11522, + "Ġbush": 11523, + "Ġcared": 11524, + "Ġcollaps": 11525, + "ĠCountry": 11526, + "Ġrig": 11527, + "Ġbrains": 11528, + "Ġsuspend": 11529, + "ĠRepublicans": 11530, + "guing": 11531, + "ĠFucking": 11532, + "Ġlinks": 11533, + "Ġmechanism": 11534, + "ĠHungarian": 11535, + "ĠConfederate": 11536, + "ĠCuba": 11537, + "ĠRabbit": 11538, + "Ġcontemporary": 11539, + "ĠArgentina": 11540, + "Ġuncomfortable": 11541, + "Sy": 11542, + "Sighs": 11543, + "bus": 11544, + "bound": 11545, + "cated": 11546, + "hum": 11547, + "pan": 11548, + "sor": 11549, + "Ġward": 11550, + "isd": 11551, + "Ġoven": 11552, + "Ġchip": 11553, + "Ġfruits": 11554, + "vex": 11555, + "vell": 11556, + "usalem": 11557, + "Ġrenew": 11558, + "ĠHIS": 11559, + "ĠChes": 11560, + "ĠYouth": 11561, + "ĠNam": 11562, + "ĠPint": 11563, + "rah": 11564, + "oples": 11565, + "ĠEvent": 11566, + "istinct": 11567, + "Ġrating": 11568, + "Ġcongress": 11569, + "Ġprocl": 11570, + "ĠKate": 11571, + "Ġ1900": 11572, + "Ġmans": 11573, + "ĠâĢİ": 11574, + "Ġdaylight": 11575, + "forest": 11576, + "aware": 11577, + "ials": 11578, + "Ġcheaper": 11579, + "otta": 11580, + "Ġcolony": 11581, + "Ġtribe": 11582, + "Ġlearnt": 11583, + "Ġdivisions": 11584, + "Ġengagement": 11585, + "Ġsuccession": 11586, + "ĠAnybody": 11587, + "Ġapproached": 11588, + "Ġ1932": 11589, + "Ġdestination": 11590, + "Ġwallet": 11591, + "Ġpopularity": 11592, + "Ġsuggestion": 11593, + "ĠPolit": 11594, + "Ġarmies": 11595, + "Ġbullshit": 11596, + "ĠDemi": 11597, + "ĠDarwin": 11598, + "Ġemployees": 11599, + "án": 11600, + "Ġprayers": 11601, + "Ġcoward": 11602, + "Ġcameras": 11603, + "ĠStudios": 11604, + "Ġderived": 11605, + "Ġranked": 11606, + "Ġholidays": 11607, + "Ġconstitu": 11608, + "warf": 11609, + "Ġmeasures": 11610, + "ĠDenmark": 11611, + "ĠStanley": 11612, + "ĠBernard": 11613, + "ĠWalker": 11614, + "ĠUsually": 11615, + "Ġconverted": 11616, + "ĠDennis": 11617, + "Ġsoph": 11618, + "only": 11619, + "erto": 11620, + "Ġdiver": 11621, + "Ġpier": 11622, + "ĠTel": 11623, + "Ġhen": 11624, + "ĠAge": 11625, + "Ġretain": 11626, + "Ġ1000": 11627, + "ĠGill": 11628, + "ĠGentle": 11629, + "Ġgoss": 11630, + "igration": 11631, + "elf": 11632, + "Ġvocal": 11633, + "Ġoverse": 11634, + "Ġbeloved": 11635, + "Ġdesired": 11636, + "Ġdescent": 11637, + "grat": 11638, + "Ġswept": 11639, + "Ġwarned": 11640, + "ĠIndust": 11641, + "Ġgenerous": 11642, + "ĠConnor": 11643, + "ika": 11644, + "Ġsteep": 11645, + "def": 11646, + "ĠCharusa": 11647, + "Ġtempor": 11648, + "Ġresulting": 11649, + "Ġmembership": 11650, + "ĠDavy": 11651, + "ĠSwiss": 11652, + "Ġtraditions": 11653, + "Ġcooked": 11654, + "ĠSyria": 11655, + "Ġpenny": 11656, + "Ġsailors": 11657, + "Ġresemb": 11658, + "Ġviolin": 11659, + "Ġpunished": 11660, + "Ġturb": 11661, + "Ġvoting": 11662, + "Ġstrangers": 11663, + "ĠSwedish": 11664, + "Ġintelligent": 11665, + "Ġmathematics": 11666, + "ĠAffairs": 11667, + "Ġdignity": 11668, + "ĠLloyd": 11669, + "ĠBenjamin": 11670, + "65": 11671, + "UL": 11672, + "WH": 11673, + "dis": 11674, + "iate": 11675, + "ju": 11676, + "mun": 11677, + "ÂĻ": 11678, + "α": 11679, + "ĠIP": 11680, + "ĠIron": 11681, + "Ġdot": 11682, + "Ġpace": 11683, + "Ġhire": 11684, + "ĠAC": 11685, + "ĠAG": 11686, + "ĠWalt": 11687, + "Ġreun": 11688, + "acha": 11689, + "ĠCensus": 11690, + "ĠBart": 11691, + "uran": 11692, + "ĠGir": 11693, + "ĠLear": 11694, + "ĠFalls": 11695, + "Ġjoking": 11696, + "Ġjungle": 11697, + "ĠJake": 11698, + "Ġupside": 11699, + "Ġvague": 11700, + "ĠKaz": 11701, + "Ġwilliam": 11702, + "Ġcompre": 11703, + "ĠShel": 11704, + "irlines": 11705, + "Ġconspir": 11706, + "ĠSprings": 11707, + "ĠPrice": 11708, + "Ġartistic": 11709, + "Ġcreates": 11710, + "Ġadvis": 11711, + "Ġdeputy": 11712, + "Ġprotecting": 11713, + "Ġmisunder": 11714, + "afa": 11715, + "ĠMonte": 11716, + "ĠMedical": 11717, + "Thou": 11718, + "guard": 11719, + "Ġblessing": 11720, + "ĠMembers": 11721, + "Ġadventures": 11722, + "Ġspinning": 11723, + "Ġcigarette": 11724, + "Ġembarrassing": 11725, + "ĠPortugal": 11726, + "Ġcomponent": 11727, + "Ġwhistle": 11728, + "Ġbuttons": 11729, + "ĠKrishna": 11730, + "Ġmartial": 11731, + "ĠCosta": 11732, + "Ġfossil": 11733, + "Ġinsects": 11734, + "ĠPitts": 11735, + "Ġcomedian": 11736, + "ĠCEO": 11737, + "Ġcheeks": 11738, + "Ad": 11739, + "IX": 11740, + "Of": 11741, + "dad": 11742, + "found": 11743, + "iary": 11744, + "pse": 11745, + "parent": 11746, + "ĠIvan": 11747, + "Ġyog": 11748, + "asures": 11749, + "ĠTogether": 11750, + "Ġhence": 11751, + "ĠAah": 11752, + "ĠWOR": 11753, + "ĠHERE": 11754, + "ĠNort": 11755, + "ĠGus": 11756, + "ĠGab": 11757, + "ĠGOT": 11758, + "ĠLiter": 11759, + "ĠLiver": 11760, + "unted": 11761, + "Ġdeleg": 11762, + "Ġoutta": 11763, + "apse": 11764, + "ĠThirty": 11765, + "Ġquote": 11766, + "Ġblown": 11767, + "Ġchlor": 11768, + "pson": 11769, + "ĠAllies": 11770, + "venth": 11771, + "Ġhighlight": 11772, + "Ġ67": 11773, + "Ġdeadly": 11774, + "Ġ95": 11775, + "ĠConvention": 11776, + "Ġsunshine": 11777, + "Ġseparation": 11778, + "Ġvolcan": 11779, + "Ġwaist": 11780, + "APRI": 11781, + "Ġbehave": 11782, + "Ġtourist": 11783, + "ĠFerrier": 11784, + "Ġambulance": 11785, + "Ġencouraged": 11786, + "Ġchatter": 11787, + "Ġtroubled": 11788, + "Ġnomination": 11789, + "Ġscheduled": 11790, + "ĠRonald": 11791, + "Ġprocedures": 11792, + "08": 11793, + "nut": 11794, + "pers": 11795, + "such": 11796, + "Ġau": 11797, + "Ġpause": 11798, + "Ġgene": 11799, + "omous": 11800, + "ĠTreat": 11801, + "ĠTiger": 11802, + "ĠAPP": 11803, + "Ġange": 11804, + "Ġdoin": 11805, + "chuckles": 11806, + "ĠLower": 11807, + "ante": 11808, + "ĠRap": 11809, + "Ġdeals": 11810, + "Ġalike": 11811, + "Ġalert": 11812, + "Ġalleg": 11813, + "Ġconsec": 11814, + "Ġvo": 11815, + "Ġnoon": 11816, + "Ġarchae": 11817, + "ivia": 11818, + "Ġtrash": 11819, + "Ġloads": 11820, + "wegian": 11821, + "Ġdisgu": 11822, + "rency": 11823, + "Ġindicate": 11824, + "ANS": 11825, + "Ġpromote": 11826, + "Ġmessenger": 11827, + "ippi": 11828, + "Ġcatching": 11829, + "ĠSurely": 11830, + "ĠBoys": 11831, + "Ġsalary": 11832, + "Ġreduction": 11833, + "Ġdenied": 11834, + "Ġhypot": 11835, + "Ġpurchased": 11836, + "Ġvariable": 11837, + "Ġvegetables": 11838, + "Ġpreparation": 11839, + "ĠSongs": 11840, + "Ġconcluded": 11841, + "Ġdeaf": 11842, + "ĠCertainly": 11843, + "62": 11844, + "Okay": 11845, + "making": 11846, + "Ġod": 11847, + "Ġbury": 11848, + "encer": 11849, + "Ġpic": 11850, + "Ġpills": 11851, + "atar": 11852, + "ĠMam": 11853, + "riac": 11854, + "ĠYi": 11855, + "ĠDug": 11856, + "ifies": 11857, + "Ġseal": 11858, + "ĠRi": 11859, + "ĠFront": 11860, + "olics": 11861, + "Ġshy": 11862, + "Ġvit": 11863, + "Ġ1918": 11864, + "ako": 11865, + "cale": 11866, + "ivals": 11867, + "Ġquid": 11868, + "iren": 11869, + "arks": 11870, + "olla": 11871, + "Ġrecurs": 11872, + "ĠAllied": 11873, + "ée": 11874, + "ologies": 11875, + "Ġsmallest": 11876, + "ĠZone": 11877, + "enez": 11878, + "Ġhumor": 11879, + "Ġtransmit": 11880, + "Ġnicely": 11881, + "aneous": 11882, + "ĠChristine": 11883, + "Ġtennis": 11884, + "Ġstruct": 11885, + "Ġ1935": 11886, + "Ġdrops": 11887, + "ĠSmall": 11888, + "Ġcoverage": 11889, + "ĠMaur": 11890, + "Ġninth": 11891, + "ĠAngel": 11892, + "Ġdemands": 11893, + "itchell": 11894, + "ĠJerusalem": 11895, + "handed": 11896, + "fortunate": 11897, + "kerchief": 11898, + "ĠLisbon": 11899, + "Ġadvertising": 11900, + "ĠHunter": 11901, + "ĠLibrary": 11902, + "Ġneutral": 11903, + "Ġalgorithm": 11904, + "ĠDICAPRI": 11905, + "ĠDICAPRIO": 11906, + "El": 11907, + "bird": 11908, + "dig": 11909, + "him": 11910, + "mers": 11911, + "names": 11912, + "spe": 11913, + "Ġalex": 11914, + "Ġfet": 11915, + "Ġfiring": 11916, + "Ġdough": 11917, + "anas": 11918, + "ĠWick": 11919, + "ĠBorough": 11920, + "ĠDue": 11921, + "ĠPC": 11922, + "ĠPier": 11923, + "ĠEat": 11924, + "ieval": 11925, + "Ġcongrat": 11926, + "osidodecahedron": 11927, + "Ġoutput": 11928, + "Ġtwe": 11929, + "Ġscen": 11930, + "Ġhandling": 11931, + "ĠAlt": 11932, + "Ġcriter": 11933, + "Ġowns": 11934, + "Ġrelie": 11935, + "Ġ42": 11936, + "Ġharsh": 11937, + "Ġfinance": 11938, + "Ġmuscle": 11939, + "Ġassure": 11940, + "ĠSpace": 11941, + "Ġcolum": 11942, + "Ġcurve": 11943, + "Ġprovision": 11944, + "Ġ177": 11945, + "Ġbusinessman": 11946, + "ATION": 11947, + "Ġranks": 11948, + "ĠGrammy": 11949, + "ĠTHEY": 11950, + "Ġmurm": 11951, + "Ġtreaty": 11952, + "Ġdiag": 11953, + "Ġincreases": 11954, + "Ġmistaken": 11955, + "Ġrecognised": 11956, + "Ġstriking": 11957, + "ĠCourse": 11958, + "Ġidentical": 11959, + "Ġrevol": 11960, + "Ġobservation": 11961, + "OTH": 11962, + "Ġsensation": 11963, + "Ġflights": 11964, + "Ġfrequency": 11965, + "Ġcriticized": 11966, + "ĠMelbourne": 11967, + "Ġsuspected": 11968, + "Ġpraise": 11969, + "ĠGraham": 11970, + "ĠHugh": 11971, + "ĠTechnology": 11972, + "ĠAdministration": 11973, + "Ġunexpected": 11974, + "Ġnaughty": 11975, + "?!": 11976, + "PER": 11977, + "bac": 11978, + "chard": 11979, + "gal": 11980, + "wyn": 11981, + "zard": 11982, + "edge": 11983, + "Ġpile": 11984, + "aration": 11985, + "Ġly": 11986, + "Ġhut": 11987, + "Ġreception": 11988, + "ĠMans": 11989, + "ĠMade": 11990, + "ĠMerry": 11991, + "rik": 11992, + "ĠBass": 11993, + "ĠBund": 11994, + "ĠFruit": 11995, + "unes": 11996, + "Ġsob": 11997, + "Ġshone": 11998, + "ortion": 11999, + "Ġclick": 12000, + "Ġbetray": 12001, + "Ġmakeup": 12002, + "avia": 12003, + "Ġtragic": 12004, + "ĠSey": 12005, + "Ġbelieving": 12006, + "ĠNewton": 12007, + "Ġpointing": 12008, + "Ġdistinction": 12009, + "Ġproduces": 12010, + "Ġincom": 12011, + "Ġreader": 12012, + "Ġexperiments": 12013, + "Ġcommunicate": 12014, + "Ġveter": 12015, + "amba": 12016, + "Ġdestiny": 12017, + "Ġabsurd": 12018, + "ĠQuiet": 12019, + "ographical": 12020, + "Ġpropag": 12021, + "ĠCheers": 12022, + "Ġ1929": 12023, + "Ġcandle": 12024, + "Ġmummy": 12025, + "Ġcontribution": 12026, + "ĠCatal": 12027, + "Ġdiameter": 12028, + "ĠMemorial": 12029, + "ĠRelax": 12030, + "Ġpillow": 12031, + "Ġmysteries": 12032, + "ĠGilbert": 12033, + "ĠFaith": 12034, + "Ġingred": 12035, + "ĠArmenian": 12036, + "Ġprosper": 12037, + "Ġbehaviour": 12038, + ".-": 12039, + "85": 12040, + "eor": 12041, + "maker": 12042, + "word": 12043, + "world": 12044, + "Ġtales": 12045, + "ouver": 12046, + "Ġsoutheast": 12047, + "Ġoops": 12048, + "Ġmales": 12049, + "Ġferry": 12050, + "Ġporn": 12051, + "Ġpatch": 12052, + "Ġpunk": 12053, + "Ġlos": 12054, + "lement": 12055, + "ĠSall": 12056, + "Ġbegg": 12057, + "ĠHat": 12058, + "ĠCors": 12059, + "Ġstared": 12060, + "Ġdock": 12061, + "ĠOUT": 12062, + "ĠGon": 12063, + "ĠLang": 12064, + "ĠLenn": 12065, + "oped": 12066, + "ĠFinal": 12067, + "ĠFitz": 12068, + "Ġjim": 12069, + "ĠJas": 12070, + "ĠKl": 12071, + "Ġ1914": 12072, + "ĠUpper": 12073, + "Ġlectures": 12074, + "nee": 12075, + "Ġcontempt": 12076, + "Ġchin": 12077, + "Ġpreserved": 12078, + "aleh": 12079, + "Ġinspiration": 12080, + "Ġmaintenance": 12081, + "Ġfights": 12082, + "Ġfucked": 12083, + "OUT": 12084, + "Ġdefine": 12085, + "Ġdefensive": 12086, + "ĠGeoff": 12087, + "Ġhath": 12088, + "ĠAustin": 12089, + "ORE": 12090, + "Ġceiling": 12091, + "Ġpractices": 12092, + "Ġcleaned": 12093, + "borough": 12094, + "Ġfemales": 12095, + "Ġtraveling": 12096, + "ĠRegional": 12097, + "Ġthreatening": 12098, + "Ġpercentage": 12099, + "Ġarguments": 12100, + "ĠDemocrats": 12101, + "Ġignore": 12102, + "belie": 12103, + "Ġpolyhedron": 12104, + "Ġ{\\": 12105, + "Ġsociet": 12106, + "ĠVivie": 12107, + "Ġphenomen": 12108, + "Com": 12109, + "Every": 12110, + "Per": 12111, + "Take": 12112, + "first": 12113, + "jin": 12114, + "mare": 12115, + "vals": 12116, + "Äį": 12117, + "Ġtent": 12118, + "Ġtension": 12119, + "Ġwag": 12120, + "Ġsab": 12121, + "Ġcam": 12122, + "Ġcater": 12123, + "ĠTob": 12124, + "ĠTrent": 12125, + "ĠAin": 12126, + "ĠSW": 12127, + "Ġthumb": 12128, + "Ġweld": 12129, + "ĠMitchell": 12130, + "ĠCou": 12131, + "ĠCand": 12132, + "ĠChampion": 12133, + "ĠPir": 12134, + "Ġnotion": 12135, + "ĠROB": 12136, + "Ġjerk": 12137, + "ando": 12138, + "oshi": 12139, + "ĠKw": 12140, + "ĠKra": 12141, + "Ġ1917": 12142, + "Ġbackpack": 12143, + "Ġunemploy": 12144, + "Ġimper": 12145, + "Ġscores": 12146, + "Ġcarpet": 12147, + "Ġdiff": 12148, + "Ġassets": 12149, + "Ġsignals": 12150, + "ĠCarib": 12151, + "Ġeats": 12152, + "Ġexplo": 12153, + "Ġ175": 12154, + "Ġpainful": 12155, + "ĠManhattan": 12156, + "ĠHarvey": 12157, + "Ġdesigner": 12158, + "Ġrepresentation": 12159, + "ĠJulia": 12160, + "EAD": 12161, + "Ġregularly": 12162, + "Ġbells": 12163, + "Ġconvicted": 12164, + "Ġliberal": 12165, + "Ġchemicals": 12166, + "Ġsuspicious": 12167, + "Ġagriculture": 12168, + "Ġsubstant": 12169, + "Ġelevator": 12170, + "becca": 12171, + "ĠJoyce": 12172, + "Ġfabric": 12173, + "Ġvaccine": 12174, + "ĠAntonio": 12175, + "ĠEthiop": 12176, + "ĠAthlet": 12177, + "Ġcolumns": 12178, + "94": 12179, + "AF": 12180, + "GUN": 12181, + "LSB": 12182, + "kar": 12183, + "lines": 12184, + "lNG": 12185, + "rac": 12186, + "six": 12187, + "Ġtu": 12188, + "eries": 12189, + "aron": 12190, + "Ġlod": 12191, + "usions": 12192, + "ĠMight": 12193, + "steps": 12194, + "ĠBast": 12195, + "ĠBrig": 12196, + "ĠNad": 12197, + "ĠDark": 12198, + "ĠDiam": 12199, + "ĠPull": 12200, + "Ġliver": 12201, + "ĠRaven": 12202, + "ĠRoute": 12203, + "ista": 12204, + "Ġrates": 12205, + "ĠKam": 12206, + "Ġspan": 12207, + "Ġadam": 12208, + "closed": 12209, + "Ġthrust": 12210, + "Ġleap": 12211, + "ĠAround": 12212, + "Ġconsol": 12213, + "Ġrealised": 12214, + "rows": 12215, + "Ġmush": 12216, + "Ġevac": 12217, + "ĠExam": 12218, + "Ġclassified": 12219, + "Ġcoron": 12220, + "ĠXV": 12221, + "Ġadmire": 12222, + "Ġlocalities": 12223, + "Ġcircus": 12224, + "Ġbullets": 12225, + "ĠHelen": 12226, + "ĠAntar": 12227, + "Ġchallenged": 12228, + "Ġreactions": 12229, + "ĠBradford": 12230, + "Ġconcentration": 12231, + "ĠHardy": 12232, + "ĠPersian": 12233, + "ĠBarbara": 12234, + "Ġstrategic": 12235, + "Ġthoroughly": 12236, + "Ġconvenient": 12237, + "ĠStewart": 12238, + "ĠMississippi": 12239, + "Pro": 12240, + "RSB": 12241, + "Te": 12242, + "hol": 12243, + "hour": 12244, + "lings": 12245, + "ê": 12246, + "Ġwages": 12247, + "Ġmol": 12248, + "enz": 12249, + "atoes": 12250, + "ĠTro": 12251, + "imony": 12252, + "ĠName": 12253, + "ĠNature": 12254, + "ifully": 12255, + "ĠLam": 12256, + "olia": 12257, + "ĠJama": 12258, + "Ġ1913": 12259, + "agine": 12260, + "Ġspots": 12261, + "active": 12262, + "ptic": 12263, + "Ġcompare": 12264, + "ubs": 12265, + "ructure": 12266, + "Ġcontents": 12267, + "Ġperpet": 12268, + "Ġmustn": 12269, + "ĠBey": 12270, + "Ġhomework": 12271, + "lessness": 12272, + "ĠClose": 12273, + "Ġskull": 12274, + "ĠAborig": 12275, + "eez": 12276, + "ĠĠĠĠĠĠĠĠĠĠĠ": 12277, + "Ġexplains": 12278, + "Ġbasement": 12279, + "Ġpoliticians": 12280, + "ATTER": 12281, + "Ġbarrel": 12282, + "Ġbargain": 12283, + "Ġlayout": 12284, + "hampagne": 12285, + "ĠChase": 12286, + "Ġ1933": 12287, + "Ġposted": 12288, + "ĠGlen": 12289, + "ĠMorris": 12290, + "Ġrobot": 12291, + "ür": 12292, + "Ġpsychiat": 12293, + "ĠCaroline": 12294, + "Ġmiracle": 12295, + "ön": 12296, + "Ġlogic": 12297, + "ĠTeddy": 12298, + "Ġpurely": 12299, + "Ġpaused": 12300, + "Ġtrailer": 12301, + "Ġritual": 12302, + "ĠMalaysia": 12303, + "ĠLiverpool": 12304, + "Co": 12305, + "free": 12306, + "rating": 12307, + "say": 12308, + "via": 12309, + "zheimer": 12310, + "ÏĦ": 12311, + "Ġο": 12312, + "Ġtenth": 12313, + "Ġber": 12314, + "Ġbicy": 12315, + "Ġnan": 12316, + "Ġnerve": 12317, + "owell": 12318, + "ĠSoph": 12319, + "ĠMumb": 12320, + "ĠCemetery": 12321, + "sta": 12322, + "ĠBR": 12323, + "ĠPole": 12324, + "ĠGE": 12325, + "ĠJosh": 12326, + "Ġrh": 12327, + "igma": 12328, + "Ġvirgin": 12329, + "Ġtwisted": 12330, + "Ġlob": 12331, + "ĠVenez": 12332, + "Ġunfortunate": 12333, + "ĠSheriff": 12334, + "Ġamateur": 12335, + "Ġprec": 12336, + "Ġserial": 12337, + "Ġhandkerchief": 12338, + "ĠAlber": 12339, + "ĠMarcus": 12340, + "ĠBron": 12341, + "Ġ43": 12342, + "Ġregards": 12343, + "Ġ57": 12344, + "Ġdrown": 12345, + "Ġswitched": 12346, + "Ġlocomot": 12347, + "Ġ85": 12348, + "Ġcontinuous": 12349, + "Ġsolic": 12350, + "Ġvisits": 12351, + "ĠHarvard": 12352, + "Ġterrified": 12353, + "Ġballoon": 12354, + "Ġorganisation": 12355, + "mingham": 12356, + "ĠJoan": 12357, + "Ġapprove": 12358, + "untary": 12359, + "Ġdepressed": 12360, + "Ġinvolving": 12361, + "ĠMcK": 12362, + "Ġrespectively": 12363, + "ĠCollins": 12364, + "regon": 12365, + "Ġ1924": 12366, + "Ġsticks": 12367, + "ĠMedal": 12368, + "ĠMadrid": 12369, + "ĠNorwegian": 12370, + "Ġcelebration": 12371, + "Ġdanced": 12372, + "ĠMilton": 12373, + "Ġutil": 12374, + "Ġremarked": 12375, + "Ġoccupation": 12376, + "ĠSharon": 12377, + "ĠDoug": 12378, + "colm": 12379, + "Ġwidow": 12380, + "ĠHands": 12381, + "Ġcertific": 12382, + "Ġmarginal": 12383, + "natural": 12384, + "inema": 12385, + "Ġbothered": 12386, + "Ġgorgeous": 12387, + "ĠKlein": 12388, + "05": 12389, + "Af": 12390, + "BE": 12391, + "Brit": 12392, + "ahedron": 12393, + "nal": 12394, + "produ": 12395, + "sky": 12396, + "xide": 12397, + "Ġtum": 12398, + "Ġware": 12399, + "Ġsins": 12400, + "Ġbob": 12401, + "Ġbonds": 12402, + "Ġcents": 12403, + "oro": 12404, + "orph": 12405, + "Ġgum": 12406, + "Ġhosp": 12407, + "imm": 12408, + "acre": 12409, + "ĠCase": 12410, + "ĠCrit": 12411, + "ĠCBS": 12412, + "ĠLily": 12413, + "ĠFuk": 12414, + "through": 12415, + "Ġsocks": 12416, + "hana": 12417, + "orting": 12418, + "Ġnobles": 12419, + "ĠNoah": 12420, + "ĠStock": 12421, + "Ġpeoples": 12422, + "osexual": 12423, + "neum": 12424, + "Ġcomprom": 12425, + "irect": 12426, + "rup": 12427, + "Ġguid": 12428, + "Ġresolution": 12429, + "Ġreserve": 12430, + "olds": 12431, + "Ġmini": 12432, + "Ġelabor": 12433, + "Ġinsisted": 12434, + "Ġdecides": 12435, + "Ġwarming": 12436, + "Ġbuses": 12437, + "Ġcolonel": 12438, + "Ġbabe": 12439, + "OUGH": 12440, + "Ġvisiting": 12441, + "ĠGuess": 12442, + "chair": 12443, + "Ġbottles": 12444, + "Ġhanged": 12445, + "Ġactivist": 12446, + "OWN": 12447, + "Ġ1890": 12448, + "Ġvanished": 12449, + "ĠDevon": 12450, + "ĠArabia": 12451, + "Ġrequirements": 12452, + "Ġaxis": 12453, + "Ġlegislation": 12454, + "ĠCroce": 12455, + "Ġtorture": 12456, + "Ġcontroversy": 12457, + "ĠCroatian": 12458, + "Ġdisagre": 12459, + "Ġproportion": 12460, + "ĠDynasty": 12461, + "Ġfictional": 12462, + "ĠCaribbean": 12463, + "Che": 12464, + "SA": 12465, + "cat": 12466, + "houses": 12467, + "qi": 12468, + "rams": 12469, + "whel": 12470, + "ú": 12471, + "Ġwolves": 12472, + "reh": 12473, + "Ġinev": 12474, + "arat": 12475, + "aser": 12476, + "ĠTru": 12477, + "Ġhilda": 12478, + "eta": 12479, + "ĠMes": 12480, + "ĠChat": 12481, + "ĠCraw": 12482, + "stall": 12483, + "ĠDob": 12484, + "ĠDrop": 12485, + "ĠPsych": 12486, + "andin": 12487, + "ĠEM": 12488, + "elli": 12489, + "elic": 12490, + "aba": 12491, + "Ġagencies": 12492, + "acey": 12493, + "Ġclay": 12494, + "ĠVic": 12495, + "Ġcargo": 12496, + "ĠAns": 12497, + "ĠIsabel": 12498, + "Ġcounted": 12499, + "Ġkindness": 12500, + "Ġslap": 12501, + "Ġinvisible": 12502, + "Ġmuscles": 12503, + "Ġassured": 12504, + "ĠSpirit": 12505, + "ĠClinton": 12506, + "Ġfewer": 12507, + "Ġcollar": 12508, + "Ġartillery": 12509, + "Ġfilmed": 12510, + "Ġ98": 12511, + "Ġrifle": 12512, + "ĠFlowers": 12513, + "ĠAdv": 12514, + "pring": 12515, + "ĠLords": 12516, + "Ġpenet": 12517, + "Ġ1927": 12518, + "Ġkissing": 12519, + "Ġobserv": 12520, + "ĠBoyd": 12521, + "Ġsurviv": 12522, + "related": 12523, + "ancouver": 12524, + "ĠCatholics": 12525, + "ĠDelaware": 12526, + "Ġphilosoph": 12527, + "Ġacquaint": 12528, + "Ġcustomer": 12529, + "Ġclimbing": 12530, + "IGHS": 12531, + "Ġwritings": 12532, + "Ġcorporate": 12533, + "ĠCraig": 12534, + "Ġaccomplished": 12535, + "Ġlungs": 12536, + "ĠAfghanistan": 12537, + "Ġgossip": 12538, + "92": 12539, + "OG": 12540, + "PH": 12541, + "á»": 12542, + "Ġtο": 12543, + "Ġoct": 12544, + "itness": 12545, + "Ġcups": 12546, + "Ġflex": 12547, + "Ġpi": 12548, + "arms": 12549, + "Ġhint": 12550, + "Ġhip": 12551, + "usk": 12552, + "ĠAges": 12553, + "Ġecho": 12554, + "ĠHud": 12555, + "ĠBour": 12556, + "ĠNBA": 12557, + "ĠGang": 12558, + "ĠLt": 12559, + "ĠFro": 12560, + "ĠFund": 12561, + "Ġjer": 12562, + "iege": 12563, + "essa": 12564, + "Ġexit": 12565, + "Ġmankind": 12566, + "Ġcoin": 12567, + "Ġneedle": 12568, + "Ġrabb": 12569, + "ĠReed": 12570, + "Ġsymmet": 12571, + "Ġchasing": 12572, + "Ġkidney": 12573, + "ĠBlake": 12574, + "Ġtriumph": 12575, + "Ġmarkets": 12576, + "Ġawait": 12577, + "Ġtrend": 12578, + "Ġlowest": 12579, + "boat": 12580, + "yram": 12581, + "OMAN": 12582, + "ĠAngela": 12583, + "ĠDesign": 12584, + "Ġdispute": 12585, + "Ġsmells": 12586, + "Ġpsycho": 12587, + "Ġsatisfaction": 12588, + "ĠObviously": 12589, + "Ġcategories": 12590, + "Ġpartnership": 12591, + "Ġestablishment": 12592, + "Ġinterrupted": 12593, + "ĠOriental": 12594, + "Ġnitrogen": 12595, + "ĠWrestling": 12596, + "ĠMicrosoft": 12597, + "Ġartificial": 12598, + "Ġmagnificent": 12599, + ".;": 12600, + "By": 12601, + "See": 12602, + "round": 12603, + "whe": 12604, + "à¥": 12605, + "isure": 12606, + "Ġbree": 12607, + "itudes": 12608, + "Ġdried": 12609, + "Ġpiss": 12610, + "Ġlou": 12611, + "Ġhug": 12612, + "ione": 12613, + "Ġrect": 12614, + "riel": 12615, + "ribe": 12616, + "ĠBasket": 12617, + "ĠPam": 12618, + "ĠLabor": 12619, + "anta": 12620, + "ĠFal": 12621, + "ĠEnt": 12622, + "ĠEqu": 12623, + "ĠEmb": 12624, + "ĠJun": 12625, + "ĠJournal": 12626, + "Ġcann": 12627, + "eston": 12628, + "Ġshorter": 12629, + "Ġconvert": 12630, + "ĠKha": 12631, + "ĠStorm": 12632, + "Ġblows": 12633, + "pling": 12634, + "Ġprey": 12635, + "ĠAlaska": 12636, + "ĠMarilla": 12637, + "Ġ52": 12638, + "Ġdecade": 12639, + "Ġinvaded": 12640, + "Ġ600": 12641, + "Ġimpat": 12642, + "Ġrepair": 12643, + "Ġmainland": 12644, + "Ġpromises": 12645, + "Ġtriple": 12646, + "ikes": 12647, + "Ġpathetic": 12648, + "Ġsnakes": 12649, + "ĠPeters": 12650, + "ĠEdith": 12651, + "ĠEnv": 12652, + "ĠEnjoy": 12653, + "Ġ1921": 12654, + "Ġpermit": 12655, + "Ġbanned": 12656, + "ĠGrandpa": 12657, + "Ġdelicate": 12658, + "Ġpriority": 12659, + "Ġmythology": 12660, + "Ġtowel": 12661, + "Ġswallow": 12662, + "Ġpublisher": 12663, + "ĠPLAY": 12664, + "Ġadapted": 12665, + "Ġvulnerable": 12666, + "Ġpeekaboo": 12667, + "ĠSebastian": 12668, + "ĠPittsburgh": 12669, + "400": 12670, + "66": 12671, + "cad": 12672, + "iens": 12673, + "top": 12674, + "vonne": 12675, + "ativity": 12676, + "asm": 12677, + "Ġgau": 12678, + "ĠSax": 12679, + "Ġbee": 12680, + "amous": 12681, + "ĠMR": 12682, + "illo": 12683, + "ĠOregon": 12684, + "Ġsew": 12685, + "ĠLan": 12686, + "oper": 12687, + "ĠRand": 12688, + "ĠHeb": 12689, + "ĠHeart": 12690, + "ĠItanium": 12691, + "Ġjokes": 12692, + "ĠJi": 12693, + "Ġalter": 12694, + "istical": 12695, + "emed": 12696, + "ĠAndre": 12697, + "ĠKey": 12698, + "Ġleather": 12699, + "Ġcompound": 12700, + "ĠAlzheimer": 12701, + "Ġcounties": 12702, + "insky": 12703, + "Ġgloves": 12704, + "Ġsubur": 12705, + "uffs": 12706, + "Ġresting": 12707, + "Ġordering": 12708, + "ovak": 12709, + "Ġrocket": 12710, + "Ġappearing": 12711, + "Ġsends": 12712, + "Ġcrept": 12713, + "Ġpropose": 12714, + "Ġ250": 12715, + "Ġ1926": 12716, + "ĠSamuel": 12717, + "Ġflee": 12718, + "Ġreferring": 12719, + "USE": 12720, + "ĠMatcham": 12721, + "ĠDelta": 12722, + "ĠNathan": 12723, + "Ġsurround": 12724, + "agonal": 12725, + "Ġpreferred": 12726, + "ĠNazis": 12727, + "Ġanswering": 12728, + "Ġsuspicion": 12729, + "ĠRomans": 12730, + "ĠNEW": 12731, + "ĠBelgian": 12732, + "Ġdemocracy": 12733, + "ĠPictures": 12734, + "ĠExecutive": 12735, + "Ġrehears": 12736, + "ML": 12737, + "PA": 12738, + "],": 12739, + "fr": 12740, + "fu": 12741, + "zan": 12742, + "inth": 12743, + "Ġwret": 12744, + "Ġcm": 12745, + "Ġpizza": 12746, + "Ġls": 12747, + "Ġrelevant": 12748, + "riz": 12749, + "Ġumb": 12750, + "Ġlip": 12751, + "Ġjunk": 12752, + "ĠEither": 12753, + "umi": 12754, + "estyle": 12755, + "Ġexhib": 12756, + "ods": 12757, + "Ġmanip": 12758, + "Ġlovers": 12759, + "ishment": 12760, + "Ġoffensive": 12761, + "aux": 12762, + "olley": 12763, + "Ġmarching": 12764, + "Ġ54": 12765, + "Ġdrummer": 12766, + "Ġobsc": 12767, + "Ġemp": 12768, + "ĠClara": 12769, + "Ġfilming": 12770, + "ĠTrade": 12771, + "Ġcontrolling": 12772, + "Ġagenda": 12773, + "cover": 12774, + "sterdam": 12775, + "Ġorganised": 12776, + "ĠAnyone": 12777, + "ĠColon": 12778, + "Ġdiary": 12779, + "Ġcharacteristics": 12780, + "ominations": 12781, + "Ġphysically": 12782, + "ĠSimilar": 12783, + "ĠPrior": 12784, + "ĠOlya": 12785, + "ĠSaudi": 12786, + "Ġrubbish": 12787, + "Ġmechanical": 12788, + "Ġconsumption": 12789, + "Ġrequested": 12790, + "ĠJeffrey": 12791, + "Ġaccompany": 12792, + "................": 12793, + "Ġstimul": 12794, + "Ġsustainable": 12795, + "Ġnickname": 12796, + "Ġgalax": 12797, + "Ġregistered": 12798, + "ĠSofla": 12799, + "Ġcurtains": 12800, + "namese": 12801, + "Great": 12802, + "Mus": 12803, + "PC": 12804, + "Species": 12805, + "gans": 12806, + "rations": 12807, + "uji": 12808, + "haus": 12809, + "Ġcemetery": 12810, + "Ġdwarf": 12811, + "Ġpneum": 12812, + "Ġlemon": 12813, + "ĠSop": 12814, + "ĠWoo": 12815, + "Ġrecept": 12816, + "ĠCry": 12817, + "ĠBranch": 12818, + "alle": 12819, + "ĠNon": 12820, + "ĠOcc": 12821, + "ĠLE": 12822, + "rained": 12823, + "ĠRiley": 12824, + "ĠFrem": 12825, + "Ġdefect": 12826, + "Ġcancel": 12827, + "odia": 12828, + "venge": 12829, + "ĠThor": 12830, + "Ġtwent": 12831, + "Ġtrous": 12832, + "Ġtricks": 12833, + "ormal": 12834, + "ĠBrid": 12835, + "ĠDeep": 12836, + "Ġindigenous": 12837, + "ibal": 12838, + "Ġsworn": 12839, + "braska": 12840, + "Ġterminal": 12841, + "ĠPhoen": 12842, + "Ġdesignated": 12843, + "Ġ1931": 12844, + "Ġcrystal": 12845, + "Ġforgetting": 12846, + "Ġcollecting": 12847, + "ĠHighland": 12848, + "Ġ1925": 12849, + "Ġsailor": 12850, + "Ġsticky": 12851, + "ĠOthers": 12852, + "ĠWouldn": 12853, + "Ġmixture": 12854, + "Ġsandwich": 12855, + "iotics": 12856, + "Ġloudly": 12857, + "Ġstruggling": 12858, + "Ġrestaurants": 12859, + "intendent": 12860, + "ĠBrandon": 12861, + "Ġresponded": 12862, + "ĠAdmiralty": 12863, + "Ġsubsid": 12864, + "Ġvertices": 12865, + "mphony": 12866, + "Ġbombs": 12867, + "Ġbridges": 12868, + "ĠLionel": 12869, + "ĠUtah": 12870, + "Ġalleged": 12871, + "Ġbundle": 12872, + "Din": 12873, + "List": 12874, + "cott": 12875, + "dr": 12876, + "dia": 12877, + "hr": 12878, + "nun": 12879, + "Ġties": 12880, + "Ġtang": 12881, + "inea": 12882, + "rend": 12883, + "Ġcust": 12884, + "Ġmice": 12885, + "Ġmaps": 12886, + "ĠIF": 12887, + "orable": 12888, + "Ġlazy": 12889, + "asks": 12890, + "ĠTal": 12891, + "enton": 12892, + "ĠCit": 12893, + "ĠBuff": 12894, + "Ġaspir": 12895, + "ĠDE": 12896, + "ĠDifferent": 12897, + "hers": 12898, + "ĠPA": 12899, + "ĠRIGHT": 12900, + "Ġdeer": 12901, + "ĠJunior": 12902, + "Ġsovere": 12903, + "ellig": 12904, + "essions": 12905, + "ĠKid": 12906, + "ĠUR": 12907, + "Ġmanners": 12908, + "Ġmanaging": 12909, + "high": 12910, + "ĠVideo": 12911, + "ĠVancouver": 12912, + "Ġflame": 12913, + "Ġhandled": 12914, + "Ġrecru": 12915, + "ĠAllan": 12916, + "ontin": 12917, + "Ġpolar": 12918, + "Ġcaps": 12919, + "Ġproducers": 12920, + "Ġcolleges": 12921, + "ĠAbby": 12922, + "Ġclassroom": 12923, + "Ġpatience": 12924, + "ĠManagement": 12925, + "Ġoperates": 12926, + "ĠAmsterdam": 12927, + "Ġattacking": 12928, + "Ġsummon": 12929, + "ĠPerfect": 12930, + "ĠColin": 12931, + "Ġworrying": 12932, + "Ġsexy": 12933, + "Ġpenalty": 12934, + "Ġrainbow": 12935, + "Ġfemin": 12936, + "Ġsurvival": 12937, + "ammar": 12938, + "ĠMagazine": 12939, + "ĠKarl": 12940, + "ĠMurphy": 12941, + "Ġconsumer": 12942, + "Ġdelightful": 12943, + "Ġcontroversial": 12944, + "Ġdiagnosed": 12945, + "Ġrecycling": 12946, + "NO": 12947, + "OH": 12948, + "West": 12949, + "bat": 12950, + "cs": 12951, + "lace": 12952, + "xy": 12953, + "inch": 12954, + "Ġdining": 12955, + "Ġpissed": 12956, + "Ġinput": 12957, + "level": 12958, + "Ġhipp": 12959, + "oton": 12960, + "Ġheap": 12961, + "alysis": 12962, + "ĠSout": 12963, + "ĠSham": 12964, + "ĠWard": 12965, + "ĠWald": 12966, + "ĠHamps": 12967, + "ĠMember": 12968, + "stick": 12969, + "irable": 12970, + "irrel": 12971, + "ĠNiger": 12972, + "ĠPil": 12973, + "Ġsealed": 12974, + "ĠLud": 12975, + "ĠFan": 12976, + "ĠHear": 12977, + "thou": 12978, + "arte": 12979, + "oded": 12980, + "soever": 12981, + "Ġclip": 12982, + "Ġoverwhel": 12983, + "ountain": 12984, + "Ġcoff": 12985, + "Ġbetrayed": 12986, + "Ġscandal": 12987, + "ĠMarion": 12988, + "Ġsurgeon": 12989, + "Ġmonument": 12990, + "atively": 12991, + "ĠTHERE": 12992, + "Ġextinct": 12993, + "Ġfighter": 12994, + "Ġdreamed": 12995, + "Ġsouthwest": 12996, + "ĠItalians": 12997, + "Ġpropos": 12998, + "ĠChem": 12999, + "Ġphotographer": 13000, + "Ġsecretly": 13001, + "Ġengineers": 13002, + "Ġpotato": 13003, + "Ġinfluential": 13004, + "Ġdiscussing": 13005, + "Ġplanted": 13006, + "ĠBrahm": 13007, + "Ġtendency": 13008, + "Ġirre": 13009, + "Ġlosses": 13010, + "Chuckles": 13011, + "Ġpuppy": 13012, + "Ġrecommended": 13013, + "ĠCambridge": 13014, + "Ġgathering": 13015, + "Ġinflation": 13016, + "ĠPuerto": 13017, + "Ġrugby": 13018, + "Ġfrankly": 13019, + "ĠBaseball": 13020, + "Ġpeasants": 13021, + "Ġvoyage": 13022, + "ĠEventually": 13023, + "ĠMumbai": 13024, + "ĠHampshire": 13025, + "Dr": 13026, + "Down": 13027, + "SON": 13028, + "dri": 13029, + "kers": 13030, + "tic": 13031, + "Ãł": 13032, + "ĪĴ": 13033, + "Ġwrap": 13034, + "repre": 13035, + "Ġsigh": 13036, + "oning": 13037, + "Ġgardens": 13038, + "omi": 13039, + "eton": 13040, + "ettle": 13041, + "Ġbegging": 13042, + "ĠWals": 13043, + "Ġrevers": 13044, + "ĠMult": 13045, + "ĠCause": 13046, + "storm": 13047, + "ĠBald": 13048, + "ĠNah": 13049, + "ĠOscar": 13050, + "ĠPas": 13051, + "ĠGener": 13052, + "ĠRat": 13053, + "ĠFun": 13054, + "ulu": 13055, + "abama": 13056, + "ĠKind": 13057, + "agen": 13058, + "agraph": 13059, + "hika": 13060, + "Ġclo": 13061, + "Ġclue": 13062, + "Ġclause": 13063, + "Ġgrasp": 13064, + "plus": 13065, + "rug": 13066, + "Ġpole": 13067, + "ĠChun": 13068, + "ĠAlong": 13069, + "Ġconsisted": 13070, + "Ġlighter": 13071, + "Ġlightning": 13072, + "Ġdrawer": 13073, + "Ġ77": 13074, + "Ġcouch": 13075, + "ĠHarold": 13076, + "Ġterrific": 13077, + "Ġengage": 13078, + "Ġruins": 13079, + "Ġexceptions": 13080, + "Ġ1923": 13081, + "Ġfeaturing": 13082, + "Station": 13083, + "Ġdresses": 13084, + "ĠBelieve": 13085, + "Ġsurviving": 13086, + "ĠMalcolm": 13087, + "Ġdigging": 13088, + "ĠRailroad": 13089, + "ès": 13090, + "Ġautomatically": 13091, + "Ġmurders": 13092, + "ĠHungary": 13093, + "Ġbatteries": 13094, + "Ġmolecules": 13095, + "Ġloyalty": 13096, + "ĠBirmingham": 13097, + "Ġevidently": 13098, + "Ġsearched": 13099, + "ĠGentlemen": 13100, + "Ġoverseas": 13101, + "Ġguidance": 13102, + "reprene": 13103, + ":\"": 13104, + "CA": 13105, + "Cha": 13106, + "Fran": 13107, + "Que": 13108, + "hou": 13109, + "lon": 13110, + "maid": 13111, + "uously": 13112, + "Ġze": 13113, + "isons": 13114, + "Ġbisc": 13115, + "Ġfoul": 13116, + "Ġles": 13117, + "Ġlane": 13118, + "Ġnail": 13119, + "Ġheels": 13120, + "ĠSaw": 13121, + "Ġbew": 13122, + "ĠWright": 13123, + "ĠHose": 13124, + "ĠHaj": 13125, + "ĠMaid": 13126, + "ĠBureau": 13127, + "ĠYang": 13128, + "Ġassemb": 13129, + "ĠPly": 13130, + "raine": 13131, + "ĠEva": 13132, + "ppen": 13133, + "pple": 13134, + "ĠKids": 13135, + "Ġqueer": 13136, + "Ġbrass": 13137, + "issance": 13138, + "Ġprejud": 13139, + "Ġflung": 13140, + "Ġsecured": 13141, + "Ġslipp": 13142, + "ĠDeal": 13143, + "Ġcheating": 13144, + "Ġharbour": 13145, + "Ġeleg": 13146, + "Ġenters": 13147, + "Ġ66": 13148, + "ĠSpart": 13149, + "Ġgraves": 13150, + "Ġplanes": 13151, + "Ġmedieval": 13152, + "Ġwinners": 13153, + "oviÄĩ": 13154, + "Ġpatron": 13155, + "ĠHarper": 13156, + "Ġestimate": 13157, + "Ġdevoted": 13158, + "Ġruling": 13159, + "Ġrecognise": 13160, + "Ġverse": 13161, + "Ġphysic": 13162, + "Ġcooling": 13163, + "offs": 13164, + "Ġdressing": 13165, + "ĠFinland": 13166, + "ĠWHO": 13167, + "Ġsymbols": 13168, + "ÃŃa": 13169, + "Ġcomposers": 13170, + "Ġboundaries": 13171, + "Ġchapel": 13172, + "Ġdiamonds": 13173, + "Ġlaboratory": 13174, + "Ġvirtue": 13175, + "Ġpreparing": 13176, + "Ġborrowed": 13177, + "Ġjewel": 13178, + "ĠBloody": 13179, + "LAUGHS": 13180, + "ĠFelix": 13181, + "ĠAuthority": 13182, + "Ġhelicopter": 13183, + "ĠErnest": 13184, + "ĠMacedonia": 13185, + "Ġhedge": 13186, + "ĠIsaac": 13187, + "58": 13188, + "Have": 13189, + "bin": 13190, + "bul": 13191, + "ere": 13192, + "last": 13193, + "var": 13194, + "Ġtel": 13195, + "Ġsunk": 13196, + "erals": 13197, + "Ġbats": 13198, + "Ġmand": 13199, + "Ġfist": 13200, + "Ġfran": 13201, + "anim": 13202, + "Ġpian": 13203, + "Ġpadd": 13204, + "Ġofthe": 13205, + "arter": 13206, + "Ġln": 13207, + "aland": 13208, + "ĠAway": 13209, + "ĠSaf": 13210, + "ĠSciences": 13211, + "Ġthomas": 13212, + "Ġwasting": 13213, + "ĠHum": 13214, + "ĠMis": 13215, + "ĠBright": 13216, + "ĠNarr": 13217, + "ĠDow": 13218, + "ĠDraft": 13219, + "terior": 13220, + "ĠLag": 13221, + "ĠJai": 13222, + "ights": 13223, + "sole": 13224, + "Ġovercome": 13225, + "Ġblade": 13226, + "wealth": 13227, + "Ġprecip": 13228, + "onson": 13229, + "orship": 13230, + "Ġshalt": 13231, + "phones": 13232, + "Ġharvest": 13233, + "Ġfinest": 13234, + "Ġ51": 13235, + "iba": 13236, + "grade": 13237, + "és": 13238, + "otton": 13239, + "Ġinvitation": 13240, + "Ġdistress": 13241, + "ĠJustin": 13242, + "Ġpopulations": 13243, + "reaming": 13244, + "Ġimpulse": 13245, + "Ġforehead": 13246, + "Ġrip": 13247, + "Ġprofound": 13248, + "Ġpaste": 13249, + "Ġelectrons": 13250, + "Ġdeparture": 13251, + "Ġcharacteristic": 13252, + "Ġprivacy": 13253, + "ĠCoach": 13254, + "Ġobjective": 13255, + "ĠMadison": 13256, + "Ġdependent": 13257, + "ĠPrivate": 13258, + "Ġ1904": 13259, + "Ġsenses": 13260, + "Ġbowed": 13261, + "ĠMarket": 13262, + "ĠÃĹ": 13263, + "Ġblend": 13264, + "Ġspreading": 13265, + "Ġreminds": 13266, + "ĠSquad": 13267, + "ĠConservative": 13268, + "Ġqualities": 13269, + "Ġghosts": 13270, + "Ġshadows": 13271, + "Ġconsistent": 13272, + "Ġconstruct": 13273, + "Phone": 13274, + "ĠJessica": 13275, + "Ġanchor": 13276, + "ĠLAUGHTER": 13277, + "ĠNicholas": 13278, + "Super": 13279, + "ĠFremantle": 13280, + "91": 13281, + "Pa": 13282, + "Rober": 13283, + "ais": 13284, + "eed": 13285, + "eight": 13286, + "oj": 13287, + "pot": 13288, + "pol": 13289, + "rast": 13290, + "yed": 13291, + "ν": 13292, + "Ġbol": 13293, + "Ġbail": 13294, + "Ġfog": 13295, + "oric": 13296, + "Ġpul": 13297, + "Ġhood": 13298, + "ĠAction": 13299, + "Ġbeam": 13300, + "ĠMall": 13301, + "ĠManu": 13302, + "Ġwhip": 13303, + "ĠPE": 13304, + "ĠPle": 13305, + "ĠLinda": 13306, + "unci": 13307, + "Ġrud": 13308, + "osy": 13309, + "abet": 13310, + "Ġplun": 13311, + "Ġsheets": 13312, + "ĠInside": 13313, + "Ġamid": 13314, + "ogen": 13315, + "Ġburial": 13316, + "ensed": 13317, + "Ġappet": 13318, + "itionally": 13319, + "Ġmarched": 13320, + "Ġchew": 13321, + "Ġregulations": 13322, + "Ġpreserve": 13323, + "Ġboast": 13324, + "Ġdrums": 13325, + "Ġcharm": 13326, + "Ġsimult": 13327, + "Ġsitcom": 13328, + "ĠOrd": 13329, + "Ġ81": 13330, + "Ġ71": 13331, + "Ġparagraph": 13332, + "ovan": 13333, + "ĠTrump": 13334, + "Ġsquire": 13335, + "ĠHero": 13336, + "ĠShaw": 13337, + "Ġpublicly": 13338, + "ĠCapital": 13339, + "Ġcircles": 13340, + "END": 13341, + "Ġtestimony": 13342, + "Ġimagined": 13343, + "Ġanticip": 13344, + "Ġcorners": 13345, + "Ġmarketing": 13346, + "Ġobserve": 13347, + "ĠGreeks": 13348, + "Ġpermitted": 13349, + "Ġpersist": 13350, + "Ġtourists": 13351, + "Ġrobbery": 13352, + "ĠMetropolitan": 13353, + "Ġdancer": 13354, + "ĠRadha": 13355, + "white": 13356, + "Ġcommerce": 13357, + "Ġcontributions": 13358, + "market": 13359, + "Ġaltar": 13360, + "Ġlicence": 13361, + "Ġmotorcycle": 13362, + "Ġminority": 13363, + "EEP": 13364, + "Ġtraditionally": 13365, + "hearted": 13366, + "ĠVenice": 13367, + "Ġwealthy": 13368, + "Ġembarrassed": 13369, + "ĠBulgar": 13370, + "ĠMichelle": 13371, + "ĠFriends": 13372, + "Ġeternal": 13373, + "Ġbronze": 13374, + "Ġrelieved": 13375, + "ĠBundes": 13376, + "ĠPlymouth": 13377, + "96": 13378, + "==": 13379, + "Bob": 13380, + "aver": 13381, + "may": 13382, + "rics": 13383, + "sal": 13384, + "want": 13385, + "zo": 13386, + "Ġtire": 13387, + "Ġtatt": 13388, + "Ġmaj": 13389, + "Ġdent": 13390, + "Ġdensity": 13391, + "encing": 13392, + "Ġtore": 13393, + "Ġtobac": 13394, + "ĠTW": 13395, + "ĠTamp": 13396, + "Ġheir": 13397, + "ĠWP": 13398, + "ĠWANT": 13399, + "Ġreef": 13400, + "ĠMAR": 13401, + "ĠBL": 13402, + "ĠBret": 13403, + "ĠDiana": 13404, + "ĠOR": 13405, + "ĠPy": 13406, + "ĠPit": 13407, + "ĠKir": 13408, + "ĠStaff": 13409, + "Ġpean": 13410, + "ĠOhh": 13411, + "Ġcompens": 13412, + "Ġscoring": 13413, + "gina": 13414, + "ĠBeh": 13415, + "ĠRebecca": 13416, + "ét": 13417, + "Ġelector": 13418, + "INK": 13419, + "Ġdrowned": 13420, + "Ġglanced": 13421, + "Ġswore": 13422, + "Ġchains": 13423, + "Ġchased": 13424, + "ĠLeban": 13425, + "meal": 13426, + "Ġcollapse": 13427, + "Ġdrain": 13428, + "Ġhumili": 13429, + "Ġexpense": 13430, + "Ġlawyers": 13431, + "ervoir": 13432, + "Ġsweep": 13433, + "covery": 13434, + "Ġprocessing": 13435, + "ĠGreater": 13436, + "Ġbiological": 13437, + "Ġkicking": 13438, + "Ġcomplaint": 13439, + "OSE": 13440, + "Ġscrub": 13441, + "ĠPlayStation": 13442, + "Ġmanufacturing": 13443, + "ĠBreak": 13444, + "ĠSHE": 13445, + "Ġcalculated": 13446, + "Ġultimate": 13447, + "ĠBrazilian": 13448, + "Black": 13449, + "Ġsympat": 13450, + "Ġmosque": 13451, + "ĠChandler": 13452, + "Ġgeometry": 13453, + "Ġdisgrace": 13454, + "isdiction": 13455, + "ĠBasketball": 13456, + "ĠEnvironment": 13457, + "77": 13458, + "Mon": 13459, + "SI": 13460, + "good": 13461, + "mind": 13462, + "tles": 13463, + "Ġsighed": 13464, + "atics": 13465, + "ĠTroll": 13466, + "Ġhind": 13467, + "Ġhabits": 13468, + "ĠSE": 13469, + "ĠSac": 13470, + "ĠSleep": 13471, + "verted": 13472, + "aders": 13473, + "Ġascend": 13474, + "ĠGate": 13475, + "ĠRaw": 13476, + "ĠRena": 13477, + "uno": 13478, + "unty": 13479, + "Ġsuits": 13480, + "Ġexhibit": 13481, + "Ġ1915": 13482, + "Ġblond": 13483, + "ruct": 13484, + "Ġflip": 13485, + "Ġresidence": 13486, + "Ġshapes": 13487, + "ĠAlabama": 13488, + "cese": 13489, + "Ġnamely": 13490, + "Ġforming": 13491, + "azines": 13492, + "Ġlists": 13493, + "Ġgrapes": 13494, + "Ġexposure": 13495, + "Ġcontinuing": 13496, + "Ġhates": 13497, + "Ġdealer": 13498, + "ĠWorks": 13499, + "umbo": 13500, + "ĠCommunic": 13501, + "Ġcamps": 13502, + "Ġtreating": 13503, + "Ġradical": 13504, + "Ġcollections": 13505, + "ĠSmart": 13506, + "ĠJere": 13507, + "regular": 13508, + "Ġ1922": 13509, + "Ġtraveled": 13510, + "Ġmedication": 13511, + "Ġexamined": 13512, + "Ġaccessible": 13513, + "IDE": 13514, + "Ġtexts": 13515, + "Ġfrost": 13516, + "Ġcycl": 13517, + "Ġimprovement": 13518, + "Ġarrangements": 13519, + "ĠHorse": 13520, + "Ġseverely": 13521, + "ĠBroadcast": 13522, + "ĠCommissioner": 13523, + "Ġconsequence": 13524, + "Ġoccasional": 13525, + "ĠGibbs": 13526, + "Ġpronounced": 13527, + "Ġadjacent": 13528, + "Ġnarrative": 13529, + "Ġfascinating": 13530, + "Ġinterfere": 13531, + "Ġdatab": 13532, + "Ġsatellite": 13533, + "Ġcriteria": 13534, + "93": 13535, + "Hello": 13536, + "__": 13537, + "card": 13538, + "iper": 13539, + "iji": 13540, + "khar": 13541, + "mie": 13542, + "person": 13543, + "rice": 13544, + "ãģ": 13545, + "Ġoat": 13546, + "Ġfu": 13547, + "lla": 13548, + "Ġpoured": 13549, + "Ġyummy": 13550, + "Ġinaug": 13551, + "icular": 13552, + "Ġhither": 13553, + "othe": 13554, + "ĠSeth": 13555, + "ĠSlo": 13556, + "ĠHannah": 13557, + "amo": 13558, + "amoto": 13559, + "ĠMeth": 13560, + "stop": 13561, + "Ġmeals": 13562, + "ĠDol": 13563, + "Ġwhore": 13564, + "ĠOm": 13565, + "ĠPick": 13566, + "ĠLocal": 13567, + "ophy": 13568, + "ĠFried": 13569, + "Ġsoccer": 13570, + "Ġworries": 13571, + "Ġvest": 13572, + "Ġ1912": 13573, + "Ġthemes": 13574, + "Ġarguing": 13575, + "Ġclan": 13576, + "acts": 13577, + "Ġquad": 13578, + "onda": 13579, + "ĠVance": 13580, + "orns": 13581, + "adeh": 13582, + "Ġmoist": 13583, + "Ġapprent": 13584, + "Ġscales": 13585, + "ocity": 13586, + "Ġcrashed": 13587, + "ĠForgive": 13588, + "Ġsubdiv": 13589, + "Ġinstruction": 13590, + "Ġ88": 13591, + "Ġdefinite": 13592, + "Ġhonourable": 13593, + "ĠSeeing": 13594, + "uka": 13595, + "Ġ1909": 13596, + "ĠReserve": 13597, + "Ġheroes": 13598, + "Ġmultiply": 13599, + "Ġdefended": 13600, + "Ġdefendant": 13601, + "ĠEllis": 13602, + "ĠGOOD": 13603, + "Ġglobe": 13604, + "Ġrescued": 13605, + "Ġneighbourhood": 13606, + "Ġdismissed": 13607, + "Ġincreasingly": 13608, + "Ġinstrumental": 13609, + "Ġdelayed": 13610, + "ĠSuppose": 13611, + "Ġcolleague": 13612, + "Ġsync": 13613, + "Ġobliged": 13614, + "ĠDrive": 13615, + "Ġprivilege": 13616, + "Billboard": 13617, + "ĠGiralda": 13618, + "Ġtobacco": 13619, + "ĠJeremy": 13620, + ",.": 13621, + "04": 13622, + "DO": 13623, + "SN": 13624, + "Tell": 13625, + "rep": 13626, + "eros": 13627, + "ĠIke": 13628, + "inge": 13629, + "Ġdual": 13630, + "Ġpulse": 13631, + "Ġpyram": 13632, + "Ġlun": 13633, + "Ġhaw": 13634, + "ĠSri": 13635, + "Ġwasted": 13636, + "aco": 13637, + "ĠHm": 13638, + "ĠMull": 13639, + "ĠMason": 13640, + "ĠMister": 13641, + "ĠCatch": 13642, + "ĠBuc": 13643, + "Ġstalk": 13644, + "ĠNy": 13645, + "ĠDong": 13646, + "rawn": 13647, + "ĠJUST": 13648, + "Ġorn": 13649, + "Ġrational": 13650, + "Ġcongreg": 13651, + "Ġoutfit": 13652, + "Ġexport": 13653, + "Ġvom": 13654, + "Ġoffence": 13655, + "neg": 13656, + "Ġamend": 13657, + "Ġbru": 13658, + "Ġflames": 13659, + "Ġserver": 13660, + "Ġchannels": 13661, + "ĠReview": 13662, + "ĠDerek": 13663, + "Ġ58": 13664, + "ĠâϬ": 13665, + "Ġsubway": 13666, + "ĠWhoever": 13667, + "ĠCommer": 13668, + "Ġrestore": 13669, + "Ġreaders": 13670, + "Ġsigning": 13671, + "inaudible": 13672, + "atti": 13673, + "Ġcolored": 13674, + "Ġreflected": 13675, + "Ġcurrency": 13676, + "ONG": 13677, + "Ġguessed": 13678, + "ĠNeed": 13679, + "ĠJoey": 13680, + "ĠRomanian": 13681, + "Ġarrives": 13682, + "Ġenerg": 13683, + "Ġcloses": 13684, + "Ġaudio": 13685, + "Ġtemperatures": 13686, + "Ġurgent": 13687, + "Ġsignificance": 13688, + "Ġfirmly": 13689, + "Ġcomposition": 13690, + "Ġconviction": 13691, + "Ġfolded": 13692, + "ĠHeavy": 13693, + "Ġguitarist": 13694, + "ĠRaja": 13695, + "Ġadvertis": 13696, + "ĠThailand": 13697, + "ĠGlobal": 13698, + "Ġpursuit": 13699, + "course": 13700, + "Ġcrayons": 13701, + "Ġopponent": 13702, + "ĠExamples": 13703, + "ĠSophie": 13704, + "ĠHudson": 13705, + "Queen": 13706, + "Bar": 13707, + "King": 13708, + "Laughs": 13709, + "cap": 13710, + "fucker": 13711, + "giving": 13712, + "hog": 13713, + "somet": 13714, + "shire": 13715, + "Ġwilt": 13716, + "Ġcodes": 13717, + "Ġmu": 13718, + "Ġtoxic": 13719, + "Ġnails": 13720, + "etta": 13721, + "Ġhare": 13722, + "Ġhack": 13723, + "Ġhaste": 13724, + "usively": 13725, + "Ġrevel": 13726, + "ĠHob": 13727, + "ĠMik": 13728, + "riger": 13729, + "rod": 13730, + "Ġstout": 13731, + "Ġassembly": 13732, + "ĠNope": 13733, + "ĠDiet": 13734, + "ĠOv": 13735, + "Ġ\"'": 13736, + "ĠGas": 13737, + "ĠLot": 13738, + "ĠRis": 13739, + "ĠRangers": 13740, + "ĠFM": 13741, + "ppers": 13742, + "Ġalliance": 13743, + "Ġrack": 13744, + "Ġtwins": 13745, + "Ġlean": 13746, + "necess": 13747, + "izzy": 13748, + ".\"--_": 13749, + "Ġapparent": 13750, + "xton": 13751, + "Ġministers": 13752, + "Ġmarine": 13753, + "Ġcharts": 13754, + "ĠSpani": 13755, + "ierra": 13756, + "Ġopenly": 13757, + "Ġsignature": 13758, + "Ġprett": 13759, + "Ġpays": 13760, + "2013": 13761, + "shop": 13762, + "Ġtopics": 13763, + "Ġprotocol": 13764, + "Ġcorrupt": 13765, + "ĠEmil": 13766, + "Ġballet": 13767, + "Ġreporting": 13768, + "Ġsupports": 13769, + "Ġzinc": 13770, + "ĠPerkins": 13771, + "Ġlawn": 13772, + "Ġmisery": 13773, + "Ġsticking": 13774, + "ĠSteel": 13775, + "Ġsharply": 13776, + "ĠHelena": 13777, + "Ġsaddle": 13778, + "Ġexplaining": 13779, + "ĠSalz": 13780, + "minar": 13781, + "ĠFeel": 13782, + "Ġwitnesses": 13783, + "Ġexclusive": 13784, + "Ġscrewed": 13785, + "Ġmagnetic": 13786, + "Ġbacon": 13787, + "Ġfantasy": 13788, + "Ġtransformation": 13789, + "ĠGallery": 13790, + "Ġhorns": 13791, + "Ġwandering": 13792, + "Ġstabbed": 13793, + "ĠPeninsula": 13794, + "ĠAbdul": 13795, + "Ġchristmas": 13796, + "Ġannouncement": 13797, + "Ġmanifest": 13798, + "Ġabundant": 13799, + "Ġtrousers": 13800, + "02": 13801, + "BLE": 13802, + "Col": 13803, + "Em": 13804, + "Give": 13805, + "IO": 13806, + "apped": 13807, + "cH": 13808, + "cca": 13809, + "eches": 13810, + "hill": 13811, + "ipt": 13812, + "jam": 13813, + "rise": 13814, + "uum": 13815, + "uity": 13816, + "Ġbio": 13817, + "Ġborough": 13818, + "Ġcakes": 13819, + "Ġchampions": 13820, + "anche": 13821, + "lley": 13822, + "Ġpp": 13823, + "Ġpad": 13824, + "Ġlest": 13825, + "asi": 13826, + "ĠTit": 13827, + "ĠTak": 13828, + "Ġthither": 13829, + "Ġonwards": 13830, + "ĠMater": 13831, + "ĠCary": 13832, + "ĠBerm": 13833, + "Ġkit": 13834, + "Ġashes": 13835, + "ĠNina": 13836, + "ĠGarden": 13837, + "ulum": 13838, + "Ġjet": 13839, + "ĠEP": 13840, + "ĠEVER": 13841, + "estone": 13842, + "Ġ1910": 13843, + "ĠInit": 13844, + "ĠWeek": 13845, + "arer": 13846, + "ĠVlad": 13847, + "ĠWhose": 13848, + "Ġresolved": 13849, + "Ġremov": 13850, + "âĢĿ.": 13851, + "Ġrape": 13852, + "Ġendea": 13853, + "ĠBristol": 13854, + "ĠShin": 13855, + "Ġpretended": 13856, + "ĠOrthodox": 13857, + "Ġ78": 13858, + "Ġsentenced": 13859, + "Ġshortest": 13860, + "OND": 13861, + "Ġbarrier": 13862, + "Ġstarving": 13863, + "Ġmagazines": 13864, + "Ġdiaper": 13865, + "attering": 13866, + "imentary": 13867, + "Ġgraduation": 13868, + "ĠMartha": 13869, + "Ġblocked": 13870, + "ĠBurke": 13871, + "CHUCK": 13872, + "ĠBuzz": 13873, + "Ġcontracts": 13874, + "ĠCouldn": 13875, + "Ġimmort": 13876, + "ĠMaggie": 13877, + "ttes": 13878, + "minster": 13879, + "Ġdefending": 13880, + "writing": 13881, + "Ġpuppet": 13882, + "Ġplainly": 13883, + "Ġconsisting": 13884, + "ĠGerald": 13885, + "Ġventure": 13886, + "Ġsubsequent": 13887, + "ĠOttoman": 13888, + "Ġatomic": 13889, + "oppy": 13890, + "ĠArnold": 13891, + "Ġacknowled": 13892, + "Applause": 13893, + "Ġencounter": 13894, + "ĠChelsea": 13895, + "Ġunsuccess": 13896, + "Ġvampire": 13897, + "Ġcomprehens": 13898, + "Ġsocieties": 13899, + "ĠAboriginal": 13900, + "ĠCrawford": 13901, + "ĠHebrew": 13902, + "78": 13903, + "Har": 13904, + "Wait": 13905, + "cons": 13906, + "nell": 13907, + "oks": 13908, + "rater": 13909, + "Ġtherm": 13910, + "Ġwides": 13911, + "Ġba": 13912, + "Ġbrew": 13913, + "Ġfurious": 13914, + "Ġdum": 13915, + "eda": 13916, + "edom": 13917, + "Ġlime": 13918, + "ĠAub": 13919, + "ĠSport": 13920, + "ayed": 13921, + "ĠHOW": 13922, + "ĠBrew": 13923, + "ĠYvonne": 13924, + "outing": 13925, + "Ġmelt": 13926, + "ĠDur": 13927, + "ĠDest": 13928, + "ĠPearl": 13929, + "ĠEX": 13930, + "ĠEug": 13931, + "ĠKel": 13932, + "ĠKab": 13933, + "Ġ1916": 13934, + "Ġaggressive": 13935, + "Ġtrump": 13936, + "Ġleo": 13937, + "Ġroast": 13938, + "Ġbucket": 13939, + "ĠAlger": 13940, + "Ġcounts": 13941, + "Ġcrushed": 13942, + "Ġattach": 13943, + "restrial": 13944, + "ĠSean": 13945, + "Ġglorious": 13946, + "ĠSpencer": 13947, + "ĠAbbey": 13948, + "Ġconfession": 13949, + "ovich": 13950, + "archy": 13951, + "Ġsolved": 13952, + "Ġorganisms": 13953, + "Ġdamned": 13954, + "iences": 13955, + "ĠMcM": 13956, + "Ġfootballer": 13957, + "Ġcathedral": 13958, + "ĠHighway": 13959, + "Ġresponsibilities": 13960, + "Ġtravels": 13961, + "Ġemployee": 13962, + "ĠCricket": 13963, + "Ġpetrol": 13964, + "Ġattraction": 13965, + "ĠImagine": 13966, + "itarian": 13967, + "Ġcopyright": 13968, + "ĠObama": 13969, + "ĠSomers": 13970, + "Ġdemocratic": 13971, + "Ġgrip": 13972, + "ĠLeslie": 13973, + "Ġforbidden": 13974, + "Ġcomparison": 13975, + "Ġcrawl": 13976, + "Ġprecisely": 13977, + "ĠRoche": 13978, + "Ġstyles": 13979, + "Ġportrait": 13980, + "believable": 13981, + "Ap": 13982, + "BM": 13983, + "Dear": 13984, + "IRE": 13985, + "LO": 13986, + "Par": 13987, + "Please": 13988, + "hon": 13989, + "powder": 13990, + "ø": 13991, + "Ġtab": 13992, + "Ġwaking": 13993, + "Ġsor": 13994, + "Ġoak": 13995, + "Ġcatherine": 13996, + "Ġding": 13997, + "Ġdub": 13998, + "etus": 13999, + "uscript": 14000, + "Ġbean": 14001, + "ĠWiz": 14002, + "amation": 14003, + "ĠMing": 14004, + "ĠCode": 14005, + "riages": 14006, + "adt": 14007, + "ĠBach": 14008, + "Ġank": 14009, + "ĠNong": 14010, + "ĠDOWN": 14011, + "Ġwhatsoever": 14012, + "ĠEc": 14013, + "ĠEmer": 14014, + "Ġorche": 14015, + "Ġorgans": 14016, + "Ġdonkey": 14017, + "ĠKham": 14018, + "ĠInformation": 14019, + "mented": 14020, + "Ġleaning": 14021, + "Ġovernight": 14022, + "Ġimperial": 14023, + "Ġadequ": 14024, + "ccane": 14025, + "obe": 14026, + "hames": 14027, + "plex": 14028, + "Ġglow": 14029, + "Ġ68": 14030, + "Ġinterference": 14031, + "Ġfiled": 14032, + "Ġ91": 14033, + "ĠGetting": 14034, + "brid": 14035, + "Ġexperts": 14036, + "ĠFlore": 14037, + "Ġprofile": 14038, + "ĠNebraska": 14039, + "ĠDanish": 14040, + "amboo": 14041, + "Ġviewers": 14042, + "Ġdefeating": 14043, + "ĠGlass": 14044, + "Ġcivilian": 14045, + "Ġreducing": 14046, + "Ġemerged": 14047, + "Ġassociate": 14048, + "Ġremarks": 14049, + "Ġmeasuring": 14050, + "Ġmanufactured": 14051, + "Ġconcentrate": 14052, + "ĠMiranda": 14053, + "Ġphotographs": 14054, + "Ġbulk": 14055, + "ĠOperation": 14056, + "ĠMotor": 14057, + "Ġassassin": 14058, + "Ġcompassion": 14059, + "Ġthirsty": 14060, + "ĠMedicine": 14061, + "Ġgratitude": 14062, + "Ġworshi": 14063, + "Ġpresumably": 14064, + "ĠLennon": 14065, + "03": 14066, + "GN": 14067, + "MEN": 14068, + "ei": 14069, + "folk": 14070, + "iology": 14071, + "mia": 14072, + "mble": 14073, + "nia": 14074, + "Ġtails": 14075, + "Ġwires": 14076, + "Ġchampionships": 14077, + "anor": 14078, + "anch": 14079, + "esy": 14080, + "Ġpistol": 14081, + "icial": 14082, + "Ġhier": 14083, + "ĠSic": 14084, + "ente": 14085, + "imer": 14086, + "ĠHIM": 14087, + "ĠBess": 14088, + "Ġmead": 14089, + "ĠNOW": 14090, + "ĠOH": 14091, + "ĠOle": 14092, + "ĠPain": 14093, + "ĠGU": 14094, + "rave": 14095, + "Ġjar": 14096, + "Ġconvey": 14097, + "Ġshelf": 14098, + "astics": 14099, + "people": 14100, + "ĠKyle": 14101, + "Ġnowadays": 14102, + "ivan": 14103, + "Ġclerk": 14104, + "Ġoverhead": 14105, + "nered": 14106, + "Ġpartial": 14107, + "ffff": 14108, + "Ġbloom": 14109, + "Ġdeserted": 14110, + "Ġearning": 14111, + "Ġheadache": 14112, + "Ġentreprene": 14113, + "Ġpersonnel": 14114, + "Ġpassport": 14115, + "Ġbreeding": 14116, + "Ġtransaction": 14117, + "Ġsketch": 14118, + "Ġshallow": 14119, + "Ġreflection": 14120, + "ĠExcellent": 14121, + "Ġequipped": 14122, + "airo": 14123, + "Ġfootage": 14124, + "Ġhatred": 14125, + "Ġsolutions": 14126, + "Ġadvise": 14127, + "Ġhonored": 14128, + "Ġsummit": 14129, + "Ġmessed": 14130, + "ĠWasn": 14131, + "Ġfails": 14132, + "Ġmotive": 14133, + "Ġcultures": 14134, + "Ġphysician": 14135, + "ĠCoven": 14136, + "Ġvolumes": 14137, + "Ġinfluences": 14138, + "Ġparks": 14139, + "âĢİ?": 14140, + "ĠPortland": 14141, + "Ġfools": 14142, + "Ġcoastal": 14143, + "ĠSlow": 14144, + "Ġcontributed": 14145, + "Ġwhisper": 14146, + "Ġreminded": 14147, + "ĠInterest": 14148, + "Ġcuriosity": 14149, + "Ġbachel": 14150, + "Ġelementary": 14151, + "ĠHorace": 14152, + "Ġnurses": 14153, + "ĠTerrit": 14154, + "Ġdimensions": 14155, + "Ġcottage": 14156, + "ĠBuddh": 14157, + "Ġdragons": 14158, + "Ġinclined": 14159, + "Ġsupreme": 14160, + "Ġkidnapped": 14161, + "dinand": 14162, + "Ġmonastery": 14163, + "Ġsuspended": 14164, + "Ġangels": 14165, + "09": 14166, + "Ed": 14167, + "Some": 14168, + "iated": 14169, + "log": 14170, + "nard": 14171, + "pill": 14172, + "vas": 14173, + "Ġted": 14174, + "Ġmasters": 14175, + "Ġdug": 14176, + "Ġginger": 14177, + "ĠTend": 14178, + "Ġhob": 14179, + "ĠSide": 14180, + "ĠSang": 14181, + "ĠSkin": 14182, + "ĠCad": 14183, + "stones": 14184, + "ĠBol": 14185, + "ĠBain": 14186, + "ĠBear": 14187, + "ĠBless": 14188, + "Ġ-(": 14189, + "ĠNin": 14190, + "ĠNav": 14191, + "ĠNBC": 14192, + "ifting": 14193, + "ĠGON": 14194, + "Ġliar": 14195, + "ĠFoon": 14196, + "Ġdee": 14197, + "istant": 14198, + "Ġorbit": 14199, + "Ġconj": 14200, + "osom": 14201, + "igious": 14202, + "abe": 14203, + "Ġlikewise": 14204, + "arded": 14205, + "Ġwholly": 14206, + "Ġintim": 14207, + "Ġarray": 14208, + "Ġarrog": 14209, + "Ġenhan": 14210, + "angular": 14211, + "ĠMarian": 14212, + "Ġaccum": 14213, + "Ġpresidency": 14214, + "lier": 14215, + "Ġmatt": 14216, + "Ġ800": 14217, + "ĠCarm": 14218, + "Ġ96": 14219, + "Ġ97": 14220, + "Ġmodified": 14221, + "Ġweekly": 14222, + "Ġfreeze": 14223, + "ĠWithin": 14224, + "ĠPeru": 14225, + "Ġarriving": 14226, + "ĠJulian": 14227, + "Ġyelling": 14228, + "Ġhistorians": 14229, + "Ġdeclare": 14230, + "üh": 14231, + "Ġbiology": 14232, + "ĠKenta": 14233, + "minute": 14234, + "Ġescort": 14235, + "Ġducks": 14236, + "Ġpilgrim": 14237, + "ĠColumbus": 14238, + "Ġliquor": 14239, + "Ġdetailed": 14240, + "Ġshells": 14241, + "Ġframework": 14242, + "Ġmathematical": 14243, + "ĠEconomics": 14244, + "Ġfarewell": 14245, + "ĠLogan": 14246, + "ĠRussell": 14247, + "Ġcancelled": 14248, + "Ġqueue": 14249, + "Ġceremonies": 14250, + "Ġtherapy": 14251, + "SIGHS": 14252, + "list": 14253, + "Ġwider": 14254, + "Ġcavalry": 14255, + "Ġyer": 14256, + "Ġgor": 14257, + "ĠTab": 14258, + "ĠTIM": 14259, + "Ġhorm": 14260, + "Ġhem": 14261, + "Ġhex": 14262, + "ĠWELL": 14263, + "ĠHamm": 14264, + "ĠMunicip": 14265, + "ĠPrest": 14266, + "ĠLore": 14267, + "ĠList": 14268, + "ĠLiving": 14269, + "ĠLanc": 14270, + "Ġjelly": 14271, + "ĠEllen": 14272, + "Ġdeeds": 14273, + "iels": 14274, + "âĢľ": 14275, + "Ġproven": 14276, + "Ġvap": 14277, + "ĠStri": 14278, + "ĠStrange": 14279, + "plant": 14280, + "avid": 14281, + "ictions": 14282, + "Ġnevertheless": 14283, + "beat": 14284, + "Ġcrust": 14285, + "Ġchef": 14286, + "airy": 14287, + "ĠIndies": 14288, + "Ġemail": 14289, + "ĠScandin": 14290, + "Ġ72": 14291, + "Ġ73": 14292, + "Ġpossibilities": 14293, + "Ġequations": 14294, + "eyed": 14295, + "Ġfreezing": 14296, + "ORGE": 14297, + "Ġlayers": 14298, + "Ġreplacing": 14299, + "Ġnatives": 14300, + "Ġconnections": 14301, + "Ġhyper": 14302, + "Ġhosts": 14303, + "Ġclosest": 14304, + "Ġauton": 14305, + "Ġauthent": 14306, + "Ġ1902": 14307, + "ĠPalm": 14308, + "Ġpaths": 14309, + "ourage": 14310, + "Ġpetition": 14311, + "strong": 14312, + "Ġcruise": 14313, + "flies": 14314, + "Ġcorrectly": 14315, + "ĠBagh": 14316, + "Ġfrag": 14317, + "Ġincredibly": 14318, + "Ġbeasts": 14319, + "Ġinfections": 14320, + "Ġpublishing": 14321, + "ĠJosé": 14322, + "Ġcoordinates": 14323, + "ĠCommonwealth": 14324, + "Ġsavage": 14325, + "Ġclergy": 14326, + "ĠABOUT": 14327, + "ĠBengal": 14328, + "Ġrebellion": 14329, + "Ġbicycle": 14330, + "ĠHoseyn": 14331, + "06": 14332, + "72": 14333, + "900": 14334, + "IP": 14335, + "Japan": 14336, + "]:": 14337, + "aving": 14338, + "fol": 14339, + "mans": 14340, + "rades": 14341, + "tar": 14342, + "tail": 14343, + "Ġshat": 14344, + "Ġsciences": 14345, + "onies": 14346, + "Ġlan": 14347, + "Ġlined": 14348, + "Ġgown": 14349, + "Ġgoose": 14350, + "ĠTerm": 14351, + "Ġheating": 14352, + "ĠAgr": 14353, + "ĠAFC": 14354, + "ĠAaron": 14355, + "ĠWu": 14356, + "ĠHom": 14357, + "ĠHence": 14358, + "Ġstub": 14359, + "ĠNana": 14360, + "ĠDy": 14361, + "ĠDoub": 14362, + "ĠPie": 14363, + "ĠLoc": 14364, + "Ġknot": 14365, + "ĠFra": 14366, + "ĠHeming": 14367, + "Ġsober": 14368, + "Ġshh": 14369, + "essed": 14370, + "Ġrows": 14371, + "Ġheritage": 14372, + "respect": 14373, + "ĠSoft": 14374, + "Ġspill": 14375, + "Ġspider": 14376, + "Ġclam": 14377, + "arel": 14378, + "Ġamus": 14379, + "urned": 14380, + "Ġperf": 14381, + "Ġschem": 14382, + "Ġdeserved": 14383, + "Ġnightmare": 14384, + "ĠArchie": 14385, + "ĠArctic": 14386, + "Ġmonk": 14387, + "Ġinstalled": 14388, + "Ġfarming": 14389, + "Ġhumour": 14390, + "ĠPrim": 14391, + "Ġskip": 14392, + "Ġmoderate": 14393, + "Ġshorts": 14394, + "ĠEmerson": 14395, + "hyd": 14396, + "ĠMichel": 14397, + "ĠEdgar": 14398, + "ĠWestminster": 14399, + "Ġmischief": 14400, + "Ġcommands": 14401, + "Ġfears": 14402, + "Ġhostile": 14403, + "Ġboarding": 14404, + "Ġhunts": 14405, + "Ġknocking": 14406, + "ĠNevertheless": 14407, + "ĠNatalie": 14408, + "Ġprede": 14409, + "ĠArabic": 14410, + "Ġrenov": 14411, + "Ġtiming": 14412, + "Ġcomplications": 14413, + "ĠModel": 14414, + "Ġconquer": 14415, + "ĠVietnamese": 14416, + "Ġwandered": 14417, + "otype": 14418, + "ĠPromise": 14419, + "Ġutterly": 14420, + "GRUNTING": 14421, + "ĠYugoslavia": 14422, + "onymous": 14423, + "ĠJenna": 14424, + "Ġsteadily": 14425, + "ĠKurdish": 14426, + "Ġwarrior": 14427, + "Ġnigga": 14428, + "ĠDiamond": 14429, + "Ġcertificate": 14430, + "ĠAnswer": 14431, + "Ġpneumonia": 14432, + "ĠWalsh": 14433, + "ĠSalzburg": 14434, + "\":": 14435, + "01": 14436, + "52": 14437, + "Cor": 14438, + "Hi": 14439, + "Je": 14440, + "Jack": 14441, + "east": 14442, + "kets": 14443, + "pread": 14444, + "sl": 14445, + "would": 14446, + "wig": 14447, + "rection": 14448, + "erness": 14449, + "isle": 14450, + "isations": 14451, + "Ġchi": 14452, + "Ġlords": 14453, + "ĠTag": 14454, + "icity": 14455, + "ĠSS": 14456, + "ĠSCH": 14457, + "ĠSalem": 14458, + "Ġeut": 14459, + "ĠMitch": 14460, + "ĠMiles": 14461, + "Ġfork": 14462, + "stro": 14463, + "ĠBali": 14464, + "Ġster": 14465, + "Ġstall": 14466, + "Ġkettle": 14467, + "urst": 14468, + "ĠNit": 14469, + "ĠDID": 14470, + "illance": 14471, + "chy": 14472, + "church": 14473, + "ĠGR": 14474, + "ĠGosp": 14475, + "ĠGhost": 14476, + "ĠLav": 14477, + "ĠLamb": 14478, + "opes": 14479, + "ĠEyes": 14480, + "Ġcans": 14481, + "umed": 14482, + "Ġconsole": 14483, + "Ġplaint": 14484, + "inky": 14485, + "Ġvine": 14486, + "ĠStupid": 14487, + "oughs": 14488, + "Ġoffs": 14489, + "Ġquart": 14490, + "Ġenable": 14491, + "oyal": 14492, + "acht": 14493, + "Ġhappier": 14494, + "Ġchill": 14495, + "ĠBeck": 14496, + "Ġreluct": 14497, + "Ġelbow": 14498, + "Ġboards": 14499, + "Ġmetaph": 14500, + "oka": 14501, + "ĠLegend": 14502, + "shin": 14503, + "Ġsolvent": 14504, + "Ġawoke": 14505, + "Ġvisitor": 14506, + "Ġblacksmith": 14507, + "Ġtemples": 14508, + "ĠPerform": 14509, + "ĠSyl": 14510, + "Ġdinosaur": 14511, + "Ġdebuted": 14512, + "ĠPaulie": 14513, + "Ġeconomics": 14514, + "Ġautumn": 14515, + "Ġrainforest": 14516, + "ĠFinance": 14517, + "ĠTurks": 14518, + "ĠMajnun": 14519, + "Ġcowboy": 14520, + "ĠRocky": 14521, + "Ġheavens": 14522, + "ĠBelle": 14523, + "Ġdomain": 14524, + "ĠTyler": 14525, + "Ġterritories": 14526, + "books": 14527, + "Ġproceeded": 14528, + "ĠValent": 14529, + "Ġreinforce": 14530, + "Ġsamples": 14531, + "ĠFacebook": 14532, + "Ġeliminated": 14533, + "Ġswiftly": 14534, + "ĠVillage": 14535, + "Ġbrowser": 14536, + "Ġsqueeze": 14537, + "Ġcollapsed": 14538, + "Ġtweet": 14539, + "Ġgauge": 14540, + "ĠBundesliga": 14541, + "ĠHemingway": 14542, + ",[": 14543, + "-,": 14544, + "IES": 14545, + "Pr": 14546, + "iator": 14547, + "las": 14548, + "listed": 14549, + "mns": 14550, + "oving": 14551, + "oise": 14552, + "uated": 14553, + "Ġsaints": 14554, + "Ġcited": 14555, + "Ġdil": 14556, + "Ġtoe": 14557, + "Ġinward": 14558, + "ĠTaking": 14559, + "Ġheal": 14560, + "ĠSard": 14561, + "Ġretained": 14562, + "uto": 14563, + "lder": 14564, + "Ġwears": 14565, + "ĠCob": 14566, + "ĠChampions": 14567, + "ĠChamber": 14568, + "riers": 14569, + "stration": 14570, + "Ġdose": 14571, + "ĠGT": 14572, + "ĠGaga": 14573, + "ĠEaster": 14574, + "Ġsod": 14575, + "Ġshipping": 14576, + "ĠKor": 14577, + "Ġmanuscript": 14578, + "ousy": 14579, + "ĠIng": 14580, + "Ġenforce": 14581, + "Ġcoaching": 14582, + "Ġcompelled": 14583, + "Ġunple": 14584, + "Ġpoems": 14585, + "ĠChop": 14586, + "Ġcarb": 14587, + "ixed": 14588, + "ĠAlliance": 14589, + "ĠCanon": 14590, + "ĠCanal": 14591, + "Ġfarms": 14592, + "oko": 14593, + "Ġhardware": 14594, + "Ġ89": 14595, + "INGS": 14596, + "Ġ94": 14597, + "Ġrefriger": 14598, + "Ġcontinually": 14599, + "ikh": 14600, + "ĠPetty": 14601, + "Ġcommunist": 14602, + "Ġbehold": 14603, + "coat": 14604, + "ĠBarcel": 14605, + "Ġapproaches": 14606, + "Ġdepartments": 14607, + "Ġcompeting": 14608, + "ĠANY": 14609, + "Ġsensible": 14610, + "suit": 14611, + "Ġsettlements": 14612, + "Ġcomplaints": 14613, + "ĠMilitary": 14614, + "Ġconversations": 14615, + "OST": 14616, + "ĠHasan": 14617, + "ĠÎ¥": 14618, + "Ġcoalition": 14619, + "ĠEsther": 14620, + "Ġmortal": 14621, + "Phil": 14622, + "Ġfossils": 14623, + "ĠCameron": 14624, + "Ġinherited": 14625, + "Ġcoincidence": 14626, + "Ġdynamic": 14627, + "Ġluxury": 14628, + "ĠNCAA": 14629, + "ĠVenezuela": 14630, + "ĠSophia": 14631, + "Cap": 14632, + "Ge": 14633, + "GRO": 14634, + "bag": 14635, + "even": 14636, + "election": 14637, + "ih": 14638, + "iott": 14639, + "inery": 14640, + "Ġwiped": 14641, + "Ġsul": 14642, + "Ġsaint": 14643, + "erre": 14644, + "Ġpuff": 14645, + "Ġpengu": 14646, + "Ġlust": 14647, + "Ġlakes": 14648, + "asa": 14649, + "iche": 14650, + "icious": 14651, + "Ġhears": 14652, + "ĠWong": 14653, + "acular": 14654, + "ĠMou": 14655, + "ĠMut": 14656, + "ĠCR": 14657, + "ĠCreat": 14658, + "ĠCale": 14659, + "ĠCelt": 14660, + "ĠCOME": 14661, + "rolled": 14662, + "ĠBri": 14663, + "ĠYears": 14664, + "ĠNep": 14665, + "ĠDonna": 14666, + "ĠPowell": 14667, + "ĠGust": 14668, + "ĠRah": 14669, + "ources": 14670, + "qual": 14671, + "Ġsafer": 14672, + "Ġusage": 14673, + "ardo": 14674, + "ĠKum": 14675, + "ĠUl": 14676, + "Ġintu": 14677, + "arettes": 14678, + "Ġbackup": 14679, + "Ġunnecess": 14680, + "Ġamp": 14681, + "Ġprick": 14682, + "ĠWhenever": 14683, + "ĠAnnie": 14684, + "Ġhandful": 14685, + "Ġshaft": 14686, + "Ġspecially": 14687, + "ĠRead": 14688, + "Ġrealm": 14689, + "ĠShr": 14690, + "cessor": 14691, + "Ġchaos": 14692, + "Ġlightly": 14693, + "Ġsincere": 14694, + "Ġinterrog": 14695, + "Ġplanets": 14696, + "Ġ87": 14697, + "atsu": 14698, + "ĠExpl": 14699, + "Ġrecordings": 14700, + "Ġsnap": 14701, + "Ġsqueak": 14702, + "Ġcorpse": 14703, + "Ġcommunications": 14704, + "ĠNev": 14705, + "Ġbarr": 14706, + "Ġcostume": 14707, + "Ġillusion": 14708, + "lights": 14709, + "Ġviewed": 14710, + "Ġgrandpa": 14711, + "ĠKeith": 14712, + "Ġdirectors": 14713, + "Ġhymn": 14714, + "Ġsuggesting": 14715, + "screen": 14716, + "Ġrises": 14717, + "Ġ1908": 14718, + "ĠMoreover": 14719, + "Ġpsychological": 14720, + "Ġsacrific": 14721, + "Ġprints": 14722, + "Ġprinting": 14723, + "Ġmoonlight": 14724, + "ĠFreddy": 14725, + "ĠRomeo": 14726, + "Ġvoters": 14727, + "Donald": 14728, + "Ġencouraging": 14729, + "Ġowing": 14730, + "ĠSpeaking": 14731, + "ĠBatman": 14732, + "Ġneighbours": 14733, + "ĠWorkers": 14734, + "Ġtransformed": 14735, + "Ġdesperately": 14736, + "Ġtorped": 14737, + "Ġinquired": 14738, + "Ġwhales": 14739, + "Ġracial": 14740, + "ĠTestament": 14741, + "Ġsurrendered": 14742, + "Ġarrows": 14743, + "ĠGlobe": 14744, + "Ġresidential": 14745, + "ĠDublin": 14746, + "Ġresignation": 14747, + "Ġorient": 14748, + "Ġcentimeters": 14749, + "Ġdoctrine": 14750, + "Ġanthrop": 14751, + "Ġsophistic": 14752, + "Ġphenomenon": 14753, + "ĠGONNA": 14754, + "??": 14755, + "CO": 14756, + "En": 14757, + "GM": 14758, + "July": 14759, + "aire": 14760, + "cup": 14761, + "gage": 14762, + "iast": 14763, + "lishing": 14764, + "yla": 14765, + "including": 14766, + "itating": 14767, + "Ġdys": 14768, + "Ġdivers": 14769, + "Ġdimin": 14770, + "Ġink": 14771, + "arity": 14772, + "Ġnests": 14773, + "ĠAV": 14774, + "ĠSue": 14775, + "Ġreass": 14776, + "aca": 14777, + "ĠHaut": 14778, + "ĠMach": 14779, + "rium": 14780, + "ĠLost": 14781, + "Ġjolly": 14782, + "ĠEagle": 14783, + "ths": 14784, + "ĠJab": 14785, + "Ġrides": 14786, + "Ġpluck": 14787, + "Ġvib": 14788, + "Ġtramp": 14789, + "Ġunity": 14790, + "Ġblues": 14791, + "Ġflock": 14792, + "Ġresort": 14793, + "ĠIsle": 14794, + "cester": 14795, + "Ġspeeches": 14796, + "Ġcrimin": 14797, + "formed": 14798, + "Ġrelativity": 14799, + "Ġ1800": 14800, + "Ġsupporters": 14801, + "ĠArd": 14802, + "Ġsubtle": 14803, + "oker": 14804, + "Ġfraction": 14805, + "Ġsongwriter": 14806, + "Ġmonthly": 14807, + "Ġstere": 14808, + "Ġparticle": 14809, + "ĠAdvent": 14810, + "ĠHarbor": 14811, + "Ġvariation": 14812, + "ĠCommons": 14813, + "Ġtreason": 14814, + "Ġsunlight": 14815, + "Ġposter": 14816, + "Ġcompetitive": 14817, + "scap": 14818, + "ĠQuebec": 14819, + "Ġhopeless": 14820, + "hoibi": 14821, + "Ġclaiming": 14822, + "Ġquarrel": 14823, + "Ġtends": 14824, + "Ġdecline": 14825, + "Ġemployer": 14826, + "Äģr": 14827, + "Ġfortnight": 14828, + "Ġaddresses": 14829, + "ĠMercury": 14830, + "Ġsignificantly": 14831, + "Ġcustoms": 14832, + "ĠHyde": 14833, + "Ġboundary": 14834, + "Ġmechanics": 14835, + "Ġderiv": 14836, + "Ġbothering": 14837, + "Ġtransportation": 14838, + "ĠAttorney": 14839, + "ĠMustang": 14840, + "Ġcolonial": 14841, + "Ġdrafted": 14842, + "Ġathlete": 14843, + "TAIN": 14844, + "Ġreferences": 14845, + "Ġdeposit": 14846, + "ĠHistoric": 14847, + "Ġelderly": 14848, + "Ġabsorbed": 14849, + "Ġvolunteers": 14850, + "Ġadvocate": 14851, + "ĠGoddamn": 14852, + "Ġpremiered": 14853, + "Ġtrembling": 14854, + "Ġdestroying": 14855, + "Ġantibiotics": 14856, + "Ġtemporarily": 14857, + "ĠMaurice": 14858, + "Ġingredients": 14859, + "British": 14860, + "ĠURL": 14861, + "Ġproposals": 14862, + "ĠAgric": 14863, + "ĠBarcelona": 14864, + "700": 14865, + "DT": 14866, + "Dan": 14867, + "June": 14868, + "Pol": 14869, + "aud": 14870, + "bishop": 14871, + "ku": 14872, + "nings": 14873, + "tra": 14874, + "ÏĤ": 14875, + "Ġtense": 14876, + "Ġsings": 14877, + "onso": 14878, + "isan": 14879, + "Ġbun": 14880, + "Ġmall": 14881, + "Ġmoth": 14882, + "atu": 14883, + "Ġnavy": 14884, + "ĠTournament": 14885, + "ĠThames": 14886, + "Ġheck": 14887, + "user": 14888, + "iday": 14889, + "ĠHBO": 14890, + "ĠCult": 14891, + "selling": 14892, + "ĠDR": 14893, + "ĠDim": 14894, + "ĠPack": 14895, + "Ġsegment": 14896, + "Ġ\"\".": 14897, + "ĠGul": 14898, + "ĠLET": 14899, + "ĠRow": 14900, + "oline": 14901, + "Ġneur": 14902, + "ells": 14903, + "istocr": 14904, + "ieves": 14905, + "Ġwheat": 14906, + "Ġvag": 14907, + "ĠUH": 14908, + "Ġaggreg": 14909, + "Ġquery": 14910, + "Ġroses": 14911, + "uba": 14912, + "ressing": 14913, + "avil": 14914, + "Ġflank": 14915, + "Ġflashed": 14916, + "ĠChin": 14917, + "Ġcarn": 14918, + "Ġcarr": 14919, + "avender": 14920, + "ĠMarine": 14921, + "ĠDec": 14922, + "Ġcheat": 14923, + "Ġ56": 14924, + "Ġlighted": 14925, + "Ġfrust": 14926, + "ussia": 14927, + "ĠExcell": 14928, + "ĠExpress": 14929, + "Ġhurting": 14930, + "Ġprotests": 14931, + "Ġsolitary": 14932, + "Ġawfully": 14933, + "ĠTwitter": 14934, + "Ġprocession": 14935, + "Ġfreight": 14936, + "Ġcatal": 14937, + "Ġlimbs": 14938, + "arrison": 14939, + "Ġgenes": 14940, + "AST": 14941, + "Ġmasses": 14942, + "ĠBurg": 14943, + "ylon": 14944, + "Ġ1905": 14945, + "Ġprayed": 14946, + "ĠIranian": 14947, + "Ġ1869": 14948, + "Ġinvestigate": 14949, + "Ġconversion": 14950, + "Ġsatisfy": 14951, + "ĠFerdinand": 14952, + "ĠAnglo": 14953, + "Ġstruggled": 14954, + "Ġexclusively": 14955, + "Ġprogressive": 14956, + "osaurs": 14957, + "Ġunfair": 14958, + "Ġpassionate": 14959, + "Ġcommissioned": 14960, + "Ġintegrated": 14961, + "Ġrevolutionary": 14962, + "andalay": 14963, + "ĠTamil": 14964, + "ĠOttawa": 14965, + "ĠÄĢ": 14966, + "ĠReturn": 14967, + "Ġvelocity": 14968, + "Ġcondenser": 14969, + "ĠAxel": 14970, + "ĠSultan": 14971, + "Ġlandlord": 14972, + "Ġsyndrome": 14973, + "Ġlegitimate": 14974, + "ĠScientists": 14975, + "Ġvocals": 14976, + "ĠSallie": 14977, + "Ġremoval": 14978, + "Big": 14979, + "GAS": 14980, + "char": 14981, + "cule": 14982, + "di": 14983, + "eals": 14984, + "green": 14985, + "tree": 14986, + "why": 14987, + "Ġsizes": 14988, + "Ġfug": 14989, + "Ġpy": 14990, + "Ġlid": 14991, + "Ġniece": 14992, + "icus": 14993, + "Ġhee": 14994, + "Ġhealing": 14995, + "ĠSony": 14996, + "Ġrely": 14997, + "ĠCAP": 14998, + "style": 14999, + "ĠOber": 15000, + "ĠPRO": 15001, + "ĠPorter": 15002, + "ilies": 15003, + "ĠGol": 15004, + "ĠLay": 15005, + "anton": 15006, + "ĠRot": 15007, + "gered": 15008, + "ĠJur": 15009, + "ĠJava": 15010, + "inkle": 15011, + "berries": 15012, + "Ġintimate": 15013, + "ĠThunder": 15014, + "Ġspit": 15015, + "Ġspine": 15016, + "Ġspont": 15017, + "Ġleisure": 15018, + "Ġroar": 15019, + "Ġamazed": 15020, + "because": 15021, + "psy": 15022, + "Ġraid": 15023, + "Ġrelate": 15024, + "Ġindign": 15025, + "Ġindirect": 15026, + "ĠForces": 15027, + "Ġswung": 15028, + "Ġswords": 15029, + "nery": 15030, + "Ġdistances": 15031, + "ĠZoo": 15032, + "eredith": 15033, + "Ġ86": 15034, + "Ġgenerated": 15035, + "Ġcurse": 15036, + "ĠConcha": 15037, + "Ġprizes": 15038, + "Ġtrigger": 15039, + "ĠPlummer": 15040, + "umbers": 15041, + "convex": 15042, + "Ġrespir": 15043, + "Ġvillain": 15044, + "Ġconcerts": 15045, + "Ġposts": 15046, + "ienne": 15047, + "Ġfastest": 15048, + "Ġgrandson": 15049, + "Ġepic": 15050, + "Ġstrikes": 15051, + "ĠParker": 15052, + "Ġrisen": 15053, + "incinn": 15054, + "Ġindustries": 15055, + "Ġgarments": 15056, + "ĠÃī": 15057, + "Ġtaller": 15058, + "ĠPreviously": 15059, + "Ġroller": 15060, + "Ġchallenges": 15061, + "Ann": 15062, + "Ġtimber": 15063, + "ĠCathedral": 15064, + "Ġearnest": 15065, + "iasm": 15066, + "ĠTrevor": 15067, + "ĠAndrews": 15068, + "--------": 15069, + "ĠStarting": 15070, + "Ġvertical": 15071, + "ĠFemale": 15072, + "Ġignorance": 15073, + "Ġconspiracy": 15074, + "ĠJamaica": 15075, + "Ġpianist": 15076, + "Ġendeav": 15077, + "Ġwidespread": 15078, + "Ġbachelor": 15079, + "Raw": 15080, + "South": 15081, + "Woman": 15082, + "tor": 15083, + "have": 15084, + "Ġbade": 15085, + "Ġcri": 15086, + "Ġfres": 15087, + "ĠIan": 15088, + "ĠIike": 15089, + "orc": 15090, + "Ġdorm": 15091, + "Ġdense": 15092, + "Ġdominated": 15093, + "edo": 15094, + "Ġinex": 15095, + "ĠSud": 15096, + "ĠSalt": 15097, + "ĠSierra": 15098, + "ĠMeredith": 15099, + "rock": 15100, + "ĠBark": 15101, + "ĠBird": 15102, + "seud": 15103, + "Ġstating": 15104, + "ĠDunk": 15105, + "illes": 15106, + "ĠOft": 15107, + "ĠGann": 15108, + "ĠLucky": 15109, + "oping": 15110, + "ĠRac": 15111, + "ĠRoth": 15112, + "ĠFab": 15113, + "ĠFarm": 15114, + "ulator": 15115, + "Ġshiver": 15116, + "eland": 15117, + "Ġplague": 15118, + "ĠAndroid": 15119, + "inde": 15120, + "ĠStre": 15121, + "Ġtract": 15122, + "cials": 15123, + "Ġambit": 15124, + "Ġblah": 15125, + "Ġblamed": 15126, + "Ġguilt": 15127, + "oba": 15128, + "Ġsergeant": 15129, + "Ġscorn": 15130, + "Ġshaped": 15131, + "Ġcrush": 15132, + "ĠRein": 15133, + "ĠDex": 15134, + "Ġ53": 15135, + "ĠNote": 15136, + "ĠNotting": 15137, + "Ġmindfulness": 15138, + "Ġ82": 15139, + "Ġ84": 15140, + "Ġsorted": 15141, + "Ġhalfway": 15142, + "Ġforecast": 15143, + "Ġinfant": 15144, + "Ġ168": 15145, + "Ġabsent": 15146, + "ĠPavel": 15147, + "forced": 15148, + "Ġrespectable": 15149, + "Ġcomputing": 15150, + "Ġsusp": 15151, + "ĠSenior": 15152, + "ylum": 15153, + "Ġwaving": 15154, + "ETH": 15155, + "Ġfocusing": 15156, + "Ġaffects": 15157, + "ĠDelhi": 15158, + "ĠMikey": 15159, + "ĠRadhika": 15160, + "Ġcomplained": 15161, + "Ġcontribute": 15162, + "Art": 15163, + "Ġbombing": 15164, + "Ġalcoholic": 15165, + "Ġcontrad": 15166, + "pherd": 15167, + "Ġcalculate": 15168, + "Ġautomatic": 15169, + "Ġaimed": 15170, + "Ġwithdrew": 15171, + "Ġwhale": 15172, + "Ġconquered": 15173, + "ĠGregory": 15174, + "ĠCLARE": 15175, + "Ġkilometers": 15176, + "court": 15177, + "ĠMunich": 15178, + "Ġresearchers": 15179, + "Ġsubtract": 15180, + "Ġaffiliate": 15181, + "Ġhorizont": 15182, + "ĠWagner": 15183, + "Ġchimney": 15184, + "Ġyogurt": 15185, + "Ġhospitals": 15186, + "rastructure": 15187, + "Ġoatmeal": 15188, + "March": 15189, + "PR": 15190, + "hop": 15191, + "mill": 15192, + "offic": 15193, + "sized": 15194, + "tin": 15195, + "zig": 15196, + "ε": 15197, + "Ġts": 15198, + "Ġtad": 15199, + "Ġtens": 15200, + "erts": 15201, + "hay": 15202, + "Ġpand": 15203, + "Ġpussy": 15204, + "Ġyup": 15205, + "ĠToy": 15206, + "ĠTax": 15207, + "ĠSor": 15208, + "ĠSyn": 15209, + "ido": 15210, + "ĠWILL": 15211, + "ĠWOMAN": 15212, + "Ġwept": 15213, + "ĠMaking": 15214, + "ĠDoll": 15215, + "ĠDisc": 15216, + "ĠDodge": 15217, + "ĠLen": 15218, + "ĠLess": 15219, + "anth": 15220, + "ĠFA": 15221, + "ĠHend": 15222, + "Ġjaw": 15223, + "ourning": 15224, + "Ġsoy": 15225, + "Ġaltered": 15226, + "Ġray": 15227, + "igo": 15228, + "Ġoutstanding": 15229, + "Ġplug": 15230, + "resident": 15231, + "odka": 15232, + "akened": 15233, + "ĠSold": 15234, + "Ġtrim": 15235, + "ickets": 15236, + "Ġunions": 15237, + "Ġwrist": 15238, + "Ġshade": 15239, + "Ġsupplied": 15240, + "ĠAthens": 15241, + "Ġregulation": 15242, + "Ġ59": 15243, + "ologically": 15244, + "Ġreadily": 15245, + "Ġreporter": 15246, + "ĠTHINK": 15247, + "INGING": 15248, + "Ġ92": 15249, + "Ġmodest": 15250, + "Ġmissions": 15251, + "Ġsoundtrack": 15252, + "Ġspeakers": 15253, + "ĠPlant": 15254, + "OUND": 15255, + "Ġadvised": 15256, + "Ġadmiration": 15257, + "ĠReport": 15258, + "Ġmerc": 15259, + "Ġstripes": 15260, + "ITT": 15261, + "Ġhunter": 15262, + "Ġnecklace": 15263, + "Ġirregular": 15264, + "ĠSussex": 15265, + "ĠFreddie": 15266, + "Ġhomosexual": 15267, + "ÃŃn": 15268, + "Ġdemonstration": 15269, + "Ġflowing": 15270, + "ĠCareful": 15271, + "ĠMovement": 15272, + "Ġcousins": 15273, + "Ġtribut": 15274, + "ĠAriel": 15275, + "ĠRhine": 15276, + "Ġdescended": 15277, + "Ġcommitment": 15278, + "Ġinflamm": 15279, + "Ġsituated": 15280, + "ĠCroatia": 15281, + "Ġcollaboration": 15282, + "Ġfortunate": 15283, + "Ġbrigade": 15284, + "Ġdialogue": 15285, + "Ġperceived": 15286, + "Ġdioxide": 15287, + "ĠShirley": 15288, + "Ġsleeve": 15289, + "Ġmansion": 15290, + "ĠGEORGE": 15291, + "Ġacquaintance": 15292, + "Ġoffspring": 15293, + "%)": 15294, + "53": 15295, + "August": 15296, + "GO": 15297, + "aired": 15298, + "bear": 15299, + "bility": 15300, + "fold": 15301, + "jab": 15302, + "loss": 15303, + "sie": 15304, + "ÂĴ": 15305, + "ž": 15306, + "Ġtheoret": 15307, + "Ġsib": 15308, + "erd": 15309, + "hage": 15310, + "Ġbog": 15311, + "Ġbounce": 15312, + "Ġcel": 15313, + "Ġcoup": 15314, + "Ġfitting": 15315, + "Ġinvention": 15316, + "arin": 15317, + "Ġgut": 15318, + "ĠTA": 15319, + "ĠTate": 15320, + "ĠSire": 15321, + "ĠCOM": 15322, + "ĠCincinn": 15323, + "ĠBit": 15324, + "ĠBil": 15325, + "ĠBog": 15326, + "urring": 15327, + "ĠDA": 15328, + "ĠOst": 15329, + "ilian": 15330, + "ĠEu": 15331, + "Ġalarmed": 15332, + "Ġexclud": 15333, + "Ġexagger": 15334, + "Ġ1911": 15335, + "Ġarbit": 15336, + "iva": 15337, + "Ġleaned": 15338, + "Ġoverl": 15339, + "neys": 15340, + "Ġrod": 15341, + "ĠVick": 15342, + "ĠUniverse": 15343, + "ipher": 15344, + "Ġperil": 15345, + "bee": 15346, + "Ġsmugg": 15347, + "ĠBee": 15348, + "ĠSeems": 15349, + "Ġcheated": 15350, + "Ġformally": 15351, + "them": 15352, + "ĠLeader": 15353, + "Ġidle": 15354, + "Ġ101": 15355, + "Ġconfined": 15356, + "Ġtrips": 15357, + "Ġparrot": 15358, + "ĠPlot": 15359, + "Ġcoral": 15360, + "Ġanimation": 15361, + "ĠWarner": 15362, + "ficial": 15363, + "Ġchecks": 15364, + "Ġdevast": 15365, + "Ġconnects": 15366, + "ĠPhilos": 15367, + "Ġburns": 15368, + "Ġparked": 15369, + "ül": 15370, + "Ġexamination": 15371, + "ĠTravis": 15372, + "Ġmaintaining": 15373, + "ĠGarcia": 15374, + "Ġconsumers": 15375, + "Ġwrestler": 15376, + "Ġmathematic": 15377, + "Ġhydrogen": 15378, + "Ġinquiry": 15379, + "Ġdescendants": 15380, + "Ġrecommendation": 15381, + "rimination": 15382, + "Ġdepths": 15383, + "Ġastronaut": 15384, + "ĠInfantry": 15385, + "ĠBahrain": 15386, + "ĠOriginally": 15387, + "Ġfishermen": 15388, + "hangba": 15389, + "ĠHopkins": 15390, + "ĠCruz": 15391, + "Ġincorporated": 15392, + "Ġisolated": 15393, + "Ġdisturbed": 15394, + "Ġimprisoned": 15395, + "Ġdeliberately": 15396, + "Ġfestivals": 15397, + "Ġpicnic": 15398, + "Ġbeggar": 15399, + "Ġelaborate": 15400, + "Ġtwentieth": 15401, + "Robert": 15402, + "ĠTWO": 15403, + "CHUCKLES": 15404, + "Ġamusement": 15405, + "Ġschemes": 15406, + "51": 15407, + "54": 15408, + "59": 15409, + "Best": 15410, + "EX": 15411, + "QU": 15412, + "SW": 15413, + "San": 15414, + "UF": 15415, + "Was": 15416, + "cot": 15417, + "great": 15418, + "kan": 15419, + "overs": 15420, + "rays": 15421, + "wright": 15422, + "wife": 15423, + "worm": 15424, + "ĠØ": 15425, + "Ġtuck": 15426, + "Ġwage": 15427, + "Ġbald": 15428, + "Ġcyl": 15429, + "Ġdiversity": 15430, + "eded": 15431, + "ĠTib": 15432, + "ĠTams": 15433, + "icism": 15434, + "ĠAch": 15435, + "ĠSM": 15436, + "ĠMandalay": 15437, + "Ġstare": 15438, + "Ġsteak": 15439, + "ĠDod": 15440, + "ĠObs": 15441, + "olo": 15442, + "ĠEsp": 15443, + "Ġram": 15444, + "Ġramp": 15445, + "Ġrotten": 15446, + "oodle": 15447, + "Ġsaus": 15448, + "ĠThrow": 15449, + "Ġaristocr": 15450, + "Ġsphere": 15451, + "iang": 15452, + "Ġoverth": 15453, + "Ġbacked": 15454, + "Ġquiz": 15455, + "assy": 15456, + "Ġfees": 15457, + "ĠVel": 15458, + "auer": 15459, + "uckle": 15460, + "Ġresid": 15461, + "Ġresolve": 15462, + "Ġscold": 15463, + "ĠBeen": 15464, + "Ġmining": 15465, + "Ġrelating": 15466, + "Ġsurplus": 15467, + "Ġmonsters": 15468, + "Ġ61": 15469, + "Ġreads": 15470, + "Ġexpenses": 15471, + "Ġprobable": 15472, + "Ġtrials": 15473, + "Ġbasin": 15474, + "ĠTracy": 15475, + "Ġclassification": 15476, + "Ġstepping": 15477, + "Ġclearing": 15478, + "umbria": 15479, + "Ġhotels": 15480, + "Ġsuccessor": 15481, + "Ġelectro": 15482, + "ĠCentury": 15483, + "Ġtraded": 15484, + "Ġrespected": 15485, + "Ġgenre": 15486, + "Ġfixing": 15487, + "Ġcirculation": 15488, + "Ġnonconvex": 15489, + "Ġcivilians": 15490, + "Ġbananas": 15491, + "Ġ1901": 15492, + "Ġ1907": 15493, + "Ġmarrying": 15494, + "ĠTodd": 15495, + "backs": 15496, + "glass": 15497, + "ĠMontana": 15498, + "Ġassociations": 15499, + "ĠAtlantis": 15500, + "aptist": 15501, + "Ġlogical": 15502, + "ĠSomalia": 15503, + "Ġquantum": 15504, + "Ġtapes": 15505, + "ĠNaples": 15506, + "Ġrepeatedly": 15507, + "ĠAssyrians": 15508, + "Ġownership": 15509, + "Ġpersuaded": 15510, + "Ġsarah": 15511, + "Ġstrictly": 15512, + "Ġuncertainty": 15513, + "ĠUkraine": 15514, + "Ġconsecutive": 15515, + "Ġdiagram": 15516, + "ATTERING": 15517, + "Ġrabbits": 15518, + "Ġsophisticated": 15519, + "Gy": 15520, + "General": 15521, + "Pe": 15522, + "bot": 15523, + "fan": 15524, + "fty": 15525, + "faced": 15526, + "gus": 15527, + "girl": 15528, + "iard": 15529, + "jack": 15530, + "know": 15531, + "lane": 15532, + "table": 15533, + "à¸": 15534, + "Ġcav": 15535, + "Ġcham": 15536, + "Ġft": 15537, + "oral": 15538, + "Ġlaund": 15539, + "asis": 15540, + "asan": 15541, + "Ġgent": 15542, + "omers": 15543, + "ĠTill": 15544, + "ĠApart": 15545, + "ĠHerm": 15546, + "ĠMak": 15547, + "ĠCher": 15548, + "ĠYor": 15549, + "ĠNAS": 15550, + "Ġwhirl": 15551, + "ĠPH": 15552, + "opard": 15553, + "ĠRaid": 15554, + "ĠRoland": 15555, + "ĠFO": 15556, + "Ġneuro": 15557, + "Ġdeploy": 15558, + "ĠJed": 15559, + "Ġoutcome": 15560, + "ĠIns": 15561, + "Ġintestine": 15562, + "ĠButter": 15563, + "nae": 15564, + "ĠVe": 15565, + "Ġunlock": 15566, + "izen": 15567, + "Ġbloss": 15568, + "ateral": 15569, + "avi": 15570, + "Ġperception": 15571, + "Ġhomeless": 15572, + "ĠRegan": 15573, + "Ġmarble": 15574, + "Ġacute": 15575, + "Ġretail": 15576, + "Ġmeteor": 15577, + "Ġbushes": 15578, + "Ġcenters": 15579, + "Ġexpon": 15580, + "Ġ93": 15581, + "shore": 15582, + "ĠAhmad": 15583, + "Ġcorruption": 15584, + "ĠAdrian": 15585, + "ĠPresently": 15586, + "Ġquestioning": 15587, + "Ġorganize": 15588, + "levard": 15589, + "Ġpoorly": 15590, + "Ġsunset": 15591, + "Ġcompetitions": 15592, + "ĠRica": 15593, + "ĠHenri": 15594, + "adeshi": 15595, + "Ġbankrupt": 15596, + "ĠChange": 15597, + "Ġtastes": 15598, + "Ġmorality": 15599, + "Ġcrucial": 15600, + "Ġstorms": 15601, + "ĠArtie": 15602, + "ĠITV": 15603, + "Ġaccidentally": 15604, + "ĠLovely": 15605, + "ĠMilan": 15606, + "Ġbroadcasting": 15607, + "Ġstreams": 15608, + "ĠOwen": 15609, + "Ġfloat": 15610, + "profit": 15611, + "Ġnomi": 15612, + "Ġvirtually": 15613, + "Ġcheerful": 15614, + "ĠRichmond": 15615, + "Ġdiesel": 15616, + "ĠConstruction": 15617, + "Ġeagerly": 15618, + "Ġmentally": 15619, + "Ġbitterly": 15620, + "Ġinvolvement": 15621, + "Ġupdate": 15622, + "Ġemphasis": 15623, + "omeday": 15624, + "Ġpapa": 15625, + "Ġcrayon": 15626, + "ĠAlexandria": 15627, + "Ġinspector": 15628, + "Ġintersection": 15629, + "ĠMiyamoto": 15630, + "imensional": 15631, + "Ġbrutal": 15632, + "Ġauction": 15633, + "ĠPierre": 15634, + "Ġrhomb": 15635, + "olleyball": 15636, + "ĠPhoenix": 15637, + "Ġlantern": 15638, + "Ġunpleasant": 15639, + "ĠDunkirk": 15640, + "ĠNottingham": 15641, + "56": 15642, + "January": 15643, + "LM": 15644, + "Our": 15645, + "PEN": 15646, + "VEN": 15647, + "gam": 15648, + "mund": 15649, + "pin": 15650, + "rans": 15651, + "uana": 15652, + "wald": 15653, + "Ãī": 15654, + "Ġá": 15655, + "Ġtasks": 15656, + "rec": 15657, + "ref": 15658, + "Ġcher": 15659, + "Ġfuss": 15660, + "Ġfitted": 15661, + "omena": 15662, + "Ġnoun": 15663, + "ethe": 15664, + "ĠAirlines": 15665, + "ĠSie": 15666, + "ĠSOME": 15667, + "idal": 15668, + "lda": 15669, + "ĠHok": 15670, + "ĠCany": 15671, + "ĠChess": 15672, + "ĠCairo": 15673, + "stead": 15674, + "Ġstored": 15675, + "Ġants": 15676, + "Ġdod": 15677, + "ĠDays": 15678, + "terstock": 15679, + "ĠOil": 15680, + "ĠPey": 15681, + "Ġseals": 15682, + "ĠGoth": 15683, + "ĠFortun": 15684, + "unity": 15685, + "ĠEner": 15686, + "Ġrated": 15687, + "oso": 15688, + "ema": 15689, + "ackDown": 15690, + "resa": 15691, + "oding": 15692, + "ĠUsing": 15693, + "ĠInvest": 15694, + "Ġspotted": 15695, + "Ġoffense": 15696, + "ĠVII": 15697, + "Ġcompact": 15698, + "ubby": 15699, + "Ġcontamin": 15700, + "Ġprest": 15701, + "Ġresur": 15702, + "ĠAssoci": 15703, + "Ġendure": 15704, + "Ġtraitor": 15705, + "ĠSevent": 15706, + "Ġsubstitute": 15707, + "Ġadds": 15708, + "Ġ62": 15709, + "Ġcaut": 15710, + "ĠClar": 15711, + "ĠLex": 15712, + "Ġrestra": 15713, + "Ġinterface": 15714, + "Ġrepro": 15715, + "ĠProvin": 15716, + "Ġextrater": 15717, + "Ġ74": 15718, + "Ġprovisions": 15719, + "Ġriot": 15720, + "pending": 15721, + "Ġcorrected": 15722, + "ĠAdolf": 15723, + "ĠShad": 15724, + "Ġstrongest": 15725, + "Ġstrain": 15726, + "Ġprofessors": 15727, + "Ġdepict": 15728, + "ĠSwan": 15729, + "ĠSyriac": 15730, + "Ġpotatoes": 15731, + "Ġseparately": 15732, + "ĠRegiment": 15733, + "Ġsalad": 15734, + "Ġdeclined": 15735, + "ĠWilbur": 15736, + "Ġ1861": 15737, + "Ġchickens": 15738, + "ĠHonestly": 15739, + "ĠMelissa": 15740, + "Ġattending": 15741, + "Ġ1870": 15742, + "ĠStudies": 15743, + "Ġignored": 15744, + "Ġowl": 15745, + "Ġbastards": 15746, + "Ġscreamed": 15747, + "Ġcolonies": 15748, + "Ġdisappointment": 15749, + "Nothing": 15750, + "ĠDefinitely": 15751, + "Ġwitchcraft": 15752, + "ĠGaelic": 15753, + "Ġsufficiently": 15754, + "ĠBuddhist": 15755, + "Ġsanct": 15756, + "ĠLegisl": 15757, + "Ġscholarship": 15758, + "Ġjewels": 15759, + "ĠPotter": 15760, + "Ġdominant": 15761, + "Ġindicates": 15762, + "Ġkilometres": 15763, + "Ġinherit": 15764, + "ĠCambodia": 15765, + "Ġeyew": 15766, + "ĠOakland": 15767, + "Ġenthusiasm": 15768, + "Ġoffended": 15769, + "Ġsurveillance": 15770, + "Ġcondemned": 15771, + "Ġdisplays": 15772, + "children": 15773, + "Ġsubstantial": 15774, + "ĠRavens": 15775, + "elligence": 15776, + "Ġdatabase": 15777, + "Ġmattress": 15778, + "ĠCincinnati": 15779, + "ĠTamsui": 15780, + "##": 15781, + "DER": 15782, + "Pad": 15783, + "bling": 15784, + "eyes": 15785, + "forth": 15786, + "iy": 15787, + "mag": 15788, + "puts": 15789, + "rust": 15790, + "rates": 15791, + "yx": 15792, + "hend": 15793, + "herent": 15794, + "erie": 15795, + "half": 15796, + "Ġboun": 15797, + "Ġcunning": 15798, + "Ġfag": 15799, + "Ġdiverse": 15800, + "atisf": 15801, + "ĠTouch": 15802, + "Ġheated": 15803, + "acter": 15804, + "ĠHER": 15805, + "ĠMap": 15806, + "rived": 15807, + "ctica": 15808, + "ĠDrew": 15809, + "ĠDuc": 15810, + "ĠPink": 15811, + "ĠGhar": 15812, + "ĠLanguage": 15813, + "ĠFaw": 15814, + "ĠFOUR": 15815, + "eap": 15816, + "Ġ().": 15817, + "igible": 15818, + "Ġworm": 15819, + "Ġanyhow": 15820, + "ĠButt": 15821, + "soon": 15822, + "Ġclaws": 15823, + "ountered": 15824, + "ĠVIII": 15825, + "Ġcoc": 15826, + "Ġcompat": 15827, + "Ġcompute": 15828, + "Ġblog": 15829, + "cled": 15830, + "obi": 15831, + "Ġsmack": 15832, + "ĠMarx": 15833, + "Ġtrauma": 15834, + "Ġindul": 15835, + "Ġharass": 15836, + "Ġinval": 15837, + "Ġmetropolitan": 15838, + "ĠArena": 15839, + "ieties": 15840, + "Ġinterval": 15841, + "Ġfilthy": 15842, + "byter": 15843, + "Ġinfrastructure": 15844, + "Ġdevelopments": 15845, + "ĠTrad": 15846, + "Ġvalve": 15847, + "ĠMission": 15848, + "Ġexpectations": 15849, + "ĠEden": 15850, + "Ġreplacement": 15851, + "Ġpracticed": 15852, + "Ġrespects": 15853, + "ĠFrankie": 15854, + "AME": 15855, + "ĠBravo": 15856, + "Ġ1906": 15857, + "Ġattempting": 15858, + "Ġrobbed": 15859, + "EAH": 15860, + "ustomed": 15861, + "Ġessence": 15862, + "ĠPrep": 15863, + "ĠShutterstock": 15864, + "Ġcredits": 15865, + "ĠFreedom": 15866, + "Ġyawn": 15867, + "ĠHawkins": 15868, + "Ġmuttered": 15869, + "Ġtargets": 15870, + "Ġambition": 15871, + "Ġhastily": 15872, + "Ġassuming": 15873, + "keeping": 15874, + "Ġneighbouring": 15875, + "Ġtalented": 15876, + "Ġcigar": 15877, + "Ġcigarettes": 15878, + "Ġinitiative": 15879, + "Ġinfected": 15880, + "Ġparadox": 15881, + "Ġtossed": 15882, + "Ġpipes": 15883, + "Ġthriller": 15884, + "ĠBennet": 15885, + "ĠGabriel": 15886, + "Ġscenario": 15887, + "Ġwarehouse": 15888, + "Ġimpatient": 15889, + "Ġwretched": 15890, + "ĠCrystal": 15891, + "Ġcustody": 15892, + "ĠBroadcasting": 15893, + "minarayan": 15894, + "ĠCanyon": 15895, + "CR": 15896, + "Mal": 15897, + "Right": 15898, + "front": 15899, + "grand": 15900, + "iago": 15901, + "lore": 15902, + "pit": 15903, + "yon": 15904, + "zel": 15905, + "áº": 15906, + "Ġwig": 15907, + "rera": 15908, + "Ġsip": 15909, + "ishi": 15910, + "Ġom": 15911, + "Ġdamp": 15912, + "Ġpets": 15913, + "Ġlur": 15914, + "Ġgard": 15915, + "Ġgee": 15916, + "Ġnope": 15917, + "ĠTot": 15918, + "ĠActor": 15919, + "ĠSug": 15920, + "ĠSaints": 15921, + "aying": 15922, + "ĠWen": 15923, + "ldom": 15924, + "ims": 15925, + "acea": 15926, + "amas": 15927, + "ĠCic": 15928, + "ĠBrent": 15929, + "ĠBels": 15930, + "ĠYEAH": 15931, + "urred": 15932, + "cht": 15933, + "ĠLilly": 15934, + "anto": 15935, + "ĠRing": 15936, + "ĠRice": 15937, + "ĠRug": 15938, + "ĠEisen": 15939, + "Ġdeed": 15940, + "Ġdeity": 15941, + "ĠAndersen": 15942, + "Ġexca": 15943, + "Ġvivid": 15944, + "aparte": 15945, + "ĠWeather": 15946, + "Ġtheirs": 15947, + "Ġgrin": 15948, + "avian": 15949, + "Ġmeanwhile": 15950, + "ĠChp": 15951, + "Ġerrors": 15952, + "Ġrelics": 15953, + "Ġregime": 15954, + "liest": 15955, + "INA": 15956, + "Ġmotherfucker": 15957, + "ĠQaleh": 15958, + "Ġcaf": 15959, + "ĠAbu": 15960, + "Ġconfusing": 15961, + "idding": 15962, + "Ġsleeps": 15963, + "Ġhats": 15964, + "ĠManager": 15965, + "Ġquestioned": 15966, + "Ġdevotion": 15967, + "Ġlowered": 15968, + "working": 15969, + "Ġradar": 15970, + "loaded": 15971, + "Ġinvestors": 15972, + "zzar": 15973, + "Ġrisks": 15974, + "Ġnecessity": 15975, + "Ġvoluntary": 15976, + "Ġencountered": 15977, + "Ġpacking": 15978, + "ĠPalmer": 15979, + "Ġapology": 15980, + "Ġpsychology": 15981, + "Ġmicros": 15982, + "Ġlifestyle": 15983, + "ĠDaily": 15984, + "ĠMontreal": 15985, + "ót": 15986, + "Ġranking": 15987, + "ĠTurner": 15988, + "ĠMustafa": 15989, + "Ġpremises": 15990, + "Ġwebsites": 15991, + "Ġgreedy": 15992, + "ĠCirc": 15993, + "Ġunlikely": 15994, + "ĠElectric": 15995, + "Ġdeceased": 15996, + "ĠMorton": 15997, + "Ġabdomen": 15998, + "Ġdischarge": 15999 + }, + "merges": [ + "Ġ t", + "h e", + "Ġ a", + "i n", + "Ġt he", + "Ġ w", + "r e", + "o u", + "Ġ s", + "o n", + "e r", + "h a", + "n d", + "i s", + "Ġ o", + "Ġ b", + "i t", + "Ġ c", + "Ġ m", + "Ġ f", + "Ġ I", + "in g", + "o r", + "Ġ d", + "e d", + "a n", + "l l", + "e n", + "Ġt o", + "e s", + "Ġ p", + "Ġ y", + "Ġo f", + "Ġ in", + "a r", + "Ġa nd", + "a t", + "Ġ l", + "Ġy ou", + "ha t", + "a s", + "Ġ g", + "o m", + "Ġ n", + "Ġ T", + "i c", + "o w", + "v e", + "l e", + "Ġ h", + "o t", + "Ġ he", + "e t", + "a l", + "Ġ ha", + "' s", + "u s", + "Ġ A", + "Ġ S", + "Ġt h", + "Ġ it", + "a y", + "Ġt hat", + "Ġ is", + "Ġb e", + "Ġ on", + "i on", + "i d", + "Ġ e", + "Ġ W", + "g h", + "Ġ re", + "u t", + "l d", + "en t", + "i m", + "Ġw as", + "Ġw e", + "a c", + "Ġ H", + "Ġ Ċ", + "v er", + "a m", + "Ġ M", + "Ġ C", + "Ġf or", + ". .", + "l y", + "r i", + "ĠT he", + "s t", + "r o", + "i r", + "a d", + "Ġ B", + "Ġ -", + "k e", + "s e", + "Ġs t", + "gh t", + "Ġ Y", + "o o", + "' t", + "ou t", + "it h", + "Ġm e", + "Ġ k", + "Ġ u", + "a ll", + "Ġa n", + "Ġw ith", + "Ġd o", + "Ġa s", + "u r", + "Ġ N", + "c t", + "Ġ D", + "c e", + "Ġw h", + "he r", + "i ll", + "t er", + "i f", + "c h", + "Ġ O", + "Ġ P", + "Ġs e", + "Ġ \"", + "om e", + "Ġa re", + "Ġn ot", + "Ġ 1", + "i l", + "Ġha ve", + "Ġ G", + "Ġth is", + "Ġa t", + "ou ld", + "Ġ L", + "Ġg o", + "r a", + "an t", + "Ġl i", + "us t", + "at ion", + "o p", + "Ġk n", + "Ġ R", + "Ġ F", + "e a", + "ĠH e", + "g e", + "ĠY ou", + "u n", + "o l", + "Ġh is", + "ĠI t", + "u l", + "Ġn e", + "r om", + "Ġ j", + ".. .", + "o re", + "Ġkn ow", + "a in", + "a nd", + "Ġw hat", + "Ġ E", + "Ġd e", + "t h", + "Ġ J", + "Ġc an", + "Ġthe y", + "p p", + "ou r", + "Ġs o", + "Ġa l", + "e ll", + "u m", + "Ġa ll", + "es t", + "Ġa b", + "Ġm y", + "is t", + "er s", + "Ġyou r", + "i e", + "Ġb y", + "Ġs h", + "ar t", + "Ġf rom", + "Ġo r", + "Ġ 2", + "Ġw he", + "Ġ (", + "es s", + "Ġthe re", + "Ġ Ġ", + "Ġ r", + "Ġc on", + "n t", + "Ġon e", + "Ġb ut", + "o s", + "i g", + "Ġu p", + "ha n", + "all y", + "i ght", + "Ġc om", + "Ġs u", + "q u", + "Ġhe r", + "Ġha d", + "on e", + "' re", + "e m", + "Ġh im", + "r y", + "re d", + "e l", + "a b", + "Ġ out", + "Ġli ke", + "ac k", + "at e", + "oo d", + "Ġw or", + "Ġs a", + "ver y", + "oo k", + "Ġp l", + "ĠA nd", + "re s", + "am e", + "Ġ us", + "i ve", + "Ġs he", + "' m", + "Ġwe re", + "on g", + "â Ģ", + "a ke", + "in k", + "Ġp ro", + "Ġe x", + "c k", + "o d", + "Ġab out", + "Ġg et", + "Ġ v", + "as t", + "p e", + "or t", + "Ġd on", + "ou nd", + "ar d", + "in d", + "it y", + "Ġ K", + "Ġn o", + "ic h", + "Ġj ust", + "ri ght", + "Ġwh o", + "Ġ1 9", + "Ġhe re", + "Ġd id", + "i es", + "ĠW hat", + "Ġ U", + "e ar", + "ea h", + "a k", + "Ġthe m", + "b er", + "im e", + "Ġw ould", + "Ġm an", + "in e", + "Ġw ant", + "' ll", + "Ġ if", + "Ġ2 0", + "Ġw ill", + "Ġs ome", + "Ġth ink", + "u d", + "ou s", + "ĠI n", + "v en", + "o st", + "Ġin t", + "a p", + "e p", + "Ġan y", + "h ing", + "Ġ right", + "ow n", + "Ġwh ich", + "ic e", + "ĠN o", + "Ġg ot", + "m ent", + "id e", + "t her", + "Ġha s", + "it t", + "us e", + "Ġse e", + "ĠS t", + "ou gh", + "ĠW e", + "a g", + "Ġwhe n", + "ĠT h", + "ĠS o", + "Ġsa id", + "f e", + "c a", + "h i", + "Ġa g", + "Ġp e", + "Ġa r", + "Ġs ay", + "u re", + "Ġt w", + "Ġt ime", + "w ay", + "i a", + "Ġ '", + "ĠB ut", + "Ġn ow", + "i v", + "Ġbe en", + "Ġs p", + "Ġl ook", + "i an", + "Ġt r", + "ac e", + "ic k", + "op le", + "' ve", + "c i", + "Ġl o", + "Ġthe ir", + "Ġl e", + "s o", + "Ġc l", + "Ġthe n", + "Ġm ore", + "ĠO h", + "is h", + "re at", + "Ġgo ing", + "l f", + "a re", + "ĠY eah", + "n a", + "Ġo ther", + "it e", + "Ġpe ople", + "Ġc ould", + "re e", + "ĠT hat", + "o se", + "ar y", + "Ġof f", + "Ġo ver", + "Ġb ack", + "u e", + "ot her", + "ir st", + "a ge", + "ac t", + "Ġ qu", + "n e", + "Ġ very", + "Ġ ro", + "as s", + "ou nt", + "Ġth ing", + "b le", + "Ġg ood", + "on d", + "ca use", + "Ġa f", + "Ġf e", + "p t", + "Ġtw o", + "p er", + "Ġwor k", + "Ġto o", + "Ġh ow", + "Ġ V", + "an s", + "Ġ en", + "ĠThe y", + "er m", + "om et", + "Ġc o", + "Ġwhe re", + "Ġcom p", + "Ġf irst", + "ĠTh is", + "Ġint o", + "at ed", + "e nd", + "Ġt han", + "Ġp art", + "ĠW h", + "ion s", + "he d", + "Ġu n", + "as e", + "ĠS he", + "Ġd own", + "k ay", + "or d", + "0 0", + "or n", + "al k", + "Ġw ay", + "Ġc ome", + "u b", + "r an", + "ad e", + "i re", + "Ġal so", + "Ġa m", + "ĠW ell", + "Ġc all", + "o g", + "itt le", + "i z", + "Ġy ear", + "m er", + "ou ght", + "o y", + "Ġwe ll", + "ĠĠ ĠĠ", + "f f", + "Ġp r", + "Ġb l", + "Ġg r", + "at er", + "Ġ im", + "Ġ our", + "Ġb r", + "v ed", + "Ġag ain", + "p l", + "- -", + "nd er", + "Ġon ly", + "ac h", + "Ġa d", + "Ġe very", + "if e", + "Ġl ittle", + "n g", + "Ġl et", + "c c", + "Ġ âĢ", + "Ġs omet", + "ur n", + "Ġd ay", + "Ġm o", + "r u", + "Ġb et", + "ha r", + "w n", + "Ġpl ay", + "Ġbe cause", + "w e", + "v ing", + "Ġd is", + "Ġa ct", + "am p", + "Ġt e", + "Ġcon t", + "ĠW he", + "Ġne ed", + "en ce", + "res s", + "Ġg u", + "or m", + "u ch", + "Ġm ake", + "Ġt ake", + "Ġaf ter", + "Ġ i", + ". \"", + "t y", + "se lf", + "Ġsh ould", + "Ġ `", + "re n", + "or y", + "Ġre ally", + "f ore", + "Ġb u", + "ĠU n", + "ab le", + "ig n", + "c l", + "e w", + "ĠThe re", + "Ġp o", + "ar k", + "Ġw r", + "in t", + "th ing", + "Ġthe se", + "a v", + "Ġp ut", + "i p", + "is s", + "ic al", + "Ġ [", + "Ġp re", + "Ġt ell", + "Ġha pp", + "an g", + "en s", + "Ġdo es", + "ic t", + "Ġth r", + "at her", + "Ġf l", + "Ġu nder", + "Ġ20 1", + "Ġa pp", + "a u", + "ul t", + "Ġm uch", + "on na", + "Ġp er", + "u ck", + "Ġsomet hing", + "Ġme an", + "f t", + "Ġne w", + "at es", + "l and", + "i ed", + "ĠY es", + "oo l", + "o ll", + "Ġg onna", + "an ce", + "ĠC h", + "ĠH ow", + "i le", + "Ġre s", + "l es", + "on s", + "e ct", + "Ġm ay", + "Ġm ade", + "o b", + "' d", + "Ġs er", + "Ġl ong", + "Ġcom m", + "Ġs c", + "Ġ er", + "Ġe ven", + "ation s", + "Ġc h", + "od y", + "Ġ' '", + "u ll", + "Ġ` `", + "Ġt alk", + "ĠI f", + "Ġbe fore", + "at h", + "Ġne ver", + "Ġit s", + "b e", + "Ġ 3", + "it ed", + "Ġc ar", + "Ġs m", + "ad y", + "d u", + "Ġdid n", + "Ġre m", + "ver s", + "t ing", + "p ort", + "u ally", + "i ly", + "ve l", + "k s", + "t e", + "ou se", + "v es", + "Ġ ke", + "or s", + "ĠA n", + "p s", + "Ġha nd", + "i ous", + "it ion", + "Ġre c", + "Ġman y", + "ri ed", + "ĠM r", + "Ġd if", + "ĠD o", + "Ġg reat", + "o ld", + "a il", + "Ġyear s", + "t ain", + "Ġo kay", + "a w", + "Ġl ife", + "Ġthr ough", + "Ġm ost", + "w ard", + "Ġs ha", + "âĢ Ŀ", + "Ġhe l", + "ĠâĢ ľ", + "ĠI s", + "is e", + "i x", + "re nt", + "ĠA s", + "Ġc han", + "f ul", + "ĠA l", + "Ġ20 0", + "c es", + "a ve", + "Ġth ought", + "Ġst ill", + "Ġth ose", + "i gh", + "ct ion", + "Ġthing s", + "Ġse c", + "Ġbe l", + "ĠA ll", + "d ay", + "g in", + "Ġo ld", + "Ġ ra", + "Ġs pe", + "Ġbe c", + "o h", + "in ce", + "Ġth ree", + "Ġw ent", + "g et", + "i al", + "Ġa way", + "Ġst art", + "Ġas k", + "Ġc ame", + "Ġy eah", + "he s", + "e ver", + "Ġc ount", + "Ġf ound", + "Ġus ed", + "Ġd es", + "Ġcall ed", + "os s", + "one y", + "Ġl ast", + "Ġlo ve", + "o ck", + "Ġm ust", + "ot h", + "Ġsh ow", + "ent s", + "ĠB e", + "ing s", + "Ġf ind", + "Ġdo ing", + "y s", + "ter n", + "Ġh ome", + "o c", + "Ġc r", + "Ġo h", + "ri end", + "im es", + "Ġe nd", + "ĠN ow", + "\" .", + "Ġhel p", + "Ġbe ing", + "Ġat t", + "Ġg ive", + "x t", + "Ġo wn", + "g an", + "ĠM ar", + "c ed", + "le ase", + "en ed", + "ĠR e", + "Ġsu ch", + "Ġm in", + "at ch", + "mer ic", + "Ġwh y", + "ĠWh y", + "o ot", + "Ġe ar", + "Ġl ea", + "Ġn ame", + "al s", + "Ġc our", + "Ġf am", + "hi ld", + "Ġs ame", + "f orm", + "ir l", + "ĠWhe n", + "Ġn ight", + "u p", + "Ġk ind", + "way s", + "Ġdif fe", + "Ġl ot", + "Ġt ry", + "p h", + "Ġt ra", + "Ġw on", + "ĠB r", + "ch ool", + "Ġb ig", + "a it", + "ĠD on", + "m y", + "ĠO n", + "id ent", + "Ġre l", + "Ġc are", + "ĠA meric", + "y e", + "Ġo p", + "n ing", + "on t", + "ak ing", + "Ġ1 8", + "re st", + "Ġs l", + "ha m", + "g g", + "Ġw om", + "Ġwor ld", + "Ġc hild", + "Ġsu pp", + "out h", + "b ody", + "Ġm ight", + "Ġ 4", + "Ġfe el", + "Ġpl ace", + "i ld", + "ĠD e", + "Ġp ol", + "Ġhe ad", + "ers on", + "Ġn um", + "ĠA r", + "m an", + "as ed", + "ĠL et", + "d er", + "Ġk ill", + "ĠS e", + "Ġin d", + "Ġm ar", + "Ġt urn", + "em ber", + "ow er", + "Ġcon s", + "ation al", + "Ġus e", + "Ġf riend", + "at ing", + "ut e", + "T he", + "l ic", + "Ġar ound", + "an y", + "ur ing", + ") .", + "ĠC ome", + "Ġc he", + "ĠA t", + "a ir", + "Ġan other", + "Ġre g", + "Ġha r", + "Ġf in", + "\" ,", + "Ġp h", + "Ġs et", + "Ġa cc", + "ĠM y", + "Ġal ways", + "Ġa c", + "t s", + "ĠO kay", + "pe ct", + "m b", + ") ,", + "Ġsu re", + "ro s", + "v ent", + "we en", + "â Ļ", + "Ġp res", + "a h", + "Ġh ouse", + "Ġle ft", + "l i", + "Ġ 5", + "ĠT han", + "Ġs y", + "Ġm om", + "Ġfor m", + "ul ar", + "ĠF or", + "Ġm oney", + "Ġbet ter", + "cl ud", + "ic s", + "Ġany thing", + "ĠHe y", + "au ght", + "i b", + "g r", + "ĠUn ited", + "en er", + "à ©", + "ĠThe n", + "Ġke ep", + "Ġf our", + "Ġs ur", + "l ed", + "or ry", + "Ġbel ie", + "i ble", + "Ġre al", + "ot t", + "ĠN ot", + "oll ow", + "n ess", + "m ber", + "a z", + "Ġe l", + "Ġdiffe rent", + "Ġe le", + "Ġb o", + "Ġb it", + "Ġto ld", + "Ġb oy", + "Ġ âĻ", + "Ġd one", + "I N", + "ar s", + "u nd", + "ĠF ran", + "Ġm on", + "in s", + "Ġbet ween", + "ter s", + "u g", + "fe ct", + "Ġwor d", + "ĠN ew", + "Ġr un", + "ĠG od", + "Ġ |", + "ir d", + "p le", + "u al", + "Ġg irl", + ", \"", + "ci al", + "Ġ ent", + "ĠA f", + "Ġd r", + "Ġc ity", + "Ġsec ond", + "Ġu h", + "i o", + "Ġ erm", + "Ġknow n", + "Ġwh ile", + "Ġpo int", + "Ġg l", + "Ġe ver", + "Ġs chool", + "Ġp erson", + "ĠC an", + "a le", + "ĠâĻ ª", + "Ġin s", + "is hed", + "as on", + "Ġre t", + "or th", + "Ġy es", + "Ġm at", + "ĠM ay", + "Ġtoo k", + "r ic", + "j ect", + "Ġs w", + "am es", + "Ġ19 9", + "Ġsu b", + "Ġu nt", + "Ġde c", + "Ġc le", + "Ġin v", + "Ġc har", + "ĠSt ates", + "ak es", + "Ġm en", + "Ġin clud", + "o ve", + "Ġm et", + "n er", + "Ġst ud", + "Ġw ar", + "Ġw ater", + "âĢ Ļ", + "Ġb ook", + "re w", + "r ow", + "ĠE ng", + "Ġd ist", + "a j", + "it ies", + "ĠS h", + "Ġst op", + "Ġin st", + "ce pt", + "Ġo b", + "Ġm us", + "at ive", + "Ġf ollow", + "ol og", + "or k", + "Ġne xt", + "Ġb us", + "ĠG o", + "ĠJ ust", + "Ġcour se", + "oh n", + "c ess", + "Ġas s", + "Ġf ar", + "hi p", + "Ġb oth", + "re t", + "Ġse em", + "Ġnot hing", + "ou n", + "Ġ- -", + "it s", + "u h", + "g ed", + "Ġp ass", + "op e", + "ĠWh o", + "Ġc ent", + "ea k", + "ĠI nd", + "i vers", + "ct or", + "c y", + "ĠWhe re", + "Ġc ap", + "Ġb est", + "t on", + "Ġsa w", + "Ġunt il", + "Ġpro du", + "v ie", + "Ġwe e", + "Ġe ach", + "un e", + "g er", + "Ġs ing", + "ros s", + "E R", + "l ing", + "ĠC om", + "Ġsm all", + "Ġp op", + "Ġact ually", + "Ġnum ber", + "is ion", + "u res", + "ver n", + "ĠA re", + "Ġc ha", + "Ġl ater", + "Ġf ather", + "a x", + "st and", + "Ġb re", + "Ġl ar", + "Ġli ght", + "o k", + "Ġdoes n", + "Ġe m", + "he re", + "Ġl ist", + "ĠJ ohn", + "as h", + "os ed", + "Ġm other", + "ot e", + "Ġf un", + "Ġ Q", + "Ġad d", + "c er", + "Ġ Z", + "m s", + "re am", + "Ġh igh", + "n y", + "Ġon ce", + "i red", + "Ġ 6", + "ĠS p", + "i er", + "Ġw ait", + "Ġwant ed", + "ĠAmeric an", + "Ġin c", + "i et", + "Ġc a", + "Ġel se", + "Ġagain st", + "Ġg ra", + "ut ion", + "Ġ _", + "l ess", + "u ff", + "Ġfam ily", + "ĠL ook", + "ut h", + "Ġro om", + "Ġim p", + "Ġen ough", + "ub lic", + "Ġpro ble", + "r ist", + "Ġlo c", + "Ġse en", + "e red", + "t he", + "if ic", + "ĠO ne", + "Ġbec ame", + "ĠC l", + "Ġf act", + "Ġst and", + "get her", + "ĠL e", + "Ġto gether", + "ĠG ood", + "un g", + "Ġint e", + "ri b", + "Ġfe w", + "m e", + "ab ly", + "t en", + "n ed", + "Ġevery thing", + "Ġsay s", + "Ġhar d", + "in es", + "Ġyou ng", + "in ed", + "Ġwith out", + "Ġop en", + "ĠH is", + "Ġs im", + "Ġs ince", + "1 9", + "Ġre st", + "Ġqu ite", + "is ter", + "Ġin ter", + "Ġf r", + "Ġs ide", + "Ġst r", + "Ġim port", + "Ġst ay", + "y es", + "in ess", + "ur y", + "Ġs orry", + "is m", + "ri es", + "Ġm ind", + "p art", + "Ġre ad", + "Ġpl an", + "ĠM e", + "d d", + "Ġme et", + "Ġd ied", + "Ġs ign", + "Ġ19 8", + "Ġhe ar", + "ĠThan k", + "Ġb ad", + "Ġco ll", + "en e", + "Ġlook ing", + "Ġ id", + "Ġre p", + "Ġd ra", + "Ġs ix", + "ĠP ro", + "Ġli ve", + "Ġcom ing", + "orn ing", + "Ġd uring", + "is ed", + "Ġf ive", + "Ġunder stand", + "Ġe v", + "i ke", + "r al", + "t ed", + "en se", + "Ġlea ve", + "u c", + "er tain", + "Ġpre t", + "Ġh um", + "Ġs it", + "Ġth ough", + "ĠR ight", + "Ġdis c", + "Ġbelie ve", + "Ġhapp ened", + "ĠT H", + "Ġd ire", + "in a", + "Ġqu est", + "Ġm ain", + "Ġex p", + "Ġd ri", + "Ġwho le", + "Ġto day", + "s on", + "ĠO r", + "ĠP r", + "Ġis n", + "at t", + "Ġl and", + "Ġex t", + "Ġchild ren", + "ĠS c", + "Ġte am", + "an k", + "ĠD id", + "Ġp lease", + "Ġk id", + "it her", + "Ġday s", + "se l", + "ĠU h", + "Ġ 8", + "Ġmo ve", + "Ġto wn", + "ĠM m", + "Ġs on", + "Ġget ting", + "Ġt imes", + "it al", + "Ġf ace", + "st em", + "Ġtr ans", + "Ġinte rest", + "Ġm ed", + "IN G", + "Ġn ice", + "Ġs le", + "an na", + "Ġask ed", + "Ġs ir", + "Ġb ro", + "Ġhe ard", + "Ġ 7", + "Ġp oss", + "Ġhim self", + "ĠK ing", + "Ġmus ic", + "Ġ ed", + "as ter", + "ist s", + "ie ld", + "Ġbu ild", + "00 0", + "Ġar t", + "Ġs ort", + "et s", + "ivers ity", + "Ġwom an", + "b all", + "Ġg ener", + "ĠC ar", + "ct ed", + "Ġne ar", + "Ġcount ry", + "Ġj ob", + "a id", + "ĠE r", + "ou p", + "re ady", + "Ġe yes", + "ant s", + "Ġ19 7", + "Ġw alk", + "Ġ1 0", + "Ġc ol", + "ment s", + "Ġs k", + "Ġe as", + "iz ed", + "Ġm orning", + "Ġg ave", + "Ġy et", + "Ġ ...", + "Ġde ath", + "ĠT o", + "ow s", + "l ish", + "Ġm il", + "Ġha ving", + "Ġimport ant", + "c he", + "Ġe at", + "Ġan s", + "ĠB l", + "Ġh old", + "Ġle ad", + "Ġp ower", + "Ġhe art", + "Ġf il", + "ĠA b", + "Ġha lf", + "Ġal ready", + "us s", + "Ġde ad", + "er y", + "ĠAf ter", + "an e", + "Ġst ate", + "Ġh our", + "iz e", + "Ġrem ember", + "Ġ 9", + "Ġkn ew", + "ĠG erm", + "t a", + "? \"", + "Ġup on", + "Ġwr ong", + "ĠYou r", + "Ġsha ll", + "iv es", + "aught er", + "ĠS ome", + "Ġg ame", + "Ġc ase", + "ĠCh rist", + "Ġre f", + "Ġsay ing", + "Ġa ir", + "ĠG et", + "Ġp ay", + "Ġpro b", + "Ġm od", + "a ut", + "A N", + "u es", + "ward s", + "g t", + "pp ed", + "Ġc ur", + "vel op", + "is on", + "ĠC on", + "y ing", + "Ġf ore", + ". âĢĿ", + "Ġtalk ing", + "at s", + "Ġme ans", + "Ġbe gan", + "d y", + "Ġso on", + "m ost", + "Ġgu y", + "o ber", + "Ġb ab", + "Ġb orn", + "ĠE x", + "Ġsy stem", + "c hed", + "e e", + "Ġm ill", + "Ġret urn", + "Ġs ong", + "Ġf ull", + "ĠHe re", + "Ġcon f", + "Ġp ri", + "Ġtry ing", + "ic ally", + "Ġmon th", + "Ġstart ed", + "Ġg i", + "Ġ *", + "Ġhis t", + "on y", + "Ġrec ord", + "s ide", + "Ġoff ic", + "Ġl aw", + "ur al", + "2 0", + "Ġm iss", + "Ġgo vern", + "Ġal ong", + "re en", + "Ġbr ing", + "id ed", + "Ġdo or", + "ĠĠĠĠ ĠĠĠĠ", + "b y", + "Ġe qu", + "Ġof ten", + "Ġr ound", + "Ġc ertain", + "le ased", + "Ġh ur", + "Ġex pl", + "r on", + "m ed", + "ag es", + "Ġcomp le", + "Ġw ind", + "Ġ1 5", + "Ġid ea", + "Ġp rom", + "Ġg one", + "Ġw ife", + "Ġbr other", + "ll o", + "at ure", + "Ġf ight", + "il ity", + "a i", + "er ing", + "Ġ19 6", + "ĠâĢ ĵ", + "Ġw anna", + "s h", + "ro p", + "Ġj o", + "r ict", + "Ġchan ge", + "Ġpro v", + "Ġhand s", + "Ġw in", + "us h", + "er n", + "Ġf ell", + "Ġhapp en", + "ate ly", + "Ġser v", + "ĠW ill", + "Ġf oot", + "Ġs ent", + "Ġt ri", + "Ġl ine", + "ĠC ount", + "Ġb as", + "Ġl ear", + "Ġs ound", + "Ġpret ty", + "g es", + "am ed", + "Ġplay ed", + "Ġcont in", + "u red", + "Ġ1 7", + "Ġl ess", + "Ġsp eak", + "Ġt y", + "ĠBe cause", + "b r", + "Ġmat ter", + "ion al", + "ne y", + "Ġor der", + "Ġst ory", + "Ġf uck", + "Ġgo es", + "ak en", + "Ġw atch", + "p ed", + "Ġd et", + "Ġc reat", + "Ġp ar", + "id es", + "Ġab le", + "Ġmom ent", + "c le", + "Ġin f", + "o v", + "et h", + "Ġd ad", + "id d", + "Ġ ri", + "Ġb ed", + "it er", + "o on", + "Ġ es", + "Ġ .", + "Ġde velop", + "ĠT r", + "Ġto p", + "Ġsle ep", + "m or", + "Ġproble m", + "o ice", + "Ġwom en", + "ĠP l", + "ri gin", + "O U", + "Ġde f", + "i k", + "ren ce", + "Ġare a", + "ĠG e", + "pe nd", + "w here", + "g s", + "Ġcl ass", + "o le", + "Ġsome one", + "an u", + "Ġl ost", + "a red", + "Ġf all", + "ic es", + "Ġwas n", + "ĠEng lish", + "Ġst e", + "i am", + "Ġpart ic", + "Ġm aking", + "Ġp at", + "ap an", + "Ġbus iness", + "Ġp ain", + "Ġlar ge", + "Ġs n", + "il t", + "Ġprob ably", + "c hes", + "u ro", + "Ġfriend s", + "Ġsh ort", + "Ġpol it", + "d e", + "Ġt erm", + "Ġpres ent", + "l er", + "Ġcom es", + "Ġ hat", + "Ġyour self", + "âĢ ĵ", + "Ġex per", + "Ġlook ed", + "Ġs qu", + "ĠT e", + "Ġbe aut", + "a pp", + "Ġp ur", + "ĠBr it", + "! \"", + "r act", + "ac es", + "Ġdr ink", + "ar ch", + "Ġtr ue", + "ian s", + "Ġgu ys", + "Ġm ark", + "Ġ #", + "ĠA h", + "ĠE very", + "Ġst re", + "Ġw ond", + "em ent", + "amp le", + "t o", + "at or", + "ap er", + "Ġcont ro", + "w er", + "Ġbec ome", + "Ġbl ood", + "Ġre ady", + "ĠF l", + "ĠJ apan", + "ent ion", + "Ġal most", + "Ġpr ot", + "am a", + "Ġb ody", + "Ġc or", + "Ġwork ing", + "ul ation", + "ĠA d", + "Ġpro f", + "Ġwee k", + "e y", + "Ġsh ip", + "Ġmay be", + "i ver", + "O N", + "er v", + "Ġf ine", + "Ġs ol", + "Ġan im", + "l t", + "Ġd iv", + "ĠE m", + "ang u", + "Ġag o", + "g y", + "ĠH er", + "ĠP et", + "ĠP res", + "Ġp ie", + "ĠĠ Ġ", + "ra nd", + "Ġwould n", + "Ġa w", + "ĠW ar", + "Ġbab y", + "Ġcomm un", + "i ent", + "ĠUn iversity", + "Ġa ge", + "le y", + "ĠM an", + "Ġh ope", + "Ġo rigin", + "ĠThe se", + "Ġc ut", + "Ġp ick", + "gr am", + "ĠFran ce", + "us ed", + "Ġo cc", + "Ġf ree", + "Ġp os", + "Ġs we", + "are nt", + "Ġear ly", + "Ġgi ven", + "z e", + "ĠS ha", + "Ġv is", + "Ġ19 4", + "ĠMr s", + "Ġde al", + "Ġgr oup", + "ĠP lease", + "Ġcon st", + "od e", + "Ġc ou", + "h m", + "ou ble", + "ent y", + "Ġad v", + "Ġ1 6", + "A T", + "Ġh or", + "Ġha ven", + "ĠH ar", + "Ġmo vie", + "Ġo pp", + "anu ary", + "Ġh on", + "Ġbe h", + "Ġt er", + "Ġ1 2", + "ur ch", + "Ġspe c", + "Ġquest ion", + "aj or", + "Ġmy self", + "Ġv ar", + "ard s", + "p r", + "u ly", + "Ġl ate", + "Ġcl ose", + "Ġbr ought", + "e b", + "Ġbe gin", + "ĠW or", + "Ġcle ar", + "Ġbre ak", + "c o", + "ep t", + "et y", + "ie f", + "Ġo per", + "Ġre leased", + "um b", + "Ġf ire", + "Ġnew s", + "Ġbl ack", + "Ġre ce", + "Ġle ast", + "Ġst uff", + "ĠW ith", + "cc ess", + "ĠS outh", + "ĠA m", + "ĠC al", + "Ġkill ed", + "Ġthan k", + "st er", + "Ġf ood", + "o ke", + "Ġe ight", + "Ġd aughter", + "Ġc ra", + "ĠP e", + "Ġword s", + "Ġt aken", + "Ġk ing", + "ĠJ anuary", + "ha ps", + "A R", + "if ul", + "c on", + "ĠCount y", + "Ġt en", + "Ġre ason", + "n ot", + "o or", + "Ġst ation", + "Ġp ublic", + "Ġp ast", + "ut es", + "el t", + "in o", + "sel ves", + "Ġse ver", + "iv ed", + "Ġgovern ment", + "Ġmill ion", + "ĠT w", + "Ġr an", + "Ġgu ess", + "Ġbeh ind", + "Ġex ample", + "Ġ &", + "s y", + "Ġb all", + "Ġ19 5", + "Ġhapp y", + "Ġl angu", + "om an", + "um p", + "it ing", + "Ġcomp any", + "Ġfr ont", + "ĠCom m", + "ĠY ork", + "Ġor gan", + "al th", + "olog y", + "b orn", + "ĠG r", + "in ing", + "Ġr ather", + "Ġwh ite", + "el s", + "c ent", + "ĠC har", + "Ġsever al", + "ĠA ust", + "Ġmar ried", + "m a", + "Ġall ow", + "le v", + "es e", + "ĠP h", + "Ġchar ac", + "ud e", + "O R", + "Ġt aking", + "Ġm akes", + "v ious", + "Ġex c", + "o f", + "al ity", + "Ġind e", + "f ic", + "Ġt re", + "er t", + "Ġso ld", + "ou d", + "Ġn orth", + "ĠE uro", + "g ue", + "on es", + "ĠN e", + "Ġp ict", + "Ġv al", + "i qu", + "Ġe ither", + "os p", + "ac ed", + "en g", + "Ġal one", + "ĠM iss", + "Ġen g", + "Ġb ar", + "und red", + "Ġhum an", + "Ġ est", + "ain s", + "Ġin form", + "Ġ ve", + "b um", + "ĠTH E", + ", âĢĿ", + "Ġh ot", + "Ġs at", + "Ġturn ed", + "Ġdes ign", + "r ing", + "i ence", + "Ġre d", + "Ġre port", + "o x", + "Ġpro gram", + "itt en", + "Ġstr ong", + "ren ch", + "ĠHe llo", + "ĠWor ld", + "he ad", + "en n", + "Ġatt ack", + "i um", + "am ent", + "Ġser ies", + "Ġ 0", + "ci ent", + "m ing", + "Y ou", + "en cy", + "Ġsu ccess", + "Ġqu ick", + "Ġ X", + "Ġli ving", + "ĠP ar", + "ull y", + "at ic", + "ĠA p", + "Ġan n", + "Ġres p", + "Ġthink ing", + "Ġsupp ort", + "l a", + "Ġpart y", + "Ġad m", + "Ġde m", + "ĠG u", + "h y", + "ĠMar ch", + "ĠEuro pe", + "Ġcomm on", + "Ġ $", + "ent ly", + "Ġother s", + "f ord", + "Ġd ream", + "ri l", + "ĠO f", + "Ġl ay", + "Ġf ig", + "ĠC ap", + "ĠJ o", + "Ġh undred", + "Ġlook s", + "Ġcould n", + "ou b", + "b and", + "ĠN orth", + "ĠD r", + "ham p", + "ĠH ave", + "E S", + "Ġsomet imes", + "e ad", + "ain ed", + "ĠAn y", + "Ġgr ow", + "ĠBrit ish", + "Ġs um", + "m en", + "Ġlist en", + "og ra", + "id ge", + "Ġt ou", + "Ġst ru", + "Ġal bum", + "act ly", + "ĠM ic", + "ĠGe or", + "her n", + "un k", + "c ha", + "ot s", + "Ġwith in", + "Ġhist ory", + "Ġn amed", + "Ġt em", + "he n", + "Ġb and", + "Ġche ck", + "c om", + "f fect", + "ĠB ar", + "itt ing", + "i or", + "Ġle g", + "Ġhe ld", + "ept ember", + "o int", + "ran ge", + "Ġm ess", + "Ġbeaut iful", + "b it", + "Ġc e", + "Ġc ost", + "Ġex pect", + "p ar", + "Ġfil m", + "Ġ1 1", + "a im", + "Ġwant s", + "Ġ z", + "Ġth ird", + "ĠW as", + "ĠC ha", + "Ġst ra", + "Ġv ill", + "Ġres ult", + "Ġs outh", + "Ġmin ute", + "ĠM in", + "Ġh it", + "Ġbu ilt", + "Ġus ually", + "iv ing", + "ri e", + "Ġro ad", + "l ished", + "au gh", + "ĠD an", + "Ġpo or", + "Ġper form", + "Ġins ide", + "Ġapp ro", + "ĠJ ack", + "Ġspe cial", + "Ġro ck", + "ĠPres ident", + "Ġre qu", + "ĠF rench", + "Ġb ra", + "Ġc ir", + "ĠS eptember", + "Ġsing le", + "al d", + "Ġ ill", + "Ġgo ld", + "Ġac ross", + "Ġa v", + "es tern", + "ug ust", + "id er", + "Ġcon d", + "ĠJ uly", + "f ully", + "ĠT om", + "Ġme mb", + "Ġplay ing", + "ond on", + "Ġde ar", + "Ġposs ible", + "Ġmonth s", + "ĠE d", + "Ġmin utes", + "am b", + "Ġout side", + "in ation", + "ĠP er", + "un t", + "Ġse ason", + "Ġre pl", + "Ġte ac", + "Ġst at", + "ĠC ol", + "z y", + "Ġgot ta", + "Ġst ar", + "Ġbu y", + "e ge", + "Ġe ffect", + "Ġus ing", + "Ġapp ear", + "Ġs il", + "Ġinclud ing", + "ĠB y", + "Ġwond er", + "ous and", + "ĠMay be", + "Ġ19 3", + "E N", + "Ġto t", + "Ġswe et", + "Ġam ong", + "ff ic", + "Ġbuild ing", + "Ġm ag", + "Ġse nd", + "ound s", + "Ġele ct", + "ch n", + "ĠS u", + "Ġcon cer", + "mor row", + "Ġde part", + "Ġt ried", + "Ġc op", + "u ed", + "Ġloc al", + "Ġd ark", + "ie w", + "Ġh uh", + "ĠL ike", + "ĠR ep", + "Ġd est", + "Ġha ir", + "b s", + "us band", + "Ġc amp", + "ĠL ondon", + "l s", + "ct ober", + "ĠJ une", + "ac hed", + "ĠN ational", + "Ġ1 3", + "ĠL ea", + "Ġab s", + "ĠEng land", + "d om", + "al es", + "Ġli ved", + "ĠA ugust", + "ir th", + "Ġmemb ers", + "Ġm ur", + "Ġprof ess", + "ĠP a", + "it ch", + "Ġ1 4", + "Ġc re", + "ĠHow ever", + "Ġpop ulation", + "m p", + "Ġt est", + "Ġle vel", + "Ġfollow ing", + "Ġm ajor", + "Ġoff ice", + "as es", + "Ġf elt", + "Ġn at", + "ress ed", + "Ġwr itten", + "ĠQ u", + "ĠS ir", + "L L", + "att le", + "Ġde v", + "vie w", + "| |", + "res ent", + "ce mber", + "uth or", + "idd le", + "g est", + "Ġv ide", + "Ġd ie", + "y n", + "Ġany one", + "f ort", + "Ġpro cess", + "un ch", + "Ġwor ry", + "or ies", + "Ġans wer", + "Ġse a", + "Ġpartic ular", + "Ġb ird", + "Ġth ousand", + "ĠC ent", + "ĠAp ril", + "c ing", + "W hat", + "Ġg un", + "Ġv oice", + "ĠD ad", + "Ġh usband", + "re ad", + "ea red", + "Ġget s", + "Ġt ill", + "Ġis s", + "ĠSe e", + "if ied", + "ĠIt al", + "I I", + "Ġs un", + "Ġf a", + "ke y", + "an a", + "ĠW est", + "Ġt reat", + "Ġl a", + "b ers", + "hi le", + "Ġhe ll", + "i pp", + "l ight", + "Ġp ull", + "Ġse ven", + "Ġlangu age", + "lev ision", + "i od", + "Ġf av", + "th ough", + "Ġv iew", + "Ġ !", + "Ġfor mer", + "ĠD av", + "Ġcomple te", + "Ġwork ed", + "Ġ3 0", + "e en", + "so ci", + "Ġde p", + "Ġme mber", + "ĠO ctober", + "ĠF rom", + "Ġt able", + "Î ¿", + "ur s", + "ru ary", + "eb ruary", + "ore d", + "it ions", + "ĠC ity", + "Ġcan not", + "Ġde fe", + "Ġhour s", + "Ġc ross", + "le t", + "Ġwhe ther", + "Ġwork s", + "Ġm er", + "Ġevery one", + "ĠT ake", + "Ġpr act", + "Ġcent ury", + "ogra ph", + "Ġf re", + "ĠS w", + "Ġor d", + "Ġb ased", + "Ġon es", + "ir on", + "Ġpro per", + "ĠDe cember", + "h uh", + "ve mber", + "Ġdif fic", + "Ġinv ol", + "Ġchan ce", + "Ġc ry", + "Ġfor g", + "Ġseem s", + "Ġwr ote", + ".. ..", + "Ġcle an", + "Ġeas y", + "Ġl ow", + "ĠH i", + "ĠNo vember", + "ĠGerm an", + "Ġto morrow", + "Ġwe ar", + "Ġf ur", + "Ġwr ite", + "Ġpol ice", + "ĠThan ks", + "Ġcou ple", + "air s", + "Ġw ish", + "Ġinform ation", + "Ġhow ever", + "c il", + "Ġt on", + "Ġf if", + "Ġd am", + "as ure", + "ĠE ar", + "Ġp aper", + "Ġbo x", + "ra id", + "r it", + "Ġw all", + "Ġknow s", + "Ġboy s", + "Ġprot ect", + "b o", + "p or", + "Ġ ?", + "Ġs ense", + "Ġtr ad", + "Ġli ves", + "Ġco ld", + "id ing", + "Ġserv ice", + "Ġc al", + "ĠAmeric a", + "Ġp ost", + "Ġgr ound", + "Ġe vent", + "i en", + "tern ational", + "Ġcur rent", + "Ġfe et", + "Ġchan ged", + "Ġl ad", + "ĠF ebruary", + "Ġtw enty", + "Ġr u", + "Ġp ub", + "k es", + "ain t", + "Ġf ast", + "g ing", + "Ġgra nd", + "Ġm ine", + "Ġmo ved", + "Ġpro p", + "our n", + "w ork", + "Ġr ad", + "ĠInd ian", + "Ġex actly", + "Ġlong er", + "id ence", + "ul a", + "ci ally", + "ĠO K", + "is ing", + "Ġis land", + "ĠW ait", + "Ġdo g", + "Ġsu per", + "Ġal right", + "Ġ201 3", + "Ġf ield", + "g o", + "Ġcomp et", + "ĠM c", + "Ġsupp osed", + "ro om", + "Ġdra w", + "oo se", + "Ġb irth", + "r ation", + "Ġs ca", + "Ġf ail", + "l u", + "ĠE n", + "ĠJ ames", + "Ġph one", + "Ġp arent", + "it ive", + "Ġd i", + "at a", + "Ġthem selves", + "Ġst ep", + "y r", + "ay s", + "Ġd ro", + "Ġh ig", + "ir ty", + "Ġper iod", + "Ġcontro l", + "Ġl ady", + "Ġ20 2", + "Ġf air", + "ill e", + "Ġcomm une", + "Ġcharac ter", + "op s", + "Ġrel ig", + "an ces", + "le x", + "iv il", + "Ġ201 0", + "Ġcare er", + "um ent", + "Ġpri v", + "Ġ vers", + "id a", + "Ġgener al", + "Ġaf raid", + "Ġtr uth", + "c ome", + "Ġb ott", + "Ġsh ot", + "Ġinc re", + "if t", + "Ġc ried", + "Ġper haps", + "Ġreg ion", + "Ġm ot", + "ir gin", + "as k", + "ĠK e", + "u ri", + "ro du", + "Ġdes c", + "ĠY OU", + "iz ation", + "ĠD ist", + "Ġhur t", + "ĠPet er", + "ord ing", + "Ġt it", + "Ġn ational", + "Ġ2 5", + "Ġa uthor", + "ĠP art", + "ha el", + "Ġs ister", + "ci ence", + "ĠR oman", + "con om", + "Ġtr ouble", + "Ġke pt", + "I C", + "u k", + "em y", + "Ġse x", + "Ġdire ct", + "Ġde ep", + "Ġneed s", + "ĠAf ric", + "Ġrece ived", + "end ed", + "ĠGeor ge", + "l o", + "ir t", + "Ġlet ter", + "f er", + "u ation", + "ent le", + "Ġrun ning", + "Ġc ook", + "st it", + "og n", + "ĠL a", + "Ġseem ed", + "pt ion", + "Ġte levision", + "Ġsh oot", + "Ġkid s", + "ĠH a", + "Ġpict ure", + "Ġc os", + "Ġpop ular", + "I S", + "ĠE l", + "m ore", + "ĠS er", + "Ġcour t", + "Ġac cept", + "R E", + "Ġent ire", + "Ġvide o", + "Ġton ight", + "Ġcon ne", + "Ġar ri", + "Ġab ove", + "f fe", + "il ar", + "Ġfoot ball", + "ĠC he", + "Ġte chn", + "ang er", + "iss ion", + "ow ers", + "Ġfor get", + "Ġsp ace", + "f or", + "Ġed uc", + "Ġdo ctor", + "Ġpr in", + "Ġc at", + "Ġser ious", + "Ġt ree", + "Ġm ount", + "Ġl im", + "ĠS orry", + "Ġinst ead", + "ad a", + "Ġwhat ever", + "Ġcl ot", + "har d", + "l ant", + "Ġty pe", + "ĠS y", + "Ġvill age", + "ĠG reat", + "Ġres pect", + "Ġl ab", + "ag ed", + "Ġtou ch", + "Ġw ood", + "Ġf ly", + "Ġper fect", + "Ġcoll ect", + "o ver", + "Ġn orm", + "Ġex cept", + "Ġv i", + "av y", + "in al", + "Ġh y", + "Ġwait ing", + "ed er", + "Ġp ress", + "ĠE ven", + "gg est", + "Ġinclud e", + "dd en", + "ĠT ell", + "o es", + "Ġit self", + "Ġgo d", + "ĠI ll", + "ill s", + "j oy", + "ĠA ct", + "ĠEr m", + "Ġcl ub", + "ill y", + "Ġcount ries", + "Ġc ult", + "Ġf ut", + "ct ure", + "Ġsome body", + "Ġare n", + "Ġpos ition", + "ĠPe ople", + "Ġp ort", + "Ġcreat ed", + "at ter", + "Ġl uck", + "Ġsu ggest", + "Ġpie ce", + "e al", + "Ġhor se", + "r or", + "Ġp le", + "1 8", + "Ġe p", + "Ġdepart ment", + "b ur", + "ĠL ord", + "ol ute", + "ĠSt op", + "Ġevery body", + "ar r", + "Ġsu dden", + "t le", + "ĠSe c", + "Ġplay er", + "1 0", + "I t", + "ou l", + "Ġr ul", + "Ġrep resent", + "e c", + "ĠC or", + "ĠR ic", + "Ġinv est", + "hamp ions", + "d ing", + "k en", + "ĠP ol", + "Ġbl ue", + "osp ital", + "al t", + "Ġtr ust", + "Ġbe ar", + "Ġd in", + "Ġfuck ing", + "v al", + "Ġdiffic ult", + "le ct", + "ac y", + "k y", + "ĠV irgin", + "i ally", + "Ġm ist", + "Ġan g", + "ĠSt ate", + "Ġd ue", + "ĠH en", + "Ġde b", + "Ġpro ject", + "ĠCap tain", + "re et", + "Ġrec ogn", + "ĠH ouse", + "fe rence", + "Ġt akes", + "Ġam ount", + "ĠWill iam", + "Ġgirl s", + "Ġl ed", + "Ġfam ous", + "Ġg en", + "Ġ2 4", + "Ġcr it", + "Ġsur pr", + "ol ution", + "ĠAust ral", + "Ġcomp ut", + "p es", + "Ġwor th", + "Ġd a", + "Ġstra ight", + "Ġha ng", + "ĠU S", + "ĠS omet", + "om in", + "ĠDist rict", + "Ġdec ided", + "Ġc oun", + "r ay", + "Ġ et", + "Ġm ult", + "ĠC oll", + "ri an", + "Ġcap ital", + "Ġwee ks", + "ĠS m", + "b ed", + "Ġ ]", + "ĠTw o", + "Ġst ood", + "Ġfeel ing", + "Ġph ot", + "Ġp en", + "Ġu m", + "Ġlear n", + "Ġser ved", + "Ġprodu ct", + "ll ing", + "Ġg reen", + "ĠM ary", + "ro g", + "Ġro le", + "re y", + "pe cially", + "Ġcar ry", + "Ġpass ed", + "Ġsa fe", + "Ġbook s", + "Ġc ast", + "ad es", + "Ġst ri", + "Ġsh it", + "Ġex ist", + "Ġsl ow", + "Ġn ine", + "Ġsp ir", + "Ġim ag", + "Ġfun ny", + "ar a", + "ĠJ e", + "Ġfut ure", + "iv al", + "Ġeven ing", + "r is", + "Ġg entle", + "Ġsec ret", + "Ġhe alth", + "Ġtell ing", + "Ġv ict", + "Ġfur ther", + "Ġg ames", + "Ġe ye", + "it ary", + "Ġme ant", + "Ġeng ine", + "s c", + "ĠA g", + "G H", + "re g", + "Ġear th", + "Ġproble ms", + "Ġ ver", + "Ġf ill", + "am er", + "ĠG l", + "Ġdo ll", + "ĠP ark", + "Ġd oub", + "ĠJ im", + "Ġcom b", + "ri age", + "ĠS chool", + "Ġj ud", + "Ġco ver", + "ĠQ ue", + "p ing", + "z z", + "Ġsub ject", + "Ġb ene", + "Ġh oney", + "Ġpol ic", + "Ġ ide", + "Ġher self", + "Ġf ix", + "Ġph ys", + "Ġreturn ed", + "Ġtr ack", + "ĠFran k", + "Ġm is", + "Ġa head", + "Ġso cial", + "Ġm atch", + "ĠH igh", + "Ġfollow ed", + "Ġfig ure", + "Ġany way", + "ress ion", + "Ġcount y", + "Ġmom my", + "ci ety", + "ener al", + "ĠInd ia", + "N o", + "im ent", + "Ġa in", + "Ġ19 2", + "Ġmeet ing", + "ce ed", + "ĠDav id", + "ĠPa ul", + "m on", + "re me", + "Ġc atch", + "Ġs us", + "k ing", + "Ġrel ations", + "ĠF irst", + "ĠD uring", + "Ġfam il", + "ĠG ive", + "Ġcir c", + "ll ed", + "Ġcomm and", + "Ġtra in", + "Ġdri ve", + "ĠJapan ese", + "te en", + "ĠGerm any", + "A S", + "ĠR uss", + "ĠE ast", + "Ġsa il", + "Ġcha ir", + "ino is", + "vious ly", + "ĠC o", + "Ġm outh", + "Ġop ened", + "Ġpres ident", + "Ġob ject", + "Ġca use", + "Ġparent s", + "Ġm m", + "ĠC our", + "Ġ1 00", + "ĠMic hael", + "y le", + "Ġar m", + "Ġf ear", + "Ġp ot", + "em pt", + "ĠRep ublic", + "Ġwho se", + "Ġn on", + "Ġre se", + "Ġd anger", + "Ġh op", + "Ġpr ison", + "Ġanim als", + "Ġc ool", + "Ġ201 1", + "h o", + "ag er", + "Ġvi ol", + "l in", + "Ġr ing", + "Ġthr ow", + "Ġhapp ens", + "ĠPh il", + "Ġsa ve", + "pl oy", + "Ġen joy", + "Ġm ass", + "Ġdist rict", + "Ġspec ies", + "Ġan t", + "ĠIs land", + "Ġteac her", + "oc r", + "b or", + "Ġwh om", + "Ġ200 6", + "Ġr is", + "Ġpart s", + "Ġf ish", + "ic ian", + "Ġcra zy", + "Ġst ick", + "ĠSt e", + "li ke", + "in y", + "om b", + "Ġbu ll", + "Ġp al", + "Ġ201 2", + "Ġbec om", + "Ġne g", + "Ġmo ving", + "Ġbegin ning", + "âĢ Ķ", + "Ġen er", + "Ġsim ilar", + "o ly", + "ĠĠĠĠ ĠĠ", + "a f", + "c han", + "Ġs ick", + "Ġh ost", + "Ġest ab", + "med i", + "Ġli e", + "in c", + "ĠM on", + "ĠRe ally", + "Ġcertain ly", + "ĠVirgin ia", + "E D", + "Ġs har", + "Ġne cess", + "Ġfor ce", + "Ġk iss", + "Ġb urn", + "Ġb ag", + "Ġe conom", + "am s", + "Ġse par", + "we red", + "v ille", + "Ġm ater", + "n ow", + "Ġdis app", + "Ġs itting", + "ĠR ober", + "Ġpl aces", + "Ġfl oor", + "ĠNot hing", + "Ġm iddle", + "Ġto wards", + "Ġag re", + "Ġquick ly", + "Ġso ft", + "Ġ2 1", + "Ġinterest ing", + "ĠIll inois", + "Ġh m", + "Ġse lf", + "Ġbe at", + "ĠA N", + "itt ed", + "Ġcl os", + "ĠM ed", + "ĠM ost", + "Ġch urch", + "Ġspe nd", + "y ou", + "in ite", + "is hing", + "Ġp aid", + "ĠL ou", + "Ġfin ished", + "Ġm ad", + "ĠC ong", + "ro y", + "Ġv ol", + "Ġfin al", + "ĠM a", + "ĠM om", + "Ġorigin al", + "Ġ ident", + "Ġb reat", + "ĠM us", + "ri ble", + "v in", + "ic a", + "Ġfe at", + "i res", + "p ha", + "ĠM o", + "Ġans wered", + "Ġc orn", + "Ġg iving", + "pl es", + "Ġquest ions", + "Ġstre et", + "c her", + "um e", + "Ġqu iet", + "Ġlea ving", + "it or", + "im ate", + "Ġsh ut", + "n el", + "Ġact iv", + "Ġann oun", + "if orn", + "a ff", + "Ġm ention", + "i ers", + "_ ,", + "p ly", + "Ġdad dy", + ". ,", + "c ast", + "ĠHe l", + "Ġbel ong", + "ĠFl or", + "T ER", + "u ge", + "ĠS an", + "ut y", + "Ġsupp ose", + "ĠHen ry", + "Ġre ached", + "ĠM or", + "Ġgr ad", + "Ġb ill", + "Ġ( \"", + "iforn ia", + "Ġlo se", + "ĠWh ich", + "Ġinf lu", + "ĠM ad", + "Ġpolit ical", + "S t", + "o ff", + "Ġp ark", + "ist en", + "Ġstud ents", + "Ġterm s", + "he l", + "ĠB et", + "Ġra il", + "Ġtot al", + "Ġ2 3", + "Ġacc ount", + "k ed", + "hi ps", + "Ġexper ience", + "Ġfor ward", + "ition al", + "Ġcommun ity", + "I T", + "e g", + "Ġne igh", + "Ġmod ern", + "ĠM art", + "Ġ5 0", + "ĠGo vern", + "ĠG eneral", + "ĠR o", + "iv id", + "Ġfore st", + "Ġri ver", + "t ime", + "Ġ ,", + "Ġc ivil", + "Ġway s", + "Ġvar ious", + "Ġgl ass", + "ing er", + "ĠM any", + "ĠCal ifornia", + "Ġresp ons", + "Ġm ach", + "ĠR iver", + "Ġth ou", + "Ġse arch", + "Ġnum bers", + "g ar", + "l ine", + "Ġh ospital", + "Ġa ut", + "ir m", + "Ġn in", + "Ġind ust", + "Ġgl ad", + "k a", + "un ic", + "Ġpub lished", + "Ġin n", + "Ġl augh", + "Ġe gg", + "ĠS ar", + "ĠS ure", + "Ġde pend", + "Ġint rodu", + "1 7", + "1 5", + "ens ive", + "Ġcons ider", + "w ell", + "Ġre v", + "ct ions", + "ort s", + "Ġt ax", + "Ġallow ed", + "n ight", + "en a", + "Ġdisc uss", + "Ġd ress", + "Ġmark et", + "ra b", + "Ġob s", + "Ġwind ow", + "ĠCh urch", + "ci ous", + "Ġcl aim", + "ens us", + "Ġnat ural", + "Ġn et", + "ut ed", + "ĠB oy", + "x ic", + "Ġra in", + "Ġ ..", + "ĠJ es", + "Ġany more", + "it es", + "ĠH ist", + "ĠO ther", + "Ġequ al", + "Ġmil es", + "he m", + "Ġc aught", + "Ġbro ad", + "O h", + "he t", + "ĠI I", + "Ġhe y", + "âĢ İ", + "Ġbl ock", + "olute ly", + "Ġshow s", + "Ġinvol ved", + "ro ad", + "ca pe", + "Ġstud y", + "r id", + "ĠT V", + "ist ic", + "ĠChrist ian", + "Ġst range", + "ĠLea gue", + "Ġes pecially", + "Ġmater ial", + "Ġf em", + "ĠS en", + "ĠB en", + "Ġsome where", + "T h", + "Ġ )", + "Ġst age", + "ide red", + "ort un", + "Ġtra vel", + "Ġbo ard", + "Ġa ud", + "Ġst ore", + "ĠOn ly", + "ĠCom p", + "ĠW ould", + "Ġclot hes", + "i us", + "ĠS am", + "Ġsim ple", + "Ġloc ated", + "Ġs ad", + "? âĢĿ", + "Ġen v", + "o e", + "in ary", + "ab ad", + "ru ction", + "ĠFlor ida", + "1 4", + "A M", + "h ood", + "Ġ201 4", + "in ist", + "Ġg ives", + "Ġn ature", + "Ġe mb", + "ĠK en", + "Ġal ive", + "ĠF in", + "Ġneed ed", + "ove red", + "Ġ0 1", + "ĠRic hard", + "\" )", + "Ġval ue", + "Ġd ru", + "ĠS im", + "Ġse at", + "Ġfin ally", + "ĠB el", + "Ġyour s", + "W e", + "ĠD em", + "ĠR ed", + "eng th", + "Ġany body", + "ĠSc ott", + "Ġdin ner", + "Ġa part", + "Ġs ize", + "ĠG ree", + "Ġde g", + "Ġpe ace", + "ĠS ince", + "il s", + "Ġde l", + "O T", + "w ood", + "ĠO ur", + "Ġbo at", + "Ġvis it", + "Ġt a", + "up id", + "v an", + "act ion", + "Ġapp eared", + "Ġsh op", + "Ġqu ar", + "ri ll", + "ol ic", + "Ġsur v", + "O M", + "ie l", + "ĠUn ion", + "Ġsit uation", + "Ġp erm", + "Ġfav or", + "Ġener gy", + "m m", + "Ġ x", + "Ġb an", + "Ġf ac", + "ag o", + "Ġf und", + "Ġpriv ate", + "er ve", + "en ces", + "ĠB ur", + "b on", + "Ġadd ed", + "A L", + "y l", + "Ġb ur", + "ĠG rand", + "Ġcons idered", + "Ġcol or", + "a use", + "er ry", + "Ġg ar", + "ĠR ob", + "Ġm hm", + "1 2", + "Ġsp ent", + "Ġtit le", + "ĠL u", + "Ġpl ant", + "Ġthan ks", + "Ġdis e", + "Ġke y", + "ĠRe g", + "n s", + "Ġw ild", + "re m", + "ĠO k", + "Ġ2 6", + "g u", + "am m", + "Ġar my", + "Ġ201 6", + "f ace", + "id s", + "Ġact ion", + "Ġ200 7", + "Ġstop ped", + "us es", + "Ġen c", + "er o", + "ĠJ ul", + "Ġim medi", + "Ġpur p", + "as ons", + "Ġs our", + "ĠB ra", + "Ġb ought", + "Ġd ance", + "Ġprofess ional", + "Ġg rew", + "ĠP ri", + "Ġ2 2", + "ĠBl ack", + "Ġl iter", + "ill a", + "ound ed", + "Ġc ell", + "a e", + "ĠL isten", + "Ġ19 0", + "Ġinde ed", + "s p", + "Ġw a", + "Ġt ea", + "ou ps", + "Ġp ers", + "C H", + "Ġwr iting", + "ĠPart y", + "ĠA nt", + "ĠV ery", + "oll y", + "Ġprodu ced", + "Ġext ra", + "b our", + "ĠT O", + "if f", + "ĠU m", + "ri a", + "Ġstand ing", + "ll en", + "Ġbro ke", + "Ġear li", + "Ġy ell", + "Ġf le", + "ĠM al", + "Ġpr im", + "ail s", + "Ġsum mer", + "f ield", + "Ġspir it", + "h ouse", + "Ġm id", + "Ġy e", + "om as", + "Ġcomp an", + "ĠDo es", + "H e", + "Ġatt empt", + "rie f", + "it z", + "ĠP ort", + "ĠIt s", + "Ġt ro", + "out hern", + "Ġav ail", + "1 3", + "est s", + "te red", + "c use", + "Ġs ens", + "Ġrem ain", + "Ġatt ention", + "Ġp ack", + "ĠP at", + "Ġr id", + "Ġr out", + "Ġsee ing", + "u el", + "Ġdevelop ment", + "y a", + "ort hern", + "Ġbl ow", + "A P", + "n ers", + "p ire", + "at ors", + "ĠA lex", + "ce ll", + "and er", + "E T", + "in ct", + "ur a", + "iqu es", + "re l", + "ĠT ur", + "Ġd ate", + "ĠB ob", + "Ġm ix", + "Ġn ames", + "ĠD ar", + "Ġhist or", + "Ġt end", + "re r", + "Ġs al", + "ud d", + "Ġoffic ial", + "ĠI N", + "ig g", + "ib ility", + "iqu e", + "c ul", + "Ġsim ply", + "v ince", + "Ġw ide", + "ick et", + "Ġb ow", + "Ġc and", + "Ġde cl", + "Ġal though", + "Ġaf f", + "sy ch", + "A t", + "ĠA pp", + "ous ly", + "Ġ ice", + "Ġs cience", + "Ġmil itary", + "s ha", + "is es", + "gr ound", + "Ġre du", + "if y", + "ap ers", + "iron ment", + "Ġdoub t", + "Ġgr oups", + "Ġcoll ege", + "O W", + "Ġh ung", + "os ing", + "Ġcar ried", + "Ġind ivid", + "Ġopp ortun", + "Ġep is", + "Ġar ms", + "Ġinclud ed", + "Ġb attle", + "h od", + "Ġd ry", + "Ġh un", + "Ġdest roy", + "w ise", + "le br", + "ĠO ly", + "ĠQue en", + "ĠB o", + "Ġask ing", + "Ġdiffe rence", + "Ġcap tain", + "s u", + "Ġlar gest", + "g on", + "ive ly", + "pp er", + "Ġmar riage", + "Ġpoint s", + "Ġhat e", + "ĠN or", + "hing ton", + "Ġw est", + "Ġoffic er", + "b ye", + "qu e", + "Ġperson al", + "Ġbe ha", + "Ġlo ved", + "Ġmed ic", + "Ġcomplete ly", + "Ġin j", + "ĠA cc", + "ĠD ick", + "Ġ2 8", + "Ġeduc ation", + "Ġt our", + "ĠW hile", + "Ġspe ed", + "Ġbro ken", + "ĠA ir", + "ĠP al", + "olog ical", + "ur ity", + "Ġ200 9", + "Ġmur der", + "n o", + "ĠB u", + "Ġse ll", + "Ġem ploy", + "res h", + "ĠAl an", + "Ä ģ", + "re ct", + "Ġlo ck", + "ĠWh ite", + "Ġcomput er", + "Ġm aster", + "Ġl ength", + "bo ard", + "Ġre ach", + "Ġvers ion", + "Ġfor t", + "ab ility", + "gg ed", + "Ġref er", + "ĠM ark", + "ĠEx cuse", + "Ġwatch ing", + "an c", + "ast ic", + "Ġmean ing", + "ĠAn ge", + "Ġcont ract", + "Ġ200 8", + "ĠĠĠĠĠĠĠĠ ĠĠĠĠĠĠĠĠ", + "Ġjo ined", + "soci ation", + "Y es", + "Ġb ank", + "Ġshould n", + "Ġcap t", + "g ress", + "Ġhe avy", + "ch ie", + "Ġro b", + "Ġ201 5", + "ĠRober t", + "Ġplay s", + "Ġbel ow", + "Ġs ight", + "Ġf ool", + "Ġp ath", + "ĠC han", + "ĠD es", + "k i", + "Ġpre p", + "Ġexpl ain", + "ĠCour t", + "n es", + "U S", + "Ġr ich", + "ĠTh ree", + "ĠSt reet", + "5 0", + "it ude", + "Ġe ff", + "Ġar ch", + "Ġocc ur", + "Ġl ying", + "Ġco ast", + "ĠSc ot", + "Ġanim al", + "an cy", + "ter day", + "ard en", + "ear s", + "Ġ4 0", + "is c", + "m as", + "Ġw at", + "Ġ2 7", + "Ġtalk ed", + "ens ion", + "Ġsudden ly", + "ou ra", + "Ġb ase", + "ĠA c", + "Ġwe l", + "ĠC r", + "ant ly", + "Ġimp ro", + "o id", + "Ġ20 00", + "Ġnear ly", + "ĠR oy", + "Ġca used", + "Ġhon est", + "Ġinde pend", + "ĠWas hington", + "2 00", + "w est", + "ĠP ut", + "Ġpl us", + "Ġreg ard", + "E A", + "as ion", + "om m", + "Ġn or", + "Ġsha re", + "led ge", + "à ¼", + "he st", + "Ġp age", + "Ġ202 2", + "Ġst ates", + "Ġare as", + "Ġapp oint", + "à ¡", + "Ġex am", + "Ġhappen ing", + "Ġb ud", + "v ies", + "Ġs cient", + "Ġin it", + "ic le", + "op h", + "s s", + "Ġfell ow", + "ĠChar les", + "Ġhig her", + "Ġf at", + "Ġce lebr", + "Ġs and", + "Ġacc ess", + "ĠEar th", + "L E", + "Ġs ite", + "Ġc ensus", + "ĠS al", + "hi re", + "Ġev idence", + "Ġnorm al", + "I D", + "L A", + "ĠG ot", + "pl ay", + "ict ion", + "Ġtre es", + "h ow", + "Ġa h", + "ĠF ather", + "Ġreg ular", + "Ġprom ise", + "A nd", + "an ish", + "ic ed", + "Ġe ast", + "Ġst upid", + "ber t", + "ffe e", + "Ġman age", + "Ġwar m", + "hampions hip", + "Ġfamil ies", + "Ġinterest ed", + "Ġsqu are", + "Ġp un", + "Ġsn ow", + "Ġc ases", + "Ġh ol", + "ĠM ore", + "ad ed", + "Ġdo c", + "ust om", + "ĠColl ege", + "unic ip", + "ĠJes us", + "ĠM ac", + "ĠD am", + "ĠO F", + "Ġr ace", + "Ġmil k", + "Ġsong s", + "Ġspeak ing", + "ar ily", + "Ġpr ay", + "Ġform ed", + "Ġcontin ued", + "Ġrad io", + "ar i", + "il ed", + "Ġmar ry", + "Ġf it", + "ve red", + "Ġth reat", + "ut s", + "Ġshow ed", + "Ġdevelop ed", + "k n", + "Ġb es", + "ous es", + "Ġsc ene", + "ĠEurope an", + "Ġavail able", + "ĠS ch", + "Ġ2 9", + "ĠAfric a", + "e k", + "or row", + "Ġco ffee", + "Ġf oc", + "Ġtr ade", + "Ġ200 5", + "Ġtem per", + "Ġbott om", + "Ġdesc rib", + "Ġb i", + "Ġc ard", + "Ġp et", + "ĠS at", + "ord s", + "y er", + "a ven", + "Ġh uge", + "Ġact or", + "ĠCh ina", + "Ġd en", + "Ġd ig", + "ĠR es", + "Ġne ck", + "Ġbirth day", + "Ġannoun ced", + "Ġfe ed", + "Ġmo vies", + "ĠAustral ia", + "Ġg as", + "ĠMe xic", + "Ġmove ment", + "Ġc ab", + "Ġl ines", + "Ġsu ff", + "Ġper cent", + "ak er", + "Ġhelp ed", + "Ġb ath", + "ib ly", + "Ġe ating", + "a ur", + "s et", + "w hat", + "ĠW il", + "Ġsp oke", + "n ie", + "n é", + "us ion", + "om en", + "ĠT od", + "il es", + "Ġwere n", + "Ġfound ed", + "Ġwonder ful", + "ĠM aster", + "all ey", + "inite ly", + "ĠC up", + "1 6", + "Ġd ata", + "Ġph il", + "ol k", + "Ġt ired", + "Ġof fe", + "ĠD ep", + "Ġkn ock", + "ĠIn ternational", + "ick s", + "Ġsca red", + "l im", + "z a", + "Ġw ed", + "ĠC ath", + "ĠThe ir", + "Ġse vent", + "Ġpie ces", + "Ġt ast", + "ĠC H", + "Ġst ories", + "hi b", + "Ġend ed", + "Ġo il", + "ĠH all", + "Ġex ec", + "ĠPar is", + "Ġso ciety", + "Ġdem and", + "Ġa p", + "it che", + "Ġu r", + "Ġcom fort", + "Ġmet hod", + "ĠAb out", + "b ut", + "Ġ :", + "Ġb right", + "Ġu nd", + "Ġde li", + "Ġsound s", + "Ġ Ã", + "Ġoff er", + "Ġenv ironment", + "Ġno vel", + "use um", + "Ġcl osed", + "Ġra ised", + "Ġcare ful", + "Ġlear ned", + "i ation", + "Ġ ir", + "ĠB er", + "Ġwor se", + "Ġrese arch", + "ce an", + "Ġwalk ed", + "Ġm or", + "Ġl ower", + "ĠT ra", + "ĠA ward", + "Ġput ting", + "Ġstart ing", + "Ġadd ress", + "Ġ Â", + "ĠA dd", + "ĠC ould", + "Ġright s", + "Ġim m", + "Ġchan ges", + "V E", + "ot ed", + "et her", + "ĠM aj", + "st r", + "Ġdis p", + "Ġdet erm", + "at form", + "Ġa ward", + "ĠI ran", + "Ġar rest", + "Ġtra ining", + "ĠItal ian", + "ĠOly mp", + "Ġhe ro", + "ent al", + "Ġte xt", + "Ġass ist", + "ĠC oun", + "ol s", + "um mer", + "Ġcent er", + "Ġbird s", + "Ġprin ci", + "Ġbene f", + "y ear", + "ent ial", + "Ġ =", + "Ġno body", + "Ġdec ision", + "Ġa ver", + "ĠG old", + "Ġpolit ician", + "e x", + "Ġc ow", + "ro at", + "Ġlike ly", + "Ġch oice", + "Ġp ush", + "st on", + "Ġlet ters", + "ograph y", + "a ign", + "j i", + "Ġme m", + "ĠBe fore", + "ĠHist ory", + "el ve", + "Ġc rew", + "us hed", + "Ġyes terday", + "Ġ ess", + "is f", + "Ġb le", + "Ġc ru", + "Ġbe ll", + "Ġsm ell", + "ĠAN D", + "U N", + "t hat", + "u nder", + "Ġdist ance", + "n oon", + "y ond", + "ed y", + "Ġth irty", + "Ġsu it", + "Ġchar ge", + "Ġang ry", + "l am", + "il ing", + "Ġr ide", + "itt ee", + "Ġbelie ved", + "Ġ ought", + "Ġschool s", + "Ġd ouble", + "ĠC le", + "Ġcall ing", + "ĠMin ister", + "i ar", + "Ġt all", + "Ġp sych", + "ra ft", + "ub e", + "Ġfin ish", + "Ġw it", + "an i", + "ĠN ever", + "ate g", + "Ġmost ly", + "Ġre view", + "ĠM et", + "ri f", + "Ġsp read", + "Ġaf fect", + "Ġmod el", + "Ġbra in", + "Ġide as", + "us ing", + "ĠTh ose", + "ran ch", + "ru it", + "Ġfour th", + "ĠCent ral", + "as c", + "Ġun iversity", + "or ing", + "pp ing", + "Ġjo in", + "Ġnecess ary", + "Ġan cient", + "li ament", + "Ġev ents", + "Ġspec ific", + "Ġcre ate", + "Ġst orm", + "Ġem ot", + "Ġlead er", + "Ġblood y", + "Ġmess age", + "Ġiss ue", + "u x", + "Ġs ac", + "st e", + "ĠAr my", + "Ġimmedi ately", + "Ġthe ory", + "ĠM ag", + "ĠR em", + "Ġafter noon", + "Ġch ief", + "Ġfa ith", + "il ities", + "ck et", + "f l", + "y al", + "se c", + "Ġst ars", + "ĠP yr", + "ĠF uck", + "ĠJ ew", + "Ġbus y", + ". '", + "k et", + "ĠO ver", + "Ġv ac", + "p en", + "Ġag ree", + "Ġen emy", + "Ġdise ase", + "Ġd an", + "ab les", + "ĠCong ress", + "o ved", + "Ġt ail", + "Ġc up", + "ĠH old", + "ri pt", + "Ġtr uck", + "Ġco vered", + "Ġlove ly", + "ĠItal y", + "Ġru le", + "3 0", + "w estern", + "ĠS a", + "ĠC a", + "ess ion", + "Ġthere fore", + "Ġfar m", + "Ġdire ctor", + "ĠPr in", + "Ġs oul", + "ĠM at", + "Ġan al", + "ĠD el", + "ash ion", + "Ġearli er", + "ut en", + "Ġprodu ction", + "Ġstre ng", + "et er", + "ĠM ike", + "Ġst yle", + "ore s", + "Ġar g", + "Ġsp l", + "Ġ200 4", + "Ġche m", + "Ġform ula", + "is ions", + "Ġfl ight", + "ĠAn other", + "Ġarri ved", + "bur g", + "in i", + "ĠK ore", + "ber g", + "Ġbr idge", + "Ġm ic", + "ap s", + "Ġsl ight", + "ĠCan ada", + "se qu", + "ĠPro vince", + "i pped", + "p ir", + "Ġa ha", + "er ved", + "ĠM er", + "Ġ18 9", + "ĠAr t", + "ĠCar ol", + "At lant", + "Ġc ro", + "at ives", + "ĠH ur", + "ĠU nder", + "ose ph", + "Ġop in", + "Ġcontin ue", + "Ġfa ult", + "ĠPro f", + "Ġter rible", + "Ġwe ap", + "est y", + "ĠAn ne", + "an ge", + "Ġst one", + "Ġpurp ose", + "ĠOn ce", + "1 1", + "B C", + "b ack", + "e ch", + "Ġele ction", + "Ġn one", + "le ep", + "ĠTh omas", + "uck y", + "Ġatt ract", + "Ġm um", + "Ġk ick", + "Ġpr ice", + "Ġestab lished", + "g l", + "ĠI T", + "Ġfor th", + "ĠP re", + "Ġco ach", + "Ġcont act", + "ĠEvery thing", + "Ġsuccess ful", + "v a", + "Ġc amer", + "ĠAl right", + "Ġacc ident", + "Ġsign ific", + "f ast", + "Ġl if", + "ve re", + "um ents", + "Ġc ities", + "Ġj ump", + "Ġfight ing", + "ĠKe ep", + "ĠO ut", + "Ġcon du", + "Ġ18 6", + "Ġset tle", + "az ing", + "ĠD ay", + "ru pt", + "ĠSh ut", + "Ġmount ain", + "Ġpolic y", + "ĠAcc ording", + "Ġwel come", + "Ġt ar", + "Ġf ro", + "Ġwe ight", + "se y", + "ĠJ ud", + "Ġ( )", + "é né", + "i ents", + "Ġc red", + "ed s", + "ĠL aw", + "Ġpr int", + "e es", + "ĠV ict", + "Ġ200 1", + "Ġcr ow", + "Ġrelations hip", + "Ġc y", + "al ed", + "ĠN at", + "ĠR ad", + "Ġsh own", + "ĠK ent", + "Ġsk in", + "Ġabs olutely", + "Ġha ll", + "Ġfor ces", + "Ġli ked", + "oc ol", + "Ġhold ing", + "as ant", + "ĠS us", + "ĠG irl", + "Ġ20 20", + "Ġes cape", + "iver se", + "ĠS l", + "Ġre pe", + "ĠM ount", + "Ġknow ledge", + "Ġ201 8", + "Ġinvest ig", + "ĠW in", + "Ġfor ced", + "ĠB ye", + "Ġmin us", + "Ġmult ip", + "t t", + "at ory", + "Ġcorn er", + "ĠScot land", + "ĠI m", + "Ġin ternational", + "ĠW ow", + "ver t", + "ĠO oh", + "Ġcamp aign", + "z en", + "Ġl ink", + "Ġsp ot", + "Ġch ick", + "u ke", + "Ġl oss", + "om p", + "Ġth us", + "ĠL ove", + "au g", + "ĠSp anish", + "Ġyell ow", + "C h", + "s hip", + "ar ies", + "ĠH on", + "ott en", + "iet y", + "i ot", + "ĠH ill", + "st airs", + "Ġtell s", + "ĠLe e", + "Ġpract ice", + "âĢİ .", + "kn own", + "av es", + "ines e", + "éné es", + "Ġd rop", + "ri g", + "iz ing", + "Ġwalk ing", + "ĠPyr énées", + "Ġs ch", + "Ġext reme", + "ĠKing dom", + "b ing", + "Ġr ate", + "ĠK ar", + "Ġphil os", + "it ation", + "Ġp an", + "Ġbe yond", + "Ġopp os", + "Atlant iques", + "Ġin tern", + "Ġcomp l", + "Ġdire cted", + "e h", + "Ġre ve", + "Ġkind s", + "s es", + "Ġe mer", + "ri al", + "ĠG reen", + "Ġmach ine", + "w h", + "Ġc ode", + "ĠW H", + "ĠM il", + "ĠL at", + "Ġint ell", + "Ġserv ices", + "T hat", + "Ġm unicip", + "Ġwe ak", + "ac hing", + "Ġtw ice", + "Ġmo on", + "Ġlea ves", + "Ġac qu", + "Ġsign ed", + "ĠC ast", + "ĠB ay", + "ĠD is", + "and a", + "hed ron", + "Ġun less", + "Ġlot s", + "Ġpat ient", + "Ġopen ing", + "ourn al", + "ĠLou is", + "Ġp ounds", + "ĠM ur", + "Ġem pt", + "Ġread ing", + "Ġmed ia", + "r am", + "ĠF red", + "ĠTod ay", + "B ut", + "k in", + "Ġ ut", + "Ġthe e", + "ĠC os", + "Ġcon vers", + "Ġhas n", + "Ġdro pped", + "Ġimag ine", + "as ing", + "Ġdisc overed", + "ent h", + "ĠB ab", + "O S", + "R I", + "m in", + "ĠS ing", + "Ġfl owers", + "Ġaver age", + "b an", + "y an", + "Ġh om", + "Ġsing er", + "Ġnews p", + "Ġopportun ity", + "ĠRoy al", + "Ġs ides", + "Ġre lease", + "Ġro se", + "oss ible", + "Ġh i", + "Ġle gs", + "ĠR ock", + "ul ations", + "Ġsystem s", + "ck s", + "ĠSu per", + "C K", + "I n", + "Ġa chie", + "Ġc ustom", + "ĠB ig", + "Ġcall s", + "Ġsy mb", + "ific ation", + "eder al", + "Ġb rief", + "ĠT ony", + "Ġre b", + "Ġbig gest", + "Ġrelig ious", + "Ġdoll ars", + "et t", + "ĠW el", + "ĠD a", + "Ġno se", + "Ġdri ving", + "ut ions", + "ist ed", + "Ġacc ording", + "Ġsold iers", + "Ġfif ty", + "om s", + "ĠM other", + "Ġg e", + "Ġdefe nd", + "Ġvict im", + ". --", + "ĠAl though", + "Ġsur face", + "Ġfore ign", + "ĠCoun cil", + "i ant", + "l or", + "ic ation", + "Ġany where", + "Ġ198 0", + "ĠTe x", + "à Ń", + "ar m", + "et ic", + "ĠW estern", + "Ġ201 7", + "Ġele cted", + "Ġent ered", + "ĠSomet imes", + "Ġdanger ous", + "ĠM ont", + "ĠChar l", + "Ġhig hest", + "Ġfem ale", + "w are", + "Ġdo gs", + "w r", + "Ġf irm", + "Ġf resh", + "Ġsw im", + "Ġcharac ters", + "ĠPer haps", + "Ġmist ake", + "Ġmem ory", + "Ġm ir", + "ĠC ont", + "Ġpr oud", + "ph one", + "Ġes c", + "Ġgrow ing", + "is ters", + "Ġ199 0", + "ist an", + "h ost", + "Ġcl im", + "Ġres our", + "Ġthrough out", + "Ġeas ily", + "Ġrelig ion", + "Ġt ur", + "ad emy", + "ord er", + "Ġsmall er", + "Ġteam s", + "à ³", + "Ġb oss", + "ut ch", + "el ess", + "Ġtw elve", + "Ġte ach", + "ĠDem ocr", + ". _", + "k ins", + "ĠB as", + "ĠF our", + "Ġpict ures", + ", --", + "Ġg arden", + "ĠCh inese", + "ors es", + "! âĢĿ", + "Ġp ig", + "Ġv an", + "Ġsk y", + "Ġcurrent ly", + "u f", + "ad s", + "Ġsur r", + "Ġsat isf", + "Ġepis ode", + "u le", + "Ġr ub", + "Ġpl ants", + "Ġris k", + "Ġl aid", + "Ġrem ained", + "Ġinclud es", + "Ġexpect ed", + "v i", + "Ġo pt", + "Ġas soci", + "ol f", + "ain e", + "Ġdes p", + "Ġmiss ing", + "ĠB ro", + "os es", + "ĠU p", + "Ġplay ers", + "ul f", + "Ġold er", + "ĠJo e", + "Ġindust ry", + "Ġp u", + "Ġp ound", + "Ġcom mer", + "Ġus es", + "Ġfun ction", + "Ġcond ition", + "Ġc it", + "um ber", + "Ġgr own", + "ĠAs sociation", + "Ġwin ter", + "Ġorigin ally", + "Ġpos itive", + "Ġwear ing", + "Ġrul es", + "ic ago", + "Ġw ine", + "Ġp red", + "ĠP an", + "ĠJ er", + "est ival", + "Ġsp ring", + "Ġdire ction", + "Ġnot e", + "ĠDo ctor", + "ac ing", + "ĠH as", + "Ġparticular ly", + "Ġfor ty", + "Ġro ll", + "Ġ18 8", + "ĠT or", + "ra p", + "Ġcr ime", + "ĠSh ow", + "Ġbas ket", + "Ġadm inist", + "Ġneg ative", + "Ġcar s", + "ĠCath olic", + "d en", + "Ġh ide", + "ist ry", + "Ġthink s", + "Ġtri p", + "Ġdef initely", + "b l", + "Ġset t", + "ĠPr ince", + "Ġegg s", + "Ġd uty", + "Ġl ack", + "as tern", + "W ell", + "c ies", + "it ar", + "le cted", + "Ġst aff", + "Ġcont rib", + "ĠJack son", + "Ġfre qu", + "ĠH y", + "Ġfl at", + "g a", + "ĠD iv", + "ĠNe xt", + "stit ution", + "uten ant", + "b a", + "per or", + "Ġcomp os", + "ĠAt lant", + "Ġcrit ic", + "ĠSomet hing", + "ĠO ld", + "Ġpl aced", + "Ġch oose", + "Ġcor rect", + "d é", + "as hed", + "ic ated", + "Ġhe aven", + "ĠS ay", + "land s", + "Ġrem ark", + "Ġmain tain", + "Ġcult ure", + "ĠSm ith", + "Ġslow ly", + "Ġstreng th", + "Ġyou th", + "ĠS il", + "ĠB ell", + "ce nd", + "ĠP ac", + "ĠBr other", + "Ġfin an", + "Ġcol our", + "m us", + "Ġhe llo", + "Ġr ough", + "em s", + "Ġv ote", + "Ġdeg ree", + "g n", + "à ¶", + "ol a", + "Ġbre ad", + "Ġlar ger", + "Ġprov ide", + "Ġgrad u", + "ĠProf ess", + "N A", + "m ad", + "Ġ rom", + "Ġh ill", + "ĠR ay", + "Ġpartic ip", + "c is", + "ĠR ail", + "Ġcont ain", + "Ġlaw yer", + "Ġdream s", + "Ġmention ed", + "Ġf ashion", + "an n", + "all ed", + "Ġwor ried", + "ĠSt ep", + "Ġ200 3", + "ĠSp ain", + "Ġagre ed", + "ĠF il", + "ĠT ime", + "ge l", + "ffic ient", + "Ġelect ric", + "U T", + "ĠB ill", + "Ġapp re", + "be red", + "Ġadd ition", + "Ġsouth western", + "A r", + "on ed", + "ar row", + "Ġnot ice", + "Ġsec urity", + "Ġstud ent", + "Ġord ers", + "itche n", + "Ġcrow d", + "Ġ iron", + "it a", + "Ġh ouses", + "ĠH am", + "ran k", + "Ġiss ues", + "c oh", + "ĠM u", + "Ġform s", + "Ġpick ed", + "g en", + "Ġhe at", + "ĠM ass", + "Ġcon cept", + "Ġra p", + "Ġpower ful", + "ĠVict or", + "Ġth y", + "Ġact ing", + "Ġcont ent", + "ĠAl so", + "Ġbig ger", + "Ġcha llen", + "Ġbrother s", + "Ġjud ge", + "Ġta pe", + "ĠP ak", + "ĠL ife", + "Ġrecord s", + "ĠAd m", + "Ġdesign ed", + "Ġtot ally", + "Ġdam n", + "Ġluck y", + "Ġinflu ence", + "Ġindivid ual", + "Ġt ight", + "ĠI r", + "ĠL ittle", + "ĠF re", + "Ġun cle", + "Ġgu ard", + "Ġdr unk", + "Ġbreat h", + "ĠHel p", + "ĠCh icago", + "Ġcond itions", + "Ġbecom es", + "ic les", + "Ġse ction", + "Ġby e", + "Ġrel ated", + "Ġtro ops", + "ha nd", + "Ġaw are", + "Ġsour ce", + "Ġcompan ies", + "Ġt aught", + "ow a", + "Ġser ve", + "Ġsc reen", + "gy pt", + "Ġrepl aced", + "Ġwed ding", + "ĠTex as", + "Ġwh is", + "Ġ( ,", + "ab or", + "Ġbr own", + "Ġb ound", + "ist ics", + "Ġmain ly", + "Ġgener ally", + "Ġp ir", + "ĠS pe", + "ĠF ine", + "Ġpl ans", + "Ġ200 2", + "Ġplan et", + "Ġperform ance", + "Ġpress ure", + "Ġet c", + "; /", + "i ber", + "Ġy a", + "Ġwe ather", + "... ?", + "Ġwr iter", + "Ġsc r", + "Ġsm art", + "ĠDe v", + "ĠChrist mas", + "Ġreport ed", + "ĠS and", + "ĠO N", + "Ġwill ing", + "ag on", + "Ġspe ech", + "Ġmed ical", + "Ġlead ing", + "Ġbas ically", + "Ġty pes", + "ign ed", + "Ġent er", + "Ġtrans l", + "Ġhon or", + "Ġran ge", + "Ġfill ed", + "ĠS und", + "ĠM el", + "ĠF e", + "Ġsm ile", + "Ġob viously", + "Ġperform ed", + "Ġ202 1", + "ĠPrin cess", + "c an", + "à ¨", + "ha l", + "ĠS un", + "ĠH aw", + "ra w", + "Ġarch ite", + "Ġp air", + "ĠB oth", + "ĠF oot", + "Ġpl atform", + "Ġte eth", + "idd en", + "Ġempt y", + "m ark", + "ĠH uh", + "Ġcomple x", + "ĠMaj esty", + "h old", + "ĠO ff", + "ul ous", + "ap t", + "ĠCh ief", + "Ġsing ing", + "Ġrecord ed", + "Ġrepl ied", + "Ġforg ot", + "stit ute", + "Ġmedic ine", + "Ġoffe red", + "on a", + "Ġl oud", + "oo p", + "ĠR ome", + "Ġj ack", + "Ġ197 0", + "Ġo x", + "ve y", + "ro l", + "il i", + "Ġv ot", + "Ġclear ly", + "Ġevent ually", + "Ġcompet ition", + "Ġple asure", + "Ġm aid", + "al i", + "Ġwas te", + "Ġwe ird", + "ĠC hampionship", + "Ġst uck", + "ĠL ake", + "os h", + "Ġleg al", + "Ġdesc ri", + "ĠAfric an", + "Ġfeat ures", + "Ġdescrib ed", + "ĠN ice", + "ĠRo ad", + "Ġnet work", + "Ġf inger", + "ar ing", + "ĠS ant", + "Ġli es", + "ak ed", + "Ġinst r", + "Ġfail ed", + "I R", + "m n", + "Ġf right", + "Ġbe g", + "Ġj our", + "Ġsa ke", + "Ġrem ind", + "Ġdist rib", + "Ġh ole", + "Ġh orses", + "Ġme asure", + "ĠF er", + "Ġship s", + "Ġcal m", + "i pe", + "u ries", + "ĠA ng", + "ĠL ater", + "Ġbl ess", + "Ġm a", + "Ġn orthern", + "ch ing", + "vent ion", + "Ġcent ral", + "ĠPl ay", + "Ġhot el", + "Ġbecom ing", + "W hy", + "he red", + "Ġn ative", + "Ġst ock", + "Ġbut ter", + "one l", + "ĠâĢ Ķ", + "Ġpo ll", + "Ġhar m", + "part ement", + "Ġconcer ned", + "im a", + "ĠM ajor", + "Ġne ither", + "Ġact ress", + "Ġmiss ed", + "ĠS T", + "ard on", + "ĠRe c", + "Ġkill ing", + "ĠGree k", + "Ġopin ion", + "dé partement", + "Ġw et", + "ĠR og", + "ul ty", + "Ġte le", + "Ġgreat est", + "ĠBr own", + "Ġocc up", + "Ġresult s", + "ourn ament", + "Ġquar ter", + "A Y", + "I GH", + "c raft", + "w in", + "is hes", + "Ġk itchen", + "ĠL os", + "ĠL ady", + "Ġag ed", + "Ġed ge", + "Ġoffic ers", + "ĠSec ret", + "se e", + "ĠE gypt", + "od ies", + "Ġapp lic", + "Ġpain ting", + "Ġbreak fast", + "Ġphilos op", + "Ġd uck", + "Ġsa ved", + "ian o", + "Ġhand le", + "Ġproper ty", + "ĠRuss ian", + "ĠAc ademy", + "Ġcit iz", + "i j", + "Ġal t", + "Ġsh ock", + "Ġgreat er", + "Ġatt end", + "Ġm ut", + "Ġf aces", + "Ġn ation", + "Ġro of", + "Ġ201 9", + "Ġprodu ce", + "ĠCl ub", + "Ġhur ry", + "Ġexper ien", + "Ġdiv ided", + "Ġstru gg", + "od es", + "ye h", + "Ġinter view", + "Ġtar get", + "v iet", + "Ġre asons", + "ac hes", + "Ġme re", + "ĠE s", + "Ġmiss ion", + "Ġstru cture", + "Ġcirc um", + "D on", + "d o", + "Ġb rand", + "Ġp apers", + "Ġman ager", + "Ġ18 7", + "Ġreal ize", + "Ġstud ied", + "Ġstud io", + "Ġb al", + "an ced", + "Ġgo al", + "Ġpart ner", + "ip s", + "ĠGovern ment", + "Ġwit ness", + "Ġme chan", + "Ġsha pe", + "Ġord ered", + "Ġdirect ly", + "; &", + "Ġw ow", + "Ġd om", + "ĠL y", + "Ġbu ried", + "ĠS erv", + "im in", + "ĠJ ac", + "Ġbit ch", + "Ġeas ier", + "Ġpal ace", + "c ise", + "ĠE ach", + "Ġsh out", + "ĠSt ud", + "Ġstart s", + "Ġhead s", + "ok en", + "Ġimp ossible", + "Ġsurpr ised", + "g ent", + "ĠI owa", + "ĠS id", + "Ġwor st", + "ĠSo viet", + "ian ce", + "Ġdet ect", + "Ġgentle men", + "ĠJim my", + "E L", + "ĠM ill", + "Ġkeep ing", + "Ġdec ide", + "Ġlead ers", + "Ġtechn ology", + "Ġcamer a", + "' .", + "s ed", + "ĠI d", + "ĠA rab", + "ĠB a", + "Ġst ran", + "ren ces", + "Ġra re", + "az ine", + "Ġrun s", + "s ing", + "Ġs illy", + "Ġme at", + "Ġli kes", + "Ġart ist", + "Ġincre ase", + "Ġsurpr ise", + "Ġprep ared", + "Ġth ick", + "st ood", + "ĠB est", + "ĠB ack", + "Ġsh oes", + "Ġlo g", + "Ġam b", + "Ġ ign", + "Ġb omb", + "at o", + "im ately", + "Ġ199 9", + "ĠTr ans", + "Ġz ero", + "Ġteac hing", + "Ġfly ing", + "Ġtast e", + "Ġd er", + "Ġl unch", + "Ġad ult", + "Ġev il", + "Ġlear ning", + "ha d", + "ĠS ea", + "ĠB ang", + "Ġcan cer", + "Ġal coh", + "ig er", + "ĠK h", + "ran ce", + "Ġbl ind", + "Ġour selves", + "Ġsecond s", + "arent ly", + "Ġcry ing", + "ĠMexic o", + "a ult", + "o om", + "Ġs en", + "Ġc art", + "am i", + "Ġj u", + "Ġex cl", + "Ġmet al", + "ĠEm pire", + "R O", + "ĠM ake", + "Ġas leep", + "Ġrec ently", + "Ġstand ard", + "Ġsleep ing", + "Ġdrink ing", + "I f", + "v is", + "Ġme mor", + "Ġtrad itional", + "ĠT ai", + "ur day", + "Ġj oy", + "Ġsu c", + "ast y", + "Ġbuild ings", + "ĠMart in", + "I M", + "j ust", + "ĠS aint", + "Ġon to", + "ĠG ar", + "Ġ3 1", + "igh s", + "b el", + "Ġbelie f", + "Ġappre ci", + "Ġsuc ceed", + ". ]", + "ĠT ed", + "et te", + "Ġr ank", + "Ġact ual", + "Ġcons um", + "uc le", + "Ġl ic", + "Ġde light", + "Ġpro ve", + "ĠSt ill", + "Ġim age", + "ious ly", + "Ġprov ince", + "Ġrequ est", + "I F", + "er al", + "ĠS qu", + "Ġe ld", + "ir ing", + "se mb", + "ĠL ine", + "Ġpo cket", + "Ġpre vent", + "Ġcha p", + "m it", + "p ic", + "ĠW ood", + "ur t", + "Ġlad ies", + "ĠC ons", + "Ġpl ain", + "Ġcoun cil", + "Ġhol id", + "i os", + "ĠI nt", + "or ks", + "are t", + "Ġrem em", + "Ġfore ver", + "Ġking dom", + "ĠW omen", + "ri er", + "... \"", + "Ġhung ry", + "ĠProfess or", + "b les", + "Ġf rog", + "le ction", + "ad ing", + "ans as", + "Ġsepar ate", + "Ġdoc ument", + "r ate", + "Ġa st", + "ing ers", + "ĠD ire", + "ĠYou ng", + "ish op", + "Ġam azing", + "r ated", + "Ġc ash", + "if orm", + "Ġsc ar", + "Ġstay ed", + "Ġprom ised", + "Ġcost s", + "fort un", + "ĠW al", + "Ġse qu", + "ĠF ore", + "ig an", + "Ġsa f", + "ond s", + "Ġgr ant", + "Ġlight s", + "Ġpret end", + "Ġlisten ing", + "ĠComp any", + "M y", + "n i", + "Ġp ure", + "ot a", + "ĠM ax", + "Ġconst it", + "Ġsus pect", + "ĠRem ember", + "f riend", + "en ing", + "ĠO pen", + "ick ed", + "Ġty p", + "Ġsold ier", + "H ow", + "l aw", + "or ough", + "ĠAct ually", + "Ġenc oura", + "Ġmultip le", + "ĠS hi", + "ĠC all", + "av al", + "ĠFran cis", + "Ġplan ning", + "Ġ196 0", + "Ġlangu ages", + "Ġmunicip ality", + "Ġturn s", + "ĠCar l", + "A ll", + "Ġth rew", + "ĠC amp", + "ur ance", + "Ġpre vious", + "Ġprogram s", + "Ġfavor ite", + "Ġjour ney", + "ĠS ol", + "ct ors", + "Ġsp ell", + "r as", + "ĠT y", + "Ġcent re", + "Ġpat tern", + "Ġrequ ired", + "or a", + "ut ive", + "Ġr at", + "ĠCon f", + "Ġorgan ization", + "ĠJe ff", + "ĠAg ain", + "Ġ Î", + "Ġm ate", + "Ġre n", + "Ġre ven", + "ĠL ong", + "ĠâĢ ĺ", + "Ġsw ear", + "Ġfre ed", + "Ġmot or", + "Ġcast le", + "4 0", + "6 0", + "Ġf ra", + "Ġd rew", + "Ġgo dd", + "ant ic", + "Ġlo ves", + "Ġqu al", + "Ġ-- &", + "Ġappoint ed", + "ocol ate", + "Ġo w", + "ĠL ight", + "Ġj ournal", + "Ġact ive", + "Ġear s", + "Ġreal ity", + "ĠAny way", + "Ġstru ck", + "ĠIndian a", + "Ġnin et", + "ĠAnge les", + "ĠF ar", + "Ġgr ass", + "Ġcr ack", + "Ġbroad cast", + "w an", + "as y", + "ĠIs lam", + "Ġplan e", + "Ġstre ets", + "Ġexc use", + "ĠGovern or", + "l ig", + "ou red", + "Ġp il", + "Ġg ain", + "om a", + "Ġsc rew", + "Ġturn ing", + "ĠCan ad", + "Ġbeaut y", + "Ġcop y", + "ĠKen ned", + "Ġsch ol", + "R B", + "Ġt ick", + "Ġre act", + "ĠH al", + "Ġsp orts", + "Ġpo et", + "ĠAmeric ans", + "ĠCar ter", + "Ġdem on", + "Ġsil ver", + "w ar", + "ge nd", + "Ġman aged", + "Ġcont r", + "ĠPr ot", + "Ġspl it", + "Ġsignific ant", + "E LL", + "Ġb other", + "Ġun it", + "Ġdestroy ed", + "ĠSat urday", + "A D", + "A n", + "is her", + "Ġp in", + "ir a", + "Ġst ream", + "ord in", + "az z", + "Ġtrans fer", + "Ġphys ical", + "Ġintrodu ced", + "rid ay", + "e f", + "is l", + "Ġc uri", + "ĠH ans", + "Ġpro gress", + "Ġun its", + "Ġ6 0", + "Ġfav our", + "ĠFoot ball", + "r ison", + "re es", + "Ġs outhern", + "Ġc hat", + "ĠP ope", + "ĠSt ar", + "Ġmo b", + "ĠUn cle", + "Ġtrans port", + "Ġposs ibly", + "ĠPar liament", + "ĠSec ond", + "Ġd are", + "Ġg all", + "ac he", + "ĠH ot", + "ĠO w", + "pp y", + "Ġun c", + "Ġsm oke", + "Ġloc ation", + "Ġter rit", + "Ġoper ation", + "Ġmag n", + "r s", + "Ġt im", + "ĠP enn", + "Ġappear s", + "e v", + "u z", + "ĠW ay", + "st ra", + "ad o", + "os en", + "Ġun iverse", + "ĠIs n", + "Ġ199 6", + "Ġeconom ic", + "Ġrout e", + "ĠKenned y", + "b re", + "t r", + "it an", + "Ġl osing", + "ĠTh ink", + "aw a", + "Ġfind ing", + "Ġinst ru", + "ĠEvery body", + "Ġw ake", + "Ġb ub", + "or ter", + "Ġd ressed", + "Ġto ward", + "ar ian", + "ĠS on", + "Ġst ret", + "Ġrel ative", + "Ġhard ly", + "Ġconst ruction", + "Ġaccept ed", + "Ġdru g", + "T S", + "Ġm ale", + "iv ity", + "Ġun ivers", + "Ġlaw s", + "ĠSund ay", + "o ices", + "Ġb ast", + "Ġd irty", + "ĠT urn", + "Ġal tern", + "um ped", + "Ġafter wards", + "Ġshow ing", + "Ġfeel s", + "19 9", + "Ġhum ans", + "Ġadv ant", + "Ġrock s", + "Ġtreat ment", + "Ġindepend ent", + "m o", + "Ġf ought", + "Ġl aug", + "us hing", + "Ġwas h", + "oo per", + "Ġcl ock", + "cl ock", + "Ġfall ing", + "b ook", + "Ġf ruit", + "al ing", + "ĠL ie", + "Ġfl o", + "Ġrequ ire", + "A l", + "p ro", + "Ġ199 8", + "Ġrespons ible", + "Ġin ha", + "ĠWhat ever", + "Ġqu ality", + "Ġsc ream", + "Ġtri al", + ", '", + "k er", + "ĠD O", + "ĠV er", + "Ġret ired", + "Ġsw ord", + "ĠPr ime", + "Ġbra ve", + "Ġsweet ie", + "ĠCent er", + "Ġsymb ol", + "Ġt ong", + "Ġ199 7", + "A meric", + "L D", + "b ell", + "w ith", + "Ġb oo", + "ĠC at", + "ri ff", + "Ġhad n", + "Ġpr ince", + "Ġhelp ing", + "Ġland s", + "Ġocc asion", + "Ġfix ed", + "Ġneigh bor", + "ĠScott ish", + "Ġfinan cial", + "8 0", + "ĠL ast", + "ĠJ ane", + "art ment", + "Ġcomp lic", + "cha nt", + "Ġstat ement", + "2 5", + "n am", + "Ġp leased", + "ge ant", + "ĠNo body", + "ĠAs ia", + "Ġ18 5", + "Ġbott le", + "het ic", + "Ġcand id", + "Ġre nt", + "ĠU K", + "ĠSt ay", + "ach us", + "Ġrec ent", + "Ġinst it", + "ĠTH AT", + "Ġdiv ision", + "U R", + "Ġd iam", + "Ġp ra", + "Ġg host", + "ra ge", + "Ġr ise", + "Ġad op", + "Ġnum er", + "ĠSp eak", + "Ġgi ant", + "Ġlaug hed", + "t ies", + "ĠW atch", + "Ġme as", + "ter ing", + "Ġcon v", + "ost on", + "Ġco at", + "Ġsha d", + "Ġmat ters", + "Ġaud ience", + "Ġdru gs", + "\" ?", + "l ook", + "r at", + "ke nd", + "ĠF ive", + "Ġfl ow", + "uf act", + "r ough", + "he ast", + "Ġg ro", + "ĠS har", + "Ġsc ore", + "Ġexc han", + "Ġpull ed", + "Ġd ying", + "Ġth roat", + "Ġcom edy", + "Ġyoung er", + "Ġexp ress", + "Ġjob s", + "Ġappro ach", + "Ġproduct s", + "Ġrail way", + "Ġtemper ature", + "r ont", + "Ġo dd", + "al a", + "ir al", + "Ġnot iced", + "Ġman ufact", + "ĠDiv ision", + "Ġsaf ety", + "p her", + "Ġf ingers", + "ic ide", + "im um", + "ĠB ull", + "Ġj ail", + "fe ction", + "ok ing", + "ĠBrit ain", + "o ch", + "ol es", + "Ġpre fer", + "Ġend s", + "Ġmin or", + "ĠBl ue", + "Ġentire ly", + "ĠRuss ia", + "Ġimpro ve", + "Ġb ac", + "Ġl ord", + "Ġg ay", + "ĠD en", + "Ġdis play", + "The re", + "ĠTom my", + "Ġwall s", + "im p", + "ĠC are", + "ĠD ou", + "ĠF riday", + "Ġar range", + "ĠV alley", + "Ġun iform", + "Ġpo ly", + "Ġrem ains", + "ĠAt t", + "ĠDid n", + "Ġve h", + "ĠDam n", + "at re", + "ĠW ind", + "am ing", + "Ġwhe el", + "ag n", + "ĠRe v", + "Ġsil ence", + "ĠLea ve", + "ĠSw ed", + "ĠMus ic", + "m ar", + "Ġt iny", + "Ġt ournament", + "ĠI S", + "Ġgra ve", + "Ġgentle man", + "Ġmanage ment", + "Ġc ards", + "ĠI re", + "es sel", + "Ġre form", + "Ġli br", + "cl es", + "ĠSh it", + "ĠEvery one", + "Ġconst ant", + "2 3", + "A C", + "l ict", + "o ir", + "u yeh", + "Ġd ar", + "ĠM od", + "ly ing", + "ct s", + "il ty", + "hi a", + "Ġdefe ated", + "ĠCanad ian", + "Ġp it", + "ian a", + "oc ent", + "ĠMar ia", + "Ġthousand s", + "Ġstep s", + "T H", + "Ġs in", + "Ġb odies", + "ic ate", + "ĠS it", + "id ents", + "ĠM ove", + "Ġrem oved", + "Ġpolit ics", + "omin ated", + "Ġoppos ite", + "on se", + "ir k", + "ĠB re", + "Ġli ber", + "ather ine", + "ys is", + "ĠSome one", + "Ġbas ic", + "Ġsol ution", + "Ġeff ort", + "Y eah", + "u a", + "am in", + "ĠSh ould", + "Ġrece ive", + "Ġcir cle", + "ĠDad dy", + "ĠEar ly", + "cell ent", + "ste in", + "Ġb at", + "Ġm ax", + "Ġn ucle", + "Ġha st", + "ĠS ummer", + "ĠW all", + "ĠR ose", + "ĠR ural", + "ĠF ort", + "Ġknow ing", + "ell y", + "Ġpro ceed", + "Ġtra ve", + "Ġent ertain", + "Ġauthor ity", + "u ous", + "Ġf aster", + "en ced", + "et ts", + "Ġbe ach", + "ĠO x", + "Ġde lic", + "ĠV al", + "Ġass um", + "Ġdet ails", + "Ġconne cted", + "E C", + "Ġus ual", + "Ġag ent", + "Ġqu een", + "Ġaf ford", + "Ġra ise", + "Ġmus ical", + "Ġgun s", + "Ġfif th", + "Th is", + "ĠSus an", + "ĠH oly", + "Ġme l", + "ĠK oh", + "Ġsome what", + "Ġevery where", + "Ġch ocolate", + "oc key", + "ham mad", + "Ġattack ed", + "ĠLat in", + "Ġsett led", + "Ġrap id", + "U GH", + "Ġb are", + "ĠM ich", + "hi o", + "-- \"", + "Ġcont ains", + "Ġ3 5", + "hamp ion", + "ĠO b", + "ĠE ll", + "Ġcom ment", + "Ġsp oken", + "Ġmat ches", + "Ġ199 4", + "Ġ199 5", + "Ġcomple ted", + "Ġprov ided", + "2 4", + "p a", + "Ġt un", + "ĠN ick", + "ct ic", + "ĠJ oseph", + "be y", + "ĠCon stitution", + "Ġaw ful", + "Ġconvers ation", + "D o", + "u als", + "Ġc ous", + "ĠS H", + "ĠS ur", + "ĠD utch", + "ĠG O", + "Ġkn ife", + "Ġman ner", + "ĠAn n", + "Ġjo ke", + "e an", + "ĠA wards", + "Ġk m", + "Ġan x", + "Ġse es", + "Ġe h", + "ĠB on", + "Ġro yal", + "Ġgood s", + "og ether", + "Ġfl u", + "Ġhigh ly", + "Ġca uses", + "19 7", + "Ġforg otten", + "Ġclos er", + "Ġcred it", + "b b", + "b ar", + "o very", + "ĠM i", + "Ġfl ower", + "Ġslight ly", + "Ġchick en", + "Ġnewsp aper", + "achus etts", + "d a", + "j a", + "v ad", + "Ġf ired", + "an ing", + "ĠM em", + "ke ep", + "Ġab ility", + "Ġinter p", + "u gg", + "Ġw estern", + "Ġf al", + "ĠN orm", + "Ġsh ore", + "ĠĠĠĠ ĠĠĠ", + "Ġuse ful", + "Ġpres ence", + "ĠWho a", + "Ġexp ensive", + "Ġwin ning", + "ĠComm un", + "ĠDan iel", + "Ġav oid", + "Ġmajor ity", + "Ġcoun ter", + "Ġactiv ity", + "Ġbud get", + "Ġp a", + "Ġst ro", + "Ġli ps", + "Ġsu gar", + "Ġbring ing", + "Ġfoc us", + "ĠSecret ary", + "r ick", + "ĠB at", + "ĠIn ter", + "ag ing", + "Ġad vent", + "Ġrec omm", + "Ġfeel ings", + "Ġgl ob", + "Ġstud ies", + "Ġrest aur", + "Ġcal cul", + "ĠRepublic an", + "g il", + "l ied", + "p ut", + "w ater", + "st ances", + "ĠR oll", + "em ic", + "ĠCol umb", + "ĠEl iz", + "van ia", + "g ers", + "ĠG ra", + "th ur", + "Ġear n", + "Ġwee kend", + "Ġshoot ing", + "Ġprin cess", + "Ġvict ory", + "ĠMus lim", + "Ġchem ical", + "Ġalcoh ol", + "ĠT own", + "ĠD et", + "Ġsw itch", + "cept ion", + "ĠAustral ian", + "Ġextreme ly", + "ĠMass achusetts", + "E E", + "d own", + "Ġm ap", + "um an", + "Ġr ow", + "Ġtr ick", + "tain ed", + "Ġsuggest ed", + "c ar", + "u it", + "u an", + "nd y", + "Ġo cean", + "Ġin vent", + "ĠS ix", + "ĠM ust", + "ĠB ru", + "ĠJ on", + "Ġex er", + "are n", + "Ġpre m", + "Ġdr ama", + "ĠGeor g", + "Ġstat us", + "Ġaut om", + "b oy", + "ĠM um", + "ĠR ick", + "um n", + "Ġ3 2", + "I s", + "P S", + "ing u", + "Ġl in", + "ĠD un", + "ĠR un", + "Ġsh irt", + "ĠIn st", + "Ġcons ist", + "Ġele ment", + "Ġgra ph", + "Ġadv ice", + "f ather", + "p ea", + "Ġa im", + "ĠS outhern", + "ĠC hild", + "em an", + "pl ace", + "Ġgu ilty", + "Ġunder stood", + "Ġpri or", + "Ġconst ru", + "Ġresour ces", + "j o", + "s m", + "v est", + "Ġw rest", + "ed ing", + "il a", + "ĠG ames", + "ĠR el", + "Ġv essel", + "Ġche st", + "Ġfull y", + "Ġgold en", + "ĠAdd ons", + "Ġesc ap", + "Ġninet een", + "b ow", + "Ġt ough", + "le g", + "Ġr um", + "Ġno ise", + "ĠSo ciety", + "iz es", + "int end", + "Ġown ed", + "Ġset ting", + "ĠFran ces", + "ĠCarol ina", + "en ger", + "ĠA y", + "Ġli qu", + "ĠK ansas", + "Ġco al", + "Ġpr ime", + "uck les", + "Ġres ist", + "Ġtrad ition", + "Ġfle w", + "ĠMich igan", + "c ol", + "à ¤", + "Ġn erv", + "ĠS ub", + "Ġu lt", + "Ġup stairs", + "Ġplan ned", + "Ġdraw ing", + "Ġcollect ion", + "Ġbenef it", + "I ON", + "Ġpass ing", + "Ġdam age", + "ĠSen ate", + "ĠPri ze", + "Ġcommer cial", + "z il", + "ĠT ay", + "ĠL is", + "un ched", + "ol ved", + "Ġres c", + "Ġdes ire", + "Ġappear ance", + "Ġoccur red", + "Ġaward ed", + "Ġt rib", + "Ġb ranch", + "en es", + "Ġth in", + "ĠH mm", + "Ġse m", + "port s", + "Ġcare fully", + "ac le", + "Ġpro of", + "ĠIn stitute", + "Ġhel ps", + "Ġkeep s", + "Ġdr am", + "Ġ199 2", + "AN T", + "Ġmag ic", + "por ary", + "Ġg ift", + "ul ate", + "os a", + "Ġup set", + "Ġother wise", + "Ġpart ies", + "Ġfl ag", + "Ġtra ffic", + "ham ber", + "Ġexp ression", + "Ġpresent ed", + "ĠGr oup", + "ĠOlymp ics", + "Ä ĩ", + "ĠT en", + "Ġnot es", + "ĠF ire", + "ab eth", + "Ġcl oud", + "Ġun f", + "Ġshould er", + "Ġcar bon", + "Ġexp and", + "Ġperfect ly", + "Ġhang ing", + "i as", + "in ent", + "Ġf ederal", + "ĠM hm", + "Ġch osen", + "ĠBr ad", + "Ġinst ance", + "Ġsex ual", + "Ġintell ig", + "f all", + "g ment", + "on ia", + "ĠB ad", + "ĠN az", + "ĠD or", + "ĠD aw", + "ce l", + "Ġat e", + "Ġapp eal", + "ĠDe ath", + "ric ane", + "ER E", + "Ġdet ail", + "sy l", + "Ġmur d", + "Ġsca le", + "Ġconne ction", + "Ġlim ited", + "Ġpun ish", + "he art", + "ĠC am", + "ir lf", + "Ġdo ors", + "Ġ199 1", + "Ġsign al", + "Ġmount ains", + "Ġneigh bour", + "itz er", + "Ġwat ched", + "ĠDep artment", + "irlf riend", + "is y", + "ĠW ater", + "ĠH ad", + "ĠO hio", + "Ġcon cent", + "Ġunderstand ing", + "Ġadm it", + "Ġrepresent ed", + "Ġcab in", + "pea re", + ". )", + "ĠT ry", + "ĠV en", + "Ġbl ank", + "Ġdis ci", + "Ġkill er", + "Ġexc ited", + "Ġeffect s", + "kes peare", + "i est", + "Ġt ears", + "Ġc ream", + "Ġsp in", + "Ġapp le", + "Ġcha in", + "Ġbre aking", + "Ġnorth west", + "Ġlab or", + "g le", + "r ant", + "Ġp ill", + "Ġn arrow", + "Ġwe bs", + "ĠSt and", + "Ġ4 5", + "Ġ199 3", + "Ġpass ion", + "ĠHar ry", + "Ġincre ased", + "Ġdan cing", + "ĠKoh gil", + "ĠKohgil uyeh", + "2 1", + "p al", + "Ġ eth", + "Ġw ings", + "ĠA unt", + "ĠH or", + "ĠN ic", + "ra in", + "Ġcon c", + "res p", + "Ġap olog", + "Ġadvant age", + "an o", + "Ġh ook", + "et ch", + "ĠB es", + "Ġu ne", + "ur d", + "Ġhear ing", + "Ġposs ess", + "Ġbes ide", + "Ġc ateg", + "ĠT re", + "ĠM en", + "ĠC O", + "Ġst ations", + "ĠSt an", + "Ġ9 0", + "Ġresp onse", + "Ġcarry ing", + "Ġlaugh ing", + "Ġdecl ared", + "Ġremem bered", + "Ġl oose", + "ĠA v", + "Ġst ated", + "Ġmag azine", + "Ġteacher s", + "Ġnin ety", + "er ves", + "Ġhe ight", + "Ġre action", + "Ġbut ton", + "ind a", + "Ġtr oub", + "Ġqu it", + "Ġsign s", + "Ġ7 0", + "Ġbas is", + "erv ation", + "Ġgrow th", + "Ġbull et", + "ĠPenn syl", + "à ¦", + "en ny", + "Ġn urs", + "ĠS om", + "ĠM az", + "ĠB al", + "ur se", + "ĠD ave", + "qu ar", + "Ġun ique", + "Ġforg ive", + "Ġachie ve", + "v y", + "Ġl it", + "Ġn om", + "Ġn ea", + "ĠH it", + "ĠO ffic", + "Ġse vere", + "ĠU nt", + "Ġans w", + "Ġball s", + "Ġdro ve", + "Ġbill ion", + "R A", + "Ġf an", + "Ġf old", + "ĠI II", + "ĠT er", + "ic y", + "Ġh iding", + "ol ks", + "ul ated", + "Ġmy ster", + "ĠK im", + "Ġsha red", + "Ġmic ro", + "ĠWel come", + "Ġd yn", + "ĠA ri", + "ĠW ork", + "ĠB road", + "Ġmy th", + "Ġgra b", + "Ġkid ding", + "Ġdiv or", + "Ġhon our", + "Ġfig ures", + "Ġnorm ally", + "ĠHur ry", + "ĠKent ucky", + "ĠIre land", + "C ause", + "Ġf urn", + "Ġd im", + "ĠO s", + "Ġsh r", + "Ġcl imate", + "Ġcomm ittee", + "Ġthought s", + "ĠEx actly", + "Ġfail ure", + "Ġda ily", + "2 9", + "Ġb ang", + "Ġm useum", + "ver se", + "ound ing", + "Ġqu ant", + "Ġpo ison", + "Ġown er", + "Ġlea gue", + "Ġdri ver", + "ĠAny thing", + "ĠMc C", + "ĠJe an", + "Ġshar p", + "\" ).", + "_ .", + "Ġu g", + "Ġpl enty", + "ĠCl ass", + "Ġstay ing", + "ĠPet e", + "ĠSha kespeare", + "augh s", + "ĠBra zil", + "Ġcomfort able", + "ĠDemocr atic", + "Americ an", + "Ġc as", + "Ġp ha", + "Ġl atter", + "ĠT a", + "ent ed", + "ĠH ea", + "ĠB ern", + "Ġshe ll", + "Ġshe ep", + "ĠAs ian", + "Ġfollow s", + "ĠJohn son", + "rop ri", + "Ġmix ed", + "u i", + "Ġt al", + "Ġf ant", + "Ġp owers", + "ĠM useum", + "Ġst om", + "ĠL and", + "ĠAnd rew", + "ĠSo on", + "Ġbl ame", + "Ġeas tern", + "Ġviol ence", + "ĠPennsyl vania", + "ĠS el", + "ĠF ollow", + "Ġwork ers", + "Ġcons cious", + "Ġinv ited", + "Ġwind ows", + "rop ical", + "Ġvar iety", + "ĠPac ific", + "g ency", + "i ven", + "k o", + "n ic", + "Ġl at", + "ĠH ung", + "ĠD ra", + "ĠJ ones", + "ĠK at", + "ĠK han", + "Ġmat hem", + "ĠInd e", + "Ġimp act", + "Ġadv ance", + "ĠWilliam s", + "Ġm ail", + "ust ration", + "Ġv irt", + "Ġgu itar", + "Ġcr im", + "ĠOr der", + "Ġtrans form", + "Ġcol on", + "Ġpri ze", + "Ġclass es", + "Ġappro x", + "Ġgod s", + "Ġdeb ut", + "Ġdisapp eared", + "Ġhistor ical", + "Ġdeli ver", + "Ġcitiz ens", + "m pt", + "o is", + "Ġt ask", + "Ġd ed", + "ĠA my", + "ĠC ivil", + "ak i", + "Ġun ion", + "Ġdes per", + "oc al", + "Ġdra gon", + "Ġprotect ion", + "arr ass", + "M an", + "ĠB eth", + "ĠB rand", + "ĠO l", + "ĠE st", + "ĠE du", + "ak a", + "Ġsome how", + "ond er", + "ĠLook s", + "Ġsle pt", + "Ġsil ent", + "Ġhy p", + "Ġtong ue", + "Ġt ied", + "ĠM ond", + "ĠB oston", + "Ġas pect", + "ĠP ap", + "ra el", + "est ic", + "ĠK ong", + "Ġchan ging", + "Ġtown s", + "Ġpur cha", + "ĠSha ll", + "Ġprop osed", + "Ġcapt ured", + "ĠSid ney", + "ĠLie utenant", + "Ġinha bit", + "r d", + "w hile", + "Å «", + "Ġw id", + "ĠH an", + "ĠB ea", + "Ġmy st", + "Ġsu ffe", + "Ġun known", + "ict ed", + "ĠCh ris", + "Ġche ese", + "Ġdra wn", + "Ġart ists", + "Ġfall en", + "Ġsqu ared", + "Ġoper ations", + "B e", + "Ġt or", + "Ġc ig", + "ĠT ri", + "ĠM AN", + "ĠD own", + "ĠG il", + "ĠR aj", + "ang le", + "Ġser ving", + "che stra", + "Ġ195 0", + "ĠSte ve", + "inc ol", + "L Y", + "m at", + "in ity", + "ot ion", + "ĠS uch", + "ent ially", + "am ily", + "Ġk il", + "ĠN ight", + "ct ures", + "Ġse lling", + "Ġsha me", + "Ġconf lict", + "ĠEd ward", + "ipp ing", + "Ġmot ion", + "Ġassoci ated", + "semb ly", + "Ä «", + "Ġt ap", + "ĠM iddle", + "Ġcon ference", + "Ġeat en", + "Ġsupport ed", + "Ġsettle ment", + "Ġg irlfriend", + "ow ed", + "Ġro les", + "Ġold est", + "Ġpay ing", + "Ġfair ly", + "Ġnerv ous", + "I V", + "he im", + "Ġw ave", + "Ġs alt", + "ĠC ross", + "Ġor ange", + "Ġdis m", + "Ġdis s", + "Ġwr it", + "Ġch ose", + "Ġste el", + "Ġresp ond", + "hen s", + "Ġfif teen", + "Ġmult i", + "Ġstri ke", + "Ġarrest ed", + "ĠCast le", + "Ġholid ay", + "S he", + "c est", + "r un", + "z er", + "ĠT ol", + "Ġbe er", + "ĠW alk", + "st one", + "ĠY ear", + "ĠG y", + "ĠG ame", + "Ġsee k", + "ĠWe ndy", + "Ġcr icket", + "Ġfield s", + "Ġmaterial s", + "ĠKore a", + "Ġfreed om", + "Ġa x", + "Ġb oot", + "Ġc ake", + "ill ed", + "end ment", + "Ġprim ary", + "Ġbast ard", + "Ġdar ling", + "2 8", + "Ġf ile", + "Ġto w", + "Ġp iano", + "Ġl one", + "Ġwe alth", + "ĠR am", + "Ġpre viously", + "ĠEn ter", + "bur gh", + "Ġfeat ured", + "7 0", + "g or", + "y o", + "Ġse asons", + "ĠL ar", + "ĠE v", + "ĠE ric", + "Ġab and", + "ack s", + "pe red", + "Ġim pl", + "Ġad vert", + "Ġreal ized", + "Ġprodu cer", + "Ġsix ty", + "ĠEm peror", + "Ġord inary", + "Ġfamil iar", + "Ġstom ach", + "w ide", + "Ġt ie", + "Ġs ust", + "Ġo oh", + "Ġg ate", + "ĠE h", + "os ition", + "Ġback ground", + "amp s", + "Ġche er", + "Ġboy friend", + "Ġins urance", + "Ġpat ients", + "Ġter ror", + "Ġtreat ed", + "Ġemb arrass", + "Ġdeterm ined", + "Ġsuffe red", + "b ury", + "s pect", + "Ġm ama", + "ĠH u", + "ĠH ome", + "ad ium", + "ur b", + "Ġpart ners", + "Ġbr ide", + "Ġ8 0", + "Ġexper iment", + "Ġvar i", + "Ġve get", + "Ġhy d", + "Ġhop ing", + "Ġp ink", + "at i", + "ĠT im", + "ell ed", + "ĠTh us", + "ĠAr thur", + "Ġ198 9", + "Ġlab el", + "Ġrespons ibility", + "Ġinn ocent", + "Ġscient ific", + "Ġphilosop hy", + "S P", + "b i", + "Ġd iet", + "Ġg ang", + "ĠH E", + "ĠY et", + "Ġsp ort", + "Ġle gend", + "Ġmin ister", + "Ġbegin s", + "ĠComm ission", + "ĠJul ie", + "Ġarg ument", + "Ġweap ons", + "r ical", + "u ps", + "Ġha m", + "Ġre ck", + "ro ll", + "ĠB E", + "Ġso il", + "ell a", + "Ġgu est", + "Ġapp arently", + "Ġsupp ly", + "ĠZ eal", + "Ġpri est", + "Ġhundred s", + "ĠSer geant", + "Ġbasket ball", + "A LL", + "is er", + "Ġf ancy", + "ĠH ol", + "ad d", + "Ġbr ings", + "ult ure", + "Ġsol id", + "Ġeconom y", + "Ġactiv ities", + "Ġapart ment", + "Ġweap on", + "Ġappreci ate", + "l ock", + "Ġb ite", + "ing ing", + "ĠT imes", + "ĠS up", + "ĠW ales", + "ur ally", + "ĠR h", + "Ġso le", + "Ġpre par", + "Ġjo int", + "Ġwond ering", + "ĠAd am", + "Ġcircum stances", + "ĠH ard", + "um s", + "em ents", + "ree k", + "Ġsc hed", + "Ġchan nel", + "osp here", + "Ġexist ence", + "Ġburn ed", + "ĠPort ug", + "IGH T", + "S B", + "S T", + "p et", + "Ġt one", + "is ation", + "Ġb unch", + "Ġc ott", + "Ġin qu", + "all s", + "ĠL incol", + "Ġco ck", + "Ġart icle", + "Ġfil ms", + "Ġeng aged", + "Ġprofess or", + "Ġdisapp oint", + "ĠFil m", + "2 7", + "b et", + "is p", + "am an", + "ĠM ir", + "ĠC ab", + "Ġwith d", + "ĠU s", + "Ġgood ness", + "Ġpre gn", + "ĠIs rael", + "ĠAl ice", + "The y", + "19 8", + "Ġserious ly", + "ĠJac ob", + "3 4", + "3 5", + "Ġon line", + "ĠF estival", + "Ġen s", + "Ġun us", + "ĠMar sha", + "Ġroom s", + "Ġ198 8", + "Ġcou rage", + "Ġcross ed", + "Ġhom es", + "ĠPak istan", + "N ot", + "ot ic", + "Ġu pper", + "Ġsu ck", + "em ies", + "ard ens", + "Ġfe ature", + "Ġdes cend", + "Ġfind s", + "stand ing", + "br idge", + "Ġlevel s", + "igg ler", + "Ġju ice", + "ĠBes ides", + "Ġw ished", + "Ġb atter", + "Ġd ish", + "ĠT ha", + "ĠSt ation", + "Ġmay or", + "ĠAs h", + "Ġcr own", + "Ġrel ax", + "Ġbo om", + "Ġcle ver", + "ĠZ iggler", + "Ġla unched", + "Ġincre asing", + "Ġlim it", + "Ġsuff ering", + "L et", + "er k", + "Ġb order", + "ly n", + "Ġnot ed", + "ĠG al", + "ĠL uc", + "ĠR ich", + "Ġ( ;", + "Ġinc red", + "Ġstr ing", + "Ġ197 9", + "Ġisland s", + "Ġsus pic", + "Ġs ales", + "it o", + "Ġd u", + "Ġg ather", + "Ġhe av", + "ĠN orthern", + "Ġex act", + "hes s", + "ĠCl a", + "Ġsol ve", + "ĠAtlant ic", + "Ġfal se", + "ĠZeal and", + "F L", + "Ġw ise", + "ar n", + "Ġh o", + "ĠN ap", + "ie ce", + "Ġcon sequ", + "Ġro ot", + "we et", + "Ġche ap", + "Ġdisc over", + "ĠCal vad", + "Ġrecogn ized", + "Ġinstr ument", + "ĠCalvad os", + "G ood", + "r ot", + "ow der", + "ut her", + "am n", + "ĠP op", + "ĠR om", + "ĠE astern", + "Ġr iding", + "Ġdist inct", + "Ġ198 2", + "Ġhands ome", + "Ġcontin ues", + "Ġant i", + "Ġwa ited", + "ĠServ ice", + "G E", + "Ġw ha", + "ar io", + "ĠR on", + "Ġcon qu", + "Ġpl ate", + "Ġint ended", + "Ġatt ended", + "ĠDe f", + "Ġacc omp", + "Ġstand s", + "Ġfall s", + "ĠJew ish", + "Ġlibr ary", + "a res", + "Ġd ust", + "ĠT alk", + "ĠN E", + "ĠN avy", + "ĠL ab", + "ĠF OR", + "ĠF ox", + "Ġwho a", + "ĠĠĠĠ Ġ", + "Ġsha ke", + "ins on", + "ok ed", + "Ġadd itional", + "Ġfr ame", + "Ġ198 4", + "Ġconcer t", + "Ġchallen ge", + "C E", + "r ad", + "Ġw ounded", + "Ġs ed", + "id en", + "Ġan cest", + "ĠMar g", + "Ġele ven", + "ok es", + "Ġsent ence", + "Ġleg isl", + "ĠDan ny", + "Ġconcer n", + "Ġestab lish", + "Ġrid ic", + "Ġrepe ated", + "ĠJer sey", + "ĠConf eder", + "Ġug ly", + "B l", + "Ġw itch", + "ĠT oo", + "ĠC op", + "Ġat m", + "Ġr ac", + "Ġr ang", + "iz ations", + "Ġspe ct", + "Ġimport ance", + "Ġpain t", + "Ġcommon ly", + "Ġsurv ive", + "Ġeff orts", + "ĠEdu c", + "S p", + "e xt", + "j an", + "nd e", + "Ġb rill", + "al y", + "Ġha bit", + "Ġst ir", + "ĠV an", + "erm an", + "Ġcomp on", + "Ġhapp iness", + "olog ist", + "Ġcap ac", + "ĠAb s", + "Ġref used", + "Ġgovern or", + "Ġexchan ge", + "O D", + "u art", + "Ġ {", + "ar ia", + "ĠO cean", + "ĠP ic", + "Ġgot ten", + "Ġar ran", + "Ġcl ient", + "Ġear ned", + "Ġtra il", + "Ġsen ior", + "fortun ately", + "Ġcous in", + "ĠEliz abeth", + "2 2", + "A s", + "O B", + "m ond", + "r ich", + "à ¤", + "Ġp ool", + "ĠS ong", + "ĠG rey", + "ĠR yan", + "ĠIn c", + "Ġfriend ly", + "Ġ198 7", + "Ġcrit ical", + "Ġcomb ination", + "ĠOx ford", + "Ġs ons", + "Ġrecogn ize", + "Ġagre ement", + "b ox", + "t i", + "u ce", + "Å į", + "Ġw ore", + "Ġm ort", + "Ġd ies", + "Ġl ake", + "ĠT em", + "Ġ\" \"", + "ĠG reg", + "ĠR a", + "Ġr ot", + "ak h", + "Ġcomm ission", + "Ġele ments", + "ĠNew s", + "Ġpoint ed", + "Ġdec isions", + "Ġ6 4", + "19 6", + "ĠIr ish", + "S c", + "Ġd un", + "as hing", + "ĠG er", + "ive red", + "Ġv ia", + "-- --", + "Ġcont est", + "ect ion", + "Ġbre ast", + "Ġexp ed", + "Ġliter ature", + "Ġinterp ret", + "V ER", + "d ed", + "m es", + "w o", + "Ġo we", + "ĠY ep", + "Ġwor ship", + "Ġpro ced", + "ĠAr ch", + "Ġinte gr", + "Ġsort s", + "Ġassist ant", + "ĠUnt il", + "d on", + "l ies", + "Ġf olk", + "Ġto wer", + "Ġh idden", + "ĠB us", + "ĠB ush", + "Ġjust ice", + "Ġthr own", + "ph y", + "Ġsy mpt", + "ĠFor ce", + "Ġob vious", + "ĠCol onel", + "Ġbene ath", + "ĠLincol n", + "es h", + "ĠA k", + "ĠH ind", + "ĠL A", + "Ġsh ook", + "ep s", + "ĠAs s", + "Ġdev il", + "Ġhun ting", + "ĠA T", + "Ġall ows", + "ĠWe re", + "Ġfl ood", + "Ġgar age", + "Ġterrit ory", + "5 00", + "s he", + "ê ¯", + "re ts", + "Ġd read", + "ĠW ant", + "el p", + "ag ue", + "Ġsp are", + "per ial", + "Ġac id", + "Ġcor por", + "ĠEm ily", + "pha nt", + "ĠDire ctor", + "9 0", + "Ġ ic", + "Ġa unt", + "Ġwe b", + "ĠE le", + "Ġex cellent", + "Ġ18 4", + "ier ce", + "app ing", + "Ġconne ct", + "Ġphot o", + "hib ition", + "o oth", + "à ´", + "Ġf ishing", + "ĠC y", + "ĠG all", + "un ny", + "ĠJ ill", + "Ġpl ot", + "Ġag ric", + "ĠV iet", + "Ġcomm itted", + "Ġsy mp", + "Ġev olution", + "Ġcreat ing", + "Ġill eg", + "Ġdark ness", + "for ce", + "ĠBel g", + ". [", + "T ING", + "W ho", + "w a", + "Ġm ood", + "ĠM id", + "ĠG a", + "Ġid iot", + "Ġexpl ained", + "Ġdeg rees", + "Ġlock ed", + "ĠBer lin", + "ĠRog er", + "e er", + "re ll", + "ĠA is", + "ĠW E", + "ĠM E", + "ro se", + "Ġas ide", + "Ġse lected", + "ĠIn tern", + "Ġatt itude", + "Ġsure ly", + "ale m", + "Ġ197 1", + "Ġoffic ially", + "ĠRoman ized", + "Ġrefer red", + "Ġsevent y", + "Ġcomplic ated", + "ĠRev olution", + "Ġcrim inal", + "3 8", + "N ow", + "w orks", + "in n", + "Ġw ound", + "Ġp ages", + "ĠT est", + "ĠM att", + "oo ps", + "ĠD i", + "ust ed", + "Ġcon vin", + "ĠK ill", + "Ġen emies", + "ord on", + "Ġ198 1", + "Ġexpl os", + "hm m", + "ĠComm ittee", + "Ġval ues", + "Ġeffect ive", + "ĠMond ay", + "ĠSup reme", + "g ues", + "p re", + "ou ri", + "Ġc ute", + "as p", + "ĠT op", + "ĠH and", + "ĠH olly", + "ad er", + "Ġk itt", + "ĠP erson", + "ĠF air", + "ain ts", + "Ġpro ved", + "Ġar med", + "Ġun able", + "Ġmo ves", + "av a", + "ult ural", + "ger y", + "Ġnear by", + "Ġmill ions", + "ĠIsland s", + "ĠSar ah", + "ĠAlex ander", + "itzer land", + "Ġl ion", + "le nd", + "Ġh ired", + "Ġde ck", + "Ġra nd", + "Ġ18 0", + "Ġhar der", + "Ġsub st", + "Ġgener ation", + "Ġdeal ing", + "ĠTw enty", + "Ġest ate", + "Ġtou ched", + "Ġhealth y", + "Ġglass es", + "Ġscient ists", + "O L", + "n ce", + "z ing", + "Ġg re", + "im ents", + "ĠC ro", + "ĠD uke", + "Ġr hy", + "ĠK n", + "Ġfe ather", + "ĠV ice", + "Ġcomp ared", + "Ġcr ash", + "Ġsur re", + "ron ic", + "Ġste al", + "Ġreport s", + "eal ous", + "Ġscar ce", + "] .", + "ing ly", + "ar ant", + "Ġn ut", + "ĠW r", + "out s", + "ĠR oss", + "ĠE dd", + "Ġbu ying", + "Ġmed al", + "Ġcommun ities", + "Ġce re", + "aim ed", + "Ġdepend s", + "ĠBo ard", + "3 6", + "ĠB rian", + "Ġdo zen", + "Ġwh ist", + "ea ks", + "um es", + "Ġcon ce", + "Ġsa le", + "ca hedron", + "Ġret ire", + "Ġem pire", + "ĠEr as", + "Ġdisapp ear", + "ĠSim on", + "Ġdel ay", + "\" ),", + "S o", + "h u", + "Ġs isters", + "is ms", + "ot o", + "ĠH ang", + "ol en", + "ĠJ r", + "Ġmo le", + "Ġele v", + "ĠJohn ny", + "ĠSw itzerland", + "ades h", + "Ġbelong s", + "IF A", + "ĠMaz ra", + "' ,", + "or ge", + "ĠC ut", + "Ġsu fficient", + "ep ing", + "Ġwhen ever", + "Ġtr uly", + "Ġle cture", + "ĠBe ach", + "Ġfun eral", + "ĠCon st", + "Ġequ als", + "Ġcreat ure", + "Ġve ctor", + "Ġproper ly", + "Ġsoft ware", + "AP TER", + "ĠRec ords", + "T V", + "b ably", + "Ġl ift", + "ĠH un", + "ĠB ook", + "ĠB ank", + "ĠN ether", + "ce ler", + "Ġpl astic", + "Ġshe l", + "Ġthem e", + "be c", + "ĠAn na", + "Ġsim pl", + "Ġ197 6", + "app y", + "Ġhor rible", + "ĠGu ard", + "Ġspend ing", + "ĠTur k", + "Ġcru el", + "ĠAdm iral", + "ĠInst ead", + "ĠMazra eh", + "f oot", + "ĠA D", + "ĠY o", + "ch ief", + "our s", + "Ġsu icide", + "end er", + "ile y", + "ath y", + "Ġ198 6", + "Ġcol ors", + "Ġclose ly", + "Ġmer chant", + "S C", + "b ased", + "Ġto ile", + "Ġbe ast", + "ĠC ub", + "ĠB ow", + "ĠN an", + "ĠG re", + "Ġ3 6", + "ĠGerm ans", + "erv ative", + ".... ....", + "Ġbath room", + "Ġanal ysis", + "wr iter", + "Ġnumer ous", + "Ġrand om", + "L a", + "a a", + "g reg", + "h ole", + "Ġm ental", + "Ġn est", + "ĠB attle", + "ĠB illy", + "ĠO li", + "ĠTr ust", + "Ġmark ed", + "Ġeight y", + "Ġple asant", + "ĠCo ast", + "Ġemer gency", + "Ġdescri be", + "Ġinstru ctions", + "ropri ate", + "ĠEras mus", + "R UN", + "p ired", + "Ġt ort", + "re ck", + "Ġb on", + "or ial", + "Ġre ar", + "un te", + "Ġsc ript", + "Ġnight s", + "gg ing", + "ah o", + "Ġhigh way", + "Ġsix th", + "Ġwood s", + "Ġenjoy ed", + "ĠBet ty", + "Ġinj ury", + "ĠCH APTER", + "Ġreview s", + "Ġinvestig ation", + "F oot", + "W here", + "Ġb orrow", + "it ors", + "Ġf ate", + "Ġd ude", + "ĠT on", + "Ġh orn", + "ut ies", + "ĠB oss", + "ell e", + "ap h", + "Ġ5 00", + "eak ing", + "Ġ198 5", + "Ġexpl an", + "Ġadv anced", + "ĠPol ice", + "Ġrev olution", + "ĠTur key", + "Ġapplic ation", + "Ġst ole", + "ĠL ib", + "ĠR ab", + "ĠR od", + "and y", + "ip ment", + "Ġfl ash", + "Ġair port", + "Ġwin ner", + "Ġprot est", + "ĠSu pp", + "ĠGeorg ia", + "K E", + "K ING", + "N ew", + "i at", + "à ¢", + "Ġ rib", + "Ġto oth", + "Ġto ys", + "Ġto ols", + "Ġn ominated", + "ĠS ab", + "ĠSo cial", + "Ġlo ad", + "Ġcomp osed", + "Ġer a", + "Ġobs erved", + "wh ich", + "Ġswim ming", + "b ra", + "Ġt ear", + "Ġb ran", + "Ġp ity", + "el a", + "ons cious", + "Ġdra ft", + "Ġ196 4", + "Ġill ust", + "Ġcook ing", + "Ġphot ograph", + "ĠSen ator", + "Ġmor al", + "ĠFrancis co", + "c ri", + "w orth", + "Ġo k", + "ĠS han", + "im al", + "ĠM ah", + "ĠB ha", + "un ction", + "ol t", + "os al", + "Ġph r", + "Ġcoll ea", + "Ġcommun ication", + "Ġstrong er", + "ĠCha ir", + "Ġpot ential", + "Ġbud dy", + "Ġ ¶", + "B S", + "N orm", + "P h", + "s an", + "Ġ Ì", + "Ġt icket", + "ĠB udd", + "ĠF a", + "Ġsa ving", + "age ment", + "Ġtalk s", + "ĠAn th", + "ĠGood bye", + "Ġbad ly", + "ĠGree ce", + "Ġperm an", + "Ġindepend ence", + "Ġrecomm end", + "Ġlone ly", + "l av", + "Ġp ale", + "Ġy ard", + "le m", + "ĠM ind", + "ĠD ie", + "ĠP ers", + "and al", + "os is", + "og ue", + "Ġtra ins", + "az e", + "Ġed itor", + "Ġ197 8", + "Ġexc iting", + "EN T", + "Ġmethod s", + "Ġatm osphere", + "C ome", + "c ont", + "w ich", + "Ġc hampion", + "Ġm ile", + "ĠA w", + "Ġe c", + "Ġv ent", + "ĠV ol", + "ĠAs sy", + "Ġcent uries", + "Ġrecord ing", + "Ġoper a", + "Ġoper ating", + "rog en", + "Ġburn ing", + "Ġadop ted", + "Ġwebs ite", + "Ġw and", + "Ġf olks", + "ĠN a", + "un ior", + "Ġdec or", + "Ġpain ted", + "ĠMiss ouri", + "Ġstat istics", + "Ġrul ed", + "ĠWil son", + "Ġfright ened", + "Ġsucceed ed", + "s a", + "he w", + "Ġs ink", + "Ġd umb", + "Ġre ference", + "ĠC hi", + "ri fic", + "ĠF IFA", + "Ġapp ly", + "Ġapp lied", + "ER S", + "Ġdiffic ulty", + "Ġident ity", + "ĠWal ter", + "Ġrestaur ant", + "Ġ /", + "Ġc ert", + "Ġst ab", + "ĠP en", + "Ġv ision", + "we ight", + "ens es", + "Ġcomm it", + "Ġreg ret", + "Ġsy n", + "Ġ198 3", + "ĠSome body", + "Ġdef in", + "Ġste am", + "Ġsend ing", + "ĠPhil ipp", + "ĠOff ice", + "i Äĩ", + "Ġf art", + "en cies", + "ĠT ang", + "ir us", + "se x", + "Ġan ger", + "if fe", + "ĠP ower", + "Ġj ealous", + "ell ing", + "Ġbut t", + "ĠSt uart", + "Ġdes ert", + "the w", + "Ġfact ory", + "Ġed ition", + "Ġ197 5", + "Ġref lect", + "rop ol", + "Ġcor resp", + "Ġlad der", + "Ġtrack s", + "Ġenvironment al", + "Ġpu zz", + "1 00", + "f ish", + "Ġn ick", + "ĠC ur", + "Ġat h", + "th is", + "ven ue", + "ĠTh rough", + "Ġco vers", + "ĠAl i", + "Ġac celer", + "che ster", + "Ġbab ies", + "ĠComm ander", + "Ġregard ed", + "gl as", + "Ġreve aled", + "ĠVictor ia", + "Ġridic ulous", + "I E", + "I LL", + "s en", + "w as", + "Ġw o", + "om pl", + "al o", + "Ġke ys", + "Ġequ ipment", + "Ġprov in", + "Ġvol ume", + "Ġfle et", + "Ġexam ples", + "Ġcondu ct", + "Ġcy cle", + "Ġsurr ounded", + "Ġrom antic", + "3 9", + "B A", + "Ġt ub", + "Ġs an", + "ot i", + "Ġbe ating", + "ĠH o", + "ĠH ong", + "oo f", + "Ġme al", + "han iel", + "aw s", + "Ġsec ure", + "ont o", + "Ġimp ress", + "Ġ193 0", + "Ġauthor ities", + "Ġengine ering", + "Ġbur st", + "ĠCharl ie", + "ĠBang l", + "Ġunus ual", + "M ay", + "b age", + "h in", + "w ho", + "Ġt orn", + "Ġb ul", + "it ter", + "as ters", + "ĠT hing", + "ot te", + "ĠA ye", + "ĠS C", + "ĠH A", + "ĠC ra", + "ĠN one", + "ge on", + "Ġcon ver", + "ĠBe at", + "Ġend ing", + "Ġtra ined", + "Ġinc ome", + "Ġinc ident", + "ĠLe g", + "19 5", + "Ġdev ice", + "Ġda wn", + "Ġsympt oms", + "m other", + "Ġf ans", + "om y", + "al so", + "ĠE ver", + "ĠK now", + "Ġsp o", + "Ġinst ant", + "Ġinterest s", + "Ġvis ited", + "Ġann ual", + "ο u", + "ĠSy stem", + "Ġindust rial", + "Ġliter ally", + "ĠStep hen", + "Ġdisci pl", + "ĠOli ver", + "3 2", + "Ġp ushed", + "Ġg ained", + "Ġre ject", + "ac hel", + "Ġv en", + "ag ger", + "Ġsp ite", + "ci p", + "Ġ197 3", + "Ġ197 4", + "Ġconf used", + "ĠHa ven", + "Ġsepar ated", + "ĠKore an", + "ĠRad io", + "Ġvictim s", + "Ġcuri ous", + "ĠSwed en", + "quar ters", + "4 5", + "k h", + "r im", + "t es", + "Ġw aves", + "on ne", + "it able", + "Ġn od", + "ĠW ed", + "Ġre ward", + "ut ation", + "all el", + "ĠN umber", + "ĠP ublic", + "ĠF ound", + "Ġover all", + "ne w", + "Ġput s", + "ens ions", + "Ġele phant", + "Ġent rance", + "Ġimp ression", + "Ġdra g", + "Ġhold s", + "Ġinf l", + "Ġdefe at", + "Ġclaim ed", + "Ġshop ping", + "ĠDis ney", + "Ġschol ars", + "ĠAis ne", + "T A", + "v o", + "Ġ ing", + "re te", + "ĠS cience", + "ĠB alt", + "ĠP ost", + "ĠE ve", + "Ġwant ing", + "Ġsp r", + "iz z", + "Ġcons ult", + "Ġass ume", + "ĠLe on", + "Ġinter rupt", + "ĠPro bably", + "Ġlead s", + "Ġ196 9", + "ĠMan ip", + "Ġocc as", + "Ġopp osed", + "Ġpract ical", + "Ġmass ive", + "Ġperm ission", + "Ġinit ial", + "I L", + "U D", + "i ac", + "Ġf o", + "Ġy o", + "ac her", + "ĠC L", + "ĠB BC", + "if ying", + "Ġrel ation", + "Ġacc ompl", + "ĠInd ians", + "Ġinc or", + "Ġfact or", + "Ġsk ills", + "Ġair craft", + "Ġexper t", + "Ġ194 0", + "Ġcre ation", + "ĠQu ick", + "Ġdep th", + "urs day", + "Ġremain ing", + "Ġfort une", + "ĠProt est", + "Ġmathem at", + "ĠMarg aret", + "n ote", + "Ġp ed", + "at hered", + "ĠS n", + "Ġe ager", + "Ġgo als", + "Ġdes k", + "Ġmar gin", + "Ġreg ions", + "Ġchar ged", + "Ġdri ven", + "Ġmurd ered", + "Ġbrill iant", + "S E", + "m outh", + "u able", + "it ure", + "ĠI ra", + "Ġp ension", + "ĠT an", + "ĠS k", + "ĠC D", + "Ġra b", + "Ġsub sequ", + "att les", + "Ġ15 0", + "Ġcontro vers", + "com m", + "Ġclot hing", + "Ġsour ces", + "Ġmob ile", + "look ing", + "ĠColumb ia", + "ĠDaw son", + "3 7", + "P P", + "S h", + "v ior", + "Ġw ra", + "Ġg rey", + "Ġn ort", + "ĠW W", + "Ġj umped", + "Ġso ci", + "ĠSt ra", + "Ġro de", + "ham ed", + "Ġbit s", + "Ġmil it", + "ĠWith out", + "ĠRob in", + "Ġsuff er", + "Ġaffect ed", + "ĠChild ren", + "Ġapprox imately", + "Å ¡", + "Ġc ore", + "Ġl ung", + "ĠT enn", + "Ġre in", + "ĠO per", + "ĠG oo", + "ĠK r", + "Ġgr ade", + "Ġact s", + "ĠHow ard", + "Ġbo ats", + "Ġsub s", + "ĠJust ice", + "Ġprov ides", + "Ġdem ocr", + "Ġla unch", + "Ġgodd ess", + "Ġescap ed", + "intend o", + "l ers", + "à ¦", + "or age", + "Ġy ep", + "Ġg ri", + "ĠH ay", + "st al", + "Ġdo ctors", + "Ġkn ight", + "ĠJ ess", + "ie ur", + "Ġsh ift", + "Ġv oices", + "Ġdes erve", + "ild ing", + "fect ure", + "Ġstud ying", + "Ġpass age", + "Ġgra v", + "Ġsit u", + "Ġposs ibility", + "Ġcheck ed", + "Ġpers ons", + "Ġsac red", + "Ġbal ance", + "Ġveh icle", + "Ġinhabit ants", + "f ive", + "on ic", + "Ġb en", + "Ġc ats", + "le ts", + "Ġst ress", + "ĠN ar", + "ĠP oint", + "ak ers", + "Ġact ed", + "Ġact ions", + "ib i", + "oun ce", + "Ġ197 2", + "eng ers", + "Ġiss ued", + "Ġview s", + "Ġobject s", + "Ġwide ly", + "Ġinit i", + "Ġknock ed", + "Ġadminist r", + "Ġstran ger", + "Ġpregn ant", + "p oint", + "u ing", + "ĠT am", + "Ġre fe", + "st ers", + "ĠB an", + "ĠN intendo", + "Ġne ut", + "ĠJ an", + "el ine", + "ate ful", + "Ġv alley", + "ĠDe an", + "Ġcap able", + "Ġmusic ian", + "Ġ196 8", + "ray ed", + "Ġdistrict s", + "Ġblock s", + "rem ony", + "Ġcapt ure", + "Ġmir ror", + "Ġreven ge", + "ĠDou glas", + "ĠEdd ie", + "ĠNether lands", + "2 6", + "Ġb ones", + "or ney", + "Ġp our", + "ĠC ir", + "ad or", + "um my", + "Ġr ings", + "ap ore", + "ĠTh ough", + "ons ense", + "Ġhor ror", + "Ġce remony", + "Ġcomb ined", + "Ġshad ow", + "ĠAbs olutely", + "c alled", + "n et", + "Ġp ants", + "Ġre ign", + "ĠC orn", + "ĠG en", + "ĠHe ad", + "ul s", + "Ġj ew", + "Ġcon cl", + "Ġex ha", + "own ed", + "ĠTh ursday", + "Ġsp lend", + "Ġun s", + "Ġim ple", + "Ġshould ers", + "Ġcons ists", + "Ġass ign", + "Ġdrink s", + "Ġhop ed", + "Ġprison ers", + "Ġnecess arily", + "Ġbes ides", + "Ġast ron", + "Ġpil ot", + "L e", + "v or", + "Ġm ent", + "ĠM D", + "Ġse ed", + "ĠL es", + "ĠHe alth", + "ĠJ oy", + "Ġr ush", + "ĠSt art", + "av an", + "ĠRe ady", + "Ġmon ster", + "Ġlist ed", + "Ġshort ly", + "Ġtem ple", + "cher s", + "Ġdel ivered", + "Ġwat ers", + "Ġintell ect", + "Ġadminist ration", + "Ġstrugg le", + "Ġtyp ical", + "Ġt ip", + "Ġs ought", + "Ġf asc", + "ĠT ok", + "et ime", + "un a", + "ol i", + "and ie", + "Ġcon clud", + "Ġgu arant", + "ĠBr idge", + "Ġbit ter", + "Ġperson ally", + "Ġperson ality", + "Ġconf idence", + "ĠTe am", + "Ġ194 5", + "Ġtre m", + "la us", + "Ġcop ies", + "ĠRep resent", + "Ġvide os", + "Ġearth qu", + "Ġdiscuss ion", + "Ġredu ced", + "Ġindivid uals", + "Ġbenef its", + "ĠSing apore", + "ĠMu hammad", + "elp hia", + "A A", + "Ġw ire", + "Ġm art", + "ow ing", + "ĠN i", + "ĠL ad", + "ie ve", + "ĠK a", + "int s", + "int on", + "Ġmet ers", + "ĠBar b", + "Ġroad s", + "ask a", + "Ġcult ural", + "Ġdeb t", + "Ġmach ines", + "Ġtend er", + "Ġgradu ated", + "ĠBru ce", + "L ES", + "b ach", + "m ail", + "Ġf uel", + "Ġto ast", + "Ġl t", + "ĠS in", + "ad elphia", + "Ġst olen", + "ĠY e", + "ĠN et", + "ĠG ib", + "ĠF ree", + "ĠE ight", + "ĠJ ay", + "ear ch", + "Ġ3 7", + "Ġ3 00", + "Ġmom ents", + "aught ers", + "Ġsw all", + "Ġdisc overy", + "ĠAb d", + "Ġpur ple", + "Ġprogram me", + "Ġcop s", + "Ġfair y", + "Ġinvest ment", + "Ġver t", + "Ġide al", + "ĠChan nel", + "Ġsatisf ied", + "ĠRail way", + "ĠTai wan", + "Ġtoile t", + "J ohn", + "Ġt ale", + "Ġs oup", + "ĠA ud", + "ĠF amily", + "ea ble", + "ul se", + "em et", + "Ġar ts", + "Ġlo yal", + "Ġgu ests", + "cl ass", + "Ġreg ional", + "Ġequ ation", + "Ġsn ake", + "Ġcra p", + "Ġvers ions", + "IS T", + "hampions hips", + "Ġver te", + "ĠEduc ation", + "Norm andie", + "9 9", + "D e", + "K S", + "er a", + "ĠC ost", + "ri x", + "Ġr ice", + "Ġr ising", + "Ġour s", + "ĠAl bert", + "Ġown ers", + "ĠAr ts", + "Ġheart s", + "Ġ196 3", + "Ġest im", + "ĠMet ro", + "ĠCa pe", + "ĠBas se", + "Ġmere ly", + "Ġneighbor hood", + "R AT", + "U M", + "c us", + "c ut", + "m ph", + "Ġm al", + "Ġf ed", + "Ġf estival", + "es ome", + "as ha", + "Ġn aked", + "Ġit ems", + "ĠM orning", + "ĠB uck", + "ous ing", + "Ġun ha", + "Ġsc enes", + "Ġrem ove", + "âĻ ª", + "Ġins ult", + "Ġmark s", + "Ġcontro lled", + "Ġfig ured", + "IT H", + "OM E", + "Ġprinci pal", + "Ġmaid en", + "Ġgrant ed", + "3 1", + "H L", + "w ill", + "Ġb om", + "or ia", + "Ġto mb", + "ir med", + "ĠB ud", + "Ġkn ees", + "Ġv ast", + "Ġsl ide", + "ĠAr k", + "Ġmind s", + "ĠCon ne", + "iam i", + "Ġorgan ized", + "Ġdev ices", + "ĠSte ven", + "ĠBet ter", + "Ġbow l", + "Ġliqu id", + "Ġarran ged", + "emet ery", + "u v", + "y gen", + "Ġa id", + "ll e", + "Ġn urse", + "ĠB and", + "ĠO tt", + "Ġ( _", + "ĠK an", + "ost er", + "Ġro pe", + "Ġcont em", + "iss ed", + "ĠBr ing", + "ĠSe ven", + "az ed", + "Ġext ended", + "Ġcut ting", + "Ġspirit ual", + "ĠBab y", + "ĠMill er", + "Ġbran ches", + "C l", + "F C", + "b u", + "m et", + "is k", + "Ġin fect", + "ĠA mb", + "ĠP ress", + "ĠK al", + "Ġte en", + "Ġsm iled", + "ĠAr gent", + "Ġlist ened", + "Ġbed room", + "de rer", + "Ġ194 7", + "ĠAust ria", + "Ġkiss ed", + "ĠGrand ma", + "nes day", + "Ġemot ions", + "ó n", + "Ġbeg un", + "Ġansw ers", + "c ia", + "i ency", + "Ġn uts", + "ut or", + "ĠH oney", + "ĠM ain", + "ĠB C", + "ĠP oor", + "ĠG ordon", + "ul ed", + "Ġno ble", + "ĠU r", + "Ġpr ote", + "Ġcont ext", + "Ġhouse hold", + "Ġdist ingu", + "Ġpar ish", + "Ġdep os", + "ĠCor por", + "Ġquiet ly", + "ĠDar ling", + "Ġdescri ption", + "Ġpunish ment", + "ĠOffic er", + "Ġimple ment", + "ã ĥ", + "er able", + "Ġb ike", + "Ġm amm", + "Ġl ately", + "Ġst im", + "ct ive", + "ĠF ord", + "Ġar row", + "Ġlet ting", + "Ġchild hood", + "Ġsur gery", + "Ġins pired", + "Ġstr ate", + "ues day", + "ĠCon ference", + "Ġexpl ore", + "ĠSha h", + "Ġnat haniel", + "Ġexec utive", + "Ġanal y", + "Ġdesp ite", + "ĠTor onto", + "Ġpoll ution", + "Ġdemon str", + "Ġnucle ar", + "Ġaband oned", + "Ġexplan ation", + "ĠÌ ģ", + "O P", + "U n", + "f ly", + "p ress", + "Ġt ag", + "Ġm ud", + "Ġf ond", + "Ġto y", + "ar o", + "ke l", + "ĠP u", + "ĠL iber", + "Ġj oseph", + "Ġ19 20", + "ord ers", + "Ġer ror", + "Ġrel ief", + "Ġalong side", + "Ġphot os", + "ĠDes p", + "ĠSpe cial", + "Ġdom estic", + "Ġglob al", + "C T", + "Ġt ries", + "Ġc hampionship", + "Ġf ab", + "Ġin cl", + "at han", + "ĠS ly", + "Ġfor b", + "ĠP o", + "ĠF ind", + "Ġj ury", + "Ġcomp ar", + "Ġun like", + "ĠAs sembly", + "ĠAll en", + "Ġreturn ing", + "Ġpur s", + "la use", + "Ġvill ages", + "Ġprofess ion", + "Ġpub l", + "Ġsail ed", + "ĠHist or", + "Ġemot ional", + "Ġcompos er", + "Ġjack et", + "Ġeld er", + "Ġaltern ative", + "Ġsust ain", + "Ġstrate gy", + "g ic", + "ou ch", + "it ched", + "Ġc hamber", + "Ġg y", + "Ġg athered", + "Ġh ockey", + "us ive", + "ĠS weet", + "if ts", + "ra ph", + "ust ing", + "ĠIn f", + "Ġun com", + "Ġ3 4", + "Ġsm iling", + "oun ced", + "Ġdri ves", + "Ġ197 7", + "Ġste pped", + "Ġ194 4", + "Ġill ness", + "Ġelect ions", + "pha s", + "Ġredu ce", + "Ġarchite ct", + "Ġarchite cture", + "Ġmax imum", + "ĠPic ard", + "Ġcorresp ond", + "T r", + "W hen", + "c op", + "h ot", + "l an", + "Ġ Ä", + "Ġf oss", + "ĠI mp", + "ll y", + "Ġy ards", + "ĠB i", + "ĠB all", + "ur ches", + "ĠO d", + "um ble", + "ĠU N", + "Ġsp ons", + "Ġim ages", + "Ġdis g", + "Ġacc ur", + "Ġcra w", + "Ġattack s", + "Ġann oy", + "Ġpers u", + "Ġdram atic", + "R Y", + "g ie", + "n at", + "Ġw ars", + "Ġp eak", + "om be", + "Ġth read", + "ĠM aine", + "ĠC roat", + "ea u", + "ĠE lect", + "ĠZ e", + "Ġ196 7", + "Ġdi agn", + "Ġcommand er", + "ĠFin ally", + "Ġ £", + "Ġsac rif", + "ĠCamp bell", + "Ġcandid ate", + "ĠGoo gle", + "N e", + "p ent", + "à ±", + "Ġt ack", + "im b", + "ĠH art", + "ĠR E", + "th m", + "ĠJ u", + "Ġsc ored", + "Ġprom oted", + "Ġpar liament", + "Ġpos itions", + "Ġcross ing", + "ĠChe ck", + "ĠPhil adelphia", + "J ust", + "M ar", + "d oor", + "n on", + "w ing", + "Ġf ir", + "an ed", + "at ures", + "ĠC ole", + "ra k", + "ol ves", + "Ġal pha", + "Ġag ents", + "Ġthr one", + "Ġunder ground", + "Ġass ault", + "ĠInd ones", + "Ġmeet ings", + "ĠMm m", + "AN D", + "Ġ196 5", + "Ġpar allel", + "Ġadm itted", + "ĠMc G", + "ĠKe vin", + "ĠYOU R", + "Ġclub s", + "Ġident ified", + "ĠPal ace", + "Ġfrequ ently", + "Ġpir ate", + "ĠId aho", + "Ġexped ition", + "Ġc ooper", + "Ġf ulf", + "Ġh ills", + "Ġwas hed", + "ia o", + "Ġpr on", + "Ġapp ropriate", + "ons ieur", + "Ġwar ning", + "ĠPro du", + "Ġfriends hip", + "Ġoper ated", + "ĠMat thew", + "ĠBro ok", + "Ġelectric ity", + "Ġexperien ces", + "Ġheav ily", + "Ġcapac ity", + "A h", + "R e", + "r ons", + "s ar", + "z ed", + "Ġo ption", + "Ġin se", + "Ġst airs", + "ĠD NA", + "Ġse lect", + "Ġat om", + "Ġr ug", + "ĠV iv", + "Ġch rist", + "ott ed", + "Ġchar t", + "Ġstr ateg", + "Ġconf ess", + "Ġlarge ly", + "ĠCent re", + "Ġexist ing", + "ĠGl ob", + "Ġintrodu ce", + "Ġaff air", + "Ġconstit ution", + "3 3", + "o ard", + "ha b", + "ing ton", + "Ġd ow", + "at ically", + "Ġh unt", + "ĠA ld", + "ĠA lf", + "Ġas hamed", + "if er", + "Ġcoll abor", + "ogra pher", + "Ġcrit ics", + "Ġphys ics", + "Ġviol ent", + "ĠAir port", + "ĠHon or", + "ĠFre ud", + "Ġvot es", + "ĠSant a", + "Ġconvin ced", + "Ġrab bit", + "f it", + "i ri", + "t an", + "ĠT ar", + "ĠB ishop", + "op her", + "ĠR illa", + "ĠF orm", + "oy d", + "Ġpre cious", + "Ġcol umn", + "ament al", + "Ġrepl ace", + "Ġabs or", + "Ġsubject s", + "Ġchair man", + "Ġbreat hing", + "r in", + "ĠA S", + "ĠS uff", + "Ġe fficient", + "ĠH ook", + "ir ts", + "ĠO ri", + "ĠP ot", + "ĠE conom", + "ig s", + "vel ope", + "Ġhead ed", + "Ġdef ense", + "Ġexpect ing", + "Ġabs olute", + "Ġdoll ar", + "Ġvol unte", + "Ġepis odes", + "Ġbeha vior", + "ĠHaw ai", + "Ġexperien ced", + "F or", + "T o", + "u ate", + "Ġw icked", + "Ġs am", + "Ġf er", + "Ġd aughters", + "ĠS her", + "ĠS ever", + "ĠM iami", + "ĠB or", + "ĠB ible", + "Ġas h", + "ĠF ederal", + "Ġne at", + "Ġpart ly", + "Ġgr ateful", + "Ġset s", + "Ġrep utation", + "Ġserv ant", + "ĠTe chn", + "Ġpick ing", + "Ġ194 1", + "Ġengine er", + "ĠDoes n", + "Ġprep are", + "ĠGold en", + "ĠThing s", + "I ll", + "p ass", + "ic ia", + "ĠW onder", + "ĠH ospital", + "ro id", + "ĠP ret", + "ĠJ os", + "od ge", + "Ġnow here", + "ci ences", + "Ġen orm", + "Ġco ordin", + "hed ral", + "iss a", + "pect ive", + "IN E", + "cer tain", + "Ġsoon er", + "Ġpur su", + "Ġtre asure", + "Ġalbum s", + "Ġmess ages", + "ĠMexic an", + "Ġox ygen", + "Ġalt ogether", + "rat ulations", + "Ġdelic ious", + "c ase", + "he me", + "er ted", + "ha w", + "Ġc od", + "Ġc attle", + "Ġto ol", + "Ġp ant", + "Ġwas hing", + "ĠH og", + "ĠM os", + "ĠN OT", + "Ġse ats", + "ĠL o", + "ist ol", + "ĠSt one", + "Ġcont ained", + "Ġrec y", + "Ġ4 8", + "Ġac ad", + "Ġadd ing", + "Ġless on", + "Ġhat ed", + "Ġallow ing", + "ĠRoman ia", + "Ġproject s", + "Ġpresident ial", + "Ġpurp oses", + "Ġdoc uments", + "ĠSpeak er", + "Ġmyst ery", + "ĠSly ne", + "T han", + "f our", + "h us", + "m ont", + "Ġin ch", + "ĠC ass", + "ĠB av", + "ĠD ale", + "ĠG un", + "ĠL ew", + "ell o", + "ak s", + "Ġsp oon", + "Ġext ent", + "Ġposs ession", + "ĠBl ood", + "Ġprob ability", + "Ġmur derer", + "Ġnat urally", + "Ġrail road", + "Ġbase ball", + "Ġthreat ened", + "Ġess entially", + "ĠHea ven", + "ĠWed nesday", + "O ne", + "l ong", + "l aughter", + "w ick", + "ha h", + "Ġf aced", + "or ious", + "Ġd ating", + "ĠT uesday", + "Ġth ir", + "Ġst ones", + "ĠD u", + "ĠF C", + "ĠF u", + "ag ers", + "Ġform at", + "ĠFor get", + "Ġland ed", + "ĠEm ma", + "ode cahedron", + "Ġtest ing", + "Ġproper ties", + "Ġdi pl", + "Ġcollect ed", + "ĠBet ween", + "Ġprinci ple", + "Ġtele phone", + "Ġilleg al", + "ĠAnth ony", + "ĠPicard ie", + ". &", + "e rest", + "y ard", + "Ġb one", + "us a", + "ĠA ren", + "ĠS P", + "ĠS av", + "ĠS ister", + "Ġbe ings", + "ith m", + "ĠP rem", + "Ġnot able", + "ĠR et", + "Ġwor n", + "itt y", + "Ġag es", + "Ġgr ay", + "Ġch oo", + "Ġsm ooth", + "Ġdiffe rences", + "Ġob lig", + "Ġext end", + "ĠHar rison", + "Ġval uable", + "ĠMor gan", + "Ġvac c", + "Ġadult s", + "Ġf rank", + "ll er", + "ĠY an", + "ĠD al", + "il ton", + "ig a", + "Ġinc hes", + "Ġsit es", + "Ġadv oc", + "Ġappro ved", + "Ġpull ing", + "sm ith", + "Ġlat est", + "Foot note", + "d ney", + "ha s", + "it led", + "at tered", + "Ġn ap", + "Ġhe s", + "ĠM Y", + "ĠM ot", + "ĠB ah", + "Ġst able", + "Ġas ks", + "ĠAnd y", + "Ġus eless", + "Ġpro sec", + "Ġtw in", + "Ġgr ace", + "Ġbr id", + "Ġinv asion", + "Ġstop s", + "Ġca using", + "com ing", + "Ġamong st", + "ĠWH AT", + "ĠIntern et", + "9 5", + "b ro", + "h ist", + "r um", + "Ġthe atre", + "ĠA M", + "Ġth orough", + "ĠL uther", + "ĠF ace", + "ul es", + "ag ne", + "ick ing", + "ix on", + "ĠAs k", + "Ġatt ached", + "Ġcour ts", + "Ġpass es", + "ĠAb b", + "Ġequ ival", + "Ġstrong ly", + "ĠMin istry", + "bour ne", + "Ġinit ially", + "c ers", + "Ġt ank", + "in er", + "en ess", + "Ġp ipe", + "Ġh its", + "ĠN AR", + "ĠP ass", + "Ġv ul", + "pe i", + "Ġlo ver", + "Ġad j", + "Ġpre cise", + "ful ness", + "form ation", + "Ġform al", + "Ġdef ined", + "pr ise", + "ĠAm ong", + "Ġstar red", + "II I", + "Ġport ion", + "Ġclaim s", + "A re", + "L RB", + "e enth", + "Ġt ropical", + "Ġw ing", + "Ġs ar", + "Ġb ark", + "Ġd ea", + "oo s", + "out heast", + "ĠO rigin", + "ĠL ive", + "Ġde ce", + "ĠJ erry", + "ud es", + "Ġdown stairs", + "gin es", + "ird s", + "Ġsing les", + "ĠMe an", + "ĠPl an", + "Ġappoint ment", + "Ġintern al", + "Ġunc onscious", + "Ġexer cise", + "Ġunha ppy", + "O n", + "R RB", + "S iden", + "l ie", + "p ool", + " °", + "in em", + "es see", + "Ġn it", + "ot y", + "Ġth ief", + "ĠY ug", + "ĠL ock", + "... !", + "ĠE nd", + "Ġnew ly", + "gg ie", + "Ġchar ges", + "Ġpar ad", + "Ġaw ake", + "Ġclean ing", + "Ġsuper ior", + "Ġbeat en", + "Ġban ks", + "Ġlic ense", + "Ġencoura ge", + "Ġlin ear", + "ĠLis a", + "Ġded icated", + "Ġdesper ate", + "ĠIra q", + "Siden ote", + "b al", + "l ad", + "o ons", + "Ġf aint", + "or ation", + "Ġd omin", + "Ġy ield", + "ĠM s", + "ĠC amer", + "ĠL in", + "ĠL ion", + "Ġshe et", + "Ġwhere ver", + "ord inary", + "cl ing", + "Ġshow er", + "Ġsl ipped", + "Ġhead quarters", + "Ġind ic", + "ĠTH IS", + "Ġmod els", + "ĠTom orrow", + "Ġspir its", + "Ġrepe at", + "ĠDesp ite", + "4 8", + "o z", + "à £", + "à §", + "Ġin du", + "ĠD ri", + "ĠD og", + "ĠG ran", + "op p", + "ud a", + "ran g", + "Ġpr ide", + "Ġ3 3", + "Ġ3 8", + "Ġcar riage", + "Ġlea f", + "ib ilities", + "Ġent ry", + "Ġinst inct", + "Ġrest rict", + "Ġdevelop ing", + "Ġclass ic", + "Ġru ined", + "go ing", + "Ġneg oti", + "Ġstore s", + "ĠAnt on", + "ĠOlymp ic", + "Ġprint ed", + "Ġacqu ired", + "ĠSil ver", + "Ġpir ates", + "Ġren amed", + "C on", + "c ript", + "d ie", + "f ire", + "n or", + "s ur", + "is en", + "ĠI D", + "Ġd oo", + "Ġd ates", + "ĠS O", + "ĠS ally", + "ac les", + "ĠH ig", + "ĠM oo", + "Ġas sociation", + "ĠN ine", + "ĠG ene", + "ĠR ea", + "ĠF at", + "Ġso ap", + "Ġus er", + "ast e", + "ne ath", + "te enth", + "olog ists", + "Ġstand ards", + "Ġyoung est", + "Ġstr ict", + "Ġhur ts", + "Ġ196 6", + "Ġwond ered", + "Ġconst antly", + "ĠComm on", + "ĠPhil ip", + "Ġregard ing", + "ĠMount ain", + "keep er", + "Ġresc ue", + "M ic", + "in ter", + "Ġw oo", + "Ġw ishes", + "ha ra", + "id ers", + "ĠW on", + "ĠW ars", + "ĠC as", + "ĠB orn", + "Ġan ch", + "ĠD in", + "Ġse ized", + "ĠL ind", + "Ġsu p", + "ĠK elly", + "Ġag ency", + "Ġpe asant", + "Ġdis ag", + "Ġcr is", + "ĠAr men", + "Ġconf ident", + "Ġri vers", + "Ġ195 4", + "ĠDr ink", + "augh ing", + "ida e", + "uk i", + "ĠLa ura", + "Ġtechn ical", + "Ġgen us", + "Ġtax es", + "ĠChristian ity", + "Ġinj ured", + "Ġprinci ples", + "Ġble w", + "Ġnewsp apers", + "Ġrelative ly", + "Ġrapid ly", + "Ġinvent ed", + "Ġmyster ious", + "Ġfant astic", + "Ġcott on", + "Ġphr ase", + "Ġnick n", + "4 7", + "i ro", + "Ġthe ater", + "Ġw reck", + "Ġf isher", + "Ġd uties", + "Ġg al", + "ic ians", + "ĠS ave", + "ĠS ports", + "Ġth under", + "ĠY oon", + "Ġgo sh", + "un ting", + "Ġsa v", + "Ġar gue", + "per t", + "uck er", + "Ġgreat ly", + "Ġexp ressed", + "Ġmove ments", + "Ġ7 5", + "Ġfell ows", + "Ġorgan izations", + "Ġru in", + "ĠPol ish", + "ĠJew s", + "ĠPan ama", + "Ġjournal ist", + "Ġadvent ure", + "ĠFollow ing", + "c ular", + "p han", + "r ace", + "Ġp hen", + "Ġl ap", + "Ġg ross", + "ĠA ff", + "ĠS ounds", + "ĠW ild", + "ur g", + "ĠF if", + "ĠK ings", + "ag a", + "Ġwr ites", + "ĠAn cient", + "Ġsl ip", + "ĠDe velop", + "Ġob st", + "Ġair pl", + "Ġ195 6", + "Ġarri ve", + "Ġgen ius", + "Ġemot ion", + "Ġresour ce", + "Ġoccup ied", + "ĠRoll o", + "Ġvessel s", + "Ġkil omet", + "iffe rent", + "E x", + "r idge", + "Ġt ube", + "Ġc ant", + "ĠI V", + "ĠI ce", + "Ġto ler", + "ĠH im", + "ĠH oll", + "ĠC ook", + "st an", + "ĠP rom", + "ĠL ow", + "um ps", + "Ġab oard", + "Ġpro port", + "Ġoff ering", + "Ġbr ush", + "Ġgu ide", + "ens ity", + "ĠCh uck", + "Ġmight y", + "ild a", + "Ġel imin", + "Ġgl ance", + "ĠSh ort", + "ĠCl ark", + "Ġart icles", + "Ġsol o", + "Ġeight een", + "Ġinvol ve", + "Ġgrand father", + "Ġdeb ate", + "Ġpolic ies", + "Ġthrow ing", + "Ġopportun ities", + "Ġlif ted", + "ĠHolly wood", + "cri ption", + "Ġprovin ces", + "ĠTenn essee", + "u y", + "Å Ł", + "ĠB ase", + "ĠF ield", + "um a", + "Ġr ic", + "os lav", + "han g", + "ab el", + "ĠK N", + "ĠU P", + "ber ry", + "hi bit", + "Ġen gines", + "ran e", + "Ġsc heme", + "Ġlast ed", + "Ġcr imes", + "Ġop ens", + "Ġsl ave", + "Ġsw ift", + "Ġhur ricane", + "Ġgrand ma", + "Ġpriv ile", + "Ġforest s", + "Ġcell s", + "Ġdistrib ution", + "Ġintellig ence", + "ropol itan", + "ĠTok yo", + "L aughter", + "z es", + "Ġt iss", + "Ġd ign", + "Ġd ump", + "ic o", + "ic ing", + "Ġbe gged", + "im ore", + "ĠN ed", + "ĠP ardon", + "Ġse lection", + "Ġup d", + "ĠU t", + "tain ment", + "Ġfour teen", + "Ġret reat", + "Ġem peror", + "Ġconf irmed", + "Ġserv ants", + "Ġri val", + "Ġprof it", + "ĠGr ant", + "cha e", + "ĠCha p", + "Ġconcer ns", + "Ġcompet e", + "Ġsecret ary", + "Ġprim arily", + "ĠPat rick", + "Ġfort un", + "rif ied", + "Ġwrest ling", + "Ġnea rer", + "Ġperman ent", + "B I", + "V ID", + "c our", + "d s", + "Ġb ot", + "Ġc ub", + "ĠA LL", + "ĠM A", + "ch o", + "Ġj am", + "Ġcon ven", + "Ġint ent", + "Ġint ense", + "ĠAr m", + "Ġacc used", + "Ġform ation", + "Ġem phas", + "ĠAust en", + "Ġla ura", + "ĠSer ies", + "ĠSy dney", + "Ġang le", + "Ġcomput ers", + "af ter", + "Ġsurv ived", + "Ġcelebr ated", + "ĠJud y", + "Ġinstr uments", + "Ġbub bles", + "Ġconc rete", + "ĠLA UGH", + "7 5", + "A hm", + "H ey", + "Ġs na", + "Ġb ent", + "Ġb old", + "or i", + "ĠA venue", + "Ġre aching", + "ĠY u", + "Ġan gel", + "ĠD ON", + "ter y", + "Ġv on", + "Ġv ain", + "Ġro lled", + "ĠUn less", + "ĠMar ie", + "Ġworld wide", + "Ġreg ist", + "Ġdist ant", + "Ġob tained", + "less ly", + "the less", + "Ġspeak er", + "Ġsqu ad", + "Ġ194 8", + "Ġmer ged", + "Ġwood en", + "Ġlie utenant", + "ĠCong ratulations", + "ĠMo z", + "ĠLu ke", + "Ġliter ary", + "Ġhol es", + "Ġpray er", + "Ġvac ation", + "Ġplatform s", + "Ġtick ets", + "ĠHit ler", + "Ġincred ible", + "Ġdefin ition", + "r é", + "Ġa ye", + "in ations", + "in ction", + "Ġs ample", + "Ġo bey", + "Ġm ath", + "Ġf ake", + "or f", + "om er", + "ĠS ame", + "ĠW ITH", + "ĠM un", + "ĠM olly", + "ĠP itt", + "ul ating", + "um ph", + "Ġcom ed", + "Ġint ention", + "ĠSt at", + "Ġsp ark", + "Ġoff ers", + "ĠV ar", + "ĠV ill", + "Ġfl ed", + "ĠRe al", + "Ġ4 00", + "Ġhead ing", + "Ġpass engers", + "Ġcreat ures", + "Ġ194 2", + "AR D", + "Ġarri val", + "Ġrecogn ition", + "ĠCont in", + "Ġwhis pered", + "Ġconstru cted", + "Ġsem i", + "Ġpha se", + "ĠTol ombe", + "Ġsplend id", + "Ahm ad", + "ĠTolombe h", + "f a", + "k ind", + "r ary", + "ã Ĥ", + "Ġw ounds", + "Ġs ou", + "Ġm os", + "Ġf iction", + "ar th", + "Ġn ic", + "Ġn arr", + "ic it", + "le te", + "Ġbe nd", + "ĠW oman", + "ĠB os", + "ĠD yn", + "Ġsh oe", + "av ig", + "Ġke en", + "Ġfound er", + "ĠFran z", + "Ġprodu cing", + "Ġ196 1", + "sh it", + "ov a", + "ĠTe levision", + "Ġdiv ide", + "Ġreason able", + "Ġ195 2", + "Ġcompet ed", + "Ġdeep ly", + "Ġexcept ion", + "Ġhost ed", + "Ġaff airs", + "Ġsevent h", + "Ġeth nic", + "Ġapolog ize", + "ĠBangl adesh", + "u ct", + "or ous", + "Ġl amb", + "Ġn a", + "ĠM ort", + "Ġwh oops", + "ĠE p", + "Ġal gor", + "ell ow", + "Ġwhe els", + "Ġpre ced", + "Ġrem ote", + "ĠAl ways", + "Ġsl a", + "io let", + "ĠSp ring", + "sel s", + "Ġ196 2", + "ik i", + "Ġclass ical", + "Ġident ify", + "ĠReg ion", + "Ġearli est", + "ĠMount ains", + "Ġclim b", + "Ġrough ly", + "Ġmemor ies", + "Ġpoet ry", + "Ġbac ter", + "Ġaccomp an", + "ĠRea gan", + "f rom", + "Ġa wards", + "Ġb ars", + "Ġm ouse", + "an ne", + "Ġp ushing", + "om ed", + "ĠC ON", + "ĠB ry", + "ĠN ations", + "Ġpl ates", + "Ġtr unk", + "Ġlo an", + "ĠV eg", + "ip ed", + "Ġlong est", + "Ġ4 6", + "ale nd", + "ĠLe ft", + "Ġdeath s", + "Ġ195 8", + "ĠJo han", + "Ġstra w", + "Ġtest s", + "ĠEn ough", + "ĠMary land", + "Ġbag s", + "Ġgrad ually", + "Ġconsider able", + "Ġdise ases", + "Ġhonest ly", + "Ġdemand ed", + "Ġachie ved", + "Ġpainting s", + "l ar", + "Ġs ang", + "it als", + "Ġp ap", + "Ġp ump", + "Ġg reet", + "ĠH ope", + "ĠB ir", + "all ing", + "ur ation", + "ĠG ro", + "ĠL l", + "ig en", + "ab i", + "ag le", + "pt on", + "urn ame", + "Ġrep ly", + "ĠChrist ians", + "Ġmod e", + "ues e", + "ĠCol or", + "Ġsail ing", + "ĠCle ar", + "ĠCare er", + "Ġearthqu ake", + "4 2", + "in stein", + "Ġs orrow", + "Ġd ull", + "Ġg rief", + "ĠM oon", + "ĠB ul", + "ĠP ra", + "ĠG ardens", + "Ġj e", + "el son", + "Ġpe e", + "Ġlo ving", + "act or", + "ru its", + "Ġch urches", + "Ġhand ed", + "Ġcr ay", + "Ġ5 5", + "Ġmon arch", + "Ġinter act", + "Ġev ident", + "Ġmed ium", + "Ġaw esome", + "Ġinde x", + "Ġmer ry", + "Ġimmedi ate", + "US T", + "Ġcateg ory", + "Ġcris is", + "9 7", + "C an", + "c r", + "Ġm ask", + "Ġg est", + "ĠH op", + "ĠM oney", + "ĠC ru", + "se a", + "ĠD ear", + "ĠG ary", + "Ġsh ining", + "Ġr it", + "em on", + "res ents", + "Ġv ice", + "ĠK night", + "Ġfe ver", + "Ġcount ing", + "tern al", + "ott o", + "Ġpass enger", + "OU LD", + "Ġexc it", + "ĠUS A", + "ĠNorm an", + "G o", + "N G", + "o ves", + "r ors", + "t here", + "re al", + "Ġf ox", + "ing o", + "Ġin her", + "as ia", + "ĠA R", + "ĠA z", + "id el", + "ĠN ik", + "un ts", + "ul pt", + "um in", + "ĠK aren", + "Ġwho ever", + "ĠV in", + "ord an", + "Ġunder neath", + "Ġext ensive", + "Ġdiv ine", + "Ġ194 6", + "ĠBoy er", + "Ġextra ordinary", + "ĠGirl s", + "Ġcontain ing", + "ĠTai pei", + "ĠShi v", + "ĠWay ne", + "Ġconscious ness", + "ĠSuff olk", + "d es", + "j ud", + "l ow", + "v ation", + "Ġw oke", + "Ġb rig", + "Ġp up", + "Ġp owder", + "ĠS um", + "ut ing", + "ĠH appy", + "se ll", + "ĠP ict", + "ĠR u", + "ol and", + "Ġro ots", + "ang ers", + "ĠAn im", + "Ġass igned", + "Ġrep resents", + "Ġexp osed", + "Ġless ons", + "Ġanim ated", + "Ġcompl ain", + "Ġut ter", + "Ġrare ly", + "Ġcontr ast", + "ĠTay lor", + "Ġreck on", + "Ġfart her", + "W h", + "b es", + "g as", + "m ate", + "m ates", + "n is", + "â ģ", + "Ġf are", + "Ġin ner", + "Ġh oly", + "et ers", + "ĠA st", + "Ġit em", + "id ency", + "ĠThe atre", + "Ġ\" ...", + "Ġkn ee", + "ĠF ur", + "nt own", + "ig hed", + "Ġser ves", + "Ġfact ors", + "ĠAd ams", + "Ġ194 3", + "ĠMic he", + "Ġrequ ires", + "Ġstar ring", + "Ġ193 8", + "lo ad", + "Ġrelations hips", + "Ġannoun ce", + "Ġess ential", + "Ġdistrib uted", + "ĠFore st", + "ctic ut", + "ĠJon athan", + "âģ Ħ", + "4 9", + "f le", + "l ife", + "p ack", + "Ġb oring", + "ĠH uman", + "ĠC amb", + "ant ry", + "ĠR os", + "Ġal ien", + "os ity", + "Ġex ists", + "Ġcl oth", + "ĠV I", + "Ġpo em", + "ĠDo c", + "Ġbel t", + "The n", + "Ġdec ent", + "Ġsound ed", + "ĠPl ace", + "Ġstru ctures", + "Ġtem porary", + "Ġsweet heart", + "Ġmot iv", + "ask et", + "ĠSec urity", + "ĠPol and", + "Ġmist akes", + "Ġamount s", + "Ġprison er", + "Ġsearch ing", + "Ġfac ilities", + "ĠBob by", + "Ġhistor ic", + "Ġofficial s", + "Ġcustom ers", + "Ġremark able", + "ĠHot el", + "ĠPap a", + "ĠPortug uese", + "E F", + "E M", + "d am", + "j e", + "l aughs", + "Ġto ss", + "Ġp ond", + "at on", + "ĠH ou", + "ĠH ug", + "ĠC reek", + "ĠB Y", + "ĠL og", + "Ġli ed", + "ol is", + "th ree", + "art s", + "Ġus ers", + "Ġint end", + "Ġtr am", + "Ġbl ast", + "Ġgu ards", + "ĠAr n", + "ged y", + "rib ed", + "Ġev al", + "Ġwind s", + "Ġpresent ation", + "Ġ195 9", + "Ġsum m", + "ĠSu z", + "Ġimag ination", + "Ġfro zen", + "Ġoppos ition", + "Ġschol ar", + "Ġanx ious", + "Ġtroub les", + "ĠLab our", + "ĠConne cticut", + "4 3", + "I VE", + "n um", + "or gan", + "es ar", + "ot es", + "al ph", + "Ġth ri", + "ĠM ale", + "ĠC E", + "Ġst orage", + "Ġk ings", + "ch i", + "ĠP R", + "ĠR us", + "ĠSo f", + "Ġad apt", + "Ġ3 9", + "Ġrec overed", + "Ġtra p", + "Ġdist ract", + "ĠGe ography", + "Ġvis ible", + "ĠX X", + "Ġprotect ed", + "Ġexist ed", + "Ġvisit ors", + "ĠAdm inist", + "Ġgodd amn", + "Ġbub ble", + "Ġunivers ities", + "Ġmanufact ure", + "ĠMuslim s", + "ĠViet nam", + "ĠTurk ish", + "ĠProtest ant", + "Ġenorm ous", + "ã o", + "Ġexcit ement", + "g ro", + "g ate", + "o cc", + "in et", + "it ated", + "Ġd ial", + "ĠS et", + "Ġe y", + "Ġab st", + "Ġor phan", + "Ġr ural", + "Ġsp aces", + "Ġrec on", + "ĠBe ing", + "Ġsy nt", + "Ġoffic es", + "Ġdep ression", + "Ġpolic eman", + "ĠFin n", + "ĠAlex and", + "Ġspecific ally", + "ĠCarl os", + "ĠEnter tainment", + "ĠHA VE", + "ĠManip ur", + "e qu", + "w ind", + "Ġc ows", + "Ġm r", + "Ġm ister", + "us hes", + "st ate", + "ĠP ay", + "ĠJ am", + "ort ed", + "Ġcl own", + "Ġpr ices", + "pl ess", + "Ġbu ff", + "gg er", + "ĠPro gram", + "sh ine", + "ĠPe ace", + "ald a", + "Ġclos ing", + "Ġdepend ing", + "pir ation", + "Ġdivor ced", + "ĠPerson al", + "Ill ustration", + "8 6", + "G RUN", + "M AN", + "h h", + "m aster", + "p o", + "Ġt une", + "or ters", + "Ġp unch", + "Ġn onsense", + "le ans", + "ĠC ard", + "Ġst amp", + "Ġdo de", + "ĠL iz", + "ĠR an", + "ĠR ound", + "ol as", + "ol ve", + "ĠJ ordan", + "ck now", + "ĠK y", + "Ġsc ary", + "Ġwar n", + "Ġass ass", + "Ġelse where", + "Ġfact s", + "ĠĠĠĠĠĠĠĠ Ġ", + "Ġprov iding", + "Ġ194 9", + "ĠGr ace", + "Ġdam aged", + "Ġrepresent ing", + "Ġhop es", + "Ġcelebr ate", + "Ġcondu cted", + "Ġfro gs", + "Ġintern et", + "Ġsurr ounding", + "Ġexcl aimed", + "Ġwrit ers", + "ĠNap ole", + "Ġincor por", + "Ġtrem end", + "ĠMean while", + "' ?", + "4 1", + "t wo", + "er ick", + "nd a", + "it age", + "Ġd irt", + "Ġis ol", + "Ġbe ars", + "ĠW rest", + "ĠW AS", + "ut iful", + "ĠC e", + "ĠN elson", + "ĠD ude", + "Ġsh ops", + "Ġor chestra", + "Ġsa uce", + "Ġgood bye", + "Ġunder t", + "ect ive", + "hes is", + "Ġkind a", + "Ġcle ared", + "Ġfun ctions", + "rib ly", + "Ġcur tain", + "ĠAust rian", + "ĠHa ving", + "Ġdifficult ies", + "Ġsafe ly", + "Ġjud gment", + "Ġbreat he", + "Ġinj uries", + "Ġgradu ate", + "Ġbare ly", + "ĠCorpor ation", + "ĠPret ty", + "ĠMoo re", + ") :", + "I A", + "S H", + "d iv", + "g i", + "x ual", + " Ŀ", + "Ġ vel", + "Ġa ired", + "or se", + "Ġd well", + "Ġh id", + "id ering", + "ĠC ertain", + "Ġher s", + "ab out", + "Ġback wards", + "ĠUn like", + "pect ed", + "Ġins ist", + "Ġpartic les", + "Ġlim its", + "Ġrese ar", + "Ġfund s", + "Ġattempt ed", + "Ġbeha lf", + "LA UGH", + "Ġlink ed", + "ĠHam ilton", + "ĠBalt imore", + "c ury", + "r ome", + "s k", + "w i", + "w all", + "he astern", + "Ġw ax", + "ou st", + "on i", + "Ġn ations", + "ĠN ich", + "Ġse as", + "ĠG ET", + "ĠF ame", + "ĠJ a", + "Ġcan ce", + "Ġr ude", + "Ġar c", + "Ġcl in", + "Ġfe e", + "Ġen velope", + "erm ans", + "ĠThere fore", + "ail ed", + "ock s", + "ah n", + "ĠGod d", + "Ġdec re", + "Ġtrans m", + "ĠBar ry", + "Ġdest ruction", + "chan ge", + "Ġintrodu ction", + "ĠCr own", + "ĠWin ter", + "Ġtyp ically", + "Ġtransfer red", + "ĠChair man", + "Ġgrav ity", + "ĠRepresent atives", + "ĠBav aria", + "? '", + "I G", + "S u", + "i ors", + "n els", + "r ine", + "Ġ +", + "in burgh", + "Ġb ond", + "Ġf etch", + "or ig", + "ar se", + "Ġg ran", + "ĠD all", + "il st", + "ĠL O", + "ĠR en", + "ĠF riend", + "ĠHe ll", + "ain ted", + "Ġal arm", + "Ġr acing", + "Ġcom ic", + "ab y", + "ink ing", + "Ġqu e", + "Ġrec over", + "Ġsha res", + "oc ation", + "ret t", + "ĠMe et", + "Ġland ing", + "Ġopp on", + "Ġstar ing", + "Ġ193 9", + "ffic iency", + "Ġlad s", + "Ġring ing", + "ĠRober ts", + "ĠLu cy", + "Ġcompan ion", + "Ġdeterm ine", + "Ġdun no", + "Ġretire ment", + "Ġadministr ative", + "is dom", + "Ġb ass", + "Ġb unny", + "Ġf ierce", + "or ld", + "ĠT ower", + "Ġse ated", + "Ġj azz", + "Ġsh ield", + "Ġex cess", + "ck ets", + "ud i", + "so ft", + "ish na", + "Ġact ors", + "Ġbu zz", + "Ġent ering", + "ĠOr leans", + "Ġpay ment", + "Ġequ ally", + "ON E", + "Ġtem pt", + "Ġcamp us", + "Ġsca re", + "Ġbelong ed", + "Ġinflu enced", + "Ġaccount s", + "ĠIm perial", + "Ġdocument ary", + "Ġtal ent", + "ĠLar ry", + "ĠLad ies", + "Ġthir teen", + "ĠYug oslav", + "d ale", + "g un", + "Ġ â", + "Ġa cknow", + "Ġg ently", + "ve t", + "Ġbe ans", + "ac ement", + "ĠC hile", + "ĠC ooper", + "ill ing", + "ĠL ax", + "ant le", + "ĠF el", + "os ure", + "Ġv oted", + "ak u", + "ous ed", + "ĠV i", + "Ġad just", + "ĠAll ah", + "Ġsl aves", + "Ġsur vey", + "Ġ6 5", + "Ġrep rodu", + "ĠOr gan", + "Ġcontro ls", + "ĠAm anda", + "Ġsuccess fully", + "ĠCha nd", + "Ġcond ens", + "IC E", + "Ġpers pective", + "uel a", + "Ġblow ing", + "ĠNor way", + "Ġfoc used", + "Ġdig ital", + "Ġfeed ing", + "ĠDa isy", + "Ġoccasion ally", + "ĠInde ed", + "Ġcompon ents", + "Ġrhy thm", + "RAT OR", + "Ġequival ent", + "Ġ ;", + "Ġa uth", + "Ġs ession", + "Ġs urname", + "at in", + "ĠC ham", + "Ġst ack", + "Ġse eds", + "Ġcom ments", + "ind er", + "ĠIn spect", + "fe ld", + "Ġpe as", + "ans ion", + "Ġwhere as", + "ars on", + "Ġsub m", + "ĠSc ots", + "Ġprom inent", + "ai ries", + "Ġ17 0", + "Ġbed s", + "ĠPl atform", + "Ġterm in", + "Ġperform ing", + "Ġabs ence", + "Ġban ana", + "Ġgar bage", + "Ġsens itive", + "ĠRes earch", + "Ġattract ed", + "ĠCharl otte", + "Ġchap ter", + "Ġsequ ence", + "Ġstret ched", + "Ġstro ke", + "Ġfurn iture", + "ĠTem ple", + "Ġfeather s", + "Ġnort heast", + "4 4", + "U CK", + "g ian", + "y our", + "nd ered", + "Ġb ills", + "Ġy οu", + "ĠT our", + "al ie", + "ĠN ay", + "ĠD enn", + "her ry", + "ĠO ak", + "ĠG or", + "est ion", + "ber y", + "Ġevery day", + "Ġper ce", + "ĠMay or", + "Ġstop ping", + "Ġsix teen", + "Ġvis ual", + "Ġappear ances", + "Ġtit les", + "Ġpal m", + "ĠSar had", + "udd en", + "ĠDep uty", + "Ġleaders hip", + "Ġflo ating", + "Ġdiam ond", + "Ġarrange ment", + "Ġmicro phone", + "Ġintellect ual", + "Ġsacrif ice", + "ĠNAR RATOR", + ". !", + "r ings", + "it ate", + "Ġc hips", + "Ġd io", + "an es", + "ay an", + "ĠM P", + "Ġ1 20", + "ĠF BI", + "Ġab road", + "ĠU gh", + "Ġman if", + "ide o", + "ĠWe b", + "ure au", + "og y", + "Ġdis hes", + "Ġfound ation", + "Ġ4 7", + "Ġcons cience", + "clud ing", + "Ġsw ing", + "Ġmet ro", + "ung le", + "ĠMe ite", + "Ġdri ft", + "Ġmusic ians", + "Ġfil es", + "ony m", + "Ġcra ft", + "ipp er", + "Ġmer cy", + "eder ation", + "iff s", + "cul iar", + "Ġfool ish", + "Ġfarm ers", + "ĠJud ge", + "Ġbelief s", + "Ġwithd raw", + "ĠMarsha ll", + "b its", + "r ous", + "s er", + "Ä ±", + "Ġb ore", + "Ġc alend", + "at ched", + "ĠM as", + "st ock", + "ĠR oc", + "ĠF ight", + "ĠJ en", + "Ġshe d", + "ĠK on", + "Ġcomp ass", + "ĠWhe ther", + "Ġsupp er", + "Ġmon key", + "ĠGo ing", + "the n", + "ĠPro ject", + "Ġsk ill", + "ĠChrist opher", + "Ġref ers", + "Ġref use", + "ĠNe il", + "Ġsupport ing", + "Ġeffect ively", + "Ġworth y", + "Ġmeant ime", + "Ġquar ters", + "Ġfaith ful", + "mus ic", + "ĠLy nde", + "ĠInde pend", + "Ġscarce ly", + "ĠPrem ier", + "6 7", + "M S", + "Q u", + "g ain", + "u ght", + "u ine", + "Ġb id", + "Ġf eared", + "Ġp ip", + "ĠA ha", + "Ġe ase", + "ver ty", + "ri ans", + "st ar", + "ĠO nt", + "ĠR y", + "Ġne p", + "qu iao", + "Ġsee king", + "we ather", + "Ġapp les", + "Ġfin ishing", + "ug s", + "Ġent itled", + "Ġsub t", + "ĠBl air", + "Ġprom pt", + "Ġjo ining", + "Ġdef ence", + "Ġste ady", + "Ġrul er", + "Ġprim itive", + "Ġemploy ed", + "Ġscr atch", + "ĠEgypt ian", + "Ġentertain ment", + "Ġexpand ed", + "Ġune x", + "ĠBroad way", + "ĠHind u", + "ĠPhilipp ines", + "Ġconcl usion", + "ĠHawai i", + "ĠDevelop ment", + "ĠInspect or", + "h is", + "Ġthe at", + "Ġb ay", + "Ġp or", + "Ġp ardon", + "Ġin ject", + "ot al", + "ĠA ut", + "ĠN ative", + "ĠD om", + "ĠP ur", + "ĠL yn", + "ĠE th", + "qu es", + "ck er", + "Ġv ary", + "Ġpo verty", + "iss ions", + "ĠAl most", + "Ġ4 9", + "Ġdec ades", + "Ġfollow ers", + "the y", + "Ġconf irm", + "Ġpri ests", + "Ġ195 7", + "ĠGu ys", + "ES T", + "ĠBar on", + "ĠEd inburgh", + "Ġstat ue", + "Ġ193 7", + "Ġsevent een", + "Ġbrief ly", + "Ġrom ance", + "Ġphilosop her", + "Ġlands cape", + "ĠCO VID", + "ĠBus iness", + "Ġkitt ie", + "ĠFound ation", + "ĠSever al", + "ĠVeg as", + "A pp", + "B O", + "d og", + "f in", + "g han", + "Ġa ston", + "Ġf ranch", + "Ġto m", + "om on", + "Ġha l", + "ay a", + "ĠB urn", + "ĠN FL", + "ĠP ad", + "Ġse ar", + "Ġse ctor", + "ĠL as", + "ĠAnd erson", + "Ġex ceed", + "cc er", + "Ġdis aster", + "Ġsc ulpt", + "Ġinst antly", + "Ġob tain", + "Ġass hole", + "Ġfar mer", + "ific ations", + "Ġconf ront", + "umb led", + "yr ics", + "Ġcook ie", + "Ġexec ution", + "Ġble eding", + "Ġapplic ations", + "Ġdelight ed", + "Ġassum ed", + "ĠGy p", + "Ġbatter y", + "Ġdipl om", + "ĠMeite i", + "s ighs", + "Ġt iger", + "ha ll", + "Ġf ence", + "or ne", + "ĠS hip", + "ĠM onsieur", + "Ġst adium", + "if ted", + "il and", + "Ġsh ots", + "ĠU se", + "ĠTh ird", + "Ġco inc", + "Ġsc ra", + "ĠDo ve", + "Ġsec rets", + "ĠEng ine", + "ĠSh ir", + "ĠSh oot", + "ĠCom ing", + "Ġkid na", + "Ġeight h", + "Ġband s", + "Ġz one", + "ĠSer b", + "Ġtechn iques", + "Ġeduc ated", + "Ġmis erable", + "Ġshar k", + "Ġfac ing", + "Ġlif etime", + "Ġpan el", + "Ġcloud s", + "Ġdyn am", + "Ġaspect s", + "Ġdisappoint ed", + "Ġcollea gues", + "ĠNet work", + "Ġestim ated", + "ĠKN OW", + "* *", + "i i", + "Ġw ins", + "ic op", + "al ia", + "Ġth rill", + "Ġpro s", + "ĠK il", + "ĠSt ew", + "Ġun certain", + "Ġreg ister", + "IN D", + "Ġent hus", + "Ġins ane", + "Ġimp ressed", + "ĠEx cept", + "Ġgovern ments", + "Ġcreat ive", + "ze ch", + "ĠAm endment", + "ĠComm and", + "Ġbox es", + "Ġcult iv", + "Ġgen uine", + "Ġpen cil", + "Ġsoft ly", + "Ġmad am", + "Ġpattern s", + "ĠHal f", + "Ġens ure", + "C C", + "b ors", + "d in", + "i able", + "Ġa rose", + "Ġb in", + "Ġd rank", + "Ġl amp", + "Ġg ates", + "ĠW at", + "ĠM ack", + "ro it", + "ĠF ant", + "ig r", + "ĠK u", + "Ġpe culiar", + "ob ile", + "ĠMar s", + "Ġmar ch", + "Ġdr um", + "Ġmet res", + "Ġwar rant", + "ivers ary", + "sh ot", + "AR T", + "lev ant", + "ES S", + "Ġcheck ing", + "Ġet ern", + "Ġjud ges", + "ĠMad am", + "Ġmid night", + "Ġrout es", + "Ġoffe nd", + "Ġtail or", + "ĠCa esar", + "Ġparticip ate", + "ĠWind ows", + "Ġdyn asty", + "Ġnep hew", + "! !", + "g ments", + "p iece", + "v able", + "re k", + "Ġs ack", + "Ġc ave", + "Ġp ent", + "Ġin fection", + "ic ations", + "ĠS ara", + "Ġth irst", + "Ġwe lf", + "ac hi", + "ĠC old", + "st ream", + "ĠB aker", + "ra ham", + "Ġv ig", + "ag an", + "Ġsp y", + "ĠV is", + "ĠWh it", + "Ġlet s", + "Ġres ident", + "Ġhelp ful", + "Ġcour ses", + "ĠâĻª âĻª", + "Ġins pect", + "ĠAre a", + "ĠPro p", + "Ġste ad", + "Ġ195 5", + "ĠGu y", + "Ġvers us", + "Ġkick ed", + "Ġdesp air", + "Ġshout ed", + "ĠDra gon", + "Ġagric ultural", + "Ġwelf are", + "6 8", + "b urn", + "d le", + "i ge", + "m ic", + "w w", + "Ġs ore", + "Ġl aughter", + "ĠA uthor", + "ĠS A", + "ĠS aid", + "ĠM ine", + "ro b", + "ĠN O", + "ĠD er", + "ĠD ub", + "ĠR ud", + "ĠR achel", + "ĠF em", + "un ning", + "Ġab dom", + "ĠK urd", + "ĠTh ought", + "Ġsomet ime", + "Ġmo ck", + "Ġrec all", + "oth y", + "Ġche e", + "Ġpres ents", + "Ġcha se", + "Ġtri angle", + "Ġrece iving", + "ĠMin nes", + "ĠDav is", + "ien na", + "Ġtouch ing", + "Ġcoun sel", + "Ġdiscuss ed", + "Ġobs er", + "Ġaff ili", + "Ġopt im", + "Ġopt ions", + "Ġcritic ism", + "Ġscream ing", + "Ġpossess ed", + "Ġsurre nder", + "Ġshel ter", + "Ġath let", + "ĠIndones ia", + "ĠLew is", + "Ġairpl ane", + "t ure", + "Ġ ~", + "Ġc ough", + "Ġf ame", + "Ġn erves", + "Ġh ollow", + "al ty", + "ĠA th", + "ĠG riff", + "ĠR ub", + "ĠR alph", + "ĠJ ae", + "pp et", + "Ġab e", + "ate ur", + "per ing", + "Ġgr ounds", + "Ġfl esh", + "man n", + "Ġsur ve", + "Ġca res", + "ĠCl are", + "ĠEx ec", + "cent ury", + "Ġdesign s", + "Ġresult ed", + "Ġpract ically", + "Ġrad iation", + "ĠSer iously", + "Ġsuggest s", + "Ġtrust ed", + "ĠApp le", + "Ġchem istry", + "Ġfavour ite", + "Ġtrave lling", + "Ġtrave lled", + "ĠCommun ity", + "Ġult imately", + "Ġcere mon", + "ĠHou ston", + "W ith", + "l ia", + "m ade", + "o a", + "o ft", + "u its", + "he y", + "Ġthe rap", + "re z", + "es ter", + "Ġn aught", + "us ter", + "us sels", + "ac ent", + "am my", + "ĠC art", + "ĠC AN", + "ro v", + "ĠY ale", + "ĠD ak", + "ĠP LA", + "ĠJ ob", + "Ġr ushed", + "Ġcon vince", + "ĠK ermans", + "ran ean", + "Ġfl av", + "Ġsha king", + "Ġmat rix", + "ĠMay weather", + "umb ling", + "eng u", + "Ġprogram ming", + "Ġcook ies", + "Ġshar ks", + "ĠBen j", + "ĠRob inson", + "Ġpack age", + "Ġimpro ved", + "Ġsuit able", + "Ġattract ive", + "ĠMur ray", + "ĠDev il", + "Ġmemor ial", + "Ġinstit utions", + "Ġveh icles", + "Ġflu id", + "Ġdivor ce", + "Ġfasc in", + "laus ner", + "Ġacad emic", + "Ġaccompan ied", + "ĠColor ado", + "ĠKermans hah", + "C ar", + "O K", + "S aint", + "c ow", + "Ġt act", + "Ġw ives", + "Ġp oo", + "ar med", + "ic an", + "Ġh itting", + "ĠS udden", + "id odecahedron", + "ĠW y", + "ir ation", + "ĠP un", + "ĠP oly", + "ag u", + "Ġtr ace", + "iz za", + "Ġbr ows", + "ru ption", + "ĠUn ivers", + "ĠAl icia", + "Ġsupp lies", + "Ġsecond ary", + "che n", + "ĠPl us", + "Ġhope fully", + "Ġbreak s", + "Ġcop per", + "Ġtit led", + "ĠMed ic", + "Ġbeha vi", + "Ġweak ness", + "Ġreb u", + "ĠPac quiao", + "Ġparticip ated", + "Ġdetect ive", + "Ġresist ance", + "ĠAri z", + "Ġcas ual", + "Ġboot s", + "Ġnod ded", + "ĠWW E", + "ĠOnt ario", + "6 4", + "k ward", + "r m", + "re cted", + "is ible", + "an ium", + "Ġg a", + "Ġn aval", + "ac c", + "ĠM uch", + "Ġst iff", + "ĠD omin", + "ĠF ars", + "Ġab use", + "Ġab und", + "Ġsh o", + "od ox", + "ag s", + "ĠTh om", + "Ġcl er", + "ne ver", + "ĠV as", + "Ġsc attered", + "ail ing", + "Ġhel icop", + "Ġra w", + "Ġmin imum", + "Ġ4 1", + "Ġpol ite", + "Ġacc ord", + "az a", + "az on", + "Ġmeet s", + "Ġpat ri", + "Ġhor iz", + "Ġ195 3", + "ĠNe ither", + "Ġperform ances", + "uri ous", + "ĠLa ure", + "ĠPol a", + "Ġsurpr ising", + "Ġcover ing", + "Ġchair s", + "ĠOther wise", + "Ġur ban", + "Ġcro ps", + "Ġcro ok", + "Ġsole mn", + "Ġdread ful", + "Ġmilit ia", + "Ġabst ract", + "% .", + "G et", + "l ah", + "Ġt an", + "Ġt ables", + "Ġw ipe", + "Ġs its", + "Ġm ild", + "Ġl oop", + "Ġg ig", + "ĠA x", + "ĠS i", + "ĠC zech", + "ĠN ag", + "ĠD ream", + "ĠP ant", + "ĠJ in", + "Ġall e", + "est ine", + "os aur", + "ry ing", + "Ġv ital", + "Ġv irus", + "pe cies", + "ons in", + "Ġsm oking", + "ĠAll ison", + "gg y", + "Ġ4 4", + "Ġind icated", + "ĠTr ue", + "Ġ193 6", + "Ġattempt s", + "ĠWel sh", + "Ġeld est", + "Ġfra ud", + "Ġinstit ution", + "ĠNaz i", + "Ġquant ity", + "ĠSel ena", + "iven ess", + "Ġverte x", + "Ġprote in", + "Ġash ore", + "ĠNapole on", + "B r", + "i op", + "t ion", + "w oman", + "Ġt ide", + "hat tan", + "Ġh oy", + "Ġbe ef", + "ĠW ake", + "ĠH orn", + "ĠC æ", + "Ġst ern", + "Ġk lausner", + "Ġgo in", + "ĠF le", + "ell er", + "Ġr aces", + "ca re", + "Ġaf fection", + "Ġun fortunately", + "Ġam endment", + "Ġbr on", + "Ġch uck", + "be an", + "Ġchan ces", + "Ġtra gedy", + "Ġrel atives", + "Ġgl ory", + "Ġsub sc", + "Ġdist ur", + "Ġed ges", + "Ġ9 9", + "Ġref uge", + "Ġ195 1", + "Ġorgan ic", + "ĠGr ay", + "ĠMic ro", + "Ġtest ed", + "Ġtrad ing", + "Ġeduc ational", + "Ġstri p", + "Ġinn it", + "Ġinn ov", + "He re", + "sha ped", + "Ġden y", + "ĠSand y", + "Ġbutter fly", + "Ġcitiz en", + "ĠEs pecially", + "Ġign or", + "ĠSqu are", + "lig a", + "Ġtun nel", + "Ġprem ie", + "ĠRick y", + "SP EA", + "Ġproced ure", + "ĠBha er", + "ĠDall as", + "0 7", + "A CK", + "G u", + "N D", + "V D", + "W ill", + "g ot", + "m i", + "o i", + "w alk", + "Ġf airies", + "Ġp anc", + "ve land", + "Ġh ousing", + "ĠA B", + "ĠS ult", + "Ġe go", + "Ġwe igh", + "ri et", + "Ġst y", + "ter m", + "ĠP in", + "ĠR idge", + "ĠYou T", + "Ġj ur", + "ers en", + "Ġyour selves", + "ud ge", + "Ġpe ep", + "Ġwork er", + "Ġdis order", + "Ġch op", + "Ġfound ing", + "ĠâĻ «", + "Ġinv ite", + "Ġinst all", + "Ġass ess", + "Ġlight house", + "Ġadd ressed", + "Ġimp rison", + "Ġinter se", + "Ġbusiness es", + "Ġcond em", + "ograph ic", + "ĠEar l", + "Ġdeep er", + "Ġgen etic", + "isc onsin", + "Ġmunicip al", + "ĠBrother s", + "Ġtransl ation", + "Ġtransl ated", + "ĠMod ern", + "Ġsitu ations", + "Ġdow ntown", + "ĠMinnes ota", + ") ;", + "5 7", + "G od", + "g ive", + "Ġw olf", + "Ġm ast", + "Ġg le", + "Ġn avig", + "ĠS is", + "ĠS now", + "ut ter", + "ĠC ool", + "ĠN ancy", + "Ġgo at", + "ĠF R", + "ĠF ood", + "Ġex ternal", + "ĠU k", + "fe rences", + "Ġqu ack", + "ass ador", + "Ġgr at", + "Ġfl ows", + "Ġres ign", + "Ġres idents", + "Ġhel pless", + "Ġkind ly", + "ĠBr ussels", + "ins ula", + "ĠSh h", + "Ġstay s", + "Ġland l", + "Ġoper ate", + "AR S", + "Ġbar n", + "Ġce ased", + "Ġappro aching", + "Ġav o", + "Ġet han", + "ĠFrank lin", + "Ġshar ing", + "ĠMed ia", + "ĠMad ame", + "Ġpark ing", + "Ġcivil ization", + "âĢİ ,", + "Ġmid st", + "Ġcand y", + "Ġdescrib es", + "ĠLaw rence", + "ĠLouis iana", + "Ġcolour s", + "Ġimpress ive", + "Ġguarant ee", + "Ġfir ms", + "S m", + "p at", + "r ade", + "Ġ q", + "Ġa er", + "on ge", + "Ġp airs", + "Ġg orge", + "ĠS ky", + "ĠC re", + "ĠB enn", + "Ġst ages", + "ore t", + "em en", + "ab oo", + "ab ilities", + "ĠNo bel", + "Ġsp eaks", + "Ġro lling", + "Ġun ited", + "Ġgr im", + "Ġfl ies", + "Ġcar avan", + "up on", + "ĠDe h", + "Ġreg iment", + "Ġsy nd", + "Ġbelie ves", + "Ġmon itor", + "Ġlight ing", + "Ġdra gged", + "ĠOr chestra", + "ĠEr n", + "Ġreturn s", + "Ġhur ried", + "Ġ17 8", + "Ġinf inite", + "Ġleg it", + "Ġlab our", + "Ġrepresent ative", + "ĠCor ps", + "ĠAg ent", + "mm et", + "Ġfac ulty", + "ĠApp arently", + "ĠBu ilding", + "Ġdeli ber", + "Ġge omet", + "Ġpig s", + "Ġmaintain ed", + "Ġreven ue", + "Ġliber ty", + "Ġsubst ance", + "Ġdiscipl ine", + "Ġsubsequ ently", + "Ġalpha bet", + "Ġcalend ar", + "A b", + "M A", + "M r", + "b ly", + "b ie", + "p ur", + "Ġc ord", + "Ġf ires", + "Ġd ia", + "ar ians", + "om ot", + "ĠM ama", + "Ġu na", + "ĠN ash", + "ĠP ed", + "ĠP age", + "ant ine", + "ĠF ull", + "Ġj unior", + "ĠE asy", + "qu et", + "-- _", + "Ġpre v", + "Ġfl our", + "au nd", + "Ġcons ervative", + "Ġreal ise", + "Ġgra in", + "ĠLook ing", + "Ġfr act", + "Ġswe at", + "ĠHar ris", + "Ġinform ed", + "Ġlay ing", + "Ġappro val", + "Ġinvol ves", + "Ġrelig ions", + "Ġneigh bors", + "Ġir rit", + "Ġgro cer", + "Ġacceler ation", + "Ġoccas ions", + "igen ous", + "ĠFur ther", + "ĠSarhad i", + "lah oma", + "ĠCæ sar", + "4 6", + "A nt", + "v ate", + "Ġs ke", + "it ches", + "Ġc age", + "Ġf est", + "ĠS cient", + "ĠS ection", + "ut er", + "ĠB ox", + "ke ys", + "out e", + "il ation", + "ĠL im", + "ĠR ain", + "un s", + "ĠJ enn", + "Ġex hibition", + "ĠK is", + "ear l", + "Ġsp rang", + "Ġcl ar", + "Ġad ap", + "Ġdis gr", + "Ġrec overy", + "Ġra ising", + "Ġcons idering", + "gr ad", + "Ġdist urb", + "Ġinter fe", + "Ġinter ior", + "Ġpresent ly", + "Ġocc urs", + "AT H", + "Ġprocess es", + "Ġmist ress", + "Ġclos et", + "oura ble", + "Ġexec uted", + "ĠHur ricane", + "ĠUp on", + "aret te", + "Ġcandid ates", + "ĠDet ective", + "Ġsched ule", + "ĠTon ight", + "3 00", + "O r", + "f are", + "s ome", + "Ġt ons", + "Ġthe ories", + "Ġb attles", + "Ġl yrics", + "as hes", + "ĠA L", + "Ġbe ard", + "ĠW isconsin", + "ĠC ox", + "ĠB ert", + "ĠG i", + "ĠG ulf", + "ĠJ ason", + "Ġcon vent", + "qu is", + "Ġv ic", + "Ġv oy", + "ĠIn ca", + "ĠSt ory", + "Ġdis pl", + "oc ated", + "Ġatt orney", + "ĠDon ald", + "Ġkill s", + "Ġdifferent ly", + "Ġwar ri", + "Ġcontin ent", + "Ġsol ar", + "Ġaw kward", + "Ġelect ronic", + "Ġperiod s", + "Ġenc oun", + "Äģ n", + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "Ġopin ions", + "Ġjump ing", + "Ġox id", + "Ġnea rest", + "ĠDie go", + "ĠLeon ard", + "Ġmamm als", + "ĠAlf red", + "N E", + "c ham", + "Ġ Å", + "Ġs ung", + "Ġb ump", + "Ġc able", + "Ġd ict", + "Ġl ux", + "Ġn asty", + "ĠT erry", + "ĠA ra", + "ac ious", + "ke e", + "ab led", + "ast ian", + "ĠK ay", + "ĠV ik", + "Ġbu g", + "Ġbu cks", + "az y", + "Ġloc ations", + "Ġart ific", + "Ġpublic ation", + "Ġtre mb", + "fort able", + "Ġdirect ions", + "RE AM", + "ĠAg ency", + "Ġcirc uit", + "Ġbur nt", + "omm od", + "Ġnovel s", + "Ġassist ance", + "ĠPre fecture", + "Ġrub ber", + "ĠON E", + "ĠFore ign", + "Ġmagn ific", + "Ġunivers al", + "Ġanx iety", + "ĠFrances co", + "Ġmulti pl", + "ĠCla ire", + "ĠAssy rian", + "Ġdistingu ished", + "Ġvul ner", + "ĠYouT ube", + "! '", + "5 5", + "f ight", + "p ower", + "u ary", + "z i", + "er ior", + "an cing", + "es c", + "ĠT un", + "Ġha y", + "ĠA BC", + "Ġre le", + "ĠM ess", + "ĠC row", + "ĠB ou", + "Ġdo ggie", + "ur u", + "ĠL ane", + "Ġgo lf", + "ĠJ ose", + "est ed", + "Ġout er", + "Ġwor s", + "Ġv oc", + "ind ing", + "ĠK ang", + "Ġpe ek", + "Ġlo aded", + "Ġgr ows", + "ĠUn fortunately", + "Ġsc an", + "vel t", + "Ġmother s", + "ĠCl ause", + "Ġgener ations", + "uss y", + "Ġsent iment", + "ĠTr uth", + "OU R", + "Ġpain ter", + "Ġpur se", + "ĠEm my", + "Ġbear ing", + "sc ar", + "Ġfac ility", + "ĠMal ays", + "Ġtruck s", + "Ġreve al", + "Ġcrowd ed", + "Ġbless ed", + "ĠTrans port", + "orks hire", + "Ġmeas ured", + "ĠMi y", + "Ġblank et", + "ĠSudden ly", + "Ġhoy t", + "L ook", + "Y our", + "y ers", + "he nt", + "re ls", + "ha k", + "Ġb um", + "Ġf ict", + "or g", + "Ġd at", + "Ġd uke", + "ĠS ad", + "Ġe fficiency", + "ĠM aced", + "ir s", + "ĠB UT", + "ĠN C", + "ĠN ear", + "ĠL I", + "ĠL au", + "ol in", + "ĠJ uan", + "ĠK atherine", + "Ġtr un", + "ass es", + "ĠV ienna", + "Ġco ins", + "Ġbu nd", + "Ġtra pped", + "ĠDe ad", + "Ġpres um", + "ash t", + "ĠCl ay", + "Ġdisc har", + "ĠMan chester", + "Ġfree ly", + "Ġfood s", + "ĠPh ys", + "Ġdream ing", + "Ġstat ements", + "Ġprop osal", + "room s", + "Ġdro pping", + "Ġcomb at", + "ĠMom my", + "sp eaking", + "Ġfat al", + "Ġfrequ ent", + "ĠJeff erson", + "ĠCommun ist", + "heim er", + "Ġhyd ro", + "Ġreject ed", + "ĠAriz ona", + "B ill", + "a us", + "o en", + "v ol", + "Ġw isdom", + "er ate", + "ha nt", + "Ġo ath", + "Ġb orders", + "Ġc ure", + "Ġc ries", + "Ġf its", + "Ġp itch", + "Ġg ear", + "ot ing", + "ĠW olf", + "ac on", + "ĠM aim", + "ĠC ow", + "ad ays", + "ĠY orkshire", + "ill ery", + "ch ild", + "ol ished", + "ul ance", + "ĠE instein", + "est ly", + "Ġr ust", + "Ġr ats", + "ĠSt adium", + "Ġle nd", + "Ġfe ud", + "ĠWh oo", + "Ġbu ck", + "Ġpo ckets", + "Ġchar ity", + "Ġchar ming", + "Ġbre ed", + "Ġexp ansion", + "Ġfuck in", + "Ġtop ic", + "Ġcut s", + "ĠMic key", + "Ġcre ep", + "ĠQu ite", + "oose velt", + "Ġport ra", + "Ġconsider ation", + "ĠJes se", + "ĠOk lahoma", + "Ġcompan ions", + "Ġrout ine", + "Ġemploy ment", + "Ġpra ised", + "Ġdisg usting", + "ĠBrook lyn", + "Ġtiss ue", + "Ġbacter ia", + "Ġtremend ous", + "A m", + "X T", + "e z", + "n ik", + "Ġw agon", + "Ġo l", + "Ġb ishop", + "Ġf ert", + "ing le", + "Ġto es", + "Ġg ender", + "ĠS N", + "Ġre he", + "Ġwe ary", + "ĠH icks", + "am ents", + "ir y", + "ir it", + "ĠB eng", + "Ġst ove", + "ĠN em", + "ĠO range", + "il er", + "ĠL i", + "ĠR est", + "ĠR io", + "ĠF ern", + "ĠE xt", + "Ġcon vention", + "em ploy", + "ink s", + "Ġpro spect", + "Ġdon t", + "ick en", + "ĠAl b", + "Ġatt rib", + "oot s", + "Ġround s", + "Ġsleep y", + "Ġhuman ity", + "Ġconcer ning", + "Ġdest ro", + "Ġtechn ique", + "Ġpeace ful", + "Ġscient ist", + "Ġdeli very", + "Ġpred ict", + "Ġshock ed", + "Ġpretend ing", + "ĠSol omon", + "ĠIslam ic", + "ĠBelg ium", + "ĠBow l", + "Ġben ch", + "Ġassign ment", + "Ġauth ors", + "6 9", + "e ges", + "s ong", + "t own", + "v ard", + "ha i", + "Ġo ri", + "Ġc hess", + "or us", + "ĠA le", + "ĠS ound", + "Ġre ci", + "ut t", + "am ar", + "ĠC hampionships", + "ra v", + "Ġli ly", + "ĠR oosevelt", + "od ore", + "Ġcomp ounds", + "Ġun re", + "Ġcar ries", + "ĠSe b", + "Ġche ek", + "ĠAf ghan", + "Ġcent im", + "Ġsle e", + "anna h", + "iter ranean", + "Ġste aling", + "ĠAm azon", + "Ġval id", + "head ed", + "ĠCha h", + "Ġsil k", + "ĠChe l", + "ĠHigh ness", + "Ġself ish", + "Ġtax i", + "Ġfund amental", + "ĠJul iet", + "Ġbell y", + "Ch rist", + "Ġpan ic", + "ĠRog ers", + "Ġshout ing", + "Ġexer c", + "Ġtrib es", + "ĠMos cow", + "Than k", + "ĠMaim ie", + "8 00", + "D P", + "F F", + "a way", + "k ur", + "o qu", + "er g", + "Ġc ul", + "Ġd ick", + "Ġd ated", + "ar re", + "Ġn igg", + "le ton", + "Ġhe d", + "ĠB O", + "ĠB oo", + "Ġst ake", + "ĠO t", + "th odox", + "ĠK i", + "Ġ19 19", + "Ġcl ients", + "ang a", + "Ġres igned", + "Ġmin es", + "Ġcons ent", + "Ġacc ommod", + "ten ance", + "Ġ8 3", + "ĠAb raham", + "Ġconf usion", + "Ġpar am", + "ĠWar ren", + "Ġ16 0", + "ĠJack ie", + "ĠPer ry", + "Ġfre ak", + "Ġgrand mother", + "ĠGl ad", + "Ġ192 8", + "Ġenjoy ing", + "Ġant ib", + "Ġfund ing", + "ĠCle veland", + "Ġcondu ctor", + "Ġsequ el", + "aval ry", + "Ġqual ified", + "bre ak", + "tr ack", + "Ġconsequ ences", + "Ġancest ors", + "Ġexha usted", + "L ING", + "M e", + "S e", + "b one", + "c os", + "is a", + "is ha", + "Ġm ac", + "Ġd ared", + "Ġl oo", + "as hi", + "ĠT R", + "ĠS em", + "ĠW es", + "Ġre jo", + "im ens", + "ĠH ockey", + "ĠY a", + "ĠN HL", + "ĠD ance", + "ĠD VD", + "ĠR O", + "ĠE li", + "ĠK irk", + "ud ible", + "Ġint r", + "ĠSt r", + "Ġsp ray", + "Ġback s", + "Ġbr ut", + "Ġbr ick", + "gin s", + "Ġra ge", + "gr im", + "ple te", + "Ġrest ored", + "ĠPro v", + "Ġdri ll", + "Ġrecord er", + "Ġsn eak", + "angu age", + "ĠGr ound", + "aim a", + "Ġz oo", + "Ġmount ed", + "Ġfill ing", + "Ġcommand ed", + "Ġbelong ing", + "Ġnet works", + "Ġconcept ion", + "ĠPope ye", + "Ġstret ch", + "Ġpurcha se", + "ĠMarsha l", + "Ġpuzz le", + "Ġsla very", + "I nd", + "P l", + "b ish", + "c ribed", + "w ear", + "w hen", + "Ġ Ð", + "Ġb ust", + "it is", + "Ġf ib", + "at he", + "Ġg ifts", + "ĠW ag", + "im ir", + "ĠC ond", + "ĠD C", + "ĠK le", + "ĠK iss", + "Ġtw ist", + "Ġfe ast", + "Ġun p", + "iz er", + "pl ed", + "Ġch im", + "rent ly", + "Ġmon aster", + "iet h", + "Ġstr ings", + "Ġev olved", + "Ġtrans ition", + "Ġwalk s", + "ring ton", + "Ġann iversary", + "for mer", + "ĠMed iterranean", + "St ar", + "Ġbur den", + "Ġhistor ian", + "gress ive", + "US IC", + "Ġarg ued", + "ĠServ ices", + "Ġsou ls", + "Ġgest ure", + "Ġfranch ise", + "\" ;", + "S R", + "U E", + "Ġt id", + "Ġc rop", + "ic ip", + "ĠS U", + "Ġbe es", + "ĠM and", + "ĠB ed", + "Ġdo ct", + "ĠN ixon", + "ĠD ig", + "ĠD IC", + "Ġwh ilst", + "Ġ( ),", + "el ing", + "ĠIn n", + "ia h", + "Ġun su", + "Ġch oices", + "Ġch oir", + "ĠMar io", + "Ġsl ope", + "Ġacc ent", + "Ġgl oom", + "cy cle", + "ĠRight s", + "Ġext ract", + "ane ously", + "Ġprom otion", + "Ġsqu ee", + "ĠCal m", + "Ġlay er", + "amb ling", + "Ġ193 4", + "RE E", + "ĠQue ens", + "ĠRo om", + "Ġimm ense", + "Ġess ay", + "ĠAtlant a", + "è re", + "Ġcontr ary", + "ĠDet roit", + "ĠTay eb", + "Ġnurs ery", + "Ġsymp athy", + "rell a", + "Ġexplos ion", + "Ġaccur ate", + "ĠHoll and", + "ĠDak ota", + "Ġdia lect", + "9 8", + "D id", + "E ng", + "c od", + "Ġt in", + "he ld", + "Ġs ank", + "ing ham", + "Ġd ip", + "Ġy ay", + "Ġl f", + "Ġg ap", + "Ġg rie", + "ĠT all", + "ow ered", + "ĠA RE", + "ĠS end", + "ĠS ign", + "Ġre aches", + "ĠH ills", + "ri ly", + "ĠF all", + "ĠF ederation", + "ĠE t", + "Ġover t", + "ĠIs a", + "Ġph ones", + "ĠLe o", + "Ġrep ublic", + "Ġext ension", + "Ġdeal t", + "Ġter ribly", + "AR E", + "ĠPh ill", + "ĠMiss iss", + "Ġsat ell", + "Ġelect ron", + "Ġelect rical", + "Ġformer ly", + "ĠMo hammad", + "Ġpack ed", + "cul es", + "Ġhun ger", + "ĠChan g", + "ĠFred erick", + "Ġreb ell", + "Ġclim bed", + "Ġcabin et", + "ĠBea utiful", + "Ġham mer", + "ĠLuc as", + "Ġinterpret ation", + "Ġwra pped", + "Ġpurs ue", + "ĠTayeb i", + "6 00", + "C har", + "c al", + "Ġb ored", + "Ġp ressed", + "Ġn aima", + "Ġre verse", + "ĠM ong", + "ĠC atherine", + "ro ph", + "Ġan th", + "ĠN ation", + "ĠO p", + "Ġse ctions", + "il ight", + "ĠF ig", + "th y", + "ĠJ enny", + "Ġv amp", + "ich i", + "act ory", + "Ġbl oke", + "Ġhapp ily", + "Ġsur f", + "Ġbus h", + "Ġca red", + "Ġcoll aps", + "ĠCount ry", + "Ġri g", + "Ġbra ins", + "Ġsus pend", + "ĠRepublic ans", + "gu ing", + "ĠFuck ing", + "Ġlink s", + "Ġmechan ism", + "ĠHung arian", + "ĠConfeder ate", + "ĠCub a", + "ĠRab bit", + "Ġcontem porary", + "ĠArgent ina", + "Ġuncom fortable", + "S y", + "S ighs", + "b us", + "b ound", + "c ated", + "h um", + "p an", + "s or", + "Ġw ard", + "is d", + "Ġo ven", + "Ġc hip", + "Ġf ruits", + "ve x", + "ve ll", + "us alem", + "Ġre new", + "ĠH IS", + "ĠC hes", + "ĠY outh", + "ĠN am", + "ĠP int", + "ra h", + "op les", + "ĠE vent", + "ist inct", + "Ġr ating", + "Ġcon gress", + "Ġpro cl", + "ĠK ate", + "Ġ19 00", + "Ġman s", + "ĠâĢ İ", + "Ġday light", + "fore st", + "aw are", + "ial s", + "Ġche aper", + "ott a", + "Ġcol ony", + "Ġtri be", + "Ġlear nt", + "Ġdiv isions", + "Ġeng agement", + "Ġsuccess ion", + "ĠAny body", + "Ġappro ached", + "Ġ193 2", + "Ġdest ination", + "Ġwall et", + "Ġpopular ity", + "Ġsuggest ion", + "ĠPol it", + "Ġarm ies", + "Ġbull shit", + "ĠDem i", + "ĠDar win", + "Ġemploy ees", + "á n", + "Ġpray ers", + "Ġcow ard", + "Ġcamer as", + "ĠStud ios", + "Ġder ived", + "Ġrank ed", + "Ġholid ays", + "Ġconstit u", + "war f", + "Ġmeas ures", + "ĠDen mark", + "ĠStan ley", + "ĠBern ard", + "ĠWalk er", + "ĠUs ually", + "Ġconver ted", + "ĠDenn is", + "Ġs oph", + "on ly", + "er to", + "Ġd iver", + "Ġp ier", + "ĠT el", + "Ġhe n", + "ĠA ge", + "Ġre tain", + "Ġ1 000", + "ĠG ill", + "ĠG entle", + "Ġgo ss", + "ig ration", + "el f", + "Ġv ocal", + "Ġover se", + "Ġbel oved", + "Ġdes ired", + "Ġdes cent", + "gr at", + "Ġsw ept", + "Ġwar ned", + "ĠInd ust", + "Ġgener ous", + "ĠCon nor", + "ik a", + "Ġste ep", + "de f", + "ĠChar usa", + "Ġtem por", + "Ġresult ing", + "Ġmembers hip", + "ĠDav y", + "ĠSw iss", + "Ġtrad itions", + "Ġcook ed", + "ĠSy ria", + "Ġpen ny", + "Ġsail ors", + "Ġrese mb", + "Ġviol in", + "Ġpun ished", + "Ġtur b", + "Ġvot ing", + "Ġstran gers", + "ĠSwed ish", + "Ġintellig ent", + "Ġmathemat ics", + "ĠAff airs", + "Ġdign ity", + "ĠLl oyd", + "ĠBenj amin", + "6 5", + "U L", + "W H", + "d is", + "i ate", + "j u", + "m un", + " Ļ", + "Î ±", + "ĠI P", + "ĠI ron", + "Ġd ot", + "Ġp ace", + "Ġh ire", + "ĠA C", + "ĠA G", + "ĠW alt", + "Ġre un", + "ac ha", + "ĠC ensus", + "ĠB art", + "ur an", + "ĠG ir", + "ĠL ear", + "ĠF alls", + "Ġj oking", + "Ġj ungle", + "ĠJ ake", + "Ġup side", + "Ġv ague", + "ĠK az", + "Ġwill iam", + "Ġcomp re", + "ĠShe l", + "irl ines", + "Ġcons pir", + "ĠSp rings", + "ĠPr ice", + "Ġart istic", + "Ġcreat es", + "Ġadv is", + "Ġdep uty", + "Ġprotect ing", + "Ġmis under", + "af a", + "ĠMon te", + "ĠMed ical", + "Th ou", + "gu ard", + "Ġbless ing", + "ĠMem bers", + "Ġadvent ures", + "Ġspin ning", + "Ġcig arette", + "Ġembarrass ing", + "ĠPortug al", + "Ġcompon ent", + "Ġwhist le", + "Ġbutt ons", + "ĠKr ishna", + "Ġmart ial", + "ĠCost a", + "Ġfoss il", + "Ġinse cts", + "ĠPitt s", + "Ġcomed ian", + "ĠCE O", + "Ġchee ks", + "A d", + "I X", + "O f", + "d ad", + "f ound", + "i ary", + "p se", + "p arent", + "ĠI van", + "Ġy og", + "as ures", + "ĠT ogether", + "Ġhe nce", + "ĠA ah", + "ĠW OR", + "ĠH ERE", + "ĠN ort", + "ĠG us", + "ĠG ab", + "ĠG OT", + "ĠL iter", + "ĠL iver", + "un ted", + "Ġde leg", + "Ġout ta", + "ap se", + "ĠTh irty", + "Ġqu ote", + "Ġbl own", + "Ġch lor", + "ps on", + "ĠAll ies", + "vent h", + "Ġhigh light", + "Ġ6 7", + "Ġdead ly", + "Ġ9 5", + "ĠCon vention", + "Ġsun shine", + "Ġsepar ation", + "Ġvol can", + "Ġwa ist", + "AP RI", + "Ġbeha ve", + "Ġtour ist", + "ĠFer rier", + "Ġamb ulance", + "Ġencoura ged", + "Ġchat ter", + "Ġtroub led", + "Ġnom ination", + "Ġsched uled", + "ĠRon ald", + "Ġproced ures", + "0 8", + "n ut", + "p ers", + "s uch", + "Ġa u", + "Ġp ause", + "Ġg ene", + "om ous", + "ĠT reat", + "ĠT iger", + "ĠA PP", + "Ġan ge", + "Ġdo in", + "ch uckles", + "ĠL ower", + "ant e", + "ĠR ap", + "Ġde als", + "Ġal ike", + "Ġal ert", + "Ġall eg", + "Ġcon sec", + "Ġv o", + "Ġno on", + "Ġar chae", + "iv ia", + "Ġtr ash", + "Ġlo ads", + "we gian", + "Ġdis gu", + "ren cy", + "Ġind icate", + "AN S", + "Ġprom ote", + "Ġmess enger", + "ipp i", + "Ġcatch ing", + "ĠSure ly", + "ĠBoy s", + "Ġsal ary", + "Ġredu ction", + "Ġden ied", + "Ġhyp ot", + "Ġpurcha sed", + "Ġvari able", + "Ġveget ables", + "Ġprepar ation", + "ĠSong s", + "Ġconclud ed", + "Ġdea f", + "ĠCertain ly", + "6 2", + "O kay", + "m aking", + "Ġo d", + "Ġb ury", + "en cer", + "Ġp ic", + "Ġp ills", + "at ar", + "ĠM am", + "ri ac", + "ĠY i", + "ĠD ug", + "if ies", + "Ġse al", + "ĠR i", + "ĠF ront", + "ol ics", + "Ġsh y", + "Ġv it", + "Ġ19 18", + "ak o", + "ca le", + "iv als", + "Ġqu id", + "ire n", + "ark s", + "oll a", + "Ġrec urs", + "ĠAll ied", + "é e", + "olog ies", + "Ġsmall est", + "ĠZ one", + "ene z", + "Ġhum or", + "Ġtrans mit", + "Ġnice ly", + "ane ous", + "ĠChrist ine", + "Ġten nis", + "Ġstru ct", + "Ġ193 5", + "Ġdro ps", + "ĠSm all", + "Ġcover age", + "ĠMa ur", + "Ġnin th", + "ĠAnge l", + "Ġdemand s", + "itche ll", + "ĠJer usalem", + "hand ed", + "fortun ate", + "ker chief", + "ĠLis bon", + "Ġadvert ising", + "ĠHun ter", + "ĠLib rary", + "Ġneut ral", + "Ġalgor ithm", + "ĠDIC APRI", + "ĠDICAPRI O", + "E l", + "b ird", + "d ig", + "h im", + "m ers", + "n ames", + "s pe", + "Ġa lex", + "Ġf et", + "Ġf iring", + "Ġd ough", + "an as", + "ĠW ick", + "ĠB orough", + "ĠD ue", + "ĠP C", + "ĠP ier", + "ĠE at", + "ie val", + "Ġcon grat", + "os idodecahedron", + "Ġout put", + "Ġtw e", + "Ġsc en", + "Ġhand ling", + "ĠAl t", + "Ġcr iter", + "Ġown s", + "Ġrel ie", + "Ġ4 2", + "Ġhar sh", + "Ġfin ance", + "Ġmus cle", + "Ġass ure", + "ĠSp ace", + "Ġcol um", + "Ġcur ve", + "Ġprov ision", + "Ġ17 7", + "Ġbusiness man", + "AT ION", + "Ġran ks", + "ĠGr ammy", + "ĠTHE Y", + "Ġmur m", + "Ġtreat y", + "Ġdi ag", + "Ġincre ases", + "Ġmist aken", + "Ġrecogn ised", + "Ġstri king", + "ĠCour se", + "Ġident ical", + "Ġrev ol", + "Ġobs ervation", + "OT H", + "Ġsens ation", + "Ġflight s", + "Ġfrequ ency", + "Ġcritic ized", + "ĠMel bourne", + "Ġsuspect ed", + "Ġpra ise", + "ĠGra ham", + "ĠHu gh", + "ĠTechn ology", + "ĠAdminist ration", + "Ġunex pected", + "Ġnaught y", + "? !", + "P ER", + "b ac", + "c hard", + "g al", + "w yn", + "z ard", + "ed ge", + "Ġp ile", + "ar ation", + "Ġl y", + "Ġh ut", + "Ġre ception", + "ĠM ans", + "ĠM ade", + "ĠM erry", + "ri k", + "ĠB ass", + "ĠB und", + "ĠF ruit", + "un es", + "Ġso b", + "Ġsh one", + "ort ion", + "Ġcl ick", + "Ġbet ray", + "Ġmake up", + "av ia", + "Ġtra gic", + "ĠSe y", + "Ġbelie ving", + "ĠNew ton", + "Ġpoint ing", + "Ġdist inction", + "Ġprodu ces", + "Ġinc om", + "Ġread er", + "Ġexper iments", + "Ġcommun icate", + "Ġve ter", + "amb a", + "Ġdest iny", + "Ġabs urd", + "ĠQu iet", + "ograph ical", + "Ġprop ag", + "ĠChe ers", + "Ġ192 9", + "Ġcand le", + "Ġmum my", + "Ġcontrib ution", + "ĠCat al", + "Ġdiam eter", + "ĠMem orial", + "ĠRel ax", + "Ġpill ow", + "Ġmyster ies", + "ĠGil bert", + "ĠFa ith", + "Ġing red", + "ĠArmen ian", + "Ġpros per", + "Ġbehavi our", + ". -", + "8 5", + "e or", + "m aker", + "w ord", + "w orld", + "Ġt ales", + "ou ver", + "Ġs outheast", + "Ġo ops", + "Ġm ales", + "Ġf erry", + "Ġp orn", + "Ġp atch", + "Ġp unk", + "Ġl os", + "le ment", + "ĠS all", + "Ġbe gg", + "ĠH at", + "ĠC ors", + "Ġst ared", + "Ġdo ck", + "ĠO UT", + "ĠG on", + "ĠL ang", + "ĠL enn", + "op ed", + "ĠF inal", + "ĠF itz", + "Ġj im", + "ĠJ as", + "ĠK l", + "Ġ19 14", + "ĠU pper", + "Ġle ctures", + "ne e", + "Ġcont empt", + "Ġch in", + "Ġpres erved", + "ale h", + "Ġins piration", + "Ġmain tenance", + "Ġfight s", + "Ġfuck ed", + "OU T", + "Ġdef ine", + "Ġdef ensive", + "ĠGe off", + "Ġhat h", + "ĠAust in", + "OR E", + "Ġce iling", + "Ġpract ices", + "Ġclean ed", + "bor ough", + "Ġfem ales", + "Ġtravel ing", + "ĠReg ional", + "Ġthreat ening", + "Ġpercent age", + "Ġarg uments", + "ĠDemocr ats", + "Ġign ore", + "bel ie", + "Ġpoly hedron", + "Ġ{ \\", + "Ġsoci et", + "ĠViv ie", + "Ġphen omen", + "C om", + "E very", + "P er", + "T ake", + "f irst", + "j in", + "m are", + "v als", + "Ä į", + "Ġt ent", + "Ġt ension", + "Ġw ag", + "Ġs ab", + "Ġc am", + "Ġc ater", + "ĠT ob", + "ĠT rent", + "ĠA in", + "ĠS W", + "Ġth umb", + "Ġwe ld", + "ĠM itchell", + "ĠC ou", + "ĠC and", + "ĠC hampion", + "ĠP ir", + "Ġnot ion", + "ĠR OB", + "Ġj erk", + "and o", + "os hi", + "ĠK w", + "ĠK ra", + "Ġ19 17", + "Ġback pack", + "Ġun employ", + "Ġim per", + "Ġsc ores", + "Ġcar pet", + "Ġdif f", + "Ġass ets", + "Ġsign als", + "ĠCar ib", + "Ġeat s", + "Ġexpl o", + "Ġ17 5", + "Ġpain ful", + "ĠMan hattan", + "ĠHar vey", + "Ġdesign er", + "Ġrepresent ation", + "ĠJul ia", + "EA D", + "Ġregular ly", + "Ġbell s", + "Ġconv icted", + "Ġliber al", + "Ġchemical s", + "Ġsuspic ious", + "Ġagric ulture", + "Ġsubst ant", + "Ġelev ator", + "bec ca", + "ĠJoy ce", + "Ġfab ric", + "Ġvacc ine", + "ĠAnton io", + "ĠEth iop", + "ĠAth let", + "Ġcolum ns", + "9 4", + "A F", + "G UN", + "L SB", + "k ar", + "l ines", + "l NG", + "r ac", + "s ix", + "Ġt u", + "er ies", + "ar on", + "Ġl od", + "us ions", + "ĠM ight", + "st eps", + "ĠB ast", + "ĠB rig", + "ĠN ad", + "ĠD ark", + "ĠD iam", + "ĠP ull", + "Ġli ver", + "ĠR aven", + "ĠR oute", + "ist a", + "Ġr ates", + "ĠK am", + "Ġsp an", + "Ġad am", + "cl osed", + "Ġthr ust", + "Ġlea p", + "ĠAr ound", + "Ġcons ol", + "Ġreal ised", + "row s", + "Ġmus h", + "Ġev ac", + "ĠEx am", + "Ġclass ified", + "Ġcor on", + "ĠX V", + "Ġadm ire", + "Ġlocal ities", + "Ġcirc us", + "Ġbull ets", + "ĠHel en", + "ĠAnt ar", + "Ġchallen ged", + "Ġreact ions", + "ĠBrad ford", + "Ġconcent ration", + "ĠHard y", + "ĠPers ian", + "ĠBarb ara", + "Ġstrateg ic", + "Ġthorough ly", + "Ġconven ient", + "ĠStew art", + "ĠMississ ippi", + "P ro", + "R SB", + "T e", + "h ol", + "h our", + "l ings", + "à ª", + "Ġw ages", + "Ġm ol", + "en z", + "at oes", + "ĠT ro", + "im ony", + "ĠN ame", + "ĠN ature", + "if ully", + "ĠL am", + "ol ia", + "ĠJ ama", + "Ġ19 13", + "ag ine", + "Ġsp ots", + "act ive", + "pt ic", + "Ġcomp are", + "ub s", + "ru cture", + "Ġcont ents", + "Ġper pet", + "Ġmust n", + "ĠBe y", + "Ġhome work", + "less ness", + "ĠCl ose", + "Ġsk ull", + "ĠAb orig", + "ee z", + "ĠĠĠĠĠĠĠĠ ĠĠĠ", + "Ġexpl ains", + "Ġbas ement", + "Ġpolit icians", + "AT TER", + "Ġbar rel", + "Ġbar gain", + "Ġlay out", + "hamp agne", + "ĠCha se", + "Ġ193 3", + "Ġpost ed", + "ĠGl en", + "ĠMor ris", + "Ġrob ot", + "ü r", + "Ġpsych iat", + "ĠCarol ine", + "Ġmir acle", + "ö n", + "Ġlog ic", + "ĠTed dy", + "Ġpure ly", + "Ġpa used", + "Ġtrail er", + "Ġrit ual", + "ĠMalays ia", + "ĠLiver pool", + "C o", + "f ree", + "r ating", + "s ay", + "v ia", + "z heimer", + "Ï Ħ", + "Ġ ο", + "Ġt enth", + "Ġb er", + "Ġb icy", + "Ġn an", + "Ġn erve", + "ow ell", + "ĠS oph", + "ĠM umb", + "ĠC emetery", + "st a", + "ĠB R", + "ĠP ole", + "ĠG E", + "ĠJ osh", + "Ġr h", + "ig ma", + "Ġv irgin", + "Ġtw isted", + "Ġlo b", + "ĠV enez", + "Ġun fortunate", + "ĠShe riff", + "Ġam ateur", + "Ġpre c", + "Ġser ial", + "Ġhand kerchief", + "ĠAl ber", + "ĠMar cus", + "ĠBr on", + "Ġ4 3", + "Ġreg ards", + "Ġ5 7", + "Ġdr own", + "Ġsw itched", + "Ġloc omot", + "Ġ8 5", + "Ġcontin uous", + "Ġsol ic", + "Ġvis its", + "ĠHar vard", + "Ġter rified", + "Ġball oon", + "Ġorgan isation", + "ming ham", + "ĠJo an", + "Ġappro ve", + "unt ary", + "Ġdep ressed", + "Ġinvol ving", + "ĠMc K", + "Ġrespect ively", + "ĠColl ins", + "reg on", + "Ġ192 4", + "Ġstick s", + "ĠMed al", + "ĠMad rid", + "ĠNor wegian", + "Ġcelebr ation", + "Ġdan ced", + "ĠMil ton", + "Ġut il", + "Ġremark ed", + "Ġoccup ation", + "ĠShar on", + "ĠDou g", + "col m", + "Ġwid ow", + "ĠHand s", + "Ġcert ific", + "Ġmargin al", + "nat ural", + "inem a", + "Ġbot hered", + "Ġgorge ous", + "ĠKle in", + "0 5", + "A f", + "B E", + "B rit", + "a hedron", + "n al", + "p rodu", + "s ky", + "x ide", + "Ġt um", + "Ġw are", + "Ġs ins", + "Ġb ob", + "Ġb onds", + "Ġc ents", + "or o", + "or ph", + "Ġg um", + "Ġh osp", + "im m", + "ac re", + "ĠC ase", + "ĠC rit", + "ĠC BS", + "ĠL ily", + "ĠF uk", + "th rough", + "Ġso cks", + "han a", + "ort ing", + "Ġno bles", + "ĠNo ah", + "ĠSt ock", + "Ġpe oples", + "ose xual", + "ne um", + "Ġcomp rom", + "ire ct", + "ru p", + "Ġgu id", + "Ġres olution", + "Ġres erve", + "old s", + "Ġmin i", + "Ġel abor", + "Ġins isted", + "Ġdec ides", + "Ġwar ming", + "Ġbus es", + "Ġcol onel", + "Ġbab e", + "OU GH", + "Ġvis iting", + "ĠGu ess", + "cha ir", + "Ġbott les", + "Ġhang ed", + "Ġactiv ist", + "OW N", + "Ġ189 0", + "Ġvan ished", + "ĠDev on", + "ĠArab ia", + "Ġrequire ments", + "Ġax is", + "Ġlegisl ation", + "ĠCro ce", + "Ġtort ure", + "Ġcontrovers y", + "ĠCroat ian", + "Ġdisag re", + "Ġproport ion", + "ĠDyn asty", + "Ġfict ional", + "ĠCarib bean", + "C he", + "S A", + "c at", + "h ouses", + "q i", + "r ams", + "w hel", + "à º", + "Ġw olves", + "re h", + "Ġin ev", + "ar at", + "as er", + "ĠT ru", + "Ġh ilda", + "et a", + "ĠM es", + "ĠC hat", + "ĠC raw", + "st all", + "ĠD ob", + "ĠD rop", + "ĠP sych", + "and in", + "ĠE M", + "ell i", + "el ic", + "ab a", + "Ġag encies", + "ace y", + "Ġcl ay", + "ĠV ic", + "Ġcar go", + "ĠAn s", + "ĠIs abel", + "Ġcount ed", + "Ġkind ness", + "Ġsl ap", + "Ġinv isible", + "Ġmus cles", + "Ġass ured", + "ĠSp irit", + "ĠCl inton", + "Ġfew er", + "Ġcoll ar", + "Ġart illery", + "Ġfil med", + "Ġ9 8", + "Ġri fle", + "ĠFl owers", + "ĠAd v", + "pr ing", + "ĠLord s", + "Ġpen et", + "Ġ192 7", + "Ġkiss ing", + "Ġobs erv", + "ĠBoy d", + "Ġsurv iv", + "rel ated", + "anc ouver", + "ĠCath olics", + "ĠDel aware", + "Ġphilos oph", + "Ġacqu aint", + "Ġcustom er", + "Ġclim bing", + "IGH S", + "Ġwrit ings", + "Ġcorpor ate", + "ĠCra ig", + "Ġaccompl ished", + "Ġlung s", + "ĠAfghan istan", + "Ġgoss ip", + "9 2", + "O G", + "P H", + "á »", + "Ġt ο", + "Ġo ct", + "it ness", + "Ġc ups", + "Ġf lex", + "Ġp i", + "ar ms", + "Ġh int", + "Ġh ip", + "us k", + "ĠA ges", + "Ġe cho", + "ĠH ud", + "ĠB our", + "ĠN BA", + "ĠG ang", + "ĠL t", + "ĠF ro", + "ĠF und", + "Ġj er", + "ie ge", + "ess a", + "Ġex it", + "Ġman kind", + "Ġco in", + "Ġneed le", + "Ġra bb", + "ĠRe ed", + "Ġsy mmet", + "Ġcha sing", + "Ġkid ney", + "ĠBl ake", + "Ġtri umph", + "Ġmark ets", + "Ġaw ait", + "Ġtre nd", + "Ġlow est", + "bo at", + "yr am", + "OM AN", + "ĠAnge la", + "ĠDes ign", + "Ġdisp ute", + "Ġsmell s", + "Ġpsych o", + "Ġsatisf action", + "ĠOb viously", + "Ġcateg ories", + "Ġpartners hip", + "Ġestablish ment", + "Ġinterrupt ed", + "ĠOri ental", + "Ġnit rogen", + "ĠWrest ling", + "ĠMicro soft", + "Ġartific ial", + "Ġmagnific ent", + ". ;", + "B y", + "S ee", + "r ound", + "w he", + "à ¥", + "is ure", + "Ġb ree", + "it udes", + "Ġd ried", + "Ġp iss", + "Ġl ou", + "Ġh ug", + "ion e", + "Ġre ct", + "ri el", + "ri be", + "ĠB asket", + "ĠP am", + "ĠL abor", + "ant a", + "ĠF al", + "ĠE nt", + "ĠE qu", + "ĠE mb", + "ĠJ un", + "ĠJ ournal", + "Ġcan n", + "est on", + "Ġsh orter", + "Ġcon vert", + "ĠK ha", + "ĠSt orm", + "Ġbl ows", + "pl ing", + "Ġpre y", + "ĠAl aska", + "ĠMar illa", + "Ġ5 2", + "Ġdec ade", + "Ġinv aded", + "Ġ6 00", + "Ġimp at", + "Ġrep air", + "Ġmain land", + "Ġprom ises", + "Ġtri ple", + "ik es", + "Ġpat hetic", + "Ġsn akes", + "ĠPet ers", + "ĠEd ith", + "ĠEn v", + "ĠEn joy", + "Ġ192 1", + "Ġperm it", + "Ġban ned", + "ĠGrand pa", + "Ġdelic ate", + "Ġprior ity", + "Ġmyth ology", + "Ġtow el", + "Ġswall ow", + "Ġpubl isher", + "ĠPLA Y", + "Ġadap ted", + "Ġvulner able", + "Ġpeek aboo", + "ĠSeb astian", + "ĠPitts burgh", + "4 00", + "6 6", + "c ad", + "i ens", + "t op", + "v onne", + "at ivity", + "as m", + "Ġg au", + "ĠS ax", + "Ġbe e", + "am ous", + "ĠM R", + "ill o", + "ĠO regon", + "Ġse w", + "ĠL an", + "op er", + "ĠR and", + "ĠHe b", + "ĠHe art", + "ĠIt anium", + "Ġj okes", + "ĠJ i", + "Ġal ter", + "ist ical", + "em ed", + "ĠAnd re", + "ĠK ey", + "Ġle ather", + "Ġcomp ound", + "ĠAl zheimer", + "Ġcount ies", + "ins ky", + "Ġgl oves", + "Ġsub ur", + "uff s", + "Ġrest ing", + "Ġorder ing", + "ov ak", + "Ġrock et", + "Ġappear ing", + "Ġsend s", + "Ġcre pt", + "Ġprop ose", + "Ġ25 0", + "Ġ192 6", + "ĠSam uel", + "Ġfle e", + "Ġrefer ring", + "US E", + "ĠMat cham", + "ĠDel ta", + "ĠNat han", + "Ġsurr ound", + "agon al", + "Ġprefer red", + "ĠNaz is", + "Ġansw ering", + "Ġsuspic ion", + "ĠRom ans", + "ĠNE W", + "ĠBelg ian", + "Ġdemocr acy", + "ĠPict ures", + "ĠExec utive", + "Ġrehe ars", + "M L", + "P A", + "] ,", + "f r", + "f u", + "z an", + "in th", + "Ġw ret", + "Ġc m", + "Ġp izza", + "Ġl s", + "Ġre levant", + "ri z", + "Ġu mb", + "Ġli p", + "Ġj unk", + "ĠE ither", + "um i", + "est yle", + "Ġex hib", + "od s", + "Ġman ip", + "Ġlo vers", + "ish ment", + "Ġoff ensive", + "au x", + "oll ey", + "Ġmar ching", + "Ġ5 4", + "Ġdr ummer", + "Ġob sc", + "Ġem p", + "ĠCl ara", + "Ġfil ming", + "ĠTr ade", + "Ġcontro lling", + "Ġage nda", + "co ver", + "ster dam", + "Ġorgan ised", + "ĠAny one", + "ĠCol on", + "Ġdi ary", + "Ġcharacter istics", + "omin ations", + "Ġphys ically", + "ĠSim ilar", + "ĠPri or", + "ĠOly a", + "ĠSa udi", + "Ġrub bish", + "Ġmechan ical", + "Ġconsum ption", + "Ġrequest ed", + "ĠJeff rey", + "Ġaccomp any", + "........ ........", + "Ġstim ul", + "Ġsustain able", + "Ġnickn ame", + "Ġgal ax", + "Ġregist ered", + "ĠSof la", + "Ġcurtain s", + "names e", + "G reat", + "M us", + "P C", + "S pecies", + "g ans", + "r ations", + "u ji", + "ha us", + "Ġc emetery", + "Ġd warf", + "Ġp neum", + "Ġl emon", + "ĠS op", + "ĠW oo", + "Ġre cept", + "ĠC ry", + "ĠB ranch", + "all e", + "ĠN on", + "ĠO cc", + "ĠL E", + "ra ined", + "ĠR iley", + "ĠF rem", + "Ġde fect", + "Ġcan cel", + "od ia", + "ven ge", + "ĠTh or", + "Ġtw ent", + "Ġtr ous", + "Ġtr icks", + "orm al", + "ĠBr id", + "ĠDe ep", + "Ġind igenous", + "ib al", + "Ġsw orn", + "br aska", + "Ġterm inal", + "ĠPh oen", + "Ġdesign ated", + "Ġ193 1", + "Ġcry stal", + "Ġforget ting", + "Ġcollect ing", + "ĠHigh land", + "Ġ192 5", + "Ġsail or", + "Ġstick y", + "ĠOther s", + "ĠWould n", + "Ġmix ture", + "Ġsand wich", + "iot ics", + "Ġloud ly", + "Ġstrugg ling", + "Ġrestaur ants", + "intend ent", + "ĠBrand on", + "Ġrespond ed", + "ĠAdmiral ty", + "Ġsubs id", + "Ġvert ices", + "mph ony", + "Ġbom bs", + "Ġbrid ges", + "ĠLion el", + "ĠUt ah", + "Ġalle ged", + "Ġbund le", + "D in", + "L ist", + "c ott", + "d r", + "d ia", + "h r", + "n un", + "Ġt ies", + "Ġt ang", + "in ea", + "re nd", + "Ġc ust", + "Ġm ice", + "Ġm aps", + "ĠI F", + "or able", + "Ġl azy", + "as ks", + "ĠT al", + "ent on", + "ĠC it", + "ĠB uff", + "Ġas pir", + "ĠD E", + "ĠD ifferent", + "her s", + "ĠP A", + "ĠR IGHT", + "Ġde er", + "ĠJ unior", + "Ġso vere", + "ell ig", + "ess ions", + "ĠK id", + "ĠU R", + "Ġman ners", + "Ġman aging", + "hi gh", + "ĠV ideo", + "ĠV ancouver", + "Ġfl ame", + "Ġhand led", + "Ġrec ru", + "ĠAll an", + "ont in", + "Ġpol ar", + "Ġcap s", + "Ġprodu cers", + "Ġcoll eges", + "ĠAb by", + "Ġclass room", + "Ġpat ience", + "ĠMan agement", + "Ġoper ates", + "ĠAm sterdam", + "Ġattack ing", + "Ġsum mon", + "ĠPer fect", + "ĠCol in", + "Ġworry ing", + "Ġsex y", + "Ġpen alty", + "Ġrain bow", + "Ġfem in", + "Ġsurv ival", + "amm ar", + "ĠMag azine", + "ĠKar l", + "ĠMur phy", + "Ġconsum er", + "Ġdelight ful", + "Ġcontrovers ial", + "Ġdiagn osed", + "Ġrecy cling", + "N O", + "O H", + "W est", + "b at", + "c s", + "l ace", + "x y", + "in ch", + "Ġd ining", + "Ġp issed", + "Ġin put", + "le vel", + "Ġh ipp", + "ot on", + "Ġhe ap", + "al ysis", + "ĠS out", + "ĠS ham", + "ĠW ard", + "ĠW ald", + "ĠH amps", + "ĠM ember", + "st ick", + "ir able", + "ir rel", + "ĠN iger", + "ĠP il", + "Ġse aled", + "ĠL ud", + "ĠF an", + "ĠHe ar", + "th ou", + "art e", + "od ed", + "so ever", + "Ġcl ip", + "Ġover whel", + "ount ain", + "Ġco ff", + "Ġbet rayed", + "Ġsc andal", + "ĠMar ion", + "Ġsur geon", + "Ġmon ument", + "ative ly", + "ĠTH ERE", + "Ġext inct", + "Ġfight er", + "Ġdream ed", + "Ġsouth west", + "ĠItal ians", + "Ġprop os", + "ĠChe m", + "Ġphot ographer", + "Ġsecret ly", + "Ġengine ers", + "Ġpot ato", + "Ġinflu ential", + "Ġdiscuss ing", + "Ġplant ed", + "ĠBra hm", + "Ġtend ency", + "Ġir re", + "Ġloss es", + "Ch uckles", + "Ġpu ppy", + "Ġrecomm ended", + "ĠCam bridge", + "Ġgather ing", + "Ġinfl ation", + "ĠPu erto", + "Ġrug by", + "Ġfrank ly", + "ĠBase ball", + "Ġpeas ants", + "Ġvoy age", + "ĠEvent ually", + "ĠMumb ai", + "ĠHamps hire", + "D r", + "D own", + "S ON", + "d ri", + "k ers", + "t ic", + "à ł", + "Ī Ĵ", + "Ġw rap", + "re pre", + "Ġs igh", + "on ing", + "Ġg ardens", + "om i", + "et on", + "et tle", + "Ġbe gging", + "ĠW als", + "Ġre vers", + "ĠM ult", + "ĠC ause", + "st orm", + "ĠB ald", + "ĠN ah", + "ĠO scar", + "ĠP as", + "ĠG ener", + "ĠR at", + "ĠF un", + "ul u", + "ab ama", + "ĠK ind", + "ag en", + "ag raph", + "hi ka", + "Ġcl o", + "Ġcl ue", + "Ġcl ause", + "Ġgr asp", + "pl us", + "ru g", + "Ġpo le", + "ĠCh un", + "ĠAl ong", + "Ġcons isted", + "Ġlight er", + "Ġlight ning", + "Ġdra wer", + "Ġ7 7", + "Ġcou ch", + "ĠHar old", + "Ġter rific", + "Ġeng age", + "Ġru ins", + "Ġexcept ions", + "Ġ192 3", + "Ġfeat uring", + "St ation", + "Ġdress es", + "ĠBel ieve", + "Ġsurv iving", + "ĠMal colm", + "Ġdig ging", + "ĠRail road", + "è s", + "Ġautom atically", + "Ġmurd ers", + "ĠHung ary", + "Ġbatter ies", + "Ġmole cules", + "Ġloyal ty", + "ĠBir mingham", + "Ġevident ly", + "Ġsear ched", + "ĠGentle men", + "Ġoverse as", + "Ġguid ance", + "repre ne", + ": \"", + "C A", + "C ha", + "F ran", + "Q ue", + "h ou", + "l on", + "m aid", + "u ously", + "Ġ ze", + "is ons", + "Ġb isc", + "Ġf oul", + "Ġl es", + "Ġl ane", + "Ġn ail", + "Ġhe els", + "ĠS aw", + "Ġbe w", + "ĠW right", + "ĠH ose", + "ĠH aj", + "ĠM aid", + "ĠB ureau", + "ĠY ang", + "Ġas semb", + "ĠP ly", + "ra ine", + "ĠE va", + "pp en", + "pp le", + "ĠK ids", + "Ġqu eer", + "Ġbr ass", + "iss ance", + "Ġpre jud", + "Ġfl ung", + "Ġsec ured", + "Ġsl ipp", + "ĠDe al", + "Ġche ating", + "Ġhar bour", + "Ġele g", + "Ġent ers", + "Ġ6 6", + "ĠSp art", + "Ġgra ves", + "Ġplan es", + "Ġmed ieval", + "Ġwin ners", + "ov iÄĩ", + "Ġpat ron", + "ĠHar per", + "Ġest imate", + "Ġdev oted", + "Ġrul ing", + "Ġrecogn ise", + "Ġver se", + "Ġphys ic", + "Ġcool ing", + "off s", + "Ġdress ing", + "ĠFin land", + "ĠWH O", + "Ġsymb ols", + "ÃŃ a", + "Ġcompos ers", + "Ġbound aries", + "Ġchap el", + "Ġdiam onds", + "Ġlabor atory", + "Ġvirt ue", + "Ġprepar ing", + "Ġborrow ed", + "Ġjew el", + "ĠBlood y", + "LAUGH S", + "ĠFel ix", + "ĠAuthor ity", + "Ġhelicop ter", + "ĠErn est", + "ĠMaced onia", + "Ġhed ge", + "ĠIsa ac", + "5 8", + "H ave", + "b in", + "b ul", + "e re", + "l ast", + "v ar", + "Ġt el", + "Ġs unk", + "er als", + "Ġb ats", + "Ġm and", + "Ġf ist", + "Ġf ran", + "an im", + "Ġp ian", + "Ġp add", + "Ġof the", + "ar ter", + "Ġl n", + "al and", + "ĠA way", + "ĠS af", + "ĠS ciences", + "Ġth omas", + "Ġwas ting", + "ĠH um", + "ĠM is", + "ĠB right", + "ĠN arr", + "ĠD ow", + "ĠD raft", + "ter ior", + "ĠL ag", + "ĠJ ai", + "ight s", + "so le", + "Ġover come", + "Ġbl ade", + "we alth", + "Ġpre cip", + "ons on", + "ors hip", + "Ġsha lt", + "ph ones", + "Ġhar vest", + "Ġfin est", + "Ġ5 1", + "ib a", + "gr ade", + "é s", + "ott on", + "Ġinv itation", + "Ġdist ress", + "ĠJust in", + "Ġpop ulations", + "ream ing", + "Ġimp ulse", + "Ġfore head", + "Ġri p", + "Ġprof ound", + "Ġpast e", + "Ġelect rons", + "Ġdepart ure", + "Ġcharacter istic", + "Ġpriv acy", + "ĠCo ach", + "Ġobject ive", + "ĠMad ison", + "Ġdepend ent", + "ĠPri vate", + "Ġ190 4", + "Ġsens es", + "Ġbow ed", + "ĠMark et", + "Ġà Ĺ", + "Ġble nd", + "Ġspread ing", + "Ġremind s", + "ĠSqu ad", + "ĠCons ervative", + "Ġqual ities", + "Ġghost s", + "Ġshad ows", + "Ġconsist ent", + "Ġconstru ct", + "Ph one", + "ĠJess ica", + "Ġanch or", + "ĠLAUGH TER", + "ĠNich olas", + "Su per", + "ĠFrem antle", + "9 1", + "P a", + "R ober", + "a is", + "e ed", + "e ight", + "o j", + "p ot", + "p ol", + "r ast", + "y ed", + "Î ½", + "Ġb ol", + "Ġb ail", + "Ġf og", + "or ic", + "Ġp ul", + "Ġh ood", + "ĠA ction", + "Ġbe am", + "ĠM all", + "ĠM anu", + "Ġwh ip", + "ĠP E", + "ĠP le", + "ĠL inda", + "un ci", + "Ġr ud", + "os y", + "ab et", + "Ġpl un", + "Ġshe ets", + "ĠIn side", + "Ġam id", + "og en", + "Ġbu rial", + "ens ed", + "Ġapp et", + "ition ally", + "Ġmar ched", + "Ġche w", + "Ġreg ulations", + "Ġpres erve", + "Ġbo ast", + "Ġdr ums", + "Ġchar m", + "Ġsim ult", + "Ġsit com", + "ĠOr d", + "Ġ8 1", + "Ġ7 1", + "Ġpar agraph", + "ov an", + "ĠTr ump", + "Ġsqu ire", + "ĠHer o", + "ĠSha w", + "Ġpublic ly", + "ĠCap ital", + "Ġcir cles", + "EN D", + "Ġtest imony", + "Ġimag ined", + "Ġant icip", + "Ġcorn ers", + "Ġmarket ing", + "Ġobs erve", + "ĠGree ks", + "Ġperm itted", + "Ġpers ist", + "Ġtour ists", + "Ġrob bery", + "ĠMet ropolitan", + "Ġdan cer", + "ĠRad ha", + "wh ite", + "Ġcommer ce", + "Ġcontrib utions", + "mark et", + "Ġalt ar", + "Ġlic ence", + "Ġmotor cycle", + "Ġminor ity", + "EE P", + "Ġtradition ally", + "heart ed", + "ĠVen ice", + "Ġwealth y", + "Ġembarrass ed", + "ĠBul gar", + "ĠMiche lle", + "ĠFriend s", + "Ġetern al", + "Ġbron ze", + "Ġrelie ved", + "ĠBund es", + "ĠPly mouth", + "9 6", + "= =", + "B ob", + "a ver", + "m ay", + "r ics", + "s al", + "w ant", + "z o", + "Ġt ire", + "Ġt att", + "Ġm aj", + "Ġd ent", + "Ġd ensity", + "en cing", + "Ġto re", + "Ġto bac", + "ĠT W", + "ĠT amp", + "Ġhe ir", + "ĠW P", + "ĠW ANT", + "Ġre ef", + "ĠM AR", + "ĠB L", + "ĠB ret", + "ĠD iana", + "ĠO R", + "ĠP y", + "ĠP it", + "ĠK ir", + "ĠSt aff", + "Ġpe an", + "ĠOh h", + "Ġcomp ens", + "Ġsc oring", + "gin a", + "ĠBe h", + "ĠRe becca", + "é t", + "Ġele ctor", + "IN K", + "Ġdr owned", + "Ġgl anced", + "Ġsw ore", + "Ġcha ins", + "Ġcha sed", + "ĠLe ban", + "me al", + "Ġcoll apse", + "Ġdra in", + "Ġhum ili", + "Ġexp ense", + "Ġlaw yers", + "erv oir", + "Ġswe ep", + "co very", + "Ġprocess ing", + "ĠGreat er", + "Ġbi ological", + "Ġkick ing", + "Ġcompl aint", + "OS E", + "Ġscr ub", + "ĠPlay Station", + "Ġmanufact uring", + "ĠBre ak", + "ĠSH E", + "Ġcalcul ated", + "Ġult imate", + "ĠBrazil ian", + "Bl ack", + "Ġsymp at", + "Ġmos que", + "ĠChand ler", + "Ġgeomet ry", + "Ġdisgr ace", + "isd iction", + "ĠBasket ball", + "ĠEnv ironment", + "7 7", + "M on", + "S I", + "g ood", + "m ind", + "t les", + "Ġs ighed", + "at ics", + "ĠT roll", + "Ġh ind", + "Ġha bits", + "ĠS E", + "ĠS ac", + "ĠS leep", + "ver ted", + "ad ers", + "Ġas cend", + "ĠG ate", + "ĠR aw", + "ĠR ena", + "un o", + "un ty", + "Ġsu its", + "Ġex hibit", + "Ġ19 15", + "Ġbl ond", + "ru ct", + "Ġfl ip", + "Ġres idence", + "Ġsha pes", + "ĠAl abama", + "ces e", + "Ġname ly", + "Ġform ing", + "az ines", + "Ġlist s", + "Ġgra pes", + "Ġexp osure", + "Ġcontin uing", + "Ġhat es", + "Ġdeal er", + "ĠWor ks", + "umb o", + "ĠComm unic", + "Ġcamp s", + "Ġtreat ing", + "Ġrad ical", + "Ġcollect ions", + "ĠSm art", + "ĠJe re", + "reg ular", + "Ġ192 2", + "Ġtravel ed", + "Ġmedic ation", + "Ġexam ined", + "Ġaccess ible", + "ID E", + "Ġtext s", + "Ġfro st", + "Ġcy cl", + "Ġimprove ment", + "Ġarrange ments", + "ĠHor se", + "Ġsevere ly", + "ĠBroad cast", + "ĠCommission er", + "Ġconsequ ence", + "Ġoccas ional", + "ĠGib bs", + "Ġpron ounced", + "Ġadj acent", + "Ġnarr ative", + "Ġfascin ating", + "Ġinterfe re", + "Ġdat ab", + "Ġsatell ite", + "Ġcriter ia", + "9 3", + "H ello", + "_ _", + "c ard", + "i per", + "i ji", + "k har", + "m ie", + "p erson", + "r ice", + "ã ģ", + "Ġo at", + "Ġf u", + "ll a", + "Ġp oured", + "Ġy ummy", + "Ġin aug", + "ic ular", + "Ġh ither", + "ot he", + "ĠS eth", + "ĠS lo", + "ĠH annah", + "am o", + "am oto", + "ĠM eth", + "st op", + "Ġme als", + "ĠD ol", + "Ġwh ore", + "ĠO m", + "ĠP ick", + "ĠL ocal", + "op hy", + "ĠF ried", + "Ġso ccer", + "Ġwor ries", + "Ġv est", + "Ġ19 12", + "Ġthem es", + "Ġar guing", + "Ġcl an", + "act s", + "Ġqu ad", + "ond a", + "ĠV ance", + "orn s", + "ade h", + "Ġmo ist", + "Ġapp rent", + "Ġsc ales", + "oc ity", + "Ġcr ashed", + "ĠFor give", + "Ġsub div", + "Ġinst ruction", + "Ġ8 8", + "Ġdef inite", + "Ġhon ourable", + "ĠSee ing", + "uk a", + "Ġ190 9", + "ĠRes erve", + "Ġhero es", + "Ġmultip ly", + "Ġdefend ed", + "Ġdefend ant", + "ĠEll is", + "ĠGO OD", + "Ġglob e", + "Ġresc ued", + "Ġneighbour hood", + "Ġdism issed", + "Ġincreasing ly", + "Ġinstrument al", + "Ġdelay ed", + "ĠSupp ose", + "Ġcollea gue", + "Ġsyn c", + "Ġoblig ed", + "ĠDri ve", + "Ġprivile ge", + "Bill board", + "ĠGir alda", + "Ġtobac co", + "ĠJere my", + ", .", + "0 4", + "D O", + "S N", + "T ell", + "re p", + "er os", + "ĠI ke", + "ing e", + "Ġd ual", + "Ġp ulse", + "Ġp yram", + "Ġl un", + "Ġha w", + "ĠS ri", + "Ġwas ted", + "ac o", + "ĠH m", + "ĠM ull", + "ĠM ason", + "ĠM ister", + "ĠC atch", + "ĠB uc", + "Ġst alk", + "ĠN y", + "ĠD ong", + "ra wn", + "ĠJ UST", + "Ġor n", + "Ġr ational", + "Ġcon greg", + "Ġout fit", + "Ġex port", + "Ġv om", + "Ġoff ence", + "ne g", + "Ġam end", + "Ġbr u", + "Ġfl ames", + "Ġser ver", + "Ġchan nels", + "ĠRe view", + "ĠDe rek", + "Ġ5 8", + "ĠâĻ ¬", + "Ġsub way", + "ĠWho ever", + "ĠCom mer", + "Ġrest ore", + "Ġread ers", + "Ġsign ing", + "ina udible", + "att i", + "Ġcol ored", + "Ġref lected", + "Ġcur rency", + "ON G", + "Ġguess ed", + "ĠNe ed", + "ĠJo ey", + "ĠRoman ian", + "Ġarri ves", + "Ġener g", + "Ġclos es", + "Ġaud io", + "Ġtemper atures", + "Ġur gent", + "Ġsignific ance", + "Ġfirm ly", + "Ġcompos ition", + "Ġconv iction", + "Ġfold ed", + "ĠHea vy", + "Ġguitar ist", + "ĠRaj a", + "Ġadvert is", + "ĠTha iland", + "ĠGlob al", + "Ġpursu it", + "cour se", + "Ġcray ons", + "Ġoppon ent", + "ĠExam ples", + "ĠSoph ie", + "ĠHud son", + "Que en", + "B ar", + "K ing", + "L aughs", + "c ap", + "f ucker", + "g iving", + "h og", + "s omet", + "s hire", + "Ġw ilt", + "Ġc odes", + "Ġm u", + "Ġto xic", + "Ġn ails", + "et ta", + "Ġha re", + "Ġha ck", + "Ġha ste", + "us ively", + "Ġre vel", + "ĠH ob", + "ĠM ik", + "ri ger", + "ro d", + "Ġst out", + "Ġas sembly", + "ĠN ope", + "ĠD iet", + "ĠO v", + "Ġ\" '", + "ĠG as", + "ĠL ot", + "ĠR is", + "ĠR angers", + "ĠF M", + "pp ers", + "Ġall iance", + "Ġr ack", + "Ġtw ins", + "Ġle an", + "ne cess", + "iz zy", + ".\" --_", + "Ġapp arent", + "xt on", + "Ġmin isters", + "Ġmar ine", + "Ġchar ts", + "ĠSp ani", + "ier ra", + "Ġopen ly", + "Ġsign ature", + "Ġpret t", + "Ġpay s", + "20 13", + "sh op", + "Ġtop ics", + "Ġprot ocol", + "Ġcor rupt", + "ĠEm il", + "Ġball et", + "Ġreport ing", + "Ġsupport s", + "Ġz inc", + "ĠPer kins", + "Ġla wn", + "Ġmis ery", + "Ġstick ing", + "ĠSte el", + "Ġshar ply", + "ĠHel ena", + "Ġsad dle", + "Ġexplain ing", + "ĠSal z", + "min ar", + "ĠFe el", + "Ġwitness es", + "Ġexcl usive", + "Ġscrew ed", + "Ġmagn etic", + "Ġbac on", + "Ġfant asy", + "Ġtransform ation", + "ĠGall ery", + "Ġhorn s", + "Ġwand ering", + "Ġstab bed", + "ĠPen insula", + "ĠAbd ul", + "Ġchrist mas", + "Ġannounce ment", + "Ġmanif est", + "Ġabund ant", + "Ġtrous ers", + "0 2", + "B LE", + "C ol", + "E m", + "G ive", + "I O", + "a pped", + "c H", + "c ca", + "e ches", + "h ill", + "i pt", + "j am", + "r ise", + "u um", + "u ity", + "Ġb io", + "Ġb orough", + "Ġc akes", + "Ġc hampions", + "an che", + "ll ey", + "Ġp p", + "Ġp ad", + "Ġl est", + "as i", + "ĠT it", + "ĠT ak", + "Ġth ither", + "Ġon wards", + "ĠM ater", + "ĠC ary", + "ĠB erm", + "Ġk it", + "Ġas hes", + "ĠN ina", + "ĠG arden", + "ul um", + "Ġj et", + "ĠE P", + "ĠE VER", + "est one", + "Ġ19 10", + "ĠIn it", + "ĠWe ek", + "are r", + "ĠV lad", + "ĠWh ose", + "Ġres olved", + "Ġrem ov", + "âĢĿ .", + "Ġra pe", + "Ġend ea", + "ĠBr istol", + "ĠSh in", + "Ġpret ended", + "ĠOr thodox", + "Ġ7 8", + "Ġsent enced", + "Ġshort est", + "ON D", + "Ġbar rier", + "Ġstar ving", + "Ġmag azines", + "Ġdi aper", + "atter ing", + "iment ary", + "Ġgrad uation", + "ĠMart ha", + "Ġblock ed", + "ĠBur ke", + "CH UCK", + "ĠBu zz", + "Ġcontract s", + "ĠCould n", + "Ġimm ort", + "ĠMag gie", + "tt es", + "min ster", + "Ġdefend ing", + "wr iting", + "Ġpu ppet", + "Ġplain ly", + "Ġconsist ing", + "ĠGer ald", + "Ġvent ure", + "Ġsubsequ ent", + "ĠOtt oman", + "Ġatom ic", + "opp y", + "ĠArn old", + "Ġacknow led", + "App lause", + "Ġencoun ter", + "ĠChel sea", + "Ġunsu ccess", + "Ġvamp ire", + "Ġcompre hens", + "Ġsociet ies", + "ĠAborig inal", + "ĠCraw ford", + "ĠHeb rew", + "7 8", + "H ar", + "W ait", + "c ons", + "n ell", + "o ks", + "r ater", + "Ġthe rm", + "Ġw ides", + "Ġb a", + "Ġb rew", + "Ġf urious", + "Ġd um", + "ed a", + "ed om", + "Ġl ime", + "ĠA ub", + "ĠS port", + "ay ed", + "ĠH OW", + "ĠB rew", + "ĠY vonne", + "out ing", + "Ġme lt", + "ĠD ur", + "ĠD est", + "ĠP earl", + "ĠE X", + "ĠE ug", + "ĠK el", + "ĠK ab", + "Ġ19 16", + "Ġag gressive", + "Ġtr ump", + "Ġle o", + "Ġro ast", + "Ġbu cket", + "ĠAl ger", + "Ġcount s", + "Ġcr ushed", + "Ġatt ach", + "rest rial", + "ĠSe an", + "Ġgl orious", + "ĠSp encer", + "ĠAb bey", + "Ġconf ession", + "ov ich", + "arch y", + "Ġsol ved", + "Ġorgan isms", + "Ġdam ned", + "ien ces", + "ĠMc M", + "Ġfootball er", + "Ġcat hedral", + "ĠHigh way", + "Ġrespons ibilities", + "Ġtravel s", + "Ġemploy ee", + "ĠCr icket", + "Ġpet rol", + "Ġattract ion", + "ĠIm agine", + "itar ian", + "Ġcopy right", + "ĠOb ama", + "ĠSom ers", + "Ġdemocr atic", + "Ġgri p", + "ĠLes lie", + "Ġforb idden", + "Ġcompar ison", + "Ġcraw l", + "Ġprecise ly", + "ĠRoc he", + "Ġsty les", + "Ġportra it", + "belie vable", + "A p", + "B M", + "D ear", + "I RE", + "L O", + "P ar", + "P lease", + "h on", + "p owder", + "à ¸", + "Ġt ab", + "Ġw aking", + "Ġs or", + "Ġo ak", + "Ġc atherine", + "Ġd ing", + "Ġd ub", + "et us", + "us cript", + "Ġbe an", + "ĠW iz", + "am ation", + "ĠM ing", + "ĠC ode", + "ri ages", + "ad t", + "ĠB ach", + "Ġan k", + "ĠN ong", + "ĠD OWN", + "Ġwhat soever", + "ĠE c", + "ĠE mer", + "Ġor che", + "Ġor gans", + "Ġdon key", + "ĠK ham", + "ĠIn formation", + "ment ed", + "Ġle aning", + "Ġover night", + "Ġim perial", + "Ġad equ", + "cc ane", + "ob e", + "ham es", + "ple x", + "Ġgl ow", + "Ġ6 8", + "Ġinter ference", + "Ġfil ed", + "Ġ9 1", + "ĠGet ting", + "br id", + "Ġexper ts", + "ĠFl ore", + "Ġprof ile", + "ĠNe braska", + "ĠDan ish", + "amb oo", + "Ġview ers", + "Ġdefe ating", + "ĠGl ass", + "Ġcivil ian", + "Ġredu cing", + "Ġemer ged", + "Ġassoci ate", + "Ġremark s", + "Ġmeas uring", + "Ġmanufact ured", + "Ġconcent rate", + "ĠMir anda", + "Ġphotograph s", + "Ġbul k", + "ĠOper ation", + "ĠMot or", + "Ġassass in", + "Ġcompass ion", + "Ġthirst y", + "ĠMedic ine", + "Ġgrat itude", + "Ġwors hi", + "Ġpresum ably", + "ĠLenn on", + "0 3", + "G N", + "M EN", + "e i", + "f olk", + "i ology", + "m ia", + "m ble", + "n ia", + "Ġt ails", + "Ġw ires", + "Ġc hampionships", + "an or", + "an ch", + "es y", + "Ġp istol", + "ic ial", + "Ġh ier", + "ĠS ic", + "ent e", + "im er", + "ĠH IM", + "ĠB ess", + "Ġme ad", + "ĠN OW", + "ĠO H", + "ĠO le", + "ĠP ain", + "ĠG U", + "ra ve", + "Ġj ar", + "Ġcon vey", + "Ġshe lf", + "ast ics", + "pe ople", + "ĠK yle", + "Ġnow adays", + "iv an", + "Ġcl erk", + "Ġover head", + "ne red", + "Ġpart ial", + "ff ff", + "Ġbl oom", + "Ġdes erted", + "Ġear ning", + "Ġhead ache", + "Ġent reprene", + "Ġperson nel", + "Ġpass port", + "Ġbre eding", + "Ġtrans action", + "Ġsk etch", + "Ġshall ow", + "Ġref lection", + "ĠEx cellent", + "Ġequ ipped", + "ai ro", + "Ġfoot age", + "Ġhat red", + "Ġsol utions", + "Ġadv ise", + "Ġhon ored", + "Ġsum mit", + "Ġmess ed", + "ĠWas n", + "Ġfail s", + "Ġmot ive", + "Ġcult ures", + "Ġphys ician", + "ĠCo ven", + "Ġvol umes", + "Ġinflu ences", + "Ġpark s", + "âĢİ ?", + "ĠPort land", + "Ġfool s", + "Ġcoast al", + "ĠSl ow", + "Ġcontrib uted", + "Ġwhis per", + "Ġremind ed", + "ĠInt erest", + "Ġcuri osity", + "Ġbac hel", + "Ġelement ary", + "ĠHor ace", + "Ġnurs es", + "ĠTer rit", + "Ġdim ensions", + "Ġcott age", + "ĠBudd h", + "Ġdrag ons", + "Ġincl ined", + "Ġsup reme", + "Ġkidna pped", + "din and", + "Ġmonaster y", + "Ġsuspend ed", + "Ġange ls", + "0 9", + "E d", + "S ome", + "i ated", + "l og", + "n ard", + "p ill", + "v as", + "Ġt ed", + "Ġm asters", + "Ġd ug", + "Ġg inger", + "ĠT end", + "Ġh ob", + "ĠS ide", + "ĠS ang", + "ĠS kin", + "ĠC ad", + "st ones", + "ĠB ol", + "ĠB ain", + "ĠB ear", + "ĠB less", + "Ġ- (", + "ĠN in", + "ĠN av", + "ĠN BC", + "if ting", + "ĠG ON", + "Ġli ar", + "ĠF oon", + "Ġde e", + "ist ant", + "Ġor bit", + "Ġcon j", + "os om", + "ig ious", + "ab e", + "Ġlike wise", + "ard ed", + "Ġwho lly", + "Ġint im", + "Ġar ray", + "Ġar rog", + "Ġen han", + "ang ular", + "ĠMar ian", + "Ġacc um", + "Ġpres idency", + "li er", + "Ġmat t", + "Ġ8 00", + "ĠCar m", + "Ġ9 6", + "Ġ9 7", + "Ġmod ified", + "Ġweek ly", + "Ġfree ze", + "ĠWith in", + "ĠPer u", + "Ġarri ving", + "ĠJul ian", + "Ġyell ing", + "Ġhistor ians", + "Ġdecl are", + "ü h", + "Ġbi ology", + "ĠKent a", + "min ute", + "Ġesc ort", + "Ġduck s", + "Ġpil grim", + "ĠColumb us", + "Ġliqu or", + "Ġdetail ed", + "Ġshell s", + "Ġframe work", + "Ġmathemat ical", + "ĠEconom ics", + "Ġfare well", + "ĠLog an", + "ĠRus sell", + "Ġcance lled", + "Ġque ue", + "Ġceremon ies", + "Ġtherap y", + "S IGHS", + "l ist", + "Ġw ider", + "Ġc avalry", + "Ġy er", + "Ġg or", + "ĠT ab", + "ĠT IM", + "Ġh orm", + "Ġhe m", + "Ġhe x", + "ĠW ELL", + "ĠH amm", + "ĠM unicip", + "ĠP rest", + "ĠL ore", + "ĠL ist", + "ĠL iving", + "ĠL anc", + "Ġj elly", + "ĠE llen", + "Ġde eds", + "ie ls", + "âĢ ľ", + "Ġpro ven", + "Ġv ap", + "ĠSt ri", + "ĠSt range", + "pl ant", + "av id", + "ict ions", + "Ġnever theless", + "be at", + "Ġcr ust", + "Ġche f", + "air y", + "ĠInd ies", + "Ġem ail", + "ĠSc andin", + "Ġ7 2", + "Ġ7 3", + "Ġposs ibilities", + "Ġequ ations", + "ey ed", + "Ġfree zing", + "OR GE", + "Ġlay ers", + "Ġrepl acing", + "Ġnat ives", + "Ġconne ctions", + "Ġhy per", + "Ġhost s", + "Ġclos est", + "Ġaut on", + "Ġaut hent", + "Ġ190 2", + "ĠPal m", + "Ġpath s", + "oura ge", + "Ġpet ition", + "str ong", + "Ġcru ise", + "fl ies", + "Ġcorrect ly", + "ĠBa gh", + "Ġfra g", + "Ġincred ibly", + "Ġbeast s", + "Ġinfect ions", + "Ġpubl ishing", + "ĠJos é", + "Ġcoordin ates", + "ĠCommon wealth", + "Ġsav age", + "Ġcler gy", + "ĠAB OUT", + "ĠBeng al", + "Ġrebell ion", + "Ġbicy cle", + "ĠHose yn", + "0 6", + "7 2", + "9 00", + "I P", + "J apan", + "] :", + "a ving", + "f ol", + "m ans", + "r ades", + "t ar", + "t ail", + "Ġs hat", + "Ġs ciences", + "on ies", + "Ġl an", + "Ġl ined", + "Ġg own", + "Ġg oose", + "ĠT erm", + "Ġhe ating", + "ĠA gr", + "ĠA FC", + "ĠA aron", + "ĠW u", + "ĠH om", + "ĠH ence", + "Ġst ub", + "ĠN ana", + "ĠD y", + "ĠD oub", + "ĠP ie", + "ĠL oc", + "Ġkn ot", + "ĠF ra", + "ĠHe ming", + "Ġso ber", + "Ġsh h", + "ess ed", + "Ġr ows", + "Ġher itage", + "res pect", + "ĠSo ft", + "Ġsp ill", + "Ġsp ider", + "Ġcl am", + "are l", + "Ġam us", + "urn ed", + "Ġper f", + "Ġsc hem", + "Ġdes erved", + "Ġnight mare", + "ĠAr chie", + "ĠAr ctic", + "Ġmon k", + "Ġinst alled", + "Ġfar ming", + "Ġhum our", + "ĠPr im", + "Ġsk ip", + "Ġmod erate", + "Ġshort s", + "ĠEm erson", + "hy d", + "ĠMic hel", + "ĠEd gar", + "ĠWest minster", + "Ġmis chief", + "Ġcommand s", + "Ġfear s", + "Ġhost ile", + "Ġboard ing", + "Ġhun ts", + "Ġknock ing", + "ĠNever theless", + "ĠNat alie", + "Ġpred e", + "ĠArab ic", + "Ġren ov", + "Ġtim ing", + "Ġcomplic ations", + "ĠMod el", + "Ġconqu er", + "ĠViet namese", + "Ġwand ered", + "oty pe", + "ĠProm ise", + "Ġutter ly", + "GRUN TING", + "ĠYugoslav ia", + "onym ous", + "ĠJen na", + "Ġstead ily", + "ĠKurd ish", + "Ġwarri or", + "Ġnigg a", + "ĠDiam ond", + "Ġcertific ate", + "ĠAns wer", + "Ġpneum onia", + "ĠWals h", + "ĠSalz burg", + "\" :", + "0 1", + "5 2", + "C or", + "H i", + "J e", + "J ack", + "e ast", + "k ets", + "p read", + "s l", + "w ould", + "w ig", + "re ction", + "er ness", + "is le", + "is ations", + "Ġc hi", + "Ġl ords", + "ĠT ag", + "ic ity", + "ĠS S", + "ĠS CH", + "ĠS alem", + "Ġe ut", + "ĠM itch", + "ĠM iles", + "Ġfor k", + "st ro", + "ĠB ali", + "Ġst er", + "Ġst all", + "Ġk ettle", + "ur st", + "ĠN it", + "ĠD ID", + "ill ance", + "ch y", + "ch urch", + "ĠG R", + "ĠG osp", + "ĠG host", + "ĠL av", + "ĠL amb", + "op es", + "ĠE yes", + "Ġcan s", + "um ed", + "Ġcon sole", + "Ġpl aint", + "ink y", + "Ġv ine", + "ĠSt upid", + "ough s", + "Ġoff s", + "Ġqu art", + "Ġen able", + "oy al", + "ach t", + "Ġhapp ier", + "Ġch ill", + "ĠBe ck", + "Ġrel uct", + "Ġel bow", + "Ġbo ards", + "Ġmet aph", + "ok a", + "ĠLe gend", + "sh in", + "Ġsol vent", + "Ġaw oke", + "Ġvis itor", + "Ġblack smith", + "Ġtem ples", + "ĠPer form", + "ĠSy l", + "Ġdin osaur", + "Ġdeb uted", + "ĠPaul ie", + "Ġeconom ics", + "Ġaut umn", + "Ġrain forest", + "ĠFin ance", + "ĠTur ks", + "ĠMaj nun", + "Ġcow boy", + "ĠRock y", + "Ġheaven s", + "ĠBell e", + "Ġdom ain", + "ĠTy ler", + "Ġterrit ories", + "book s", + "Ġproceed ed", + "ĠVal ent", + "Ġrein force", + "Ġsam ples", + "ĠFace book", + "Ġelimin ated", + "Ġswift ly", + "ĠVill age", + "Ġbrows er", + "Ġsquee ze", + "Ġcollaps ed", + "Ġtwe et", + "Ġgau ge", + "ĠBundes liga", + "ĠHeming way", + ", [", + "- ,", + "I ES", + "P r", + "i ator", + "l as", + "l isted", + "m ns", + "o ving", + "o ise", + "u ated", + "Ġs aints", + "Ġc ited", + "Ġd il", + "Ġto e", + "Ġin ward", + "ĠT aking", + "Ġhe al", + "ĠS ard", + "Ġre tained", + "ut o", + "ld er", + "Ġwe ars", + "ĠC ob", + "ĠC hampions", + "ĠC hamber", + "ri ers", + "st ration", + "Ġdo se", + "ĠG T", + "ĠG aga", + "ĠE aster", + "Ġso d", + "Ġsh ipping", + "ĠK or", + "Ġman uscript", + "ous y", + "ĠIn g", + "Ġen force", + "Ġco aching", + "Ġcomp elled", + "Ġun ple", + "Ġpo ems", + "ĠCh op", + "Ġcar b", + "ix ed", + "ĠAll iance", + "ĠCan on", + "ĠCan al", + "Ġfar ms", + "ok o", + "Ġhard ware", + "Ġ8 9", + "ING S", + "Ġ9 4", + "Ġref riger", + "Ġcontin ually", + "ik h", + "ĠPet ty", + "Ġcommun ist", + "Ġbeh old", + "co at", + "ĠBar cel", + "Ġappro aches", + "Ġdepart ments", + "Ġcompet ing", + "ĠAN Y", + "Ġsens ible", + "su it", + "Ġsettle ments", + "Ġcompl aints", + "ĠMil itary", + "Ġconvers ations", + "OS T", + "ĠHas an", + "ĠÎ ¥", + "Ġcoal ition", + "ĠEst her", + "Ġmort al", + "Ph il", + "Ġfoss ils", + "ĠCamer on", + "Ġinher ited", + "Ġcoinc idence", + "Ġdynam ic", + "Ġlux ury", + "ĠNC AA", + "ĠVenez uela", + "ĠSop hia", + "C ap", + "G e", + "G RO", + "b ag", + "e ven", + "e lection", + "i h", + "i ott", + "in ery", + "Ġw iped", + "Ġs ul", + "Ġs aint", + "er re", + "Ġp uff", + "Ġp engu", + "Ġl ust", + "Ġl akes", + "as a", + "ic he", + "ic ious", + "Ġhe ars", + "ĠW ong", + "ac ular", + "ĠM ou", + "ĠM ut", + "ĠC R", + "ĠC reat", + "ĠC ale", + "ĠC elt", + "ĠC OME", + "ro lled", + "ĠB ri", + "ĠY ears", + "ĠN ep", + "ĠD onna", + "ĠP owell", + "ĠG ust", + "ĠR ah", + "our ces", + "qu al", + "Ġsa fer", + "Ġus age", + "ard o", + "ĠK um", + "ĠU l", + "Ġint u", + "are ttes", + "Ġback up", + "Ġun necess", + "Ġam p", + "Ġpr ick", + "ĠWhe never", + "ĠAn nie", + "Ġhand ful", + "Ġsha ft", + "Ġspe cially", + "ĠRe ad", + "Ġreal m", + "ĠSh r", + "cess or", + "Ġcha os", + "Ġlight ly", + "Ġsince re", + "Ġinter rog", + "Ġplan ets", + "Ġ8 7", + "ats u", + "ĠEx pl", + "Ġrecord ings", + "Ġsn ap", + "Ġsqu eak", + "Ġcor pse", + "Ġcommun ications", + "ĠNe v", + "Ġbar r", + "Ġcost ume", + "Ġill usion", + "light s", + "Ġview ed", + "Ġgrand pa", + "ĠKe ith", + "Ġdirect ors", + "Ġhy mn", + "Ġsuggest ing", + "sc reen", + "Ġris es", + "Ġ190 8", + "ĠMore over", + "Ġpsych ological", + "Ġsac rific", + "Ġprint s", + "Ġprint ing", + "Ġmoon light", + "ĠFred dy", + "ĠRome o", + "Ġvot ers", + "Don ald", + "Ġencoura ging", + "Ġow ing", + "ĠSpeak ing", + "ĠBat man", + "Ġneighbour s", + "ĠWork ers", + "Ġtransform ed", + "Ġdesper ately", + "Ġtor ped", + "Ġinqu ired", + "Ġwha les", + "Ġrac ial", + "ĠTest ament", + "Ġsurre ndered", + "Ġarrow s", + "ĠGlob e", + "Ġresident ial", + "ĠDub lin", + "Ġresign ation", + "Ġori ent", + "Ġcentim eters", + "Ġdoct rine", + "Ġanth rop", + "Ġsoph istic", + "Ġphenomen on", + "ĠGON NA", + "? ?", + "C O", + "E n", + "G M", + "J uly", + "a ire", + "c up", + "g age", + "i ast", + "l ishing", + "y la", + "in cluding", + "it ating", + "Ġd ys", + "Ġd ivers", + "Ġd imin", + "Ġin k", + "ar ity", + "Ġn ests", + "ĠA V", + "ĠS ue", + "Ġre ass", + "ac a", + "ĠH aut", + "ĠM ach", + "ri um", + "ĠL ost", + "Ġj olly", + "ĠE agle", + "th s", + "ĠJ ab", + "Ġr ides", + "Ġpl uck", + "Ġv ib", + "Ġtr amp", + "Ġun ity", + "Ġbl ues", + "Ġfl ock", + "Ġres ort", + "ĠIs le", + "ces ter", + "Ġspe eches", + "Ġcr imin", + "form ed", + "Ġrel ativity", + "Ġ18 00", + "Ġsupp orters", + "ĠAr d", + "Ġsub tle", + "ok er", + "Ġfr action", + "Ġsong writer", + "Ġmonth ly", + "Ġste re", + "Ġpartic le", + "ĠAd vent", + "ĠHar bor", + "Ġvar iation", + "ĠComm ons", + "Ġtre ason", + "Ġsun light", + "Ġpost er", + "Ġcompet itive", + "sc ap", + "ĠQue bec", + "Ġhop eless", + "ho ibi", + "Ġclaim ing", + "Ġquar rel", + "Ġtend s", + "Ġdecl ine", + "Ġemploy er", + "Äģ r", + "Ġfort night", + "Ġaddress es", + "ĠMer cury", + "Ġsignific antly", + "Ġcustom s", + "ĠHy de", + "Ġbound ary", + "Ġmechan ics", + "Ġder iv", + "Ġbother ing", + "Ġtransport ation", + "ĠAtt orney", + "ĠMust ang", + "Ġcolon ial", + "Ġdraft ed", + "Ġath lete", + "TA IN", + "Ġrefe rences", + "Ġdepos it", + "ĠHistor ic", + "Ġelder ly", + "Ġabsor bed", + "Ġvolunte ers", + "Ġadvoc ate", + "ĠGodd amn", + "Ġpremie red", + "Ġtremb ling", + "Ġdestro ying", + "Ġantib iotics", + "Ġtempor arily", + "ĠMaur ice", + "Ġingred ients", + "Brit ish", + "ĠUR L", + "Ġpropos als", + "ĠAgr ic", + "ĠBarcel ona", + "7 00", + "D T", + "D an", + "J une", + "P ol", + "a ud", + "b ishop", + "k u", + "n ings", + "t ra", + "Ï Ĥ", + "Ġt ense", + "Ġs ings", + "on so", + "is an", + "Ġb un", + "Ġm all", + "Ġm oth", + "at u", + "Ġn avy", + "ĠT ournament", + "ĠT hames", + "Ġhe ck", + "us er", + "id ay", + "ĠH BO", + "ĠC ult", + "se lling", + "ĠD R", + "ĠD im", + "ĠP ack", + "Ġse gment", + "Ġ\" \".", + "ĠG ul", + "ĠL ET", + "ĠR ow", + "ol ine", + "Ġne ur", + "ell s", + "ist ocr", + "ie ves", + "Ġwhe at", + "Ġv ag", + "ĠU H", + "Ġag greg", + "Ġqu ery", + "Ġro ses", + "ub a", + "ress ing", + "av il", + "Ġfl ank", + "Ġfl ashed", + "ĠCh in", + "Ġcar n", + "Ġcar r", + "ave nder", + "ĠMar ine", + "ĠDe c", + "Ġche at", + "Ġ5 6", + "Ġlight ed", + "Ġfr ust", + "uss ia", + "ĠEx cell", + "ĠEx press", + "Ġhur ting", + "Ġprot ests", + "Ġsol itary", + "Ġaw fully", + "ĠTw itter", + "Ġprocess ion", + "Ġfre ight", + "Ġcat al", + "Ġlim bs", + "arr ison", + "Ġgen es", + "AS T", + "Ġmass es", + "ĠBur g", + "yl on", + "Ġ190 5", + "Ġpray ed", + "ĠIran ian", + "Ġ186 9", + "Ġinvestig ate", + "Ġconvers ion", + "Ġsatisf y", + "ĠFer dinand", + "ĠAng lo", + "Ġstrugg led", + "Ġexcl usively", + "Ġprogress ive", + "osa urs", + "Ġunf air", + "Ġpassion ate", + "Ġcommission ed", + "Ġintegr ated", + "Ġrevolution ary", + "andal ay", + "ĠTam il", + "ĠOtt awa", + "ĠÄ Ģ", + "ĠRet urn", + "Ġvel ocity", + "Ġcondens er", + "ĠAx el", + "ĠSult an", + "Ġlandl ord", + "Ġsynd rome", + "Ġlegit imate", + "ĠScient ists", + "Ġvoc als", + "ĠSall ie", + "Ġremov al", + "B ig", + "G AS", + "c har", + "c ule", + "d i", + "e als", + "g reen", + "t ree", + "w hy", + "Ġs izes", + "Ġf ug", + "Ġp y", + "Ġl id", + "Ġn iece", + "ic us", + "Ġhe e", + "Ġhe aling", + "ĠS ony", + "Ġre ly", + "ĠC AP", + "st yle", + "ĠO ber", + "ĠP RO", + "ĠP orter", + "il ies", + "ĠG ol", + "ĠL ay", + "ant on", + "ĠR ot", + "ge red", + "ĠJ ur", + "ĠJ ava", + "ink le", + "ber ries", + "Ġint imate", + "ĠTh under", + "Ġsp it", + "Ġsp ine", + "Ġsp ont", + "Ġle isure", + "Ġro ar", + "Ġam azed", + "be cause", + "ps y", + "Ġra id", + "Ġrel ate", + "Ġind ign", + "Ġind irect", + "ĠFor ces", + "Ġsw ung", + "Ġsw ords", + "ner y", + "Ġdist ances", + "ĠZ oo", + "ered ith", + "Ġ8 6", + "Ġgener ated", + "Ġcur se", + "ĠCon cha", + "Ġpri zes", + "Ġtri gger", + "ĠPl ummer", + "umb ers", + "con vex", + "Ġresp ir", + "Ġvill ain", + "Ġconcer ts", + "Ġpost s", + "ien ne", + "Ġfast est", + "Ġgrand son", + "Ġep ic", + "Ġstri kes", + "ĠPark er", + "Ġris en", + "inc inn", + "Ġindust ries", + "Ġgar ments", + "Ġà ī", + "Ġtall er", + "ĠPre viously", + "Ġroll er", + "Ġchallen ges", + "An n", + "Ġtim ber", + "ĠCat hedral", + "Ġearn est", + "ias m", + "ĠTre vor", + "ĠAndrew s", + "---- ----", + "ĠStart ing", + "Ġvert ical", + "ĠFem ale", + "Ġignor ance", + "Ġconspir acy", + "ĠJama ica", + "Ġpian ist", + "Ġendea v", + "Ġwides pread", + "Ġbachel or", + "R aw", + "S outh", + "W oman", + "t or", + "ha ve", + "Ġb ade", + "Ġc ri", + "Ġf res", + "ĠI an", + "ĠI ike", + "or c", + "Ġd orm", + "Ġd ense", + "Ġd ominated", + "ed o", + "Ġin ex", + "ĠS ud", + "ĠS alt", + "ĠS ierra", + "ĠM eredith", + "ro ck", + "ĠB ark", + "ĠB ird", + "se ud", + "Ġst ating", + "ĠD unk", + "ill es", + "ĠO ft", + "ĠG ann", + "ĠL ucky", + "op ing", + "ĠR ac", + "ĠR oth", + "ĠF ab", + "ĠF arm", + "ul ator", + "Ġsh iver", + "el and", + "Ġpl ague", + "ĠAnd roid", + "ind e", + "ĠSt re", + "Ġtr act", + "ci als", + "Ġam bit", + "Ġbl ah", + "Ġbl amed", + "Ġgu ilt", + "ob a", + "Ġser geant", + "Ġsc orn", + "Ġsha ped", + "Ġcr ush", + "ĠRe in", + "ĠDe x", + "Ġ5 3", + "ĠNot e", + "ĠNot ting", + "Ġmind fulness", + "Ġ8 2", + "Ġ8 4", + "Ġsort ed", + "Ġhalf way", + "Ġfore cast", + "Ġinf ant", + "Ġ16 8", + "Ġabs ent", + "ĠPa vel", + "for ced", + "Ġrespect able", + "Ġcomput ing", + "Ġsus p", + "ĠSen ior", + "yl um", + "Ġwa ving", + "ET H", + "Ġfoc using", + "Ġaffect s", + "ĠDel hi", + "ĠMike y", + "ĠRad hika", + "Ġcompl ained", + "Ġcontrib ute", + "Ar t", + "Ġbomb ing", + "Ġalcoh olic", + "Ġcontr ad", + "pher d", + "Ġcalcul ate", + "Ġautom atic", + "Ġaim ed", + "Ġwithd rew", + "Ġwha le", + "Ġconqu ered", + "ĠGreg ory", + "ĠCL ARE", + "Ġkilomet ers", + "cour t", + "ĠMun ich", + "Ġresear chers", + "Ġsubt ract", + "Ġaffili ate", + "Ġhoriz ont", + "ĠWag ner", + "Ġchim ney", + "Ġyog urt", + "Ġhosp itals", + "rast ructure", + "Ġoat meal", + "M arch", + "P R", + "h op", + "m ill", + "o ffic", + "s ized", + "t in", + "z ig", + "Î µ", + "Ġt s", + "Ġt ad", + "Ġt ens", + "er ts", + "ha y", + "Ġp and", + "Ġp ussy", + "Ġy up", + "ĠT oy", + "ĠT ax", + "ĠS or", + "ĠS yn", + "id o", + "ĠW ILL", + "ĠW OMAN", + "Ġwe pt", + "ĠM aking", + "ĠD oll", + "ĠD isc", + "ĠD odge", + "ĠL en", + "ĠL ess", + "ant h", + "ĠF A", + "ĠHe nd", + "Ġj aw", + "our ning", + "Ġso y", + "Ġal tered", + "Ġr ay", + "ig o", + "Ġout standing", + "Ġpl ug", + "res ident", + "od ka", + "ak ened", + "ĠSo ld", + "Ġtr im", + "ick ets", + "Ġun ions", + "Ġwr ist", + "Ġsha de", + "Ġsupp lied", + "ĠAt hens", + "Ġreg ulation", + "Ġ5 9", + "olog ically", + "Ġread ily", + "Ġrep orter", + "ĠTH INK", + "ING ING", + "Ġ9 2", + "Ġmod est", + "Ġmiss ions", + "Ġsound track", + "Ġspeak ers", + "ĠPl ant", + "OU ND", + "Ġadv ised", + "Ġadm iration", + "ĠRep ort", + "Ġmer c", + "Ġstri pes", + "IT T", + "Ġhun ter", + "Ġneck lace", + "Ġir regular", + "ĠSus sex", + "ĠFred die", + "Ġhom osexual", + "ÃŃ n", + "Ġdemon stration", + "Ġflow ing", + "ĠCare ful", + "ĠMove ment", + "Ġcous ins", + "Ġtrib ut", + "ĠAri el", + "ĠRh ine", + "Ġdescend ed", + "Ġcommit ment", + "Ġinfl amm", + "Ġsitu ated", + "ĠCroat ia", + "Ġcollabor ation", + "Ġfortun ate", + "Ġbrig ade", + "Ġdial ogue", + "Ġperce ived", + "Ġdio xide", + "ĠShir ley", + "Ġslee ve", + "Ġmans ion", + "ĠGE ORGE", + "Ġacquaint ance", + "Ġoffs pring", + "% )", + "5 3", + "A ugust", + "G O", + "a ired", + "b ear", + "b ility", + "f old", + "j ab", + "l oss", + "s ie", + " Ĵ", + "Å ¾", + "Ġthe oret", + "Ġs ib", + "er d", + "ha ge", + "Ġb og", + "Ġb ounce", + "Ġc el", + "Ġc oup", + "Ġf itting", + "Ġin vention", + "ar in", + "Ġg ut", + "ĠT A", + "ĠT ate", + "ĠS ire", + "ĠC OM", + "ĠC incinn", + "ĠB it", + "ĠB il", + "ĠB og", + "ur ring", + "ĠD A", + "ĠO st", + "il ian", + "ĠE u", + "Ġal armed", + "Ġex clud", + "Ġex agger", + "Ġ19 11", + "Ġar bit", + "iv a", + "Ġle aned", + "Ġover l", + "ne ys", + "Ġro d", + "ĠV ick", + "ĠUn iverse", + "ip her", + "Ġper il", + "be e", + "Ġsm ugg", + "ĠBe e", + "ĠSe ems", + "Ġche ated", + "Ġform ally", + "the m", + "ĠLe ader", + "Ġid le", + "Ġ10 1", + "Ġconf ined", + "Ġtri ps", + "Ġpar rot", + "ĠPl ot", + "Ġcor al", + "Ġanim ation", + "ĠWar ner", + "fic ial", + "Ġcheck s", + "Ġdev ast", + "Ġconne cts", + "ĠPhil os", + "Ġburn s", + "Ġpark ed", + "ü l", + "Ġexam ination", + "ĠTra vis", + "Ġmaintain ing", + "ĠGar cia", + "Ġconsum ers", + "Ġwrest ler", + "Ġmathem atic", + "Ġhyd rogen", + "Ġinqu iry", + "Ġdescend ants", + "Ġrecommend ation", + "rim ination", + "Ġdepth s", + "Ġastron aut", + "ĠInf antry", + "ĠBah rain", + "ĠOrigin ally", + "Ġfisher men", + "hang ba", + "ĠHop kins", + "ĠCru z", + "Ġincorpor ated", + "Ġisol ated", + "Ġdistur bed", + "Ġimprison ed", + "Ġdeliber ately", + "Ġfest ivals", + "Ġpic nic", + "Ġbegg ar", + "Ġelabor ate", + "Ġtwent ieth", + "Rober t", + "ĠTW O", + "CHUCK LES", + "Ġamus ement", + "Ġschem es", + "5 1", + "5 4", + "5 9", + "B est", + "E X", + "Q U", + "S W", + "S an", + "U F", + "W as", + "c ot", + "g reat", + "k an", + "o vers", + "r ays", + "w right", + "w ife", + "w orm", + "Ġ Ø", + "Ġt uck", + "Ġw age", + "Ġb ald", + "Ġc yl", + "Ġd iversity", + "ed ed", + "ĠT ib", + "ĠT ams", + "ic ism", + "ĠA ch", + "ĠS M", + "ĠM andalay", + "Ġst are", + "Ġst eak", + "ĠD od", + "ĠO bs", + "ol o", + "ĠE sp", + "Ġr am", + "Ġr amp", + "Ġr otten", + "ood le", + "Ġsa us", + "ĠTh row", + "Ġar istocr", + "Ġsp here", + "ian g", + "Ġover th", + "Ġback ed", + "Ġqu iz", + "ass y", + "Ġfe es", + "ĠV el", + "au er", + "uck le", + "Ġres id", + "Ġres olve", + "Ġsc old", + "ĠBe en", + "Ġmin ing", + "Ġrel ating", + "Ġsur plus", + "Ġmon sters", + "Ġ6 1", + "Ġread s", + "Ġexp enses", + "Ġprob able", + "Ġtri als", + "Ġbas in", + "ĠTr acy", + "Ġclass ification", + "Ġste pping", + "Ġclear ing", + "umb ria", + "Ġhot els", + "Ġsuccess or", + "Ġelect ro", + "ĠCent ury", + "Ġtrad ed", + "Ġrespect ed", + "Ġgen re", + "Ġfix ing", + "Ġcirc ulation", + "Ġnon convex", + "Ġcivil ians", + "Ġban anas", + "Ġ190 1", + "Ġ190 7", + "Ġmarry ing", + "ĠTod d", + "back s", + "gl ass", + "ĠMont ana", + "Ġassoci ations", + "ĠAtlant is", + "apt ist", + "Ġlog ical", + "ĠSom alia", + "Ġquant um", + "Ġtap es", + "ĠNap les", + "Ġrepeated ly", + "ĠAssy rians", + "Ġowners hip", + "Ġpersu aded", + "Ġsar ah", + "Ġstrict ly", + "Ġuncertain ty", + "ĠUk raine", + "Ġconsec utive", + "Ġdiag ram", + "ATTER ING", + "Ġrabb its", + "Ġsophistic ated", + "G y", + "G eneral", + "P e", + "b ot", + "f an", + "f ty", + "f aced", + "g us", + "g irl", + "i ard", + "j ack", + "k now", + "l ane", + "t able", + "à ¸", + "Ġc av", + "Ġc ham", + "Ġf t", + "or al", + "Ġl aund", + "as is", + "as an", + "Ġg ent", + "om ers", + "ĠT ill", + "ĠA part", + "ĠH erm", + "ĠM ak", + "ĠC her", + "ĠY or", + "ĠN AS", + "Ġwh irl", + "ĠP H", + "op ard", + "ĠR aid", + "ĠR oland", + "ĠF O", + "Ġne uro", + "Ġde ploy", + "ĠJ ed", + "Ġout come", + "ĠIn s", + "Ġint estine", + "ĠBut ter", + "na e", + "ĠV e", + "Ġun lock", + "iz en", + "Ġbl oss", + "ater al", + "av i", + "Ġper ception", + "Ġhome less", + "ĠRe gan", + "Ġmar ble", + "Ġac ute", + "Ġret ail", + "Ġmet eor", + "Ġbus hes", + "Ġcent ers", + "Ġexp on", + "Ġ9 3", + "sh ore", + "ĠAh mad", + "Ġcor ruption", + "ĠAd rian", + "ĠPres ently", + "Ġquestion ing", + "Ġorgan ize", + "lev ard", + "Ġpoor ly", + "Ġsun set", + "Ġcompet itions", + "ĠRic a", + "ĠHen ri", + "ades hi", + "Ġbank rupt", + "ĠChan ge", + "Ġtast es", + "Ġmor ality", + "Ġcru cial", + "Ġstorm s", + "ĠArt ie", + "ĠIT V", + "Ġaccident ally", + "ĠLove ly", + "ĠMil an", + "Ġbroadcast ing", + "Ġstream s", + "ĠOw en", + "Ġflo at", + "pro fit", + "Ġnom i", + "Ġvirt ually", + "Ġcheer ful", + "ĠRich mond", + "Ġdies el", + "ĠConst ruction", + "Ġeager ly", + "Ġment ally", + "Ġbitter ly", + "Ġinvolve ment", + "Ġupd ate", + "Ġemphas is", + "omed ay", + "Ġpap a", + "Ġcray on", + "ĠAlexand ria", + "Ġinspect or", + "Ġinterse ction", + "ĠMiy amoto", + "imens ional", + "Ġbrut al", + "Ġau ction", + "ĠPier re", + "Ġrh omb", + "olley ball", + "ĠPhoen ix", + "Ġlan tern", + "Ġunple asant", + "ĠDunk irk", + "ĠNotting ham", + "5 6", + "J anuary", + "L M", + "O ur", + "P EN", + "V EN", + "g am", + "m und", + "p in", + "r ans", + "u ana", + "w ald", + "à ī", + "Ġ á", + "Ġt asks", + "re c", + "re f", + "Ġc her", + "Ġf uss", + "Ġf itted", + "om ena", + "Ġn oun", + "et he", + "ĠA irlines", + "ĠS ie", + "ĠS OME", + "id al", + "ld a", + "ĠH ok", + "ĠC any", + "ĠC hess", + "ĠC airo", + "st ead", + "Ġst ored", + "Ġan ts", + "Ġdo d", + "ĠD ays", + "ter stock", + "ĠO il", + "ĠP ey", + "Ġse als", + "ĠG oth", + "ĠF ortun", + "un ity", + "ĠE ner", + "Ġr ated", + "os o", + "em a", + "ack Down", + "res a", + "od ing", + "ĠU sing", + "ĠIn vest", + "Ġsp otted", + "Ġoff ense", + "ĠV II", + "Ġcomp act", + "ub by", + "Ġcont amin", + "Ġpre st", + "Ġres ur", + "ĠAs soci", + "Ġend ure", + "Ġtra itor", + "ĠSe vent", + "Ġsub stitute", + "Ġadd s", + "Ġ6 2", + "Ġca ut", + "ĠCl ar", + "ĠLe x", + "Ġrest ra", + "Ġinter face", + "Ġrep ro", + "ĠPro vin", + "Ġext rater", + "Ġ7 4", + "Ġprov isions", + "Ġri ot", + "pend ing", + "Ġcor rected", + "ĠAd olf", + "ĠSha d", + "Ġstrong est", + "Ġstra in", + "Ġprofess ors", + "Ġdep ict", + "ĠSw an", + "ĠSy riac", + "Ġpot atoes", + "Ġsepar ately", + "ĠReg iment", + "Ġsal ad", + "Ġdecl ined", + "ĠWil bur", + "Ġ186 1", + "Ġchick ens", + "ĠHon estly", + "ĠMel issa", + "Ġattend ing", + "Ġ187 0", + "ĠStud ies", + "Ġign ored", + "Ġow l", + "Ġbast ards", + "Ġscream ed", + "Ġcolon ies", + "Ġdisappoint ment", + "Not hing", + "ĠDef initely", + "Ġwitch craft", + "ĠGa elic", + "Ġsufficient ly", + "ĠBudd hist", + "Ġsan ct", + "ĠLeg isl", + "Ġscholars hip", + "Ġjew els", + "ĠPot ter", + "Ġdomin ant", + "Ġindic ates", + "Ġkilomet res", + "Ġinher it", + "ĠCamb odia", + "Ġey ew", + "ĠOak land", + "Ġenthus iasm", + "Ġoffend ed", + "Ġsurve illance", + "Ġcondem ned", + "Ġdispl ays", + "child ren", + "Ġsubstant ial", + "ĠRaven s", + "ellig ence", + "Ġdatab ase", + "Ġmatt ress", + "ĠCincinn ati", + "ĠTams ui", + "# #", + "D ER", + "P ad", + "b ling", + "e yes", + "f orth", + "i y", + "m ag", + "p uts", + "r ust", + "r ates", + "y x", + "he nd", + "he rent", + "er ie", + "ha lf", + "Ġb oun", + "Ġc unning", + "Ġf ag", + "Ġd iverse", + "at isf", + "ĠT ouch", + "Ġhe ated", + "ac ter", + "ĠH ER", + "ĠM ap", + "ri ved", + "ct ica", + "ĠD rew", + "ĠD uc", + "ĠP ink", + "ĠG har", + "ĠL anguage", + "ĠF aw", + "ĠF OUR", + "ea p", + "Ġ( ).", + "ig ible", + "Ġwor m", + "Ġany how", + "ĠBut t", + "so on", + "Ġcl aws", + "ount ered", + "ĠV III", + "Ġco c", + "Ġcomp at", + "Ġcomp ute", + "Ġbl og", + "cl ed", + "ob i", + "Ġsm ack", + "ĠMar x", + "Ġtra uma", + "Ġind ul", + "Ġhar ass", + "Ġinv al", + "Ġmet ropolitan", + "ĠAre na", + "iet ies", + "Ġinter val", + "Ġfil thy", + "by ter", + "Ġinf rastructure", + "Ġdevelop ments", + "ĠTr ad", + "Ġval ve", + "ĠMiss ion", + "Ġexpect ations", + "ĠEd en", + "Ġrepl acement", + "Ġpract iced", + "Ġrespect s", + "ĠFrank ie", + "AM E", + "ĠBra vo", + "Ġ190 6", + "Ġattempt ing", + "Ġrob bed", + "EA H", + "ustom ed", + "Ġess ence", + "ĠPre p", + "ĠShut terstock", + "Ġcred its", + "ĠFre edom", + "Ġya wn", + "ĠHaw kins", + "Ġmut tered", + "Ġtarget s", + "Ġamb ition", + "Ġhast ily", + "Ġassum ing", + "keep ing", + "Ġneighbour ing", + "Ġtal ented", + "Ġcig ar", + "Ġcig arettes", + "Ġiniti ative", + "Ġinfect ed", + "Ġparad ox", + "Ġtoss ed", + "Ġpip es", + "Ġthrill er", + "ĠBenn et", + "ĠGab riel", + "Ġscen ario", + "Ġware house", + "Ġimpat ient", + "Ġwret ched", + "ĠCry stal", + "Ġcust ody", + "ĠBroadcast ing", + "minar ayan", + "ĠCany on", + "C R", + "M al", + "R ight", + "f ront", + "g rand", + "i ago", + "l ore", + "p it", + "y on", + "z el", + "á º", + "Ġw ig", + "re ra", + "Ġs ip", + "is hi", + "Ġo m", + "Ġd amp", + "Ġp ets", + "Ġl ur", + "Ġg ard", + "Ġg ee", + "Ġn ope", + "ĠT ot", + "ĠA ctor", + "ĠS ug", + "ĠS aints", + "ay ing", + "ĠW en", + "ld om", + "im s", + "ac ea", + "am as", + "ĠC ic", + "ĠB rent", + "ĠB els", + "ĠY EAH", + "ur red", + "ch t", + "ĠL illy", + "ant o", + "ĠR ing", + "ĠR ice", + "ĠR ug", + "ĠE isen", + "Ġde ed", + "Ġde ity", + "ĠAnd ersen", + "Ġex ca", + "Ġv ivid", + "ap arte", + "ĠWe ather", + "Ġtheir s", + "Ġgr in", + "av ian", + "Ġmean while", + "ĠCh p", + "Ġer rors", + "Ġrel ics", + "Ġreg ime", + "li est", + "IN A", + "Ġmother fucker", + "ĠQ aleh", + "Ġca f", + "ĠAb u", + "Ġconf using", + "idd ing", + "Ġsleep s", + "Ġhat s", + "ĠMan ager", + "Ġquestion ed", + "Ġdev otion", + "Ġlow ered", + "work ing", + "Ġrad ar", + "lo aded", + "Ġinvest ors", + "zz ar", + "Ġris ks", + "Ġnecess ity", + "Ġvol untary", + "Ġenc ountered", + "Ġpack ing", + "ĠPal mer", + "Ġap ology", + "Ġpsych ology", + "Ġmic ros", + "Ġlif estyle", + "ĠDa ily", + "ĠMont real", + "ó t", + "Ġrank ing", + "ĠTurn er", + "ĠMust afa", + "Ġprem ises", + "Ġwebs ites", + "Ġgre edy", + "ĠCir c", + "Ġunlike ly", + "ĠElect ric", + "Ġdece ased", + "ĠMort on", + "Ġabdom en", + "Ġdischar ge" + ] + } +} \ No newline at end of file diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..9e93f0a --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,9 @@ +{ + "add_prefix_space": false, + "bos_token": "<|endoftext|>", + "clean_up_tokenization_spaces": true, + "eos_token": "<|endoftext|>", + "model_max_length": 128, + "tokenizer_class": "GPT2Tokenizer", + "unk_token": "<|endoftext|>" +} diff --git a/training_args.bin b/training_args.bin new file mode 100644 index 0000000..8008131 --- /dev/null +++ b/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87eba57770d6a732b822fe5b995d45644035322d2cc476b45c94d7d50b111e86 +size 4288 diff --git a/vocab.json b/vocab.json new file mode 100644 index 0000000..62e0695 --- /dev/null +++ b/vocab.json @@ -0,0 +1 @@ +{"":0,"":1,"":2,"!":3,"\"":4,"#":5,"$":6,"%":7,"&":8,"'":9,"(":10,")":11,"*":12,"+":13,",":14,"-":15,".":16,"/":17,"0":18,"1":19,"2":20,"3":21,"4":22,"5":23,"6":24,"7":25,"8":26,"9":27,":":28,";":29,"<":30,"=":31,">":32,"?":33,"@":34,"A":35,"B":36,"C":37,"D":38,"E":39,"F":40,"G":41,"H":42,"I":43,"J":44,"K":45,"L":46,"M":47,"N":48,"O":49,"P":50,"Q":51,"R":52,"S":53,"T":54,"U":55,"V":56,"W":57,"X":58,"Y":59,"Z":60,"[":61,"\\":62,"]":63,"^":64,"_":65,"`":66,"a":67,"b":68,"c":69,"d":70,"e":71,"f":72,"g":73,"h":74,"i":75,"j":76,"k":77,"l":78,"m":79,"n":80,"o":81,"p":82,"q":83,"r":84,"s":85,"t":86,"u":87,"v":88,"w":89,"x":90,"y":91,"z":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,"IJ":188,"ij":189,"Ĵ":190,"ĵ":191,"Ķ":192,"ķ":193,"ĸ":194,"Ĺ":195,"ĺ":196,"Ļ":197,"ļ":198,"Ľ":199,"ľ":200,"Ŀ":201,"ŀ":202,"Ł":203,"ł":204,"Ń":205,"Ġt":206,"he":207,"Ġa":208,"in":209,"Ġthe":210,"Ġw":211,"re":212,"ou":213,"Ġs":214,"on":215,"er":216,"ha":217,"nd":218,"is":219,"Ġo":220,"Ġb":221,"it":222,"Ġc":223,"Ġm":224,"Ġf":225,"ĠI":226,"ing":227,"or":228,"Ġd":229,"ed":230,"an":231,"ll":232,"en":233,"Ġto":234,"es":235,"Ġp":236,"Ġy":237,"Ġof":238,"Ġin":239,"ar":240,"Ġand":241,"at":242,"Ġl":243,"Ġyou":244,"hat":245,"as":246,"Ġg":247,"om":248,"Ġn":249,"ĠT":250,"ic":251,"ow":252,"ve":253,"le":254,"Ġh":255,"ot":256,"Ġhe":257,"et":258,"al":259,"Ġha":260,"'s":261,"us":262,"ĠA":263,"ĠS":264,"Ġth":265,"Ġit":266,"ay":267,"Ġthat":268,"Ġis":269,"Ġbe":270,"Ġon":271,"ion":272,"id":273,"Ġe":274,"ĠW":275,"gh":276,"Ġre":277,"ut":278,"ld":279,"ent":280,"im":281,"Ġwas":282,"Ġwe":283,"ac":284,"ĠH":285,"ĠĊ":286,"ver":287,"am":288,"ĠM":289,"ĠC":290,"Ġfor":291,"..":292,"ly":293,"ri":294,"ĠThe":295,"st":296,"ro":297,"ir":298,"ad":299,"ĠB":300,"Ġ-":301,"ke":302,"se":303,"Ġst":304,"ght":305,"ĠY":306,"oo":307,"'t":308,"out":309,"ith":310,"Ġme":311,"Ġk":312,"Ġu":313,"all":314,"Ġan":315,"Ġwith":316,"Ġdo":317,"Ġas":318,"ur":319,"ĠN":320,"ct":321,"ĠD":322,"ce":323,"Ġwh":324,"her":325,"ill":326,"ter":327,"if":328,"ch":329,"ĠO":330,"ĠP":331,"Ġse":332,"Ġ\"":333,"ome":334,"Ġare":335,"Ġnot":336,"Ġ1":337,"il":338,"Ġhave":339,"ĠG":340,"Ġthis":341,"Ġat":342,"ould":343,"ĠL":344,"Ġgo":345,"ra":346,"ant":347,"Ġli":348,"ust":349,"ation":350,"op":351,"Ġkn":352,"ĠR":353,"ĠF":354,"ea":355,"ĠHe":356,"ge":357,"ĠYou":358,"un":359,"ol":360,"Ġhis":361,"ĠIt":362,"ul":363,"Ġne":364,"rom":365,"Ġj":366,"...":367,"ore":368,"Ġknow":369,"ain":370,"and":371,"Ġwhat":372,"ĠE":373,"Ġde":374,"th":375,"ĠJ":376,"Ġcan":377,"Ġthey":378,"pp":379,"our":380,"Ġso":381,"Ġal":382,"ell":383,"um":384,"Ġall":385,"est":386,"Ġab":387,"Ġmy":388,"ist":389,"ers":390,"Ġyour":391,"ie":392,"Ġby":393,"Ġsh":394,"art":395,"Ġfrom":396,"Ġor":397,"Ġ2":398,"Ġwhe":399,"Ġ(":400,"ess":401,"Ġthere":402,"ĠĠ":403,"Ġr":404,"Ġcon":405,"nt":406,"Ġone":407,"Ġbut":408,"os":409,"ig":410,"Ġup":411,"han":412,"ally":413,"ight":414,"Ġcom":415,"Ġsu":416,"qu":417,"Ġher":418,"Ġhad":419,"one":420,"'re":421,"em":422,"Ġhim":423,"ry":424,"red":425,"el":426,"ab":427,"Ġout":428,"Ġlike":429,"ack":430,"ate":431,"ood":432,"Ġwor":433,"Ġsa":434,"very":435,"ook":436,"Ġpl":437,"ĠAnd":438,"res":439,"ame":440,"Ġus":441,"ive":442,"Ġshe":443,"'m":444,"Ġwere":445,"ong":446,"âĢ":447,"ake":448,"ink":449,"Ġpro":450,"Ġex":451,"ck":452,"od":453,"Ġabout":454,"Ġget":455,"Ġv":456,"ast":457,"pe":458,"ort":459,"Ġdon":460,"ound":461,"ard":462,"ind":463,"ity":464,"ĠK":465,"Ġno":466,"ich":467,"Ġjust":468,"right":469,"Ġwho":470,"Ġ19":471,"Ġhere":472,"Ġdid":473,"ies":474,"ĠWhat":475,"ĠU":476,"ear":477,"eah":478,"ak":479,"Ġthem":480,"ber":481,"ime":482,"Ġwould":483,"Ġman":484,"ine":485,"Ġwant":486,"'ll":487,"Ġif":488,"Ġ20":489,"Ġwill":490,"Ġsome":491,"Ġthink":492,"ud":493,"ous":494,"ĠIn":495,"ven":496,"ost":497,"Ġint":498,"ap":499,"ep":500,"Ġany":501,"hing":502,"Ġright":503,"own":504,"Ġwhich":505,"ice":506,"ĠNo":507,"Ġgot":508,"ment":509,"ide":510,"ther":511,"Ġhas":512,"itt":513,"use":514,"Ġsee":515,"ĠSt":516,"ough":517,"ĠWe":518,"ag":519,"Ġwhen":520,"ĠTh":521,"ĠSo":522,"Ġsaid":523,"fe":524,"ca":525,"hi":526,"Ġag":527,"Ġpe":528,"Ġar":529,"Ġsay":530,"ure":531,"Ġtw":532,"Ġtime":533,"way":534,"ia":535,"Ġ'":536,"ĠBut":537,"Ġnow":538,"iv":539,"Ġbeen":540,"Ġsp":541,"Ġlook":542,"ian":543,"Ġtr":544,"ace":545,"ick":546,"ople":547,"'ve":548,"ci":549,"Ġlo":550,"Ġtheir":551,"Ġle":552,"so":553,"Ġcl":554,"Ġthen":555,"Ġmore":556,"ĠOh":557,"ish":558,"reat":559,"Ġgoing":560,"lf":561,"are":562,"ĠYeah":563,"na":564,"Ġother":565,"ite":566,"Ġpeople":567,"Ġcould":568,"ree":569,"ĠThat":570,"ose":571,"ary":572,"Ġoff":573,"Ġover":574,"Ġback":575,"ue":576,"other":577,"irst":578,"age":579,"act":580,"Ġqu":581,"ne":582,"Ġvery":583,"Ġro":584,"ass":585,"ount":586,"Ġthing":587,"ble":588,"Ġgood":589,"ond":590,"cause":591,"Ġaf":592,"Ġfe":593,"pt":594,"Ġtwo":595,"per":596,"Ġwork":597,"Ġtoo":598,"Ġhow":599,"ĠV":600,"ans":601,"Ġen":602,"ĠThey":603,"erm":604,"omet":605,"Ġco":606,"Ġwhere":607,"Ġcomp":608,"Ġfirst":609,"ĠThis":610,"Ġinto":611,"ated":612,"end":613,"Ġthan":614,"Ġpart":615,"ĠWh":616,"ions":617,"hed":618,"Ġun":619,"ase":620,"ĠShe":621,"Ġdown":622,"kay":623,"ord":624,"00":625,"orn":626,"alk":627,"Ġway":628,"Ġcome":629,"ub":630,"ran":631,"ade":632,"ire":633,"Ġalso":634,"Ġam":635,"ĠWell":636,"Ġcall":637,"og":638,"ittle":639,"iz":640,"Ġyear":641,"mer":642,"ought":643,"oy":644,"Ġwell":645,"ĠĠĠĠ":646,"ff":647,"Ġpr":648,"Ġbl":649,"Ġgr":650,"ater":651,"Ġim":652,"Ġour":653,"Ġbr":654,"ved":655,"Ġagain":656,"pl":657,"--":658,"nder":659,"Ġonly":660,"ach":661,"Ġad":662,"Ġevery":663,"ife":664,"Ġlittle":665,"ng":666,"Ġlet":667,"cc":668,"ĠâĢ":669,"Ġsomet":670,"urn":671,"Ġday":672,"Ġmo":673,"ru":674,"Ġbet":675,"har":676,"wn":677,"Ġplay":678,"Ġbecause":679,"we":680,"ving":681,"Ġdis":682,"Ġact":683,"amp":684,"Ġte":685,"Ġcont":686,"ĠWhe":687,"Ġneed":688,"ence":689,"ress":690,"Ġgu":691,"orm":692,"uch":693,"Ġmake":694,"Ġtake":695,"Ġafter":696,"Ġi":697,".\"":698,"ty":699,"self":700,"Ġshould":701,"Ġ`":702,"ren":703,"ory":704,"Ġreally":705,"fore":706,"Ġbu":707,"ĠUn":708,"able":709,"ign":710,"cl":711,"ew":712,"ĠThere":713,"Ġpo":714,"ark":715,"Ġwr":716,"int":717,"thing":718,"Ġthese":719,"av":720,"Ġput":721,"ip":722,"iss":723,"ical":724,"Ġ[":725,"Ġpre":726,"Ġtell":727,"Ġhapp":728,"ang":729,"ens":730,"Ġdoes":731,"ict":732,"Ġthr":733,"ather":734,"Ġfl":735,"Ġunder":736,"Ġ201":737,"Ġapp":738,"au":739,"ult":740,"Ġmuch":741,"onna":742,"Ġper":743,"uck":744,"Ġsomething":745,"Ġmean":746,"ft":747,"Ġnew":748,"ates":749,"land":750,"ied":751,"ĠYes":752,"ool":753,"oll":754,"Ġgonna":755,"ance":756,"ĠCh":757,"ĠHow":758,"ile":759,"Ġres":760,"les":761,"ons":762,"ect":763,"Ġmay":764,"Ġmade":765,"ob":766,"'d":767,"Ġser":768,"Ġlong":769,"Ġcomm":770,"Ġsc":771,"Ġer":772,"Ġeven":773,"ations":774,"Ġch":775,"ody":776,"Ġ''":777,"ull":778,"Ġ``":779,"Ġtalk":780,"ĠIf":781,"Ġbefore":782,"ath":783,"Ġnever":784,"Ġits":785,"be":786,"Ġ3":787,"ited":788,"Ġcar":789,"Ġsm":790,"ady":791,"du":792,"Ġdidn":793,"Ġrem":794,"vers":795,"ting":796,"port":797,"ually":798,"ily":799,"vel":800,"ks":801,"te":802,"ouse":803,"ves":804,"Ġke":805,"ors":806,"ĠAn":807,"ps":808,"Ġhand":809,"ious":810,"ition":811,"Ġrec":812,"Ġmany":813,"ried":814,"ĠMr":815,"Ġdif":816,"ĠDo":817,"Ġgreat":818,"old":819,"ail":820,"Ġyears":821,"tain":822,"Ġokay":823,"aw":824,"Ġlife":825,"Ġthrough":826,"Ġmost":827,"ward":828,"Ġsha":829,"âĢĿ":830,"Ġhel":831,"ĠâĢľ":832,"ĠIs":833,"ise":834,"ix":835,"rent":836,"ĠAs":837,"Ġchan":838,"ful":839,"ĠAl":840,"Ġ200":841,"ces":842,"ave":843,"Ġthought":844,"Ġstill":845,"Ġthose":846,"igh":847,"ction":848,"Ġthings":849,"Ġsec":850,"Ġbel":851,"ĠAll":852,"day":853,"gin":854,"Ġold":855,"Ġra":856,"Ġspe":857,"Ġbec":858,"oh":859,"ince":860,"Ġthree":861,"Ġwent":862,"get":863,"ial":864,"Ġaway":865,"Ġstart":866,"Ġask":867,"Ġcame":868,"Ġyeah":869,"hes":870,"ever":871,"Ġcount":872,"Ġfound":873,"Ġused":874,"Ġdes":875,"Ġcalled":876,"oss":877,"oney":878,"Ġlast":879,"Ġlove":880,"ock":881,"Ġmust":882,"oth":883,"Ġshow":884,"ents":885,"ĠBe":886,"ings":887,"Ġfind":888,"Ġdoing":889,"ys":890,"tern":891,"Ġhome":892,"oc":893,"Ġcr":894,"Ġoh":895,"riend":896,"imes":897,"Ġend":898,"ĠNow":899,"\".":900,"Ġhelp":901,"Ġbeing":902,"Ġatt":903,"Ġgive":904,"xt":905,"Ġown":906,"gan":907,"ĠMar":908,"ced":909,"lease":910,"ened":911,"ĠRe":912,"Ġsuch":913,"Ġmin":914,"atch":915,"meric":916,"Ġwhy":917,"ĠWhy":918,"oot":919,"Ġear":920,"Ġlea":921,"Ġname":922,"als":923,"Ġcour":924,"Ġfam":925,"hild":926,"Ġsame":927,"form":928,"irl":929,"ĠWhen":930,"Ġnight":931,"up":932,"Ġkind":933,"ways":934,"Ġdiffe":935,"Ġlot":936,"Ġtry":937,"ph":938,"Ġtra":939,"Ġwon":940,"ĠBr":941,"chool":942,"Ġbig":943,"ait":944,"ĠDon":945,"my":946,"ĠOn":947,"ident":948,"Ġrel":949,"Ġcare":950,"ĠAmeric":951,"ye":952,"Ġop":953,"ning":954,"ont":955,"aking":956,"Ġ18":957,"rest":958,"Ġsl":959,"ham":960,"gg":961,"Ġwom":962,"Ġworld":963,"Ġchild":964,"Ġsupp":965,"outh":966,"body":967,"Ġmight":968,"Ġ4":969,"Ġfeel":970,"Ġplace":971,"ild":972,"ĠDe":973,"Ġpol":974,"Ġhead":975,"erson":976,"Ġnum":977,"ĠAr":978,"man":979,"ased":980,"ĠLet":981,"der":982,"Ġkill":983,"ĠSe":984,"Ġind":985,"Ġmar":986,"Ġturn":987,"ember":988,"ower":989,"Ġcons":990,"ational":991,"Ġuse":992,"Ġfriend":993,"ating":994,"ute":995,"The":996,"lic":997,"Ġaround":998,"any":999,"uring":1000,").":1001,"ĠCome":1002,"Ġche":1003,"ĠAt":1004,"air":1005,"Ġanother":1006,"Ġreg":1007,"Ġhar":1008,"Ġfin":1009,"\",":1010,"Ġph":1011,"Ġset":1012,"Ġacc":1013,"ĠMy":1014,"Ġalways":1015,"Ġac":1016,"ts":1017,"ĠOkay":1018,"pect":1019,"mb":1020,"),":1021,"Ġsure":1022,"ros":1023,"vent":1024,"ween":1025,"âĻ":1026,"Ġpres":1027,"ah":1028,"Ġhouse":1029,"Ġleft":1030,"li":1031,"Ġ5":1032,"ĠThan":1033,"Ġsy":1034,"Ġmom":1035,"Ġform":1036,"ular":1037,"ĠFor":1038,"Ġmoney":1039,"Ġbetter":1040,"clud":1041,"ics":1042,"Ġanything":1043,"ĠHey":1044,"aught":1045,"ib":1046,"gr":1047,"ĠUnited":1048,"ener":1049,"é":1050,"ĠThen":1051,"Ġkeep":1052,"Ġfour":1053,"Ġsur":1054,"led":1055,"orry":1056,"Ġbelie":1057,"ible":1058,"Ġreal":1059,"ott":1060,"ĠNot":1061,"ollow":1062,"ness":1063,"mber":1064,"az":1065,"Ġel":1066,"Ġdifferent":1067,"Ġele":1068,"Ġbo":1069,"Ġbit":1070,"Ġtold":1071,"Ġboy":1072,"ĠâĻ":1073,"Ġdone":1074,"IN":1075,"ars":1076,"und":1077,"ĠFran":1078,"Ġmon":1079,"ins":1080,"Ġbetween":1081,"ters":1082,"ug":1083,"fect":1084,"Ġword":1085,"ĠNew":1086,"Ġrun":1087,"ĠGod":1088,"Ġ|":1089,"ird":1090,"ple":1091,"ual":1092,"Ġgirl":1093,",\"":1094,"cial":1095,"Ġent":1096,"ĠAf":1097,"Ġdr":1098,"Ġcity":1099,"Ġsecond":1100,"Ġuh":1101,"io":1102,"Ġerm":1103,"Ġknown":1104,"Ġwhile":1105,"Ġpoint":1106,"Ġgl":1107,"Ġever":1108,"Ġschool":1109,"Ġperson":1110,"ĠCan":1111,"ale":1112,"ĠâĻª":1113,"Ġins":1114,"ished":1115,"ason":1116,"Ġret":1117,"orth":1118,"Ġyes":1119,"Ġmat":1120,"ĠMay":1121,"Ġtook":1122,"ric":1123,"ject":1124,"Ġsw":1125,"ames":1126,"Ġ199":1127,"Ġsub":1128,"Ġunt":1129,"Ġdec":1130,"Ġcle":1131,"Ġinv":1132,"Ġchar":1133,"ĠStates":1134,"akes":1135,"Ġmen":1136,"Ġinclud":1137,"ove":1138,"Ġmet":1139,"ner":1140,"Ġstud":1141,"Ġwar":1142,"Ġwater":1143,"âĢĻ":1144,"Ġbook":1145,"rew":1146,"row":1147,"ĠEng":1148,"Ġdist":1149,"aj":1150,"ities":1151,"ĠSh":1152,"Ġstop":1153,"Ġinst":1154,"cept":1155,"Ġob":1156,"Ġmus":1157,"ative":1158,"Ġfollow":1159,"olog":1160,"ork":1161,"Ġnext":1162,"Ġbus":1163,"ĠGo":1164,"ĠJust":1165,"Ġcourse":1166,"ohn":1167,"cess":1168,"Ġass":1169,"Ġfar":1170,"hip":1171,"Ġboth":1172,"ret":1173,"Ġseem":1174,"Ġnothing":1175,"oun":1176,"Ġ--":1177,"its":1178,"uh":1179,"ged":1180,"Ġpass":1181,"ope":1182,"ĠWho":1183,"Ġcent":1184,"eak":1185,"ĠInd":1186,"ivers":1187,"ctor":1188,"cy":1189,"ĠWhere":1190,"Ġcap":1191,"Ġbest":1192,"ton":1193,"Ġsaw":1194,"Ġuntil":1195,"Ġprodu":1196,"vie":1197,"Ġwee":1198,"Ġeach":1199,"une":1200,"ger":1201,"Ġsing":1202,"ross":1203,"ER":1204,"ling":1205,"ĠCom":1206,"Ġsmall":1207,"Ġpop":1208,"Ġactually":1209,"Ġnumber":1210,"ision":1211,"ures":1212,"vern":1213,"ĠAre":1214,"Ġcha":1215,"Ġlater":1216,"Ġfather":1217,"ax":1218,"stand":1219,"Ġbre":1220,"Ġlar":1221,"Ġlight":1222,"ok":1223,"Ġdoesn":1224,"Ġem":1225,"here":1226,"Ġlist":1227,"ĠJohn":1228,"ash":1229,"osed":1230,"Ġmother":1231,"ote":1232,"Ġfun":1233,"ĠQ":1234,"Ġadd":1235,"cer":1236,"ĠZ":1237,"ms":1238,"ream":1239,"Ġhigh":1240,"ny":1241,"Ġonce":1242,"ired":1243,"Ġ6":1244,"ĠSp":1245,"ier":1246,"Ġwait":1247,"Ġwanted":1248,"ĠAmerican":1249,"Ġinc":1250,"iet":1251,"Ġca":1252,"Ġelse":1253,"Ġagainst":1254,"Ġgra":1255,"ution":1256,"Ġ_":1257,"less":1258,"uff":1259,"Ġfamily":1260,"ĠLook":1261,"uth":1262,"Ġroom":1263,"Ġimp":1264,"Ġenough":1265,"ublic":1266,"Ġproble":1267,"rist":1268,"Ġloc":1269,"Ġseen":1270,"ered":1271,"the":1272,"ific":1273,"ĠOne":1274,"Ġbecame":1275,"ĠCl":1276,"Ġfact":1277,"Ġstand":1278,"gether":1279,"ĠLe":1280,"Ġtogether":1281,"ĠGood":1282,"ung":1283,"Ġinte":1284,"rib":1285,"Ġfew":1286,"me":1287,"ably":1288,"ten":1289,"ned":1290,"Ġeverything":1291,"Ġsays":1292,"Ġhard":1293,"ines":1294,"Ġyoung":1295,"ined":1296,"Ġwithout":1297,"Ġopen":1298,"ĠHis":1299,"Ġsim":1300,"Ġsince":1301,"19":1302,"Ġrest":1303,"Ġquite":1304,"ister":1305,"Ġinter":1306,"Ġfr":1307,"Ġside":1308,"Ġstr":1309,"Ġimport":1310,"Ġstay":1311,"yes":1312,"iness":1313,"ury":1314,"Ġsorry":1315,"ism":1316,"ries":1317,"Ġmind":1318,"part":1319,"Ġread":1320,"Ġplan":1321,"ĠMe":1322,"dd":1323,"Ġmeet":1324,"Ġdied":1325,"Ġsign":1326,"Ġ198":1327,"Ġhear":1328,"ĠThank":1329,"Ġbad":1330,"Ġcoll":1331,"ene":1332,"Ġlooking":1333,"Ġid":1334,"Ġrep":1335,"Ġdra":1336,"Ġsix":1337,"ĠPro":1338,"Ġlive":1339,"Ġcoming":1340,"orning":1341,"Ġduring":1342,"ised":1343,"Ġfive":1344,"Ġunderstand":1345,"Ġev":1346,"ike":1347,"ral":1348,"ted":1349,"ense":1350,"Ġleave":1351,"uc":1352,"ertain":1353,"Ġpret":1354,"Ġhum":1355,"Ġsit":1356,"Ġthough":1357,"ĠRight":1358,"Ġdisc":1359,"Ġbelieve":1360,"Ġhappened":1361,"ĠTH":1362,"Ġdire":1363,"ina":1364,"Ġquest":1365,"Ġmain":1366,"Ġexp":1367,"Ġdri":1368,"Ġwhole":1369,"Ġtoday":1370,"son":1371,"ĠOr":1372,"ĠPr":1373,"Ġisn":1374,"att":1375,"Ġland":1376,"Ġext":1377,"Ġchildren":1378,"ĠSc":1379,"Ġteam":1380,"ank":1381,"ĠDid":1382,"Ġplease":1383,"Ġkid":1384,"ither":1385,"Ġdays":1386,"sel":1387,"ĠUh":1388,"Ġ8":1389,"Ġmove":1390,"Ġtown":1391,"ĠMm":1392,"Ġson":1393,"Ġgetting":1394,"Ġtimes":1395,"ital":1396,"Ġface":1397,"stem":1398,"Ġtrans":1399,"Ġinterest":1400,"Ġmed":1401,"ING":1402,"Ġnice":1403,"Ġsle":1404,"anna":1405,"Ġasked":1406,"Ġsir":1407,"Ġbro":1408,"Ġheard":1409,"Ġ7":1410,"Ġposs":1411,"Ġhimself":1412,"ĠKing":1413,"Ġmusic":1414,"Ġed":1415,"aster":1416,"ists":1417,"ield":1418,"Ġbuild":1419,"000":1420,"Ġart":1421,"Ġsort":1422,"ets":1423,"iversity":1424,"Ġwoman":1425,"ball":1426,"Ġgener":1427,"ĠCar":1428,"cted":1429,"Ġnear":1430,"Ġcountry":1431,"Ġjob":1432,"aid":1433,"ĠEr":1434,"oup":1435,"ready":1436,"Ġeyes":1437,"ants":1438,"Ġ197":1439,"Ġwalk":1440,"Ġ10":1441,"Ġcol":1442,"ments":1443,"Ġsk":1444,"Ġeas":1445,"ized":1446,"Ġmorning":1447,"Ġgave":1448,"Ġyet":1449,"Ġ...":1450,"Ġdeath":1451,"ĠTo":1452,"ows":1453,"lish":1454,"Ġmil":1455,"Ġhaving":1456,"Ġimportant":1457,"che":1458,"Ġeat":1459,"Ġans":1460,"ĠBl":1461,"Ġhold":1462,"Ġlead":1463,"Ġpower":1464,"Ġheart":1465,"Ġfil":1466,"ĠAb":1467,"Ġhalf":1468,"Ġalready":1469,"uss":1470,"Ġdead":1471,"ery":1472,"ĠAfter":1473,"ane":1474,"Ġstate":1475,"Ġhour":1476,"ize":1477,"Ġremember":1478,"Ġ9":1479,"Ġknew":1480,"ĠGerm":1481,"ta":1482,"?\"":1483,"Ġupon":1484,"Ġwrong":1485,"ĠYour":1486,"Ġshall":1487,"ives":1488,"aughter":1489,"ĠSome":1490,"Ġgame":1491,"Ġcase":1492,"ĠChrist":1493,"Ġref":1494,"Ġsaying":1495,"Ġair":1496,"ĠGet":1497,"Ġpay":1498,"Ġprob":1499,"Ġmod":1500,"aut":1501,"AN":1502,"ues":1503,"wards":1504,"gt":1505,"pped":1506,"Ġcur":1507,"velop":1508,"ison":1509,"ĠCon":1510,"ying":1511,"Ġfore":1512,".âĢĿ":1513,"Ġtalking":1514,"ats":1515,"Ġmeans":1516,"Ġbegan":1517,"dy":1518,"Ġsoon":1519,"most":1520,"Ġguy":1521,"ober":1522,"Ġbab":1523,"Ġborn":1524,"ĠEx":1525,"Ġsystem":1526,"ched":1527,"ee":1528,"Ġmill":1529,"Ġreturn":1530,"Ġsong":1531,"Ġfull":1532,"ĠHere":1533,"Ġconf":1534,"Ġpri":1535,"Ġtrying":1536,"ically":1537,"Ġmonth":1538,"Ġstarted":1539,"Ġgi":1540,"Ġ*":1541,"Ġhist":1542,"ony":1543,"Ġrecord":1544,"side":1545,"Ġoffic":1546,"Ġlaw":1547,"ural":1548,"20":1549,"Ġmiss":1550,"Ġgovern":1551,"Ġalong":1552,"reen":1553,"Ġbring":1554,"ided":1555,"Ġdoor":1556,"ĠĠĠĠĠĠĠĠ":1557,"by":1558,"Ġequ":1559,"Ġoften":1560,"Ġround":1561,"Ġcertain":1562,"leased":1563,"Ġhur":1564,"Ġexpl":1565,"ron":1566,"med":1567,"ages":1568,"Ġcomple":1569,"Ġwind":1570,"Ġ15":1571,"Ġidea":1572,"Ġprom":1573,"Ġgone":1574,"Ġwife":1575,"Ġbrother":1576,"llo":1577,"ature":1578,"Ġfight":1579,"ility":1580,"ai":1581,"ering":1582,"Ġ196":1583,"ĠâĢĵ":1584,"Ġwanna":1585,"sh":1586,"rop":1587,"Ġjo":1588,"rict":1589,"Ġchange":1590,"Ġprov":1591,"Ġhands":1592,"Ġwin":1593,"ush":1594,"ern":1595,"Ġfell":1596,"Ġhappen":1597,"ately":1598,"Ġserv":1599,"ĠWill":1600,"Ġfoot":1601,"Ġsent":1602,"Ġtri":1603,"Ġline":1604,"ĠCount":1605,"Ġbas":1606,"Ġlear":1607,"Ġsound":1608,"Ġpretty":1609,"ges":1610,"amed":1611,"Ġplayed":1612,"Ġcontin":1613,"ured":1614,"Ġ17":1615,"Ġless":1616,"Ġspeak":1617,"Ġty":1618,"ĠBecause":1619,"br":1620,"Ġmatter":1621,"ional":1622,"ney":1623,"Ġorder":1624,"Ġstory":1625,"Ġfuck":1626,"Ġgoes":1627,"aken":1628,"Ġwatch":1629,"ped":1630,"Ġdet":1631,"Ġcreat":1632,"Ġpar":1633,"ides":1634,"Ġable":1635,"Ġmoment":1636,"cle":1637,"Ġinf":1638,"ov":1639,"eth":1640,"Ġdad":1641,"idd":1642,"Ġri":1643,"Ġbed":1644,"iter":1645,"oon":1646,"Ġes":1647,"Ġ.":1648,"Ġdevelop":1649,"ĠTr":1650,"Ġtop":1651,"Ġsleep":1652,"mor":1653,"Ġproblem":1654,"oice":1655,"Ġwomen":1656,"ĠPl":1657,"rigin":1658,"OU":1659,"Ġdef":1660,"ik":1661,"rence":1662,"Ġarea":1663,"ĠGe":1664,"pend":1665,"where":1666,"gs":1667,"Ġclass":1668,"ole":1669,"Ġsomeone":1670,"anu":1671,"Ġlost":1672,"ared":1673,"Ġfall":1674,"ices":1675,"Ġwasn":1676,"ĠEnglish":1677,"Ġste":1678,"iam":1679,"Ġpartic":1680,"Ġmaking":1681,"Ġpat":1682,"apan":1683,"Ġbusiness":1684,"Ġpain":1685,"Ġlarge":1686,"Ġsn":1687,"ilt":1688,"Ġprobably":1689,"ches":1690,"uro":1691,"Ġfriends":1692,"Ġshort":1693,"Ġpolit":1694,"de":1695,"Ġterm":1696,"Ġpresent":1697,"ler":1698,"Ġcomes":1699,"Ġhat":1700,"Ġyourself":1701,"âĢĵ":1702,"Ġexper":1703,"Ġlooked":1704,"Ġsqu":1705,"ĠTe":1706,"Ġbeaut":1707,"app":1708,"Ġpur":1709,"ĠBrit":1710,"!\"":1711,"ract":1712,"aces":1713,"Ġdrink":1714,"arch":1715,"Ġtrue":1716,"ians":1717,"Ġguys":1718,"Ġmark":1719,"Ġ#":1720,"ĠAh":1721,"ĠEvery":1722,"Ġstre":1723,"Ġwond":1724,"ement":1725,"ample":1726,"to":1727,"ator":1728,"aper":1729,"Ġcontro":1730,"wer":1731,"Ġbecome":1732,"Ġblood":1733,"Ġready":1734,"ĠFl":1735,"ĠJapan":1736,"ention":1737,"Ġalmost":1738,"Ġprot":1739,"ama":1740,"Ġbody":1741,"Ġcor":1742,"Ġworking":1743,"ulation":1744,"ĠAd":1745,"Ġprof":1746,"Ġweek":1747,"ey":1748,"Ġship":1749,"Ġmaybe":1750,"iver":1751,"ON":1752,"erv":1753,"Ġfine":1754,"Ġsol":1755,"Ġanim":1756,"lt":1757,"Ġdiv":1758,"ĠEm":1759,"angu":1760,"Ġago":1761,"gy":1762,"ĠHer":1763,"ĠPet":1764,"ĠPres":1765,"Ġpie":1766,"ĠĠĠ":1767,"rand":1768,"Ġwouldn":1769,"Ġaw":1770,"ĠWar":1771,"Ġbaby":1772,"Ġcommun":1773,"ient":1774,"ĠUniversity":1775,"Ġage":1776,"ley":1777,"ĠMan":1778,"Ġhope":1779,"Ġorigin":1780,"ĠThese":1781,"Ġcut":1782,"Ġpick":1783,"gram":1784,"ĠFrance":1785,"used":1786,"Ġocc":1787,"Ġfree":1788,"Ġpos":1789,"Ġswe":1790,"arent":1791,"Ġearly":1792,"Ġgiven":1793,"ze":1794,"ĠSha":1795,"Ġvis":1796,"Ġ194":1797,"ĠMrs":1798,"Ġdeal":1799,"Ġgroup":1800,"ĠPlease":1801,"Ġconst":1802,"ode":1803,"Ġcou":1804,"hm":1805,"ouble":1806,"enty":1807,"Ġadv":1808,"Ġ16":1809,"AT":1810,"Ġhor":1811,"Ġhaven":1812,"ĠHar":1813,"Ġmovie":1814,"Ġopp":1815,"anuary":1816,"Ġhon":1817,"Ġbeh":1818,"Ġter":1819,"Ġ12":1820,"urch":1821,"Ġspec":1822,"Ġquestion":1823,"ajor":1824,"Ġmyself":1825,"Ġvar":1826,"ards":1827,"pr":1828,"uly":1829,"Ġlate":1830,"Ġclose":1831,"Ġbrought":1832,"eb":1833,"Ġbegin":1834,"ĠWor":1835,"Ġclear":1836,"Ġbreak":1837,"co":1838,"ept":1839,"ety":1840,"ief":1841,"Ġoper":1842,"Ġreleased":1843,"umb":1844,"Ġfire":1845,"Ġnews":1846,"Ġblack":1847,"Ġrece":1848,"Ġleast":1849,"Ġstuff":1850,"ĠWith":1851,"ccess":1852,"ĠSouth":1853,"ĠAm":1854,"ĠCal":1855,"Ġkilled":1856,"Ġthank":1857,"ster":1858,"Ġfood":1859,"oke":1860,"Ġeight":1861,"Ġdaughter":1862,"Ġcra":1863,"ĠPe":1864,"Ġwords":1865,"Ġtaken":1866,"Ġking":1867,"ĠJanuary":1868,"haps":1869,"AR":1870,"iful":1871,"con":1872,"ĠCounty":1873,"Ġten":1874,"Ġreason":1875,"not":1876,"oor":1877,"Ġstation":1878,"Ġpublic":1879,"Ġpast":1880,"utes":1881,"elt":1882,"ino":1883,"selves":1884,"Ġsever":1885,"ived":1886,"Ġgovernment":1887,"Ġmillion":1888,"ĠTw":1889,"Ġran":1890,"Ġguess":1891,"Ġbehind":1892,"Ġexample":1893,"Ġ&":1894,"sy":1895,"Ġball":1896,"Ġ195":1897,"Ġhappy":1898,"Ġlangu":1899,"oman":1900,"ump":1901,"iting":1902,"Ġcompany":1903,"Ġfront":1904,"ĠComm":1905,"ĠYork":1906,"Ġorgan":1907,"alth":1908,"ology":1909,"born":1910,"ĠGr":1911,"ining":1912,"Ġrather":1913,"Ġwhite":1914,"els":1915,"cent":1916,"ĠChar":1917,"Ġseveral":1918,"ĠAust":1919,"Ġmarried":1920,"ma":1921,"Ġallow":1922,"lev":1923,"ese":1924,"ĠPh":1925,"Ġcharac":1926,"ude":1927,"OR":1928,"Ġtaking":1929,"Ġmakes":1930,"vious":1931,"Ġexc":1932,"of":1933,"ality":1934,"Ġinde":1935,"fic":1936,"Ġtre":1937,"ert":1938,"Ġsold":1939,"oud":1940,"Ġnorth":1941,"ĠEuro":1942,"gue":1943,"ones":1944,"ĠNe":1945,"Ġpict":1946,"Ġval":1947,"iqu":1948,"Ġeither":1949,"osp":1950,"aced":1951,"eng":1952,"Ġalone":1953,"ĠMiss":1954,"Ġeng":1955,"Ġbar":1956,"undred":1957,"Ġhuman":1958,"Ġest":1959,"ains":1960,"Ġinform":1961,"Ġve":1962,"bum":1963,"ĠTHE":1964,",âĢĿ":1965,"Ġhot":1966,"Ġsat":1967,"Ġturned":1968,"Ġdesign":1969,"ring":1970,"ience":1971,"Ġred":1972,"Ġreport":1973,"ox":1974,"Ġprogram":1975,"itten":1976,"Ġstrong":1977,"rench":1978,"ĠHello":1979,"ĠWorld":1980,"head":1981,"enn":1982,"Ġattack":1983,"ium":1984,"ament":1985,"Ġseries":1986,"Ġ0":1987,"cient":1988,"ming":1989,"You":1990,"ency":1991,"Ġsuccess":1992,"Ġquick":1993,"ĠX":1994,"Ġliving":1995,"ĠPar":1996,"ully":1997,"atic":1998,"ĠAp":1999,"Ġann":2000,"Ġresp":2001,"Ġthinking":2002,"Ġsupport":2003,"la":2004,"Ġparty":2005,"Ġadm":2006,"Ġdem":2007,"ĠGu":2008,"hy":2009,"ĠMarch":2010,"ĠEurope":2011,"Ġcommon":2012,"Ġ$":2013,"ently":2014,"Ġothers":2015,"ford":2016,"Ġdream":2017,"ril":2018,"ĠOf":2019,"Ġlay":2020,"Ġfig":2021,"ĠCap":2022,"ĠJo":2023,"Ġhundred":2024,"Ġlooks":2025,"Ġcouldn":2026,"oub":2027,"band":2028,"ĠNorth":2029,"ĠDr":2030,"hamp":2031,"ĠHave":2032,"ES":2033,"Ġsometimes":2034,"ead":2035,"ained":2036,"ĠAny":2037,"Ġgrow":2038,"ĠBritish":2039,"Ġsum":2040,"men":2041,"Ġlisten":2042,"ogra":2043,"idge":2044,"Ġtou":2045,"Ġstru":2046,"Ġalbum":2047,"actly":2048,"ĠMic":2049,"ĠGeor":2050,"hern":2051,"unk":2052,"cha":2053,"ots":2054,"Ġwithin":2055,"Ġhistory":2056,"Ġnamed":2057,"Ġtem":2058,"hen":2059,"Ġband":2060,"Ġcheck":2061,"com":2062,"ffect":2063,"ĠBar":2064,"itting":2065,"ior":2066,"Ġleg":2067,"Ġheld":2068,"eptember":2069,"oint":2070,"range":2071,"Ġmess":2072,"Ġbeautiful":2073,"bit":2074,"Ġce":2075,"Ġcost":2076,"Ġexpect":2077,"par":2078,"Ġfilm":2079,"Ġ11":2080,"aim":2081,"Ġwants":2082,"Ġz":2083,"Ġthird":2084,"ĠWas":2085,"ĠCha":2086,"Ġstra":2087,"Ġvill":2088,"Ġresult":2089,"Ġsouth":2090,"Ġminute":2091,"ĠMin":2092,"Ġhit":2093,"Ġbuilt":2094,"Ġusually":2095,"iving":2096,"rie":2097,"Ġroad":2098,"lished":2099,"augh":2100,"ĠDan":2101,"Ġpoor":2102,"Ġperform":2103,"Ġinside":2104,"Ġappro":2105,"ĠJack":2106,"Ġspecial":2107,"Ġrock":2108,"ĠPresident":2109,"Ġrequ":2110,"ĠFrench":2111,"Ġbra":2112,"Ġcir":2113,"ĠSeptember":2114,"Ġsingle":2115,"ald":2116,"Ġill":2117,"Ġgold":2118,"Ġacross":2119,"Ġav":2120,"estern":2121,"ugust":2122,"ider":2123,"Ġcond":2124,"ĠJuly":2125,"fully":2126,"ĠTom":2127,"Ġmemb":2128,"Ġplaying":2129,"ondon":2130,"Ġdear":2131,"Ġpossible":2132,"Ġmonths":2133,"ĠEd":2134,"Ġminutes":2135,"amb":2136,"Ġoutside":2137,"ination":2138,"ĠPer":2139,"unt":2140,"Ġseason":2141,"Ġrepl":2142,"Ġteac":2143,"Ġstat":2144,"ĠCol":2145,"zy":2146,"Ġgotta":2147,"Ġstar":2148,"Ġbuy":2149,"ege":2150,"Ġeffect":2151,"Ġusing":2152,"Ġappear":2153,"Ġsil":2154,"Ġincluding":2155,"ĠBy":2156,"Ġwonder":2157,"ousand":2158,"ĠMaybe":2159,"Ġ193":2160,"EN":2161,"Ġtot":2162,"Ġsweet":2163,"Ġamong":2164,"ffic":2165,"Ġbuilding":2166,"Ġmag":2167,"Ġsend":2168,"ounds":2169,"Ġelect":2170,"chn":2171,"ĠSu":2172,"Ġconcer":2173,"morrow":2174,"Ġdepart":2175,"Ġtried":2176,"Ġcop":2177,"ued":2178,"Ġlocal":2179,"Ġdark":2180,"iew":2181,"Ġhuh":2182,"ĠLike":2183,"ĠRep":2184,"Ġdest":2185,"Ġhair":2186,"bs":2187,"usband":2188,"Ġcamp":2189,"ĠLondon":2190,"ls":2191,"ctober":2192,"ĠJune":2193,"ached":2194,"ĠNational":2195,"Ġ13":2196,"ĠLea":2197,"Ġabs":2198,"ĠEngland":2199,"dom":2200,"ales":2201,"Ġlived":2202,"ĠAugust":2203,"irth":2204,"Ġmembers":2205,"Ġmur":2206,"Ġprofess":2207,"ĠPa":2208,"itch":2209,"Ġ14":2210,"Ġcre":2211,"ĠHowever":2212,"Ġpopulation":2213,"mp":2214,"Ġtest":2215,"Ġlevel":2216,"Ġfollowing":2217,"Ġmajor":2218,"Ġoffice":2219,"ases":2220,"Ġfelt":2221,"Ġnat":2222,"ressed":2223,"Ġwritten":2224,"ĠQu":2225,"ĠSir":2226,"LL":2227,"attle":2228,"Ġdev":2229,"view":2230,"||":2231,"resent":2232,"cember":2233,"uthor":2234,"iddle":2235,"gest":2236,"Ġvide":2237,"Ġdie":2238,"yn":2239,"Ġanyone":2240,"fort":2241,"Ġprocess":2242,"unch":2243,"Ġworry":2244,"ories":2245,"Ġanswer":2246,"Ġsea":2247,"Ġparticular":2248,"Ġbird":2249,"Ġthousand":2250,"ĠCent":2251,"ĠApril":2252,"cing":2253,"What":2254,"Ġgun":2255,"Ġvoice":2256,"ĠDad":2257,"Ġhusband":2258,"read":2259,"eared":2260,"Ġgets":2261,"Ġtill":2262,"Ġiss":2263,"ĠSee":2264,"ified":2265,"ĠItal":2266,"II":2267,"Ġsun":2268,"Ġfa":2269,"key":2270,"ana":2271,"ĠWest":2272,"Ġtreat":2273,"Ġla":2274,"bers":2275,"hile":2276,"Ġhell":2277,"ipp":2278,"light":2279,"Ġpull":2280,"Ġseven":2281,"Ġlanguage":2282,"levision":2283,"iod":2284,"Ġfav":2285,"though":2286,"Ġview":2287,"Ġ!":2288,"Ġformer":2289,"ĠDav":2290,"Ġcomplete":2291,"Ġworked":2292,"Ġ30":2293,"een":2294,"soci":2295,"Ġdep":2296,"Ġmember":2297,"ĠOctober":2298,"ĠFrom":2299,"Ġtable":2300,"ο":2301,"urs":2302,"ruary":2303,"ebruary":2304,"ored":2305,"itions":2306,"ĠCity":2307,"Ġcannot":2308,"Ġdefe":2309,"Ġhours":2310,"Ġcross":2311,"let":2312,"Ġwhether":2313,"Ġworks":2314,"Ġmer":2315,"Ġeveryone":2316,"ĠTake":2317,"Ġpract":2318,"Ġcentury":2319,"ograph":2320,"Ġfre":2321,"ĠSw":2322,"Ġord":2323,"Ġbased":2324,"Ġones":2325,"iron":2326,"Ġproper":2327,"ĠDecember":2328,"huh":2329,"vember":2330,"Ġdiffic":2331,"Ġinvol":2332,"Ġchance":2333,"Ġcry":2334,"Ġforg":2335,"Ġseems":2336,"Ġwrote":2337,"....":2338,"Ġclean":2339,"Ġeasy":2340,"Ġlow":2341,"ĠHi":2342,"ĠNovember":2343,"ĠGerman":2344,"Ġtomorrow":2345,"Ġwear":2346,"Ġfur":2347,"Ġwrite":2348,"Ġpolice":2349,"ĠThanks":2350,"Ġcouple":2351,"airs":2352,"Ġwish":2353,"Ġinformation":2354,"Ġhowever":2355,"cil":2356,"Ġton":2357,"Ġfif":2358,"Ġdam":2359,"asure":2360,"ĠEar":2361,"Ġpaper":2362,"Ġbox":2363,"raid":2364,"rit":2365,"Ġwall":2366,"Ġknows":2367,"Ġboys":2368,"Ġprotect":2369,"bo":2370,"por":2371,"Ġ?":2372,"Ġsense":2373,"Ġtrad":2374,"Ġlives":2375,"Ġcold":2376,"iding":2377,"Ġservice":2378,"Ġcal":2379,"ĠAmerica":2380,"Ġpost":2381,"Ġground":2382,"Ġevent":2383,"ien":2384,"ternational":2385,"Ġcurrent":2386,"Ġfeet":2387,"Ġchanged":2388,"Ġlad":2389,"ĠFebruary":2390,"Ġtwenty":2391,"Ġru":2392,"Ġpub":2393,"kes":2394,"aint":2395,"Ġfast":2396,"ging":2397,"Ġgrand":2398,"Ġmine":2399,"Ġmoved":2400,"Ġprop":2401,"ourn":2402,"work":2403,"Ġrad":2404,"ĠIndian":2405,"Ġexactly":2406,"Ġlonger":2407,"idence":2408,"ula":2409,"cially":2410,"ĠOK":2411,"ising":2412,"Ġisland":2413,"ĠWait":2414,"Ġdog":2415,"Ġsuper":2416,"Ġalright":2417,"Ġ2013":2418,"Ġfield":2419,"go":2420,"Ġcompet":2421,"ĠMc":2422,"Ġsupposed":2423,"room":2424,"Ġdraw":2425,"oose":2426,"Ġbirth":2427,"ration":2428,"Ġsca":2429,"Ġfail":2430,"lu":2431,"ĠEn":2432,"ĠJames":2433,"Ġphone":2434,"Ġparent":2435,"itive":2436,"Ġdi":2437,"ata":2438,"Ġthemselves":2439,"Ġstep":2440,"yr":2441,"ays":2442,"Ġdro":2443,"Ġhig":2444,"irty":2445,"Ġperiod":2446,"Ġcontrol":2447,"Ġlady":2448,"Ġ202":2449,"Ġfair":2450,"ille":2451,"Ġcommune":2452,"Ġcharacter":2453,"ops":2454,"Ġrelig":2455,"ances":2456,"lex":2457,"ivil":2458,"Ġ2010":2459,"Ġcareer":2460,"ument":2461,"Ġpriv":2462,"Ġvers":2463,"ida":2464,"Ġgeneral":2465,"Ġafraid":2466,"Ġtruth":2467,"come":2468,"Ġbott":2469,"Ġshot":2470,"Ġincre":2471,"ift":2472,"Ġcried":2473,"Ġperhaps":2474,"Ġregion":2475,"Ġmot":2476,"irgin":2477,"ask":2478,"ĠKe":2479,"uri":2480,"rodu":2481,"Ġdesc":2482,"ĠYOU":2483,"ization":2484,"ĠDist":2485,"Ġhurt":2486,"ĠPeter":2487,"ording":2488,"Ġtit":2489,"Ġnational":2490,"Ġ25":2491,"Ġauthor":2492,"ĠPart":2493,"hael":2494,"Ġsister":2495,"cience":2496,"ĠRoman":2497,"conom":2498,"Ġtrouble":2499,"Ġkept":2500,"IC":2501,"uk":2502,"emy":2503,"Ġsex":2504,"Ġdirect":2505,"Ġdeep":2506,"Ġneeds":2507,"ĠAfric":2508,"Ġreceived":2509,"ended":2510,"ĠGeorge":2511,"lo":2512,"irt":2513,"Ġletter":2514,"fer":2515,"uation":2516,"entle":2517,"Ġrunning":2518,"Ġcook":2519,"stit":2520,"ogn":2521,"ĠLa":2522,"Ġseemed":2523,"ption":2524,"Ġtelevision":2525,"Ġshoot":2526,"Ġkids":2527,"ĠHa":2528,"Ġpicture":2529,"Ġcos":2530,"Ġpopular":2531,"IS":2532,"ĠEl":2533,"more":2534,"ĠSer":2535,"Ġcourt":2536,"Ġaccept":2537,"RE":2538,"Ġentire":2539,"Ġvideo":2540,"Ġtonight":2541,"Ġconne":2542,"Ġarri":2543,"Ġabove":2544,"ffe":2545,"ilar":2546,"Ġfootball":2547,"ĠChe":2548,"Ġtechn":2549,"anger":2550,"ission":2551,"owers":2552,"Ġforget":2553,"Ġspace":2554,"for":2555,"Ġeduc":2556,"Ġdoctor":2557,"Ġprin":2558,"Ġcat":2559,"Ġserious":2560,"Ġtree":2561,"Ġmount":2562,"Ġlim":2563,"ĠSorry":2564,"Ġinstead":2565,"ada":2566,"Ġwhatever":2567,"Ġclot":2568,"hard":2569,"lant":2570,"Ġtype":2571,"ĠSy":2572,"Ġvillage":2573,"ĠGreat":2574,"Ġrespect":2575,"Ġlab":2576,"aged":2577,"Ġtouch":2578,"Ġwood":2579,"Ġfly":2580,"Ġperfect":2581,"Ġcollect":2582,"over":2583,"Ġnorm":2584,"Ġexcept":2585,"Ġvi":2586,"avy":2587,"inal":2588,"Ġhy":2589,"Ġwaiting":2590,"eder":2591,"Ġpress":2592,"ĠEven":2593,"ggest":2594,"Ġinclude":2595,"dden":2596,"ĠTell":2597,"oes":2598,"Ġitself":2599,"Ġgod":2600,"ĠIll":2601,"ills":2602,"joy":2603,"ĠAct":2604,"ĠErm":2605,"Ġclub":2606,"illy":2607,"Ġcountries":2608,"Ġcult":2609,"Ġfut":2610,"cture":2611,"Ġsomebody":2612,"Ġaren":2613,"Ġposition":2614,"ĠPeople":2615,"Ġport":2616,"Ġcreated":2617,"atter":2618,"Ġluck":2619,"Ġsuggest":2620,"Ġpiece":2621,"eal":2622,"Ġhorse":2623,"ror":2624,"Ġple":2625,"18":2626,"Ġep":2627,"Ġdepartment":2628,"bur":2629,"ĠLord":2630,"olute":2631,"ĠStop":2632,"Ġeverybody":2633,"arr":2634,"Ġsudden":2635,"tle":2636,"ĠSec":2637,"Ġplayer":2638,"10":2639,"It":2640,"oul":2641,"Ġrul":2642,"Ġrepresent":2643,"ec":2644,"ĠCor":2645,"ĠRic":2646,"Ġinvest":2647,"hampions":2648,"ding":2649,"ken":2650,"ĠPol":2651,"Ġblue":2652,"ospital":2653,"alt":2654,"Ġtrust":2655,"Ġbear":2656,"Ġdin":2657,"Ġfucking":2658,"val":2659,"Ġdifficult":2660,"lect":2661,"acy":2662,"ky":2663,"ĠVirgin":2664,"ially":2665,"Ġmist":2666,"Ġang":2667,"ĠState":2668,"Ġdue":2669,"ĠHen":2670,"Ġdeb":2671,"Ġproject":2672,"ĠCaptain":2673,"reet":2674,"Ġrecogn":2675,"ĠHouse":2676,"ference":2677,"Ġtakes":2678,"Ġamount":2679,"ĠWilliam":2680,"Ġgirls":2681,"Ġled":2682,"Ġfamous":2683,"Ġgen":2684,"Ġ24":2685,"Ġcrit":2686,"Ġsurpr":2687,"olution":2688,"ĠAustral":2689,"Ġcomput":2690,"pes":2691,"Ġworth":2692,"Ġda":2693,"Ġstraight":2694,"Ġhang":2695,"ĠUS":2696,"ĠSomet":2697,"omin":2698,"ĠDistrict":2699,"Ġdecided":2700,"Ġcoun":2701,"ray":2702,"Ġet":2703,"Ġmult":2704,"ĠColl":2705,"rian":2706,"Ġcapital":2707,"Ġweeks":2708,"ĠSm":2709,"bed":2710,"Ġ]":2711,"ĠTwo":2712,"Ġstood":2713,"Ġfeeling":2714,"Ġphot":2715,"Ġpen":2716,"Ġum":2717,"Ġlearn":2718,"Ġserved":2719,"Ġproduct":2720,"lling":2721,"Ġgreen":2722,"ĠMary":2723,"rog":2724,"Ġrole":2725,"rey":2726,"pecially":2727,"Ġcarry":2728,"Ġpassed":2729,"Ġsafe":2730,"Ġbooks":2731,"Ġcast":2732,"ades":2733,"Ġstri":2734,"Ġshit":2735,"Ġexist":2736,"Ġslow":2737,"Ġnine":2738,"Ġspir":2739,"Ġimag":2740,"Ġfunny":2741,"ara":2742,"ĠJe":2743,"Ġfuture":2744,"ival":2745,"Ġevening":2746,"ris":2747,"Ġgentle":2748,"Ġsecret":2749,"Ġhealth":2750,"Ġtelling":2751,"Ġvict":2752,"Ġfurther":2753,"Ġgames":2754,"Ġeye":2755,"itary":2756,"Ġmeant":2757,"Ġengine":2758,"sc":2759,"ĠAg":2760,"GH":2761,"reg":2762,"Ġearth":2763,"Ġproblems":2764,"Ġver":2765,"Ġfill":2766,"amer":2767,"ĠGl":2768,"Ġdoll":2769,"ĠPark":2770,"Ġdoub":2771,"ĠJim":2772,"Ġcomb":2773,"riage":2774,"ĠSchool":2775,"Ġjud":2776,"Ġcover":2777,"ĠQue":2778,"ping":2779,"zz":2780,"Ġsubject":2781,"Ġbene":2782,"Ġhoney":2783,"Ġpolic":2784,"Ġide":2785,"Ġherself":2786,"Ġfix":2787,"Ġphys":2788,"Ġreturned":2789,"Ġtrack":2790,"ĠFrank":2791,"Ġmis":2792,"Ġahead":2793,"Ġsocial":2794,"Ġmatch":2795,"ĠHigh":2796,"Ġfollowed":2797,"Ġfigure":2798,"Ġanyway":2799,"ression":2800,"Ġcounty":2801,"Ġmommy":2802,"ciety":2803,"eneral":2804,"ĠIndia":2805,"No":2806,"iment":2807,"Ġain":2808,"Ġ192":2809,"Ġmeeting":2810,"ceed":2811,"ĠDavid":2812,"ĠPaul":2813,"mon":2814,"reme":2815,"Ġcatch":2816,"Ġsus":2817,"king":2818,"Ġrelations":2819,"ĠFirst":2820,"ĠDuring":2821,"Ġfamil":2822,"ĠGive":2823,"Ġcirc":2824,"lled":2825,"Ġcommand":2826,"Ġtrain":2827,"Ġdrive":2828,"ĠJapanese":2829,"teen":2830,"ĠGermany":2831,"AS":2832,"ĠRuss":2833,"ĠEast":2834,"Ġsail":2835,"Ġchair":2836,"inois":2837,"viously":2838,"ĠCo":2839,"Ġmouth":2840,"Ġopened":2841,"Ġpresident":2842,"Ġobject":2843,"Ġcause":2844,"Ġparents":2845,"Ġmm":2846,"ĠCour":2847,"Ġ100":2848,"ĠMichael":2849,"yle":2850,"Ġarm":2851,"Ġfear":2852,"Ġpot":2853,"empt":2854,"ĠRepublic":2855,"Ġwhose":2856,"Ġnon":2857,"Ġrese":2858,"Ġdanger":2859,"Ġhop":2860,"Ġprison":2861,"Ġanimals":2862,"Ġcool":2863,"Ġ2011":2864,"ho":2865,"ager":2866,"Ġviol":2867,"lin":2868,"Ġring":2869,"Ġthrow":2870,"Ġhappens":2871,"ĠPhil":2872,"Ġsave":2873,"ploy":2874,"Ġenjoy":2875,"Ġmass":2876,"Ġdistrict":2877,"Ġspecies":2878,"Ġant":2879,"ĠIsland":2880,"Ġteacher":2881,"ocr":2882,"bor":2883,"Ġwhom":2884,"Ġ2006":2885,"Ġris":2886,"Ġparts":2887,"Ġfish":2888,"ician":2889,"Ġcrazy":2890,"Ġstick":2891,"ĠSte":2892,"like":2893,"iny":2894,"omb":2895,"Ġbull":2896,"Ġpal":2897,"Ġ2012":2898,"Ġbecom":2899,"Ġneg":2900,"Ġmoving":2901,"Ġbeginning":2902,"âĢĶ":2903,"Ġener":2904,"Ġsimilar":2905,"oly":2906,"ĠĠĠĠĠĠ":2907,"af":2908,"chan":2909,"Ġsick":2910,"Ġhost":2911,"Ġestab":2912,"medi":2913,"Ġlie":2914,"inc":2915,"ĠMon":2916,"ĠReally":2917,"Ġcertainly":2918,"ĠVirginia":2919,"ED":2920,"Ġshar":2921,"Ġnecess":2922,"Ġforce":2923,"Ġkiss":2924,"Ġburn":2925,"Ġbag":2926,"Ġeconom":2927,"ams":2928,"Ġsepar":2929,"wered":2930,"ville":2931,"Ġmater":2932,"now":2933,"Ġdisapp":2934,"Ġsitting":2935,"ĠRober":2936,"Ġplaces":2937,"Ġfloor":2938,"ĠNothing":2939,"Ġmiddle":2940,"Ġtowards":2941,"Ġagre":2942,"Ġquickly":2943,"Ġsoft":2944,"Ġ21":2945,"Ġinteresting":2946,"ĠIllinois":2947,"Ġhm":2948,"Ġself":2949,"Ġbeat":2950,"ĠAN":2951,"itted":2952,"Ġclos":2953,"ĠMed":2954,"ĠMost":2955,"Ġchurch":2956,"Ġspend":2957,"you":2958,"inite":2959,"ishing":2960,"Ġpaid":2961,"ĠLou":2962,"Ġfinished":2963,"Ġmad":2964,"ĠCong":2965,"roy":2966,"Ġvol":2967,"Ġfinal":2968,"ĠMa":2969,"ĠMom":2970,"Ġoriginal":2971,"Ġident":2972,"Ġbreat":2973,"ĠMus":2974,"rible":2975,"vin":2976,"ica":2977,"Ġfeat":2978,"ires":2979,"pha":2980,"ĠMo":2981,"Ġanswered":2982,"Ġcorn":2983,"Ġgiving":2984,"ples":2985,"Ġquestions":2986,"Ġstreet":2987,"cher":2988,"ume":2989,"Ġquiet":2990,"Ġleaving":2991,"itor":2992,"imate":2993,"Ġshut":2994,"nel":2995,"Ġactiv":2996,"Ġannoun":2997,"iforn":2998,"aff":2999,"Ġmention":3000,"iers":3001,"_,":3002,"ply":3003,"Ġdaddy":3004,".,":3005,"cast":3006,"ĠHel":3007,"Ġbelong":3008,"ĠFlor":3009,"TER":3010,"uge":3011,"ĠSan":3012,"uty":3013,"Ġsuppose":3014,"ĠHenry":3015,"Ġreached":3016,"ĠMor":3017,"Ġgrad":3018,"Ġbill":3019,"Ġ(\"":3020,"ifornia":3021,"Ġlose":3022,"ĠWhich":3023,"Ġinflu":3024,"ĠMad":3025,"Ġpolitical":3026,"St":3027,"off":3028,"Ġpark":3029,"isten":3030,"Ġstudents":3031,"Ġterms":3032,"hel":3033,"ĠBet":3034,"Ġrail":3035,"Ġtotal":3036,"Ġ23":3037,"Ġaccount":3038,"ked":3039,"hips":3040,"Ġexperience":3041,"Ġforward":3042,"itional":3043,"Ġcommunity":3044,"IT":3045,"eg":3046,"Ġneigh":3047,"Ġmodern":3048,"ĠMart":3049,"Ġ50":3050,"ĠGovern":3051,"ĠGeneral":3052,"ĠRo":3053,"ivid":3054,"Ġforest":3055,"Ġriver":3056,"time":3057,"Ġ,":3058,"Ġcivil":3059,"Ġways":3060,"Ġvarious":3061,"Ġglass":3062,"inger":3063,"ĠMany":3064,"ĠCalifornia":3065,"Ġrespons":3066,"Ġmach":3067,"ĠRiver":3068,"Ġthou":3069,"Ġsearch":3070,"Ġnumbers":3071,"gar":3072,"line":3073,"Ġhospital":3074,"Ġaut":3075,"irm":3076,"Ġnin":3077,"Ġindust":3078,"Ġglad":3079,"ka":3080,"unic":3081,"Ġpublished":3082,"Ġinn":3083,"Ġlaugh":3084,"Ġegg":3085,"ĠSar":3086,"ĠSure":3087,"Ġdepend":3088,"Ġintrodu":3089,"17":3090,"15":3091,"ensive":3092,"Ġconsider":3093,"well":3094,"Ġrev":3095,"ctions":3096,"orts":3097,"Ġtax":3098,"Ġallowed":3099,"night":3100,"ena":3101,"Ġdiscuss":3102,"Ġdress":3103,"Ġmarket":3104,"rab":3105,"Ġobs":3106,"Ġwindow":3107,"ĠChurch":3108,"cious":3109,"Ġclaim":3110,"ensus":3111,"Ġnatural":3112,"Ġnet":3113,"uted":3114,"ĠBoy":3115,"xic":3116,"Ġrain":3117,"Ġ..":3118,"ĠJes":3119,"Ġanymore":3120,"ites":3121,"ĠHist":3122,"ĠOther":3123,"Ġequal":3124,"Ġmiles":3125,"hem":3126,"Ġcaught":3127,"Ġbroad":3128,"Oh":3129,"het":3130,"ĠII":3131,"Ġhey":3132,"âĢİ":3133,"Ġblock":3134,"olutely":3135,"Ġshows":3136,"Ġinvolved":3137,"road":3138,"cape":3139,"Ġstudy":3140,"rid":3141,"ĠTV":3142,"istic":3143,"ĠChristian":3144,"Ġstrange":3145,"ĠLeague":3146,"Ġespecially":3147,"Ġmaterial":3148,"Ġfem":3149,"ĠSen":3150,"ĠBen":3151,"Ġsomewhere":3152,"Th":3153,"Ġ)":3154,"Ġstage":3155,"idered":3156,"ortun":3157,"Ġtravel":3158,"Ġboard":3159,"Ġaud":3160,"Ġstore":3161,"ĠOnly":3162,"ĠComp":3163,"ĠWould":3164,"Ġclothes":3165,"ius":3166,"ĠSam":3167,"Ġsimple":3168,"Ġlocated":3169,"Ġsad":3170,"?âĢĿ":3171,"Ġenv":3172,"oe":3173,"inary":3174,"abad":3175,"ruction":3176,"ĠFlorida":3177,"14":3178,"AM":3179,"hood":3180,"Ġ2014":3181,"inist":3182,"Ġgives":3183,"Ġnature":3184,"Ġemb":3185,"ĠKen":3186,"Ġalive":3187,"ĠFin":3188,"Ġneeded":3189,"overed":3190,"Ġ01":3191,"ĠRichard":3192,"\")":3193,"Ġvalue":3194,"Ġdru":3195,"ĠSim":3196,"Ġseat":3197,"Ġfinally":3198,"ĠBel":3199,"Ġyours":3200,"We":3201,"ĠDem":3202,"ĠRed":3203,"ength":3204,"Ġanybody":3205,"ĠScott":3206,"Ġdinner":3207,"Ġapart":3208,"Ġsize":3209,"ĠGree":3210,"Ġdeg":3211,"Ġpeace":3212,"ĠSince":3213,"ils":3214,"Ġdel":3215,"OT":3216,"wood":3217,"ĠOur":3218,"Ġboat":3219,"Ġvisit":3220,"Ġta":3221,"upid":3222,"van":3223,"action":3224,"Ġappeared":3225,"Ġshop":3226,"Ġquar":3227,"rill":3228,"olic":3229,"Ġsurv":3230,"OM":3231,"iel":3232,"ĠUnion":3233,"Ġsituation":3234,"Ġperm":3235,"Ġfavor":3236,"Ġenergy":3237,"mm":3238,"Ġx":3239,"Ġban":3240,"Ġfac":3241,"ago":3242,"Ġfund":3243,"Ġprivate":3244,"erve":3245,"ences":3246,"ĠBur":3247,"bon":3248,"Ġadded":3249,"AL":3250,"yl":3251,"Ġbur":3252,"ĠGrand":3253,"Ġconsidered":3254,"Ġcolor":3255,"ause":3256,"erry":3257,"Ġgar":3258,"ĠRob":3259,"Ġmhm":3260,"12":3261,"Ġspent":3262,"Ġtitle":3263,"ĠLu":3264,"Ġplant":3265,"Ġthanks":3266,"Ġdise":3267,"Ġkey":3268,"ĠReg":3269,"ns":3270,"Ġwild":3271,"rem":3272,"ĠOk":3273,"Ġ26":3274,"gu":3275,"amm":3276,"Ġarmy":3277,"Ġ2016":3278,"face":3279,"ids":3280,"Ġaction":3281,"Ġ2007":3282,"Ġstopped":3283,"uses":3284,"Ġenc":3285,"ero":3286,"ĠJul":3287,"Ġimmedi":3288,"Ġpurp":3289,"asons":3290,"Ġsour":3291,"ĠBra":3292,"Ġbought":3293,"Ġdance":3294,"Ġprofessional":3295,"Ġgrew":3296,"ĠPri":3297,"Ġ22":3298,"ĠBlack":3299,"Ġliter":3300,"illa":3301,"ounded":3302,"Ġcell":3303,"ae":3304,"ĠListen":3305,"Ġ190":3306,"Ġindeed":3307,"sp":3308,"Ġwa":3309,"Ġtea":3310,"oups":3311,"Ġpers":3312,"CH":3313,"Ġwriting":3314,"ĠParty":3315,"ĠAnt":3316,"ĠVery":3317,"olly":3318,"Ġproduced":3319,"Ġextra":3320,"bour":3321,"ĠTO":3322,"iff":3323,"ĠUm":3324,"ria":3325,"Ġstanding":3326,"llen":3327,"Ġbroke":3328,"Ġearli":3329,"Ġyell":3330,"Ġfle":3331,"ĠMal":3332,"Ġprim":3333,"ails":3334,"Ġsummer":3335,"field":3336,"Ġspirit":3337,"house":3338,"Ġmid":3339,"Ġye":3340,"omas":3341,"Ġcompan":3342,"ĠDoes":3343,"He":3344,"Ġattempt":3345,"rief":3346,"itz":3347,"ĠPort":3348,"ĠIts":3349,"Ġtro":3350,"outhern":3351,"Ġavail":3352,"13":3353,"ests":3354,"tered":3355,"cuse":3356,"Ġsens":3357,"Ġremain":3358,"Ġattention":3359,"Ġpack":3360,"ĠPat":3361,"Ġrid":3362,"Ġrout":3363,"Ġseeing":3364,"uel":3365,"Ġdevelopment":3366,"ya":3367,"orthern":3368,"Ġblow":3369,"AP":3370,"ners":3371,"pire":3372,"ators":3373,"ĠAlex":3374,"cell":3375,"ander":3376,"ET":3377,"inct":3378,"ura":3379,"iques":3380,"rel":3381,"ĠTur":3382,"Ġdate":3383,"ĠBob":3384,"Ġmix":3385,"Ġnames":3386,"ĠDar":3387,"Ġhistor":3388,"Ġtend":3389,"rer":3390,"Ġsal":3391,"udd":3392,"Ġofficial":3393,"ĠIN":3394,"igg":3395,"ibility":3396,"ique":3397,"cul":3398,"Ġsimply":3399,"vince":3400,"Ġwide":3401,"icket":3402,"Ġbow":3403,"Ġcand":3404,"Ġdecl":3405,"Ġalthough":3406,"Ġaff":3407,"sych":3408,"At":3409,"ĠApp":3410,"ously":3411,"Ġice":3412,"Ġscience":3413,"Ġmilitary":3414,"sha":3415,"ises":3416,"ground":3417,"Ġredu":3418,"ify":3419,"apers":3420,"ironment":3421,"Ġdoubt":3422,"Ġgroups":3423,"Ġcollege":3424,"OW":3425,"Ġhung":3426,"osing":3427,"Ġcarried":3428,"Ġindivid":3429,"Ġopportun":3430,"Ġepis":3431,"Ġarms":3432,"Ġincluded":3433,"Ġbattle":3434,"hod":3435,"Ġdry":3436,"Ġhun":3437,"Ġdestroy":3438,"wise":3439,"lebr":3440,"ĠOly":3441,"ĠQueen":3442,"ĠBo":3443,"Ġasking":3444,"Ġdifference":3445,"Ġcaptain":3446,"su":3447,"Ġlargest":3448,"gon":3449,"ively":3450,"pper":3451,"Ġmarriage":3452,"Ġpoints":3453,"Ġhate":3454,"ĠNor":3455,"hington":3456,"Ġwest":3457,"Ġofficer":3458,"bye":3459,"que":3460,"Ġpersonal":3461,"Ġbeha":3462,"Ġloved":3463,"Ġmedic":3464,"Ġcompletely":3465,"Ġinj":3466,"ĠAcc":3467,"ĠDick":3468,"Ġ28":3469,"Ġeducation":3470,"Ġtour":3471,"ĠWhile":3472,"Ġspeed":3473,"Ġbroken":3474,"ĠAir":3475,"ĠPal":3476,"ological":3477,"urity":3478,"Ġ2009":3479,"Ġmurder":3480,"no":3481,"ĠBu":3482,"Ġsell":3483,"Ġemploy":3484,"resh":3485,"ĠAlan":3486,"Äģ":3487,"rect":3488,"Ġlock":3489,"ĠWhite":3490,"Ġcomputer":3491,"Ġmaster":3492,"Ġlength":3493,"board":3494,"Ġreach":3495,"Ġversion":3496,"Ġfort":3497,"ability":3498,"gged":3499,"Ġrefer":3500,"ĠMark":3501,"ĠExcuse":3502,"Ġwatching":3503,"anc":3504,"astic":3505,"Ġmeaning":3506,"ĠAnge":3507,"Ġcontract":3508,"Ġ2008":3509,"ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ":3510,"Ġjoined":3511,"sociation":3512,"Yes":3513,"Ġbank":3514,"Ġshouldn":3515,"Ġcapt":3516,"gress":3517,"Ġheavy":3518,"chie":3519,"Ġrob":3520,"Ġ2015":3521,"ĠRobert":3522,"Ġplays":3523,"Ġbelow":3524,"Ġsight":3525,"Ġfool":3526,"Ġpath":3527,"ĠChan":3528,"ĠDes":3529,"ki":3530,"Ġprep":3531,"Ġexplain":3532,"ĠCourt":3533,"nes":3534,"US":3535,"Ġrich":3536,"ĠThree":3537,"ĠStreet":3538,"50":3539,"itude":3540,"Ġeff":3541,"Ġarch":3542,"Ġoccur":3543,"Ġlying":3544,"Ġcoast":3545,"ĠScot":3546,"Ġanimal":3547,"ancy":3548,"terday":3549,"arden":3550,"ears":3551,"Ġ40":3552,"isc":3553,"mas":3554,"Ġwat":3555,"Ġ27":3556,"Ġtalked":3557,"ension":3558,"Ġsuddenly":3559,"oura":3560,"Ġbase":3561,"ĠAc":3562,"Ġwel":3563,"ĠCr":3564,"antly":3565,"Ġimpro":3566,"oid":3567,"Ġ2000":3568,"Ġnearly":3569,"ĠRoy":3570,"Ġcaused":3571,"Ġhonest":3572,"Ġindepend":3573,"ĠWashington":3574,"200":3575,"west":3576,"ĠPut":3577,"Ġplus":3578,"Ġregard":3579,"EA":3580,"asion":3581,"omm":3582,"Ġnor":3583,"Ġshare":3584,"ledge":3585,"ü":3586,"hest":3587,"Ġpage":3588,"Ġ2022":3589,"Ġstates":3590,"Ġareas":3591,"Ġappoint":3592,"á":3593,"Ġexam":3594,"Ġhappening":3595,"Ġbud":3596,"vies":3597,"Ġscient":3598,"Ġinit":3599,"icle":3600,"oph":3601,"ss":3602,"Ġfellow":3603,"ĠCharles":3604,"Ġhigher":3605,"Ġfat":3606,"Ġcelebr":3607,"Ġsand":3608,"Ġaccess":3609,"ĠEarth":3610,"LE":3611,"Ġsite":3612,"Ġcensus":3613,"ĠSal":3614,"hire":3615,"Ġevidence":3616,"Ġnormal":3617,"ID":3618,"LA":3619,"ĠGot":3620,"play":3621,"iction":3622,"Ġtrees":3623,"how":3624,"Ġah":3625,"ĠFather":3626,"Ġregular":3627,"Ġpromise":3628,"And":3629,"anish":3630,"iced":3631,"Ġeast":3632,"Ġstupid":3633,"bert":3634,"ffee":3635,"Ġmanage":3636,"Ġwarm":3637,"hampionship":3638,"Ġfamilies":3639,"Ġinterested":3640,"Ġsquare":3641,"Ġpun":3642,"Ġsnow":3643,"Ġcases":3644,"Ġhol":3645,"ĠMore":3646,"aded":3647,"Ġdoc":3648,"ustom":3649,"ĠCollege":3650,"unicip":3651,"ĠJesus":3652,"ĠMac":3653,"ĠDam":3654,"ĠOF":3655,"Ġrace":3656,"Ġmilk":3657,"Ġsongs":3658,"Ġspeaking":3659,"arily":3660,"Ġpray":3661,"Ġformed":3662,"Ġcontinued":3663,"Ġradio":3664,"ari":3665,"iled":3666,"Ġmarry":3667,"Ġfit":3668,"vered":3669,"Ġthreat":3670,"uts":3671,"Ġshowed":3672,"Ġdeveloped":3673,"kn":3674,"Ġbes":3675,"ouses":3676,"Ġscene":3677,"ĠEuropean":3678,"Ġavailable":3679,"ĠSch":3680,"Ġ29":3681,"ĠAfrica":3682,"ek":3683,"orrow":3684,"Ġcoffee":3685,"Ġfoc":3686,"Ġtrade":3687,"Ġ2005":3688,"Ġtemper":3689,"Ġbottom":3690,"Ġdescrib":3691,"Ġbi":3692,"Ġcard":3693,"Ġpet":3694,"ĠSat":3695,"ords":3696,"yer":3697,"aven":3698,"Ġhuge":3699,"Ġactor":3700,"ĠChina":3701,"Ġden":3702,"Ġdig":3703,"ĠRes":3704,"Ġneck":3705,"Ġbirthday":3706,"Ġannounced":3707,"Ġfeed":3708,"Ġmovies":3709,"ĠAustralia":3710,"Ġgas":3711,"ĠMexic":3712,"Ġmovement":3713,"Ġcab":3714,"Ġlines":3715,"Ġsuff":3716,"Ġpercent":3717,"aker":3718,"Ġhelped":3719,"Ġbath":3720,"ibly":3721,"Ġeating":3722,"aur":3723,"set":3724,"what":3725,"ĠWil":3726,"Ġspoke":3727,"nie":3728,"né":3729,"usion":3730,"omen":3731,"ĠTod":3732,"iles":3733,"Ġweren":3734,"Ġfounded":3735,"Ġwonderful":3736,"ĠMaster":3737,"alley":3738,"initely":3739,"ĠCup":3740,"16":3741,"Ġdata":3742,"Ġphil":3743,"olk":3744,"Ġtired":3745,"Ġoffe":3746,"ĠDep":3747,"Ġknock":3748,"ĠInternational":3749,"icks":3750,"Ġscared":3751,"lim":3752,"za":3753,"Ġwed":3754,"ĠCath":3755,"ĠTheir":3756,"Ġsevent":3757,"Ġpieces":3758,"Ġtast":3759,"ĠCH":3760,"Ġstories":3761,"hib":3762,"Ġended":3763,"Ġoil":3764,"ĠHall":3765,"Ġexec":3766,"ĠParis":3767,"Ġsociety":3768,"Ġdemand":3769,"Ġap":3770,"itche":3771,"Ġur":3772,"Ġcomfort":3773,"Ġmethod":3774,"ĠAbout":3775,"but":3776,"Ġ:":3777,"Ġbright":3778,"Ġund":3779,"Ġdeli":3780,"Ġsounds":3781,"ĠÃ":3782,"Ġoffer":3783,"Ġenvironment":3784,"Ġnovel":3785,"useum":3786,"Ġclosed":3787,"Ġraised":3788,"Ġcareful":3789,"Ġlearned":3790,"iation":3791,"Ġir":3792,"ĠBer":3793,"Ġworse":3794,"Ġresearch":3795,"cean":3796,"Ġwalked":3797,"Ġmor":3798,"Ġlower":3799,"ĠTra":3800,"ĠAward":3801,"Ġputting":3802,"Ġstarting":3803,"Ġaddress":3804,"ĠÂ":3805,"ĠAdd":3806,"ĠCould":3807,"Ġrights":3808,"Ġimm":3809,"Ġchanges":3810,"VE":3811,"oted":3812,"ether":3813,"ĠMaj":3814,"str":3815,"Ġdisp":3816,"Ġdeterm":3817,"atform":3818,"Ġaward":3819,"ĠIran":3820,"Ġarrest":3821,"Ġtraining":3822,"ĠItalian":3823,"ĠOlymp":3824,"Ġhero":3825,"ental":3826,"Ġtext":3827,"Ġassist":3828,"ĠCoun":3829,"ols":3830,"ummer":3831,"Ġcenter":3832,"Ġbirds":3833,"Ġprinci":3834,"Ġbenef":3835,"year":3836,"ential":3837,"Ġ=":3838,"Ġnobody":3839,"Ġdecision":3840,"Ġaver":3841,"ĠGold":3842,"Ġpolitician":3843,"ex":3844,"Ġcow":3845,"roat":3846,"Ġlikely":3847,"Ġchoice":3848,"Ġpush":3849,"ston":3850,"Ġletters":3851,"ography":3852,"aign":3853,"ji":3854,"Ġmem":3855,"ĠBefore":3856,"ĠHistory":3857,"elve":3858,"Ġcrew":3859,"ushed":3860,"Ġyesterday":3861,"Ġess":3862,"isf":3863,"Ġble":3864,"Ġcru":3865,"Ġbell":3866,"Ġsmell":3867,"ĠAND":3868,"UN":3869,"that":3870,"under":3871,"Ġdistance":3872,"noon":3873,"yond":3874,"edy":3875,"Ġthirty":3876,"Ġsuit":3877,"Ġcharge":3878,"Ġangry":3879,"lam":3880,"iling":3881,"Ġride":3882,"ittee":3883,"Ġbelieved":3884,"Ġought":3885,"Ġschools":3886,"Ġdouble":3887,"ĠCle":3888,"Ġcalling":3889,"ĠMinister":3890,"iar":3891,"Ġtall":3892,"Ġpsych":3893,"raft":3894,"ube":3895,"Ġfinish":3896,"Ġwit":3897,"ani":3898,"ĠNever":3899,"ateg":3900,"Ġmostly":3901,"Ġreview":3902,"ĠMet":3903,"rif":3904,"Ġspread":3905,"Ġaffect":3906,"Ġmodel":3907,"Ġbrain":3908,"Ġideas":3909,"using":3910,"ĠThose":3911,"ranch":3912,"ruit":3913,"Ġfourth":3914,"ĠCentral":3915,"asc":3916,"Ġuniversity":3917,"oring":3918,"pping":3919,"Ġjoin":3920,"Ġnecessary":3921,"Ġancient":3922,"liament":3923,"Ġevents":3924,"Ġspecific":3925,"Ġcreate":3926,"Ġstorm":3927,"Ġemot":3928,"Ġleader":3929,"Ġbloody":3930,"Ġmessage":3931,"Ġissue":3932,"ux":3933,"Ġsac":3934,"ste":3935,"ĠArmy":3936,"Ġimmediately":3937,"Ġtheory":3938,"ĠMag":3939,"ĠRem":3940,"Ġafternoon":3941,"Ġchief":3942,"Ġfaith":3943,"ilities":3944,"cket":3945,"fl":3946,"yal":3947,"sec":3948,"Ġstars":3949,"ĠPyr":3950,"ĠFuck":3951,"ĠJew":3952,"Ġbusy":3953,".'":3954,"ket":3955,"ĠOver":3956,"Ġvac":3957,"pen":3958,"Ġagree":3959,"Ġenemy":3960,"Ġdisease":3961,"Ġdan":3962,"ables":3963,"ĠCongress":3964,"oved":3965,"Ġtail":3966,"Ġcup":3967,"ĠHold":3968,"ript":3969,"Ġtruck":3970,"Ġcovered":3971,"Ġlovely":3972,"ĠItaly":3973,"Ġrule":3974,"30":3975,"western":3976,"ĠSa":3977,"ĠCa":3978,"ession":3979,"Ġtherefore":3980,"Ġfarm":3981,"Ġdirector":3982,"ĠPrin":3983,"Ġsoul":3984,"ĠMat":3985,"Ġanal":3986,"ĠDel":3987,"ashion":3988,"Ġearlier":3989,"uten":3990,"Ġproduction":3991,"Ġstreng":3992,"eter":3993,"ĠMike":3994,"Ġstyle":3995,"ores":3996,"Ġarg":3997,"Ġspl":3998,"Ġ2004":3999,"Ġchem":4000,"Ġformula":4001,"isions":4002,"Ġflight":4003,"ĠAnother":4004,"Ġarrived":4005,"burg":4006,"ini":4007,"ĠKore":4008,"berg":4009,"Ġbridge":4010,"Ġmic":4011,"aps":4012,"Ġslight":4013,"ĠCanada":4014,"sequ":4015,"ĠProvince":4016,"ipped":4017,"pir":4018,"Ġaha":4019,"erved":4020,"ĠMer":4021,"Ġ189":4022,"ĠArt":4023,"ĠCarol":4024,"Atlant":4025,"Ġcro":4026,"atives":4027,"ĠHur":4028,"ĠUnder":4029,"oseph":4030,"Ġopin":4031,"Ġcontinue":4032,"Ġfault":4033,"ĠProf":4034,"Ġterrible":4035,"Ġweap":4036,"esty":4037,"ĠAnne":4038,"ange":4039,"Ġstone":4040,"Ġpurpose":4041,"ĠOnce":4042,"11":4043,"BC":4044,"back":4045,"ech":4046,"Ġelection":4047,"Ġnone":4048,"leep":4049,"ĠThomas":4050,"ucky":4051,"Ġattract":4052,"Ġmum":4053,"Ġkick":4054,"Ġprice":4055,"Ġestablished":4056,"gl":4057,"ĠIT":4058,"Ġforth":4059,"ĠPre":4060,"Ġcoach":4061,"Ġcontact":4062,"ĠEverything":4063,"Ġsuccessful":4064,"va":4065,"Ġcamer":4066,"ĠAlright":4067,"Ġaccident":4068,"Ġsignific":4069,"fast":4070,"Ġlif":4071,"vere":4072,"uments":4073,"Ġcities":4074,"Ġjump":4075,"Ġfighting":4076,"ĠKeep":4077,"ĠOut":4078,"Ġcondu":4079,"Ġ186":4080,"Ġsettle":4081,"azing":4082,"ĠDay":4083,"rupt":4084,"ĠShut":4085,"Ġmountain":4086,"Ġpolicy":4087,"ĠAccording":4088,"Ġwelcome":4089,"Ġtar":4090,"Ġfro":4091,"Ġweight":4092,"sey":4093,"ĠJud":4094,"Ġ()":4095,"éné":4096,"ients":4097,"Ġcred":4098,"eds":4099,"ĠLaw":4100,"Ġprint":4101,"ees":4102,"ĠVict":4103,"Ġ2001":4104,"Ġcrow":4105,"Ġrelationship":4106,"Ġcy":4107,"aled":4108,"ĠNat":4109,"ĠRad":4110,"Ġshown":4111,"ĠKent":4112,"Ġskin":4113,"Ġabsolutely":4114,"Ġhall":4115,"Ġforces":4116,"Ġliked":4117,"ocol":4118,"Ġholding":4119,"asant":4120,"ĠSus":4121,"ĠGirl":4122,"Ġ2020":4123,"Ġescape":4124,"iverse":4125,"ĠSl":4126,"Ġrepe":4127,"ĠMount":4128,"Ġknowledge":4129,"Ġ2018":4130,"Ġinvestig":4131,"ĠWin":4132,"Ġforced":4133,"ĠBye":4134,"Ġminus":4135,"Ġmultip":4136,"tt":4137,"atory":4138,"Ġcorner":4139,"ĠScotland":4140,"ĠIm":4141,"Ġinternational":4142,"ĠWow":4143,"vert":4144,"ĠOoh":4145,"Ġcampaign":4146,"zen":4147,"Ġlink":4148,"Ġspot":4149,"Ġchick":4150,"uke":4151,"Ġloss":4152,"omp":4153,"Ġthus":4154,"ĠLove":4155,"aug":4156,"ĠSpanish":4157,"Ġyellow":4158,"Ch":4159,"ship":4160,"aries":4161,"ĠHon":4162,"otten":4163,"iety":4164,"iot":4165,"ĠHill":4166,"stairs":4167,"Ġtells":4168,"ĠLee":4169,"Ġpractice":4170,"âĢİ.":4171,"known":4172,"aves":4173,"inese":4174,"énées":4175,"Ġdrop":4176,"rig":4177,"izing":4178,"Ġwalking":4179,"ĠPyrénées":4180,"Ġsch":4181,"Ġextreme":4182,"ĠKingdom":4183,"bing":4184,"Ġrate":4185,"ĠKar":4186,"Ġphilos":4187,"itation":4188,"Ġpan":4189,"Ġbeyond":4190,"Ġoppos":4191,"Atlantiques":4192,"Ġintern":4193,"Ġcompl":4194,"Ġdirected":4195,"eh":4196,"Ġreve":4197,"Ġkinds":4198,"ses":4199,"Ġemer":4200,"rial":4201,"ĠGreen":4202,"Ġmachine":4203,"wh":4204,"Ġcode":4205,"ĠWH":4206,"ĠMil":4207,"ĠLat":4208,"Ġintell":4209,"Ġservices":4210,"That":4211,"Ġmunicip":4212,"Ġweak":4213,"aching":4214,"Ġtwice":4215,"Ġmoon":4216,"Ġleaves":4217,"Ġacqu":4218,"Ġsigned":4219,"ĠCast":4220,"ĠBay":4221,"ĠDis":4222,"anda":4223,"hedron":4224,"Ġunless":4225,"Ġlots":4226,"Ġpatient":4227,"Ġopening":4228,"ournal":4229,"ĠLouis":4230,"Ġpounds":4231,"ĠMur":4232,"Ġempt":4233,"Ġreading":4234,"Ġmedia":4235,"ram":4236,"ĠFred":4237,"ĠToday":4238,"But":4239,"kin":4240,"Ġut":4241,"Ġthee":4242,"ĠCos":4243,"Ġconvers":4244,"Ġhasn":4245,"Ġdropped":4246,"Ġimagine":4247,"asing":4248,"Ġdiscovered":4249,"enth":4250,"ĠBab":4251,"OS":4252,"RI":4253,"min":4254,"ĠSing":4255,"Ġflowers":4256,"Ġaverage":4257,"ban":4258,"yan":4259,"Ġhom":4260,"Ġsinger":4261,"Ġnewsp":4262,"Ġopportunity":4263,"ĠRoyal":4264,"Ġsides":4265,"Ġrelease":4266,"Ġrose":4267,"ossible":4268,"Ġhi":4269,"Ġlegs":4270,"ĠRock":4271,"ulations":4272,"Ġsystems":4273,"cks":4274,"ĠSuper":4275,"CK":4276,"In":4277,"Ġachie":4278,"Ġcustom":4279,"ĠBig":4280,"Ġcalls":4281,"Ġsymb":4282,"ification":4283,"ederal":4284,"Ġbrief":4285,"ĠTony":4286,"Ġreb":4287,"Ġbiggest":4288,"Ġreligious":4289,"Ġdollars":4290,"ett":4291,"ĠWel":4292,"ĠDa":4293,"Ġnose":4294,"Ġdriving":4295,"utions":4296,"isted":4297,"Ġaccording":4298,"Ġsoldiers":4299,"Ġfifty":4300,"oms":4301,"ĠMother":4302,"Ġge":4303,"Ġdefend":4304,"Ġvictim":4305,".--":4306,"ĠAlthough":4307,"Ġsurface":4308,"Ġforeign":4309,"ĠCouncil":4310,"iant":4311,"lor":4312,"ication":4313,"Ġanywhere":4314,"Ġ1980":4315,"ĠTex":4316,"ÃŃ":4317,"arm":4318,"etic":4319,"ĠWestern":4320,"Ġ2017":4321,"Ġelected":4322,"Ġentered":4323,"ĠSometimes":4324,"Ġdangerous":4325,"ĠMont":4326,"ĠCharl":4327,"Ġhighest":4328,"Ġfemale":4329,"ware":4330,"Ġdogs":4331,"wr":4332,"Ġfirm":4333,"Ġfresh":4334,"Ġswim":4335,"Ġcharacters":4336,"ĠPerhaps":4337,"Ġmistake":4338,"Ġmemory":4339,"Ġmir":4340,"ĠCont":4341,"Ġproud":4342,"phone":4343,"Ġesc":4344,"Ġgrowing":4345,"isters":4346,"Ġ1990":4347,"istan":4348,"host":4349,"Ġclim":4350,"Ġresour":4351,"Ġthroughout":4352,"Ġeasily":4353,"Ġreligion":4354,"Ġtur":4355,"ademy":4356,"order":4357,"Ġsmaller":4358,"Ġteams":4359,"ó":4360,"Ġboss":4361,"utch":4362,"eless":4363,"Ġtwelve":4364,"Ġteach":4365,"ĠDemocr":4366,"._":4367,"kins":4368,"ĠBas":4369,"ĠFour":4370,"Ġpictures":4371,",--":4372,"Ġgarden":4373,"ĠChinese":4374,"orses":4375,"!âĢĿ":4376,"Ġpig":4377,"Ġvan":4378,"Ġsky":4379,"Ġcurrently":4380,"uf":4381,"ads":4382,"Ġsurr":4383,"Ġsatisf":4384,"Ġepisode":4385,"ule":4386,"Ġrub":4387,"Ġplants":4388,"Ġrisk":4389,"Ġlaid":4390,"Ġremained":4391,"Ġincludes":4392,"Ġexpected":4393,"vi":4394,"Ġopt":4395,"Ġassoci":4396,"olf":4397,"aine":4398,"Ġdesp":4399,"Ġmissing":4400,"ĠBro":4401,"oses":4402,"ĠUp":4403,"Ġplayers":4404,"ulf":4405,"Ġolder":4406,"ĠJoe":4407,"Ġindustry":4408,"Ġpu":4409,"Ġpound":4410,"Ġcommer":4411,"Ġuses":4412,"Ġfunction":4413,"Ġcondition":4414,"Ġcit":4415,"umber":4416,"Ġgrown":4417,"ĠAssociation":4418,"Ġwinter":4419,"Ġoriginally":4420,"Ġpositive":4421,"Ġwearing":4422,"Ġrules":4423,"icago":4424,"Ġwine":4425,"Ġpred":4426,"ĠPan":4427,"ĠJer":4428,"estival":4429,"Ġspring":4430,"Ġdirection":4431,"Ġnote":4432,"ĠDoctor":4433,"acing":4434,"ĠHas":4435,"Ġparticularly":4436,"Ġforty":4437,"Ġroll":4438,"Ġ188":4439,"ĠTor":4440,"rap":4441,"Ġcrime":4442,"ĠShow":4443,"Ġbasket":4444,"Ġadminist":4445,"Ġnegative":4446,"Ġcars":4447,"ĠCatholic":4448,"den":4449,"Ġhide":4450,"istry":4451,"Ġthinks":4452,"Ġtrip":4453,"Ġdefinitely":4454,"bl":4455,"Ġsett":4456,"ĠPrince":4457,"Ġeggs":4458,"Ġduty":4459,"Ġlack":4460,"astern":4461,"Well":4462,"cies":4463,"itar":4464,"lected":4465,"Ġstaff":4466,"Ġcontrib":4467,"ĠJackson":4468,"Ġfrequ":4469,"ĠHy":4470,"Ġflat":4471,"ga":4472,"ĠDiv":4473,"ĠNext":4474,"stitution":4475,"utenant":4476,"ba":4477,"peror":4478,"Ġcompos":4479,"ĠAtlant":4480,"Ġcritic":4481,"ĠSomething":4482,"ĠOld":4483,"Ġplaced":4484,"Ġchoose":4485,"Ġcorrect":4486,"dé":4487,"ashed":4488,"icated":4489,"Ġheaven":4490,"ĠSay":4491,"lands":4492,"Ġremark":4493,"Ġmaintain":4494,"Ġculture":4495,"ĠSmith":4496,"Ġslowly":4497,"Ġstrength":4498,"Ġyouth":4499,"ĠSil":4500,"ĠBell":4501,"cend":4502,"ĠPac":4503,"ĠBrother":4504,"Ġfinan":4505,"Ġcolour":4506,"mus":4507,"Ġhello":4508,"Ġrough":4509,"ems":4510,"Ġvote":4511,"Ġdegree":4512,"gn":4513,"ö":4514,"ola":4515,"Ġbread":4516,"Ġlarger":4517,"Ġprovide":4518,"Ġgradu":4519,"ĠProfess":4520,"NA":4521,"mad":4522,"Ġrom":4523,"Ġhill":4524,"ĠRay":4525,"Ġparticip":4526,"cis":4527,"ĠRail":4528,"Ġcontain":4529,"Ġlawyer":4530,"Ġdreams":4531,"Ġmentioned":4532,"Ġfashion":4533,"ann":4534,"alled":4535,"Ġworried":4536,"ĠStep":4537,"Ġ2003":4538,"ĠSpain":4539,"Ġagreed":4540,"ĠFil":4541,"ĠTime":4542,"gel":4543,"fficient":4544,"Ġelectric":4545,"UT":4546,"ĠBill":4547,"Ġappre":4548,"bered":4549,"Ġaddition":4550,"Ġsouthwestern":4551,"Ar":4552,"oned":4553,"arrow":4554,"Ġnotice":4555,"Ġsecurity":4556,"Ġstudent":4557,"Ġorders":4558,"itchen":4559,"Ġcrowd":4560,"Ġiron":4561,"ita":4562,"Ġhouses":4563,"ĠHam":4564,"rank":4565,"Ġissues":4566,"coh":4567,"ĠMu":4568,"Ġforms":4569,"Ġpicked":4570,"gen":4571,"Ġheat":4572,"ĠMass":4573,"Ġconcept":4574,"Ġrap":4575,"Ġpowerful":4576,"ĠVictor":4577,"Ġthy":4578,"Ġacting":4579,"Ġcontent":4580,"ĠAlso":4581,"Ġbigger":4582,"Ġchallen":4583,"Ġbrothers":4584,"Ġjudge":4585,"Ġtape":4586,"ĠPak":4587,"ĠLife":4588,"Ġrecords":4589,"ĠAdm":4590,"Ġdesigned":4591,"Ġtotally":4592,"Ġdamn":4593,"Ġlucky":4594,"Ġinfluence":4595,"Ġindividual":4596,"Ġtight":4597,"ĠIr":4598,"ĠLittle":4599,"ĠFre":4600,"Ġuncle":4601,"Ġguard":4602,"Ġdrunk":4603,"Ġbreath":4604,"ĠHelp":4605,"ĠChicago":4606,"Ġconditions":4607,"Ġbecomes":4608,"icles":4609,"Ġsection":4610,"Ġbye":4611,"Ġrelated":4612,"Ġtroops":4613,"hand":4614,"Ġaware":4615,"Ġsource":4616,"Ġcompanies":4617,"Ġtaught":4618,"owa":4619,"Ġserve":4620,"Ġscreen":4621,"gypt":4622,"Ġreplaced":4623,"Ġwedding":4624,"ĠTexas":4625,"Ġwhis":4626,"Ġ(,":4627,"abor":4628,"Ġbrown":4629,"Ġbound":4630,"istics":4631,"Ġmainly":4632,"Ġgenerally":4633,"Ġpir":4634,"ĠSpe":4635,"ĠFine":4636,"Ġplans":4637,"Ġ2002":4638,"Ġplanet":4639,"Ġperformance":4640,"Ġpressure":4641,"Ġetc":4642,";/":4643,"iber":4644,"Ġya":4645,"Ġweather":4646,"...?":4647,"Ġwriter":4648,"Ġscr":4649,"Ġsmart":4650,"ĠDev":4651,"ĠChristmas":4652,"Ġreported":4653,"ĠSand":4654,"ĠON":4655,"Ġwilling":4656,"agon":4657,"Ġspeech":4658,"Ġmedical":4659,"Ġleading":4660,"Ġbasically":4661,"Ġtypes":4662,"igned":4663,"Ġenter":4664,"Ġtransl":4665,"Ġhonor":4666,"Ġrange":4667,"Ġfilled":4668,"ĠSund":4669,"ĠMel":4670,"ĠFe":4671,"Ġsmile":4672,"Ġobviously":4673,"Ġperformed":4674,"Ġ2021":4675,"ĠPrincess":4676,"can":4677,"è":4678,"hal":4679,"ĠSun":4680,"ĠHaw":4681,"raw":4682,"Ġarchite":4683,"Ġpair":4684,"ĠBoth":4685,"ĠFoot":4686,"Ġplatform":4687,"Ġteeth":4688,"idden":4689,"Ġempty":4690,"mark":4691,"ĠHuh":4692,"Ġcomplex":4693,"ĠMajesty":4694,"hold":4695,"ĠOff":4696,"ulous":4697,"apt":4698,"ĠChief":4699,"Ġsinging":4700,"Ġrecorded":4701,"Ġreplied":4702,"Ġforgot":4703,"stitute":4704,"Ġmedicine":4705,"Ġoffered":4706,"ona":4707,"Ġloud":4708,"oop":4709,"ĠRome":4710,"Ġjack":4711,"Ġ1970":4712,"Ġox":4713,"vey":4714,"rol":4715,"ili":4716,"Ġvot":4717,"Ġclearly":4718,"Ġeventually":4719,"Ġcompetition":4720,"Ġpleasure":4721,"Ġmaid":4722,"ali":4723,"Ġwaste":4724,"Ġweird":4725,"ĠChampionship":4726,"Ġstuck":4727,"ĠLake":4728,"osh":4729,"Ġlegal":4730,"Ġdescri":4731,"ĠAfrican":4732,"Ġfeatures":4733,"Ġdescribed":4734,"ĠNice":4735,"ĠRoad":4736,"Ġnetwork":4737,"Ġfinger":4738,"aring":4739,"ĠSant":4740,"Ġlies":4741,"aked":4742,"Ġinstr":4743,"Ġfailed":4744,"IR":4745,"mn":4746,"Ġfright":4747,"Ġbeg":4748,"Ġjour":4749,"Ġsake":4750,"Ġremind":4751,"Ġdistrib":4752,"Ġhole":4753,"Ġhorses":4754,"Ġmeasure":4755,"ĠFer":4756,"Ġships":4757,"Ġcalm":4758,"ipe":4759,"uries":4760,"ĠAng":4761,"ĠLater":4762,"Ġbless":4763,"Ġma":4764,"Ġnorthern":4765,"ching":4766,"vention":4767,"Ġcentral":4768,"ĠPlay":4769,"Ġhotel":4770,"Ġbecoming":4771,"Why":4772,"hered":4773,"Ġnative":4774,"Ġstock":4775,"Ġbutter":4776,"onel":4777,"ĠâĢĶ":4778,"Ġpoll":4779,"Ġharm":4780,"partement":4781,"Ġconcerned":4782,"ima":4783,"ĠMajor":4784,"Ġneither":4785,"Ġactress":4786,"Ġmissed":4787,"ĠST":4788,"ardon":4789,"ĠRec":4790,"Ġkilling":4791,"ĠGreek":4792,"Ġopinion":4793,"département":4794,"Ġwet":4795,"ĠRog":4796,"ulty":4797,"Ġtele":4798,"Ġgreatest":4799,"ĠBrown":4800,"Ġoccup":4801,"Ġresults":4802,"ournament":4803,"Ġquarter":4804,"AY":4805,"IGH":4806,"craft":4807,"win":4808,"ishes":4809,"Ġkitchen":4810,"ĠLos":4811,"ĠLady":4812,"Ġaged":4813,"Ġedge":4814,"Ġofficers":4815,"ĠSecret":4816,"see":4817,"ĠEgypt":4818,"odies":4819,"Ġapplic":4820,"Ġpainting":4821,"Ġbreakfast":4822,"Ġphilosop":4823,"Ġduck":4824,"Ġsaved":4825,"iano":4826,"Ġhandle":4827,"Ġproperty":4828,"ĠRussian":4829,"ĠAcademy":4830,"Ġcitiz":4831,"ij":4832,"Ġalt":4833,"Ġshock":4834,"Ġgreater":4835,"Ġattend":4836,"Ġmut":4837,"Ġfaces":4838,"Ġnation":4839,"Ġroof":4840,"Ġ2019":4841,"Ġproduce":4842,"ĠClub":4843,"Ġhurry":4844,"Ġexperien":4845,"Ġdivided":4846,"Ġstrugg":4847,"odes":4848,"yeh":4849,"Ġinterview":4850,"Ġtarget":4851,"viet":4852,"Ġreasons":4853,"aches":4854,"Ġmere":4855,"ĠEs":4856,"Ġmission":4857,"Ġstructure":4858,"Ġcircum":4859,"Don":4860,"do":4861,"Ġbrand":4862,"Ġpapers":4863,"Ġmanager":4864,"Ġ187":4865,"Ġrealize":4866,"Ġstudied":4867,"Ġstudio":4868,"Ġbal":4869,"anced":4870,"Ġgoal":4871,"Ġpartner":4872,"ips":4873,"ĠGovernment":4874,"Ġwitness":4875,"Ġmechan":4876,"Ġshape":4877,"Ġordered":4878,"Ġdirectly":4879,";&":4880,"Ġwow":4881,"Ġdom":4882,"ĠLy":4883,"Ġburied":4884,"ĠServ":4885,"imin":4886,"ĠJac":4887,"Ġbitch":4888,"Ġeasier":4889,"Ġpalace":4890,"cise":4891,"ĠEach":4892,"Ġshout":4893,"ĠStud":4894,"Ġstarts":4895,"Ġheads":4896,"oken":4897,"Ġimpossible":4898,"Ġsurprised":4899,"gent":4900,"ĠIowa":4901,"ĠSid":4902,"Ġworst":4903,"ĠSoviet":4904,"iance":4905,"Ġdetect":4906,"Ġgentlemen":4907,"ĠJimmy":4908,"EL":4909,"ĠMill":4910,"Ġkeeping":4911,"Ġdecide":4912,"Ġleaders":4913,"Ġtechnology":4914,"Ġcamera":4915,"'.":4916,"sed":4917,"ĠId":4918,"ĠArab":4919,"ĠBa":4920,"Ġstran":4921,"rences":4922,"Ġrare":4923,"azine":4924,"Ġruns":4925,"sing":4926,"Ġsilly":4927,"Ġmeat":4928,"Ġlikes":4929,"Ġartist":4930,"Ġincrease":4931,"Ġsurprise":4932,"Ġprepared":4933,"Ġthick":4934,"stood":4935,"ĠBest":4936,"ĠBack":4937,"Ġshoes":4938,"Ġlog":4939,"Ġamb":4940,"Ġign":4941,"Ġbomb":4942,"ato":4943,"imately":4944,"Ġ1999":4945,"ĠTrans":4946,"Ġzero":4947,"Ġteaching":4948,"Ġflying":4949,"Ġtaste":4950,"Ġder":4951,"Ġlunch":4952,"Ġadult":4953,"Ġevil":4954,"Ġlearning":4955,"had":4956,"ĠSea":4957,"ĠBang":4958,"Ġcancer":4959,"Ġalcoh":4960,"iger":4961,"ĠKh":4962,"rance":4963,"Ġblind":4964,"Ġourselves":4965,"Ġseconds":4966,"arently":4967,"Ġcrying":4968,"ĠMexico":4969,"ault":4970,"oom":4971,"Ġsen":4972,"Ġcart":4973,"ami":4974,"Ġju":4975,"Ġexcl":4976,"Ġmetal":4977,"ĠEmpire":4978,"RO":4979,"ĠMake":4980,"Ġasleep":4981,"Ġrecently":4982,"Ġstandard":4983,"Ġsleeping":4984,"Ġdrinking":4985,"If":4986,"vis":4987,"Ġmemor":4988,"Ġtraditional":4989,"ĠTai":4990,"urday":4991,"Ġjoy":4992,"Ġsuc":4993,"asty":4994,"Ġbuildings":4995,"ĠMartin":4996,"IM":4997,"just":4998,"ĠSaint":4999,"Ġonto":5000,"ĠGar":5001,"Ġ31":5002,"ighs":5003,"bel":5004,"Ġbelief":5005,"Ġappreci":5006,"Ġsucceed":5007,".]":5008,"ĠTed":5009,"ette":5010,"Ġrank":5011,"Ġactual":5012,"Ġconsum":5013,"ucle":5014,"Ġlic":5015,"Ġdelight":5016,"Ġprove":5017,"ĠStill":5018,"Ġimage":5019,"iously":5020,"Ġprovince":5021,"Ġrequest":5022,"IF":5023,"eral":5024,"ĠSqu":5025,"Ġeld":5026,"iring":5027,"semb":5028,"ĠLine":5029,"Ġpocket":5030,"Ġprevent":5031,"Ġchap":5032,"mit":5033,"pic":5034,"ĠWood":5035,"urt":5036,"Ġladies":5037,"ĠCons":5038,"Ġplain":5039,"Ġcouncil":5040,"Ġholid":5041,"ios":5042,"ĠInt":5043,"orks":5044,"aret":5045,"Ġremem":5046,"Ġforever":5047,"Ġkingdom":5048,"ĠWomen":5049,"rier":5050,"...\"":5051,"Ġhungry":5052,"ĠProfessor":5053,"bles":5054,"Ġfrog":5055,"lection":5056,"ading":5057,"ansas":5058,"Ġseparate":5059,"Ġdocument":5060,"rate":5061,"Ġast":5062,"ingers":5063,"ĠDire":5064,"ĠYoung":5065,"ishop":5066,"Ġamazing":5067,"rated":5068,"Ġcash":5069,"iform":5070,"Ġscar":5071,"Ġstayed":5072,"Ġpromised":5073,"Ġcosts":5074,"fortun":5075,"ĠWal":5076,"Ġsequ":5077,"ĠFore":5078,"igan":5079,"Ġsaf":5080,"onds":5081,"Ġgrant":5082,"Ġlights":5083,"Ġpretend":5084,"Ġlistening":5085,"ĠCompany":5086,"My":5087,"ni":5088,"Ġpure":5089,"ota":5090,"ĠMax":5091,"Ġconstit":5092,"Ġsuspect":5093,"ĠRemember":5094,"friend":5095,"ening":5096,"ĠOpen":5097,"icked":5098,"Ġtyp":5099,"Ġsoldier":5100,"How":5101,"law":5102,"orough":5103,"ĠActually":5104,"Ġencoura":5105,"Ġmultiple":5106,"ĠShi":5107,"ĠCall":5108,"aval":5109,"ĠFrancis":5110,"Ġplanning":5111,"Ġ1960":5112,"Ġlanguages":5113,"Ġmunicipality":5114,"Ġturns":5115,"ĠCarl":5116,"All":5117,"Ġthrew":5118,"ĠCamp":5119,"urance":5120,"Ġprevious":5121,"Ġprograms":5122,"Ġfavorite":5123,"Ġjourney":5124,"ĠSol":5125,"ctors":5126,"Ġspell":5127,"ras":5128,"ĠTy":5129,"Ġcentre":5130,"Ġpattern":5131,"Ġrequired":5132,"ora":5133,"utive":5134,"Ġrat":5135,"ĠConf":5136,"Ġorganization":5137,"ĠJeff":5138,"ĠAgain":5139,"ĠÎ":5140,"Ġmate":5141,"Ġren":5142,"Ġreven":5143,"ĠLong":5144,"ĠâĢĺ":5145,"Ġswear":5146,"Ġfreed":5147,"Ġmotor":5148,"Ġcastle":5149,"40":5150,"60":5151,"Ġfra":5152,"Ġdrew":5153,"Ġgodd":5154,"antic":5155,"Ġloves":5156,"Ġqual":5157,"Ġ--&":5158,"Ġappointed":5159,"ocolate":5160,"Ġow":5161,"ĠLight":5162,"Ġjournal":5163,"Ġactive":5164,"Ġears":5165,"Ġreality":5166,"ĠAnyway":5167,"Ġstruck":5168,"ĠIndiana":5169,"Ġninet":5170,"ĠAngeles":5171,"ĠFar":5172,"Ġgrass":5173,"Ġcrack":5174,"Ġbroadcast":5175,"wan":5176,"asy":5177,"ĠIslam":5178,"Ġplane":5179,"Ġstreets":5180,"Ġexcuse":5181,"ĠGovernor":5182,"lig":5183,"oured":5184,"Ġpil":5185,"Ġgain":5186,"oma":5187,"Ġscrew":5188,"Ġturning":5189,"ĠCanad":5190,"Ġbeauty":5191,"Ġcopy":5192,"ĠKenned":5193,"Ġschol":5194,"RB":5195,"Ġtick":5196,"Ġreact":5197,"ĠHal":5198,"Ġsports":5199,"Ġpoet":5200,"ĠAmericans":5201,"ĠCarter":5202,"Ġdemon":5203,"Ġsilver":5204,"war":5205,"gend":5206,"Ġmanaged":5207,"Ġcontr":5208,"ĠProt":5209,"Ġsplit":5210,"Ġsignificant":5211,"ELL":5212,"Ġbother":5213,"Ġunit":5214,"Ġdestroyed":5215,"ĠSaturday":5216,"AD":5217,"An":5218,"isher":5219,"Ġpin":5220,"ira":5221,"Ġstream":5222,"ordin":5223,"azz":5224,"Ġtransfer":5225,"Ġphysical":5226,"Ġintroduced":5227,"riday":5228,"ef":5229,"isl":5230,"Ġcuri":5231,"ĠHans":5232,"Ġprogress":5233,"Ġunits":5234,"Ġ60":5235,"Ġfavour":5236,"ĠFootball":5237,"rison":5238,"rees":5239,"Ġsouthern":5240,"Ġchat":5241,"ĠPope":5242,"ĠStar":5243,"Ġmob":5244,"ĠUncle":5245,"Ġtransport":5246,"Ġpossibly":5247,"ĠParliament":5248,"ĠSecond":5249,"Ġdare":5250,"Ġgall":5251,"ache":5252,"ĠHot":5253,"ĠOw":5254,"ppy":5255,"Ġunc":5256,"Ġsmoke":5257,"Ġlocation":5258,"Ġterrit":5259,"Ġoperation":5260,"Ġmagn":5261,"rs":5262,"Ġtim":5263,"ĠPenn":5264,"Ġappears":5265,"ev":5266,"uz":5267,"ĠWay":5268,"stra":5269,"ado":5270,"osen":5271,"Ġuniverse":5272,"ĠIsn":5273,"Ġ1996":5274,"Ġeconomic":5275,"Ġroute":5276,"ĠKennedy":5277,"bre":5278,"tr":5279,"itan":5280,"Ġlosing":5281,"ĠThink":5282,"awa":5283,"Ġfinding":5284,"Ġinstru":5285,"ĠEverybody":5286,"Ġwake":5287,"Ġbub":5288,"orter":5289,"Ġdressed":5290,"Ġtoward":5291,"arian":5292,"ĠSon":5293,"Ġstret":5294,"Ġrelative":5295,"Ġhardly":5296,"Ġconstruction":5297,"Ġaccepted":5298,"Ġdrug":5299,"TS":5300,"Ġmale":5301,"ivity":5302,"Ġunivers":5303,"Ġlaws":5304,"ĠSunday":5305,"oices":5306,"Ġbast":5307,"Ġdirty":5308,"ĠTurn":5309,"Ġaltern":5310,"umped":5311,"Ġafterwards":5312,"Ġshowing":5313,"Ġfeels":5314,"199":5315,"Ġhumans":5316,"Ġadvant":5317,"Ġrocks":5318,"Ġtreatment":5319,"Ġindependent":5320,"mo":5321,"Ġfought":5322,"Ġlaug":5323,"ushing":5324,"Ġwash":5325,"ooper":5326,"Ġclock":5327,"clock":5328,"Ġfalling":5329,"book":5330,"Ġfruit":5331,"aling":5332,"ĠLie":5333,"Ġflo":5334,"Ġrequire":5335,"Al":5336,"pro":5337,"Ġ1998":5338,"Ġresponsible":5339,"Ġinha":5340,"ĠWhatever":5341,"Ġquality":5342,"Ġscream":5343,"Ġtrial":5344,",'":5345,"ker":5346,"ĠDO":5347,"ĠVer":5348,"Ġretired":5349,"Ġsword":5350,"ĠPrime":5351,"Ġbrave":5352,"Ġsweetie":5353,"ĠCenter":5354,"Ġsymbol":5355,"Ġtong":5356,"Ġ1997":5357,"Americ":5358,"LD":5359,"bell":5360,"with":5361,"Ġboo":5362,"ĠCat":5363,"riff":5364,"Ġhadn":5365,"Ġprince":5366,"Ġhelping":5367,"Ġlands":5368,"Ġoccasion":5369,"Ġfixed":5370,"Ġneighbor":5371,"ĠScottish":5372,"Ġfinancial":5373,"80":5374,"ĠLast":5375,"ĠJane":5376,"artment":5377,"Ġcomplic":5378,"chant":5379,"Ġstatement":5380,"25":5381,"nam":5382,"Ġpleased":5383,"geant":5384,"ĠNobody":5385,"ĠAsia":5386,"Ġ185":5387,"Ġbottle":5388,"hetic":5389,"Ġcandid":5390,"Ġrent":5391,"ĠUK":5392,"ĠStay":5393,"achus":5394,"Ġrecent":5395,"Ġinstit":5396,"ĠTHAT":5397,"Ġdivision":5398,"UR":5399,"Ġdiam":5400,"Ġpra":5401,"Ġghost":5402,"rage":5403,"Ġrise":5404,"Ġadop":5405,"Ġnumer":5406,"ĠSpeak":5407,"Ġgiant":5408,"Ġlaughed":5409,"ties":5410,"ĠWatch":5411,"Ġmeas":5412,"tering":5413,"Ġconv":5414,"oston":5415,"Ġcoat":5416,"Ġshad":5417,"Ġmatters":5418,"Ġaudience":5419,"Ġdrugs":5420,"\"?":5421,"look":5422,"rat":5423,"kend":5424,"ĠFive":5425,"Ġflow":5426,"ufact":5427,"rough":5428,"heast":5429,"Ġgro":5430,"ĠShar":5431,"Ġscore":5432,"Ġexchan":5433,"Ġpulled":5434,"Ġdying":5435,"Ġthroat":5436,"Ġcomedy":5437,"Ġyounger":5438,"Ġexpress":5439,"Ġjobs":5440,"Ġapproach":5441,"Ġproducts":5442,"Ġrailway":5443,"Ġtemperature":5444,"ront":5445,"Ġodd":5446,"ala":5447,"iral":5448,"Ġnoticed":5449,"Ġmanufact":5450,"ĠDivision":5451,"Ġsafety":5452,"pher":5453,"Ġfingers":5454,"icide":5455,"imum":5456,"ĠBull":5457,"Ġjail":5458,"fection":5459,"oking":5460,"ĠBritain":5461,"och":5462,"oles":5463,"Ġprefer":5464,"Ġends":5465,"Ġminor":5466,"ĠBlue":5467,"Ġentirely":5468,"ĠRussia":5469,"Ġimprove":5470,"Ġbac":5471,"Ġlord":5472,"Ġgay":5473,"ĠDen":5474,"Ġdisplay":5475,"There":5476,"ĠTommy":5477,"Ġwalls":5478,"imp":5479,"ĠCare":5480,"ĠDou":5481,"ĠFriday":5482,"Ġarrange":5483,"ĠValley":5484,"Ġuniform":5485,"Ġpoly":5486,"Ġremains":5487,"ĠAtt":5488,"ĠDidn":5489,"Ġveh":5490,"ĠDamn":5491,"atre":5492,"ĠWind":5493,"aming":5494,"Ġwheel":5495,"agn":5496,"ĠRev":5497,"Ġsilence":5498,"ĠLeave":5499,"ĠSwed":5500,"ĠMusic":5501,"mar":5502,"Ġtiny":5503,"Ġtournament":5504,"ĠIS":5505,"Ġgrave":5506,"Ġgentleman":5507,"Ġmanagement":5508,"Ġcards":5509,"ĠIre":5510,"essel":5511,"Ġreform":5512,"Ġlibr":5513,"cles":5514,"ĠShit":5515,"ĠEveryone":5516,"Ġconstant":5517,"23":5518,"AC":5519,"lict":5520,"oir":5521,"uyeh":5522,"Ġdar":5523,"ĠMod":5524,"lying":5525,"cts":5526,"ilty":5527,"hia":5528,"Ġdefeated":5529,"ĠCanadian":5530,"Ġpit":5531,"iana":5532,"ocent":5533,"ĠMaria":5534,"Ġthousands":5535,"Ġsteps":5536,"TH":5537,"Ġsin":5538,"Ġbodies":5539,"icate":5540,"ĠSit":5541,"idents":5542,"ĠMove":5543,"Ġremoved":5544,"Ġpolitics":5545,"ominated":5546,"Ġopposite":5547,"onse":5548,"irk":5549,"ĠBre":5550,"Ġliber":5551,"atherine":5552,"ysis":5553,"ĠSomeone":5554,"Ġbasic":5555,"Ġsolution":5556,"Ġeffort":5557,"Yeah":5558,"ua":5559,"amin":5560,"ĠShould":5561,"Ġreceive":5562,"Ġcircle":5563,"ĠDaddy":5564,"ĠEarly":5565,"cellent":5566,"stein":5567,"Ġbat":5568,"Ġmax":5569,"Ġnucle":5570,"Ġhast":5571,"ĠSummer":5572,"ĠWall":5573,"ĠRose":5574,"ĠRural":5575,"ĠFort":5576,"Ġknowing":5577,"elly":5578,"Ġproceed":5579,"Ġtrave":5580,"Ġentertain":5581,"Ġauthority":5582,"uous":5583,"Ġfaster":5584,"enced":5585,"etts":5586,"Ġbeach":5587,"ĠOx":5588,"Ġdelic":5589,"ĠVal":5590,"Ġassum":5591,"Ġdetails":5592,"Ġconnected":5593,"EC":5594,"Ġusual":5595,"Ġagent":5596,"Ġqueen":5597,"Ġafford":5598,"Ġraise":5599,"Ġmusical":5600,"Ġguns":5601,"Ġfifth":5602,"This":5603,"ĠSusan":5604,"ĠHoly":5605,"Ġmel":5606,"ĠKoh":5607,"Ġsomewhat":5608,"Ġeverywhere":5609,"Ġchocolate":5610,"ockey":5611,"hammad":5612,"Ġattacked":5613,"ĠLatin":5614,"Ġsettled":5615,"Ġrapid":5616,"UGH":5617,"Ġbare":5618,"ĠMich":5619,"hio":5620,"--\"":5621,"Ġcontains":5622,"Ġ35":5623,"hampion":5624,"ĠOb":5625,"ĠEll":5626,"Ġcomment":5627,"Ġspoken":5628,"Ġmatches":5629,"Ġ1994":5630,"Ġ1995":5631,"Ġcompleted":5632,"Ġprovided":5633,"24":5634,"pa":5635,"Ġtun":5636,"ĠNick":5637,"ctic":5638,"ĠJoseph":5639,"bey":5640,"ĠConstitution":5641,"Ġawful":5642,"Ġconversation":5643,"Do":5644,"uals":5645,"Ġcous":5646,"ĠSH":5647,"ĠSur":5648,"ĠDutch":5649,"ĠGO":5650,"Ġknife":5651,"Ġmanner":5652,"ĠAnn":5653,"Ġjoke":5654,"ean":5655,"ĠAwards":5656,"Ġkm":5657,"Ġanx":5658,"Ġsees":5659,"Ġeh":5660,"ĠBon":5661,"Ġroyal":5662,"Ġgoods":5663,"ogether":5664,"Ġflu":5665,"Ġhighly":5666,"Ġcauses":5667,"197":5668,"Ġforgotten":5669,"Ġcloser":5670,"Ġcredit":5671,"bb":5672,"bar":5673,"overy":5674,"ĠMi":5675,"Ġflower":5676,"Ġslightly":5677,"Ġchicken":5678,"Ġnewspaper":5679,"achusetts":5680,"da":5681,"ja":5682,"vad":5683,"Ġfired":5684,"aning":5685,"ĠMem":5686,"keep":5687,"Ġability":5688,"Ġinterp":5689,"ugg":5690,"Ġwestern":5691,"Ġfal":5692,"ĠNorm":5693,"Ġshore":5694,"ĠĠĠĠĠĠĠ":5695,"Ġuseful":5696,"Ġpresence":5697,"ĠWhoa":5698,"Ġexpensive":5699,"Ġwinning":5700,"ĠCommun":5701,"ĠDaniel":5702,"Ġavoid":5703,"Ġmajority":5704,"Ġcounter":5705,"Ġactivity":5706,"Ġbudget":5707,"Ġpa":5708,"Ġstro":5709,"Ġlips":5710,"Ġsugar":5711,"Ġbringing":5712,"Ġfocus":5713,"ĠSecretary":5714,"rick":5715,"ĠBat":5716,"ĠInter":5717,"aging":5718,"Ġadvent":5719,"Ġrecomm":5720,"Ġfeelings":5721,"Ġglob":5722,"Ġstudies":5723,"Ġrestaur":5724,"Ġcalcul":5725,"ĠRepublican":5726,"gil":5727,"lied":5728,"put":5729,"water":5730,"stances":5731,"ĠRoll":5732,"emic":5733,"ĠColumb":5734,"ĠEliz":5735,"vania":5736,"gers":5737,"ĠGra":5738,"thur":5739,"Ġearn":5740,"Ġweekend":5741,"Ġshooting":5742,"Ġprincess":5743,"Ġvictory":5744,"ĠMuslim":5745,"Ġchemical":5746,"Ġalcohol":5747,"ĠTown":5748,"ĠDet":5749,"Ġswitch":5750,"ception":5751,"ĠAustralian":5752,"Ġextremely":5753,"ĠMassachusetts":5754,"EE":5755,"down":5756,"Ġmap":5757,"uman":5758,"Ġrow":5759,"Ġtrick":5760,"tained":5761,"Ġsuggested":5762,"car":5763,"uit":5764,"uan":5765,"ndy":5766,"Ġocean":5767,"Ġinvent":5768,"ĠSix":5769,"ĠMust":5770,"ĠBru":5771,"ĠJon":5772,"Ġexer":5773,"aren":5774,"Ġprem":5775,"Ġdrama":5776,"ĠGeorg":5777,"Ġstatus":5778,"Ġautom":5779,"boy":5780,"ĠMum":5781,"ĠRick":5782,"umn":5783,"Ġ32":5784,"Is":5785,"PS":5786,"ingu":5787,"Ġlin":5788,"ĠDun":5789,"ĠRun":5790,"Ġshirt":5791,"ĠInst":5792,"Ġconsist":5793,"Ġelement":5794,"Ġgraph":5795,"Ġadvice":5796,"father":5797,"pea":5798,"Ġaim":5799,"ĠSouthern":5800,"ĠChild":5801,"eman":5802,"place":5803,"Ġguilty":5804,"Ġunderstood":5805,"Ġprior":5806,"Ġconstru":5807,"Ġresources":5808,"jo":5809,"sm":5810,"vest":5811,"Ġwrest":5812,"eding":5813,"ila":5814,"ĠGames":5815,"ĠRel":5816,"Ġvessel":5817,"Ġchest":5818,"Ġfully":5819,"Ġgolden":5820,"ĠAddons":5821,"Ġescap":5822,"Ġnineteen":5823,"bow":5824,"Ġtough":5825,"leg":5826,"Ġrum":5827,"Ġnoise":5828,"ĠSociety":5829,"izes":5830,"intend":5831,"Ġowned":5832,"Ġsetting":5833,"ĠFrances":5834,"ĠCarolina":5835,"enger":5836,"ĠAy":5837,"Ġliqu":5838,"ĠKansas":5839,"Ġcoal":5840,"Ġprime":5841,"uckles":5842,"Ġresist":5843,"Ġtradition":5844,"Ġflew":5845,"ĠMichigan":5846,"col":5847,"à¤":5848,"Ġnerv":5849,"ĠSub":5850,"Ġult":5851,"Ġupstairs":5852,"Ġplanned":5853,"Ġdrawing":5854,"Ġcollection":5855,"Ġbenefit":5856,"ION":5857,"Ġpassing":5858,"Ġdamage":5859,"ĠSenate":5860,"ĠPrize":5861,"Ġcommercial":5862,"zil":5863,"ĠTay":5864,"ĠLis":5865,"unched":5866,"olved":5867,"Ġresc":5868,"Ġdesire":5869,"Ġappearance":5870,"Ġoccurred":5871,"Ġawarded":5872,"Ġtrib":5873,"Ġbranch":5874,"enes":5875,"Ġthin":5876,"ĠHmm":5877,"Ġsem":5878,"ports":5879,"Ġcarefully":5880,"acle":5881,"Ġproof":5882,"ĠInstitute":5883,"Ġhelps":5884,"Ġkeeps":5885,"Ġdram":5886,"Ġ1992":5887,"ANT":5888,"Ġmagic":5889,"porary":5890,"Ġgift":5891,"ulate":5892,"osa":5893,"Ġupset":5894,"Ġotherwise":5895,"Ġparties":5896,"Ġflag":5897,"Ġtraffic":5898,"hamber":5899,"Ġexpression":5900,"Ġpresented":5901,"ĠGroup":5902,"ĠOlympics":5903,"Äĩ":5904,"ĠTen":5905,"Ġnotes":5906,"ĠFire":5907,"abeth":5908,"Ġcloud":5909,"Ġunf":5910,"Ġshoulder":5911,"Ġcarbon":5912,"Ġexpand":5913,"Ġperfectly":5914,"Ġhanging":5915,"ias":5916,"inent":5917,"Ġfederal":5918,"ĠMhm":5919,"Ġchosen":5920,"ĠBrad":5921,"Ġinstance":5922,"Ġsexual":5923,"Ġintellig":5924,"fall":5925,"gment":5926,"onia":5927,"ĠBad":5928,"ĠNaz":5929,"ĠDor":5930,"ĠDaw":5931,"cel":5932,"Ġate":5933,"Ġappeal":5934,"ĠDeath":5935,"ricane":5936,"ERE":5937,"Ġdetail":5938,"syl":5939,"Ġmurd":5940,"Ġscale":5941,"Ġconnection":5942,"Ġlimited":5943,"Ġpunish":5944,"heart":5945,"ĠCam":5946,"irlf":5947,"Ġdoors":5948,"Ġ1991":5949,"Ġsignal":5950,"Ġmountains":5951,"Ġneighbour":5952,"itzer":5953,"Ġwatched":5954,"ĠDepartment":5955,"irlfriend":5956,"isy":5957,"ĠWater":5958,"ĠHad":5959,"ĠOhio":5960,"Ġconcent":5961,"Ġunderstanding":5962,"Ġadmit":5963,"Ġrepresented":5964,"Ġcabin":5965,"peare":5966,".)":5967,"ĠTry":5968,"ĠVen":5969,"Ġblank":5970,"Ġdisci":5971,"Ġkiller":5972,"Ġexcited":5973,"Ġeffects":5974,"kespeare":5975,"iest":5976,"Ġtears":5977,"Ġcream":5978,"Ġspin":5979,"Ġapple":5980,"Ġchain":5981,"Ġbreaking":5982,"Ġnorthwest":5983,"Ġlabor":5984,"gle":5985,"rant":5986,"Ġpill":5987,"Ġnarrow":5988,"Ġwebs":5989,"ĠStand":5990,"Ġ45":5991,"Ġ1993":5992,"Ġpassion":5993,"ĠHarry":5994,"Ġincreased":5995,"Ġdancing":5996,"ĠKohgil":5997,"ĠKohgiluyeh":5998,"21":5999,"pal":6000,"Ġeth":6001,"Ġwings":6002,"ĠAunt":6003,"ĠHor":6004,"ĠNic":6005,"rain":6006,"Ġconc":6007,"resp":6008,"Ġapolog":6009,"Ġadvantage":6010,"ano":6011,"Ġhook":6012,"etch":6013,"ĠBes":6014,"Ġune":6015,"urd":6016,"Ġhearing":6017,"Ġpossess":6018,"Ġbeside":6019,"Ġcateg":6020,"ĠTre":6021,"ĠMen":6022,"ĠCO":6023,"Ġstations":6024,"ĠStan":6025,"Ġ90":6026,"Ġresponse":6027,"Ġcarrying":6028,"Ġlaughing":6029,"Ġdeclared":6030,"Ġremembered":6031,"Ġloose":6032,"ĠAv":6033,"Ġstated":6034,"Ġmagazine":6035,"Ġteachers":6036,"Ġninety":6037,"erves":6038,"Ġheight":6039,"Ġreaction":6040,"Ġbutton":6041,"inda":6042,"Ġtroub":6043,"Ġquit":6044,"Ġsigns":6045,"Ġ70":6046,"Ġbasis":6047,"ervation":6048,"Ġgrowth":6049,"Ġbullet":6050,"ĠPennsyl":6051,"æ":6052,"enny":6053,"Ġnurs":6054,"ĠSom":6055,"ĠMaz":6056,"ĠBal":6057,"urse":6058,"ĠDave":6059,"quar":6060,"Ġunique":6061,"Ġforgive":6062,"Ġachieve":6063,"vy":6064,"Ġlit":6065,"Ġnom":6066,"Ġnea":6067,"ĠHit":6068,"ĠOffic":6069,"Ġsevere":6070,"ĠUnt":6071,"Ġansw":6072,"Ġballs":6073,"Ġdrove":6074,"Ġbillion":6075,"RA":6076,"Ġfan":6077,"Ġfold":6078,"ĠIII":6079,"ĠTer":6080,"icy":6081,"Ġhiding":6082,"olks":6083,"ulated":6084,"Ġmyster":6085,"ĠKim":6086,"Ġshared":6087,"Ġmicro":6088,"ĠWelcome":6089,"Ġdyn":6090,"ĠAri":6091,"ĠWork":6092,"ĠBroad":6093,"Ġmyth":6094,"Ġgrab":6095,"Ġkidding":6096,"Ġdivor":6097,"Ġhonour":6098,"Ġfigures":6099,"Ġnormally":6100,"ĠHurry":6101,"ĠKentucky":6102,"ĠIreland":6103,"Cause":6104,"Ġfurn":6105,"Ġdim":6106,"ĠOs":6107,"Ġshr":6108,"Ġclimate":6109,"Ġcommittee":6110,"Ġthoughts":6111,"ĠExactly":6112,"Ġfailure":6113,"Ġdaily":6114,"29":6115,"Ġbang":6116,"Ġmuseum":6117,"verse":6118,"ounding":6119,"Ġquant":6120,"Ġpoison":6121,"Ġowner":6122,"Ġleague":6123,"Ġdriver":6124,"ĠAnything":6125,"ĠMcC":6126,"ĠJean":6127,"Ġsharp":6128,"\").":6129,"_.":6130,"Ġug":6131,"Ġplenty":6132,"ĠClass":6133,"Ġstaying":6134,"ĠPete":6135,"ĠShakespeare":6136,"aughs":6137,"ĠBrazil":6138,"Ġcomfortable":6139,"ĠDemocratic":6140,"American":6141,"Ġcas":6142,"Ġpha":6143,"Ġlatter":6144,"ĠTa":6145,"ented":6146,"ĠHea":6147,"ĠBern":6148,"Ġshell":6149,"Ġsheep":6150,"ĠAsian":6151,"Ġfollows":6152,"ĠJohnson":6153,"ropri":6154,"Ġmixed":6155,"ui":6156,"Ġtal":6157,"Ġfant":6158,"Ġpowers":6159,"ĠMuseum":6160,"Ġstom":6161,"ĠLand":6162,"ĠAndrew":6163,"ĠSoon":6164,"Ġblame":6165,"Ġeastern":6166,"Ġviolence":6167,"ĠPennsylvania":6168,"ĠSel":6169,"ĠFollow":6170,"Ġworkers":6171,"Ġconscious":6172,"Ġinvited":6173,"Ġwindows":6174,"ropical":6175,"Ġvariety":6176,"ĠPacific":6177,"gency":6178,"iven":6179,"ko":6180,"nic":6181,"Ġlat":6182,"ĠHung":6183,"ĠDra":6184,"ĠJones":6185,"ĠKat":6186,"ĠKhan":6187,"Ġmathem":6188,"ĠInde":6189,"Ġimpact":6190,"Ġadvance":6191,"ĠWilliams":6192,"Ġmail":6193,"ustration":6194,"Ġvirt":6195,"Ġguitar":6196,"Ġcrim":6197,"ĠOrder":6198,"Ġtransform":6199,"Ġcolon":6200,"Ġprize":6201,"Ġclasses":6202,"Ġapprox":6203,"Ġgods":6204,"Ġdebut":6205,"Ġdisappeared":6206,"Ġhistorical":6207,"Ġdeliver":6208,"Ġcitizens":6209,"mpt":6210,"ois":6211,"Ġtask":6212,"Ġded":6213,"ĠAmy":6214,"ĠCivil":6215,"aki":6216,"Ġunion":6217,"Ġdesper":6218,"ocal":6219,"Ġdragon":6220,"Ġprotection":6221,"arrass":6222,"Man":6223,"ĠBeth":6224,"ĠBrand":6225,"ĠOl":6226,"ĠEst":6227,"ĠEdu":6228,"aka":6229,"Ġsomehow":6230,"onder":6231,"ĠLooks":6232,"Ġslept":6233,"Ġsilent":6234,"Ġhyp":6235,"Ġtongue":6236,"Ġtied":6237,"ĠMond":6238,"ĠBoston":6239,"Ġaspect":6240,"ĠPap":6241,"rael":6242,"estic":6243,"ĠKong":6244,"Ġchanging":6245,"Ġtowns":6246,"Ġpurcha":6247,"ĠShall":6248,"Ġproposed":6249,"Ġcaptured":6250,"ĠSidney":6251,"ĠLieutenant":6252,"Ġinhabit":6253,"rd":6254,"while":6255,"Å«":6256,"Ġwid":6257,"ĠHan":6258,"ĠBea":6259,"Ġmyst":6260,"Ġsuffe":6261,"Ġunknown":6262,"icted":6263,"ĠChris":6264,"Ġcheese":6265,"Ġdrawn":6266,"Ġartists":6267,"Ġfallen":6268,"Ġsquared":6269,"Ġoperations":6270,"Be":6271,"Ġtor":6272,"Ġcig":6273,"ĠTri":6274,"ĠMAN":6275,"ĠDown":6276,"ĠGil":6277,"ĠRaj":6278,"angle":6279,"Ġserving":6280,"chestra":6281,"Ġ1950":6282,"ĠSteve":6283,"incol":6284,"LY":6285,"mat":6286,"inity":6287,"otion":6288,"ĠSuch":6289,"entially":6290,"amily":6291,"Ġkil":6292,"ĠNight":6293,"ctures":6294,"Ġselling":6295,"Ġshame":6296,"Ġconflict":6297,"ĠEdward":6298,"ipping":6299,"Ġmotion":6300,"Ġassociated":6301,"sembly":6302,"Ä«":6303,"Ġtap":6304,"ĠMiddle":6305,"Ġconference":6306,"Ġeaten":6307,"Ġsupported":6308,"Ġsettlement":6309,"Ġgirlfriend":6310,"owed":6311,"Ġroles":6312,"Ġoldest":6313,"Ġpaying":6314,"Ġfairly":6315,"Ġnervous":6316,"IV":6317,"heim":6318,"Ġwave":6319,"Ġsalt":6320,"ĠCross":6321,"Ġorange":6322,"Ġdism":6323,"Ġdiss":6324,"Ġwrit":6325,"Ġchose":6326,"Ġsteel":6327,"Ġrespond":6328,"hens":6329,"Ġfifteen":6330,"Ġmulti":6331,"Ġstrike":6332,"Ġarrested":6333,"ĠCastle":6334,"Ġholiday":6335,"She":6336,"cest":6337,"run":6338,"zer":6339,"ĠTol":6340,"Ġbeer":6341,"ĠWalk":6342,"stone":6343,"ĠYear":6344,"ĠGy":6345,"ĠGame":6346,"Ġseek":6347,"ĠWendy":6348,"Ġcricket":6349,"Ġfields":6350,"Ġmaterials":6351,"ĠKorea":6352,"Ġfreedom":6353,"Ġax":6354,"Ġboot":6355,"Ġcake":6356,"illed":6357,"endment":6358,"Ġprimary":6359,"Ġbastard":6360,"Ġdarling":6361,"28":6362,"Ġfile":6363,"Ġtow":6364,"Ġpiano":6365,"Ġlone":6366,"Ġwealth":6367,"ĠRam":6368,"Ġpreviously":6369,"ĠEnter":6370,"burgh":6371,"Ġfeatured":6372,"70":6373,"gor":6374,"yo":6375,"Ġseasons":6376,"ĠLar":6377,"ĠEv":6378,"ĠEric":6379,"Ġaband":6380,"acks":6381,"pered":6382,"Ġimpl":6383,"Ġadvert":6384,"Ġrealized":6385,"Ġproducer":6386,"Ġsixty":6387,"ĠEmperor":6388,"Ġordinary":6389,"Ġfamiliar":6390,"Ġstomach":6391,"wide":6392,"Ġtie":6393,"Ġsust":6394,"Ġooh":6395,"Ġgate":6396,"ĠEh":6397,"osition":6398,"Ġbackground":6399,"amps":6400,"Ġcheer":6401,"Ġboyfriend":6402,"Ġinsurance":6403,"Ġpatients":6404,"Ġterror":6405,"Ġtreated":6406,"Ġembarrass":6407,"Ġdetermined":6408,"Ġsuffered":6409,"bury":6410,"spect":6411,"Ġmama":6412,"ĠHu":6413,"ĠHome":6414,"adium":6415,"urb":6416,"Ġpartners":6417,"Ġbride":6418,"Ġ80":6419,"Ġexperiment":6420,"Ġvari":6421,"Ġveget":6422,"Ġhyd":6423,"Ġhoping":6424,"Ġpink":6425,"ati":6426,"ĠTim":6427,"elled":6428,"ĠThus":6429,"ĠArthur":6430,"Ġ1989":6431,"Ġlabel":6432,"Ġresponsibility":6433,"Ġinnocent":6434,"Ġscientific":6435,"Ġphilosophy":6436,"SP":6437,"bi":6438,"Ġdiet":6439,"Ġgang":6440,"ĠHE":6441,"ĠYet":6442,"Ġsport":6443,"Ġlegend":6444,"Ġminister":6445,"Ġbegins":6446,"ĠCommission":6447,"ĠJulie":6448,"Ġargument":6449,"Ġweapons":6450,"rical":6451,"ups":6452,"Ġham":6453,"Ġreck":6454,"roll":6455,"ĠBE":6456,"Ġsoil":6457,"ella":6458,"Ġguest":6459,"Ġapparently":6460,"Ġsupply":6461,"ĠZeal":6462,"Ġpriest":6463,"Ġhundreds":6464,"ĠSergeant":6465,"Ġbasketball":6466,"ALL":6467,"iser":6468,"Ġfancy":6469,"ĠHol":6470,"add":6471,"Ġbrings":6472,"ulture":6473,"Ġsolid":6474,"Ġeconomy":6475,"Ġactivities":6476,"Ġapartment":6477,"Ġweapon":6478,"Ġappreciate":6479,"lock":6480,"Ġbite":6481,"inging":6482,"ĠTimes":6483,"ĠSup":6484,"ĠWales":6485,"urally":6486,"ĠRh":6487,"Ġsole":6488,"Ġprepar":6489,"Ġjoint":6490,"Ġwondering":6491,"ĠAdam":6492,"Ġcircumstances":6493,"ĠHard":6494,"ums":6495,"ements":6496,"reek":6497,"Ġsched":6498,"Ġchannel":6499,"osphere":6500,"Ġexistence":6501,"Ġburned":6502,"ĠPortug":6503,"IGHT":6504,"SB":6505,"ST":6506,"pet":6507,"Ġtone":6508,"isation":6509,"Ġbunch":6510,"Ġcott":6511,"Ġinqu":6512,"alls":6513,"ĠLincol":6514,"Ġcock":6515,"Ġarticle":6516,"Ġfilms":6517,"Ġengaged":6518,"Ġprofessor":6519,"Ġdisappoint":6520,"ĠFilm":6521,"27":6522,"bet":6523,"isp":6524,"aman":6525,"ĠMir":6526,"ĠCab":6527,"Ġwithd":6528,"ĠUs":6529,"Ġgoodness":6530,"Ġpregn":6531,"ĠIsrael":6532,"ĠAlice":6533,"They":6534,"198":6535,"Ġseriously":6536,"ĠJacob":6537,"34":6538,"35":6539,"Ġonline":6540,"ĠFestival":6541,"Ġens":6542,"Ġunus":6543,"ĠMarsha":6544,"Ġrooms":6545,"Ġ1988":6546,"Ġcourage":6547,"Ġcrossed":6548,"Ġhomes":6549,"ĠPakistan":6550,"Not":6551,"otic":6552,"Ġupper":6553,"Ġsuck":6554,"emies":6555,"ardens":6556,"Ġfeature":6557,"Ġdescend":6558,"Ġfinds":6559,"standing":6560,"bridge":6561,"Ġlevels":6562,"iggler":6563,"Ġjuice":6564,"ĠBesides":6565,"Ġwished":6566,"Ġbatter":6567,"Ġdish":6568,"ĠTha":6569,"ĠStation":6570,"Ġmayor":6571,"ĠAsh":6572,"Ġcrown":6573,"Ġrelax":6574,"Ġboom":6575,"Ġclever":6576,"ĠZiggler":6577,"Ġlaunched":6578,"Ġincreasing":6579,"Ġlimit":6580,"Ġsuffering":6581,"Let":6582,"erk":6583,"Ġborder":6584,"lyn":6585,"Ġnoted":6586,"ĠGal":6587,"ĠLuc":6588,"ĠRich":6589,"Ġ(;":6590,"Ġincred":6591,"Ġstring":6592,"Ġ1979":6593,"Ġislands":6594,"Ġsuspic":6595,"Ġsales":6596,"ito":6597,"Ġdu":6598,"Ġgather":6599,"Ġheav":6600,"ĠNorthern":6601,"Ġexact":6602,"hess":6603,"ĠCla":6604,"Ġsolve":6605,"ĠAtlantic":6606,"Ġfalse":6607,"ĠZealand":6608,"FL":6609,"Ġwise":6610,"arn":6611,"Ġho":6612,"ĠNap":6613,"iece":6614,"Ġconsequ":6615,"Ġroot":6616,"weet":6617,"Ġcheap":6618,"Ġdiscover":6619,"ĠCalvad":6620,"Ġrecognized":6621,"Ġinstrument":6622,"ĠCalvados":6623,"Good":6624,"rot":6625,"owder":6626,"uther":6627,"amn":6628,"ĠPop":6629,"ĠRom":6630,"ĠEastern":6631,"Ġriding":6632,"Ġdistinct":6633,"Ġ1982":6634,"Ġhandsome":6635,"Ġcontinues":6636,"Ġanti":6637,"Ġwaited":6638,"ĠService":6639,"GE":6640,"Ġwha":6641,"ario":6642,"ĠRon":6643,"Ġconqu":6644,"Ġplate":6645,"Ġintended":6646,"Ġattended":6647,"ĠDef":6648,"Ġaccomp":6649,"Ġstands":6650,"Ġfalls":6651,"ĠJewish":6652,"Ġlibrary":6653,"ares":6654,"Ġdust":6655,"ĠTalk":6656,"ĠNE":6657,"ĠNavy":6658,"ĠLab":6659,"ĠFOR":6660,"ĠFox":6661,"Ġwhoa":6662,"ĠĠĠĠĠ":6663,"Ġshake":6664,"inson":6665,"oked":6666,"Ġadditional":6667,"Ġframe":6668,"Ġ1984":6669,"Ġconcert":6670,"Ġchallenge":6671,"CE":6672,"rad":6673,"Ġwounded":6674,"Ġsed":6675,"iden":6676,"Ġancest":6677,"ĠMarg":6678,"Ġeleven":6679,"okes":6680,"Ġsentence":6681,"Ġlegisl":6682,"ĠDanny":6683,"Ġconcern":6684,"Ġestablish":6685,"Ġridic":6686,"Ġrepeated":6687,"ĠJersey":6688,"ĠConfeder":6689,"Ġugly":6690,"Bl":6691,"Ġwitch":6692,"ĠToo":6693,"ĠCop":6694,"Ġatm":6695,"Ġrac":6696,"Ġrang":6697,"izations":6698,"Ġspect":6699,"Ġimportance":6700,"Ġpaint":6701,"Ġcommonly":6702,"Ġsurvive":6703,"Ġefforts":6704,"ĠEduc":6705,"Sp":6706,"ext":6707,"jan":6708,"nde":6709,"Ġbrill":6710,"aly":6711,"Ġhabit":6712,"Ġstir":6713,"ĠVan":6714,"erman":6715,"Ġcompon":6716,"Ġhappiness":6717,"ologist":6718,"Ġcapac":6719,"ĠAbs":6720,"Ġrefused":6721,"Ġgovernor":6722,"Ġexchange":6723,"OD":6724,"uart":6725,"Ġ{":6726,"aria":6727,"ĠOcean":6728,"ĠPic":6729,"Ġgotten":6730,"Ġarran":6731,"Ġclient":6732,"Ġearned":6733,"Ġtrail":6734,"Ġsenior":6735,"fortunately":6736,"Ġcousin":6737,"ĠElizabeth":6738,"22":6739,"As":6740,"OB":6741,"mond":6742,"rich":6743,"ä":6744,"Ġpool":6745,"ĠSong":6746,"ĠGrey":6747,"ĠRyan":6748,"ĠInc":6749,"Ġfriendly":6750,"Ġ1987":6751,"Ġcritical":6752,"Ġcombination":6753,"ĠOxford":6754,"Ġsons":6755,"Ġrecognize":6756,"Ġagreement":6757,"box":6758,"ti":6759,"uce":6760,"Åį":6761,"Ġwore":6762,"Ġmort":6763,"Ġdies":6764,"Ġlake":6765,"ĠTem":6766,"Ġ\"\"":6767,"ĠGreg":6768,"ĠRa":6769,"Ġrot":6770,"akh":6771,"Ġcommission":6772,"Ġelements":6773,"ĠNews":6774,"Ġpointed":6775,"Ġdecisions":6776,"Ġ64":6777,"196":6778,"ĠIrish":6779,"Sc":6780,"Ġdun":6781,"ashing":6782,"ĠGer":6783,"ivered":6784,"Ġvia":6785,"----":6786,"Ġcontest":6787,"ection":6788,"Ġbreast":6789,"Ġexped":6790,"Ġliterature":6791,"Ġinterpret":6792,"VER":6793,"ded":6794,"mes":6795,"wo":6796,"Ġowe":6797,"ĠYep":6798,"Ġworship":6799,"Ġproced":6800,"ĠArch":6801,"Ġintegr":6802,"Ġsorts":6803,"Ġassistant":6804,"ĠUntil":6805,"don":6806,"lies":6807,"Ġfolk":6808,"Ġtower":6809,"Ġhidden":6810,"ĠBus":6811,"ĠBush":6812,"Ġjustice":6813,"Ġthrown":6814,"phy":6815,"Ġsympt":6816,"ĠForce":6817,"Ġobvious":6818,"ĠColonel":6819,"Ġbeneath":6820,"ĠLincoln":6821,"esh":6822,"ĠAk":6823,"ĠHind":6824,"ĠLA":6825,"Ġshook":6826,"eps":6827,"ĠAss":6828,"Ġdevil":6829,"Ġhunting":6830,"ĠAT":6831,"Ġallows":6832,"ĠWere":6833,"Ġflood":6834,"Ġgarage":6835,"Ġterritory":6836,"500":6837,"she":6838,"ê¯":6839,"rets":6840,"Ġdread":6841,"ĠWant":6842,"elp":6843,"ague":6844,"Ġspare":6845,"perial":6846,"Ġacid":6847,"Ġcorpor":6848,"ĠEmily":6849,"phant":6850,"ĠDirector":6851,"90":6852,"Ġic":6853,"Ġaunt":6854,"Ġweb":6855,"ĠEle":6856,"Ġexcellent":6857,"Ġ184":6858,"ierce":6859,"apping":6860,"Ġconnect":6861,"Ġphoto":6862,"hibition":6863,"ooth":6864,"ô":6865,"Ġfishing":6866,"ĠCy":6867,"ĠGall":6868,"unny":6869,"ĠJill":6870,"Ġplot":6871,"Ġagric":6872,"ĠViet":6873,"Ġcommitted":6874,"Ġsymp":6875,"Ġevolution":6876,"Ġcreating":6877,"Ġilleg":6878,"Ġdarkness":6879,"force":6880,"ĠBelg":6881,".[":6882,"TING":6883,"Who":6884,"wa":6885,"Ġmood":6886,"ĠMid":6887,"ĠGa":6888,"Ġidiot":6889,"Ġexplained":6890,"Ġdegrees":6891,"Ġlocked":6892,"ĠBerlin":6893,"ĠRoger":6894,"eer":6895,"rell":6896,"ĠAis":6897,"ĠWE":6898,"ĠME":6899,"rose":6900,"Ġaside":6901,"Ġselected":6902,"ĠIntern":6903,"Ġattitude":6904,"Ġsurely":6905,"alem":6906,"Ġ1971":6907,"Ġofficially":6908,"ĠRomanized":6909,"Ġreferred":6910,"Ġseventy":6911,"Ġcomplicated":6912,"ĠRevolution":6913,"Ġcriminal":6914,"38":6915,"Now":6916,"works":6917,"inn":6918,"Ġwound":6919,"Ġpages":6920,"ĠTest":6921,"ĠMatt":6922,"oops":6923,"ĠDi":6924,"usted":6925,"Ġconvin":6926,"ĠKill":6927,"Ġenemies":6928,"ordon":6929,"Ġ1981":6930,"Ġexplos":6931,"hmm":6932,"ĠCommittee":6933,"Ġvalues":6934,"Ġeffective":6935,"ĠMonday":6936,"ĠSupreme":6937,"gues":6938,"pre":6939,"ouri":6940,"Ġcute":6941,"asp":6942,"ĠTop":6943,"ĠHand":6944,"ĠHolly":6945,"ader":6946,"Ġkitt":6947,"ĠPerson":6948,"ĠFair":6949,"aints":6950,"Ġproved":6951,"Ġarmed":6952,"Ġunable":6953,"Ġmoves":6954,"ava":6955,"ultural":6956,"gery":6957,"Ġnearby":6958,"Ġmillions":6959,"ĠIslands":6960,"ĠSarah":6961,"ĠAlexander":6962,"itzerland":6963,"Ġlion":6964,"lend":6965,"Ġhired":6966,"Ġdeck":6967,"Ġrand":6968,"Ġ180":6969,"Ġharder":6970,"Ġsubst":6971,"Ġgeneration":6972,"Ġdealing":6973,"ĠTwenty":6974,"Ġestate":6975,"Ġtouched":6976,"Ġhealthy":6977,"Ġglasses":6978,"Ġscientists":6979,"OL":6980,"nce":6981,"zing":6982,"Ġgre":6983,"iments":6984,"ĠCro":6985,"ĠDuke":6986,"Ġrhy":6987,"ĠKn":6988,"Ġfeather":6989,"ĠVice":6990,"Ġcompared":6991,"Ġcrash":6992,"Ġsurre":6993,"ronic":6994,"Ġsteal":6995,"Ġreports":6996,"ealous":6997,"Ġscarce":6998,"].":6999,"ingly":7000,"arant":7001,"Ġnut":7002,"ĠWr":7003,"outs":7004,"ĠRoss":7005,"ĠEdd":7006,"Ġbuying":7007,"Ġmedal":7008,"Ġcommunities":7009,"Ġcere":7010,"aimed":7011,"Ġdepends":7012,"ĠBoard":7013,"36":7014,"ĠBrian":7015,"Ġdozen":7016,"Ġwhist":7017,"eaks":7018,"umes":7019,"Ġconce":7020,"Ġsale":7021,"cahedron":7022,"Ġretire":7023,"Ġempire":7024,"ĠEras":7025,"Ġdisappear":7026,"ĠSimon":7027,"Ġdelay":7028,"\"),":7029,"So":7030,"hu":7031,"Ġsisters":7032,"isms":7033,"oto":7034,"ĠHang":7035,"olen":7036,"ĠJr":7037,"Ġmole":7038,"Ġelev":7039,"ĠJohnny":7040,"ĠSwitzerland":7041,"adesh":7042,"Ġbelongs":7043,"IFA":7044,"ĠMazra":7045,"',":7046,"orge":7047,"ĠCut":7048,"Ġsufficient":7049,"eping":7050,"Ġwhenever":7051,"Ġtruly":7052,"Ġlecture":7053,"ĠBeach":7054,"Ġfuneral":7055,"ĠConst":7056,"Ġequals":7057,"Ġcreature":7058,"Ġvector":7059,"Ġproperly":7060,"Ġsoftware":7061,"APTER":7062,"ĠRecords":7063,"TV":7064,"bably":7065,"Ġlift":7066,"ĠHun":7067,"ĠBook":7068,"ĠBank":7069,"ĠNether":7070,"celer":7071,"Ġplastic":7072,"Ġshel":7073,"Ġtheme":7074,"bec":7075,"ĠAnna":7076,"Ġsimpl":7077,"Ġ1976":7078,"appy":7079,"Ġhorrible":7080,"ĠGuard":7081,"Ġspending":7082,"ĠTurk":7083,"Ġcruel":7084,"ĠAdmiral":7085,"ĠInstead":7086,"ĠMazraeh":7087,"foot":7088,"ĠAD":7089,"ĠYo":7090,"chief":7091,"ours":7092,"Ġsuicide":7093,"ender":7094,"iley":7095,"athy":7096,"Ġ1986":7097,"Ġcolors":7098,"Ġclosely":7099,"Ġmerchant":7100,"SC":7101,"based":7102,"Ġtoile":7103,"Ġbeast":7104,"ĠCub":7105,"ĠBow":7106,"ĠNan":7107,"ĠGre":7108,"Ġ36":7109,"ĠGermans":7110,"ervative":7111,"........":7112,"Ġbathroom":7113,"Ġanalysis":7114,"writer":7115,"Ġnumerous":7116,"Ġrandom":7117,"La":7118,"aa":7119,"greg":7120,"hole":7121,"Ġmental":7122,"Ġnest":7123,"ĠBattle":7124,"ĠBilly":7125,"ĠOli":7126,"ĠTrust":7127,"Ġmarked":7128,"Ġeighty":7129,"Ġpleasant":7130,"ĠCoast":7131,"Ġemergency":7132,"Ġdescribe":7133,"Ġinstructions":7134,"ropriate":7135,"ĠErasmus":7136,"RUN":7137,"pired":7138,"Ġtort":7139,"reck":7140,"Ġbon":7141,"orial":7142,"Ġrear":7143,"unte":7144,"Ġscript":7145,"Ġnights":7146,"gging":7147,"aho":7148,"Ġhighway":7149,"Ġsixth":7150,"Ġwoods":7151,"Ġenjoyed":7152,"ĠBetty":7153,"Ġinjury":7154,"ĠCHAPTER":7155,"Ġreviews":7156,"Ġinvestigation":7157,"Foot":7158,"Where":7159,"Ġborrow":7160,"itors":7161,"Ġfate":7162,"Ġdude":7163,"ĠTon":7164,"Ġhorn":7165,"uties":7166,"ĠBoss":7167,"elle":7168,"aph":7169,"Ġ500":7170,"eaking":7171,"Ġ1985":7172,"Ġexplan":7173,"Ġadvanced":7174,"ĠPolice":7175,"Ġrevolution":7176,"ĠTurkey":7177,"Ġapplication":7178,"Ġstole":7179,"ĠLib":7180,"ĠRab":7181,"ĠRod":7182,"andy":7183,"ipment":7184,"Ġflash":7185,"Ġairport":7186,"Ġwinner":7187,"Ġprotest":7188,"ĠSupp":7189,"ĠGeorgia":7190,"KE":7191,"KING":7192,"New":7193,"iat":7194,"â":7195,"Ġrib":7196,"Ġtooth":7197,"Ġtoys":7198,"Ġtools":7199,"Ġnominated":7200,"ĠSab":7201,"ĠSocial":7202,"Ġload":7203,"Ġcomposed":7204,"Ġera":7205,"Ġobserved":7206,"which":7207,"Ġswimming":7208,"bra":7209,"Ġtear":7210,"Ġbran":7211,"Ġpity":7212,"ela":7213,"onscious":7214,"Ġdraft":7215,"Ġ1964":7216,"Ġillust":7217,"Ġcooking":7218,"Ġphotograph":7219,"ĠSenator":7220,"Ġmoral":7221,"ĠFrancisco":7222,"cri":7223,"worth":7224,"Ġok":7225,"ĠShan":7226,"imal":7227,"ĠMah":7228,"ĠBha":7229,"unction":7230,"olt":7231,"osal":7232,"Ġphr":7233,"Ġcollea":7234,"Ġcommunication":7235,"Ġstronger":7236,"ĠChair":7237,"Ġpotential":7238,"Ġbuddy":7239,"Ġ¶":7240,"BS":7241,"Norm":7242,"Ph":7243,"san":7244,"ĠÌ":7245,"Ġticket":7246,"ĠBudd":7247,"ĠFa":7248,"Ġsaving":7249,"agement":7250,"Ġtalks":7251,"ĠAnth":7252,"ĠGoodbye":7253,"Ġbadly":7254,"ĠGreece":7255,"Ġperman":7256,"Ġindependence":7257,"Ġrecommend":7258,"Ġlonely":7259,"lav":7260,"Ġpale":7261,"Ġyard":7262,"lem":7263,"ĠMind":7264,"ĠDie":7265,"ĠPers":7266,"andal":7267,"osis":7268,"ogue":7269,"Ġtrains":7270,"aze":7271,"Ġeditor":7272,"Ġ1978":7273,"Ġexciting":7274,"ENT":7275,"Ġmethods":7276,"Ġatmosphere":7277,"Come":7278,"cont":7279,"wich":7280,"Ġchampion":7281,"Ġmile":7282,"ĠAw":7283,"Ġec":7284,"Ġvent":7285,"ĠVol":7286,"ĠAssy":7287,"Ġcenturies":7288,"Ġrecording":7289,"Ġopera":7290,"Ġoperating":7291,"rogen":7292,"Ġburning":7293,"Ġadopted":7294,"Ġwebsite":7295,"Ġwand":7296,"Ġfolks":7297,"ĠNa":7298,"unior":7299,"Ġdecor":7300,"Ġpainted":7301,"ĠMissouri":7302,"Ġstatistics":7303,"Ġruled":7304,"ĠWilson":7305,"Ġfrightened":7306,"Ġsucceeded":7307,"sa":7308,"hew":7309,"Ġsink":7310,"Ġdumb":7311,"Ġreference":7312,"ĠChi":7313,"rific":7314,"ĠFIFA":7315,"Ġapply":7316,"Ġapplied":7317,"ERS":7318,"Ġdifficulty":7319,"Ġidentity":7320,"ĠWalter":7321,"Ġrestaurant":7322,"Ġ/":7323,"Ġcert":7324,"Ġstab":7325,"ĠPen":7326,"Ġvision":7327,"weight":7328,"enses":7329,"Ġcommit":7330,"Ġregret":7331,"Ġsyn":7332,"Ġ1983":7333,"ĠSomebody":7334,"Ġdefin":7335,"Ġsteam":7336,"Ġsending":7337,"ĠPhilipp":7338,"ĠOffice":7339,"iÄĩ":7340,"Ġfart":7341,"encies":7342,"ĠTang":7343,"irus":7344,"sex":7345,"Ġanger":7346,"iffe":7347,"ĠPower":7348,"Ġjealous":7349,"elling":7350,"Ġbutt":7351,"ĠStuart":7352,"Ġdesert":7353,"thew":7354,"Ġfactory":7355,"Ġedition":7356,"Ġ1975":7357,"Ġreflect":7358,"ropol":7359,"Ġcorresp":7360,"Ġladder":7361,"Ġtracks":7362,"Ġenvironmental":7363,"Ġpuzz":7364,"100":7365,"fish":7366,"Ġnick":7367,"ĠCur":7368,"Ġath":7369,"this":7370,"venue":7371,"ĠThrough":7372,"Ġcovers":7373,"ĠAli":7374,"Ġacceler":7375,"chester":7376,"Ġbabies":7377,"ĠCommander":7378,"Ġregarded":7379,"glas":7380,"Ġrevealed":7381,"ĠVictoria":7382,"Ġridiculous":7383,"IE":7384,"ILL":7385,"sen":7386,"was":7387,"Ġwo":7388,"ompl":7389,"alo":7390,"Ġkeys":7391,"Ġequipment":7392,"Ġprovin":7393,"Ġvolume":7394,"Ġfleet":7395,"Ġexamples":7396,"Ġconduct":7397,"Ġcycle":7398,"Ġsurrounded":7399,"Ġromantic":7400,"39":7401,"BA":7402,"Ġtub":7403,"Ġsan":7404,"oti":7405,"Ġbeating":7406,"ĠHo":7407,"ĠHong":7408,"oof":7409,"Ġmeal":7410,"haniel":7411,"aws":7412,"Ġsecure":7413,"onto":7414,"Ġimpress":7415,"Ġ1930":7416,"Ġauthorities":7417,"Ġengineering":7418,"Ġburst":7419,"ĠCharlie":7420,"ĠBangl":7421,"Ġunusual":7422,"May":7423,"bage":7424,"hin":7425,"who":7426,"Ġtorn":7427,"Ġbul":7428,"itter":7429,"asters":7430,"ĠThing":7431,"otte":7432,"ĠAye":7433,"ĠSC":7434,"ĠHA":7435,"ĠCra":7436,"ĠNone":7437,"geon":7438,"Ġconver":7439,"ĠBeat":7440,"Ġending":7441,"Ġtrained":7442,"Ġincome":7443,"Ġincident":7444,"ĠLeg":7445,"195":7446,"Ġdevice":7447,"Ġdawn":7448,"Ġsymptoms":7449,"mother":7450,"Ġfans":7451,"omy":7452,"also":7453,"ĠEver":7454,"ĠKnow":7455,"Ġspo":7456,"Ġinstant":7457,"Ġinterests":7458,"Ġvisited":7459,"Ġannual":7460,"οu":7461,"ĠSystem":7462,"Ġindustrial":7463,"Ġliterally":7464,"ĠStephen":7465,"Ġdiscipl":7466,"ĠOliver":7467,"32":7468,"Ġpushed":7469,"Ġgained":7470,"Ġreject":7471,"achel":7472,"Ġven":7473,"agger":7474,"Ġspite":7475,"cip":7476,"Ġ1973":7477,"Ġ1974":7478,"Ġconfused":7479,"ĠHaven":7480,"Ġseparated":7481,"ĠKorean":7482,"ĠRadio":7483,"Ġvictims":7484,"Ġcurious":7485,"ĠSweden":7486,"quarters":7487,"45":7488,"kh":7489,"rim":7490,"tes":7491,"Ġwaves":7492,"onne":7493,"itable":7494,"Ġnod":7495,"ĠWed":7496,"Ġreward":7497,"utation":7498,"allel":7499,"ĠNumber":7500,"ĠPublic":7501,"ĠFound":7502,"Ġoverall":7503,"new":7504,"Ġputs":7505,"ensions":7506,"Ġelephant":7507,"Ġentrance":7508,"Ġimpression":7509,"Ġdrag":7510,"Ġholds":7511,"Ġinfl":7512,"Ġdefeat":7513,"Ġclaimed":7514,"Ġshopping":7515,"ĠDisney":7516,"Ġscholars":7517,"ĠAisne":7518,"TA":7519,"vo":7520,"Ġing":7521,"rete":7522,"ĠScience":7523,"ĠBalt":7524,"ĠPost":7525,"ĠEve":7526,"Ġwanting":7527,"Ġspr":7528,"izz":7529,"Ġconsult":7530,"Ġassume":7531,"ĠLeon":7532,"Ġinterrupt":7533,"ĠProbably":7534,"Ġleads":7535,"Ġ1969":7536,"ĠManip":7537,"Ġoccas":7538,"Ġopposed":7539,"Ġpractical":7540,"Ġmassive":7541,"Ġpermission":7542,"Ġinitial":7543,"IL":7544,"UD":7545,"iac":7546,"Ġfo":7547,"Ġyo":7548,"acher":7549,"ĠCL":7550,"ĠBBC":7551,"ifying":7552,"Ġrelation":7553,"Ġaccompl":7554,"ĠIndians":7555,"Ġincor":7556,"Ġfactor":7557,"Ġskills":7558,"Ġaircraft":7559,"Ġexpert":7560,"Ġ1940":7561,"Ġcreation":7562,"ĠQuick":7563,"Ġdepth":7564,"ursday":7565,"Ġremaining":7566,"Ġfortune":7567,"ĠProtest":7568,"Ġmathemat":7569,"ĠMargaret":7570,"note":7571,"Ġped":7572,"athered":7573,"ĠSn":7574,"Ġeager":7575,"Ġgoals":7576,"Ġdesk":7577,"Ġmargin":7578,"Ġregions":7579,"Ġcharged":7580,"Ġdriven":7581,"Ġmurdered":7582,"Ġbrilliant":7583,"SE":7584,"mouth":7585,"uable":7586,"iture":7587,"ĠIra":7588,"Ġpension":7589,"ĠTan":7590,"ĠSk":7591,"ĠCD":7592,"Ġrab":7593,"Ġsubsequ":7594,"attles":7595,"Ġ150":7596,"Ġcontrovers":7597,"comm":7598,"Ġclothing":7599,"Ġsources":7600,"Ġmobile":7601,"looking":7602,"ĠColumbia":7603,"ĠDawson":7604,"37":7605,"PP":7606,"Sh":7607,"vior":7608,"Ġwra":7609,"Ġgrey":7610,"Ġnort":7611,"ĠWW":7612,"Ġjumped":7613,"Ġsoci":7614,"ĠStra":7615,"Ġrode":7616,"hamed":7617,"Ġbits":7618,"Ġmilit":7619,"ĠWithout":7620,"ĠRobin":7621,"Ġsuffer":7622,"Ġaffected":7623,"ĠChildren":7624,"Ġapproximately":7625,"Å¡":7626,"Ġcore":7627,"Ġlung":7628,"ĠTenn":7629,"Ġrein":7630,"ĠOper":7631,"ĠGoo":7632,"ĠKr":7633,"Ġgrade":7634,"Ġacts":7635,"ĠHoward":7636,"Ġboats":7637,"Ġsubs":7638,"ĠJustice":7639,"Ġprovides":7640,"Ġdemocr":7641,"Ġlaunch":7642,"Ġgoddess":7643,"Ġescaped":7644,"intendo":7645,"lers":7646,"à¦":7647,"orage":7648,"Ġyep":7649,"Ġgri":7650,"ĠHay":7651,"stal":7652,"Ġdoctors":7653,"Ġknight":7654,"ĠJess":7655,"ieur":7656,"Ġshift":7657,"Ġvoices":7658,"Ġdeserve":7659,"ilding":7660,"fecture":7661,"Ġstudying":7662,"Ġpassage":7663,"Ġgrav":7664,"Ġsitu":7665,"Ġpossibility":7666,"Ġchecked":7667,"Ġpersons":7668,"Ġsacred":7669,"Ġbalance":7670,"Ġvehicle":7671,"Ġinhabitants":7672,"five":7673,"onic":7674,"Ġben":7675,"Ġcats":7676,"lets":7677,"Ġstress":7678,"ĠNar":7679,"ĠPoint":7680,"akers":7681,"Ġacted":7682,"Ġactions":7683,"ibi":7684,"ounce":7685,"Ġ1972":7686,"engers":7687,"Ġissued":7688,"Ġviews":7689,"Ġobjects":7690,"Ġwidely":7691,"Ġiniti":7692,"Ġknocked":7693,"Ġadministr":7694,"Ġstranger":7695,"Ġpregnant":7696,"point":7697,"uing":7698,"ĠTam":7699,"Ġrefe":7700,"sters":7701,"ĠBan":7702,"ĠNintendo":7703,"Ġneut":7704,"ĠJan":7705,"eline":7706,"ateful":7707,"Ġvalley":7708,"ĠDean":7709,"Ġcapable":7710,"Ġmusician":7711,"Ġ1968":7712,"rayed":7713,"Ġdistricts":7714,"Ġblocks":7715,"remony":7716,"Ġcapture":7717,"Ġmirror":7718,"Ġrevenge":7719,"ĠDouglas":7720,"ĠEddie":7721,"ĠNetherlands":7722,"26":7723,"Ġbones":7724,"orney":7725,"Ġpour":7726,"ĠCir":7727,"ador":7728,"ummy":7729,"Ġrings":7730,"apore":7731,"ĠThough":7732,"onsense":7733,"Ġhorror":7734,"Ġceremony":7735,"Ġcombined":7736,"Ġshadow":7737,"ĠAbsolutely":7738,"called":7739,"net":7740,"Ġpants":7741,"Ġreign":7742,"ĠCorn":7743,"ĠGen":7744,"ĠHead":7745,"uls":7746,"Ġjew":7747,"Ġconcl":7748,"Ġexha":7749,"owned":7750,"ĠThursday":7751,"Ġsplend":7752,"Ġuns":7753,"Ġimple":7754,"Ġshoulders":7755,"Ġconsists":7756,"Ġassign":7757,"Ġdrinks":7758,"Ġhoped":7759,"Ġprisoners":7760,"Ġnecessarily":7761,"Ġbesides":7762,"Ġastron":7763,"Ġpilot":7764,"Le":7765,"vor":7766,"Ġment":7767,"ĠMD":7768,"Ġseed":7769,"ĠLes":7770,"ĠHealth":7771,"ĠJoy":7772,"Ġrush":7773,"ĠStart":7774,"avan":7775,"ĠReady":7776,"Ġmonster":7777,"Ġlisted":7778,"Ġshortly":7779,"Ġtemple":7780,"chers":7781,"Ġdelivered":7782,"Ġwaters":7783,"Ġintellect":7784,"Ġadministration":7785,"Ġstruggle":7786,"Ġtypical":7787,"Ġtip":7788,"Ġsought":7789,"Ġfasc":7790,"ĠTok":7791,"etime":7792,"una":7793,"oli":7794,"andie":7795,"Ġconclud":7796,"Ġguarant":7797,"ĠBridge":7798,"Ġbitter":7799,"Ġpersonally":7800,"Ġpersonality":7801,"Ġconfidence":7802,"ĠTeam":7803,"Ġ1945":7804,"Ġtrem":7805,"laus":7806,"Ġcopies":7807,"ĠRepresent":7808,"Ġvideos":7809,"Ġearthqu":7810,"Ġdiscussion":7811,"Ġreduced":7812,"Ġindividuals":7813,"Ġbenefits":7814,"ĠSingapore":7815,"ĠMuhammad":7816,"elphia":7817,"AA":7818,"Ġwire":7819,"Ġmart":7820,"owing":7821,"ĠNi":7822,"ĠLad":7823,"ieve":7824,"ĠKa":7825,"ints":7826,"inton":7827,"Ġmeters":7828,"ĠBarb":7829,"Ġroads":7830,"aska":7831,"Ġcultural":7832,"Ġdebt":7833,"Ġmachines":7834,"Ġtender":7835,"Ġgraduated":7836,"ĠBruce":7837,"LES":7838,"bach":7839,"mail":7840,"Ġfuel":7841,"Ġtoast":7842,"Ġlt":7843,"ĠSin":7844,"adelphia":7845,"Ġstolen":7846,"ĠYe":7847,"ĠNet":7848,"ĠGib":7849,"ĠFree":7850,"ĠEight":7851,"ĠJay":7852,"earch":7853,"Ġ37":7854,"Ġ300":7855,"Ġmoments":7856,"aughters":7857,"Ġswall":7858,"Ġdiscovery":7859,"ĠAbd":7860,"Ġpurple":7861,"Ġprogramme":7862,"Ġcops":7863,"Ġfairy":7864,"Ġinvestment":7865,"Ġvert":7866,"Ġideal":7867,"ĠChannel":7868,"Ġsatisfied":7869,"ĠRailway":7870,"ĠTaiwan":7871,"Ġtoilet":7872,"John":7873,"Ġtale":7874,"Ġsoup":7875,"ĠAud":7876,"ĠFamily":7877,"eable":7878,"ulse":7879,"emet":7880,"Ġarts":7881,"Ġloyal":7882,"Ġguests":7883,"class":7884,"Ġregional":7885,"Ġequation":7886,"Ġsnake":7887,"Ġcrap":7888,"Ġversions":7889,"IST":7890,"hampionships":7891,"Ġverte":7892,"ĠEducation":7893,"Normandie":7894,"99":7895,"De":7896,"KS":7897,"era":7898,"ĠCost":7899,"rix":7900,"Ġrice":7901,"Ġrising":7902,"Ġours":7903,"ĠAlbert":7904,"Ġowners":7905,"ĠArts":7906,"Ġhearts":7907,"Ġ1963":7908,"Ġestim":7909,"ĠMetro":7910,"ĠCape":7911,"ĠBasse":7912,"Ġmerely":7913,"Ġneighborhood":7914,"RAT":7915,"UM":7916,"cus":7917,"cut":7918,"mph":7919,"Ġmal":7920,"Ġfed":7921,"Ġfestival":7922,"esome":7923,"asha":7924,"Ġnaked":7925,"Ġitems":7926,"ĠMorning":7927,"ĠBuck":7928,"ousing":7929,"Ġunha":7930,"Ġscenes":7931,"Ġremove":7932,"âĻª":7933,"Ġinsult":7934,"Ġmarks":7935,"Ġcontrolled":7936,"Ġfigured":7937,"ITH":7938,"OME":7939,"Ġprincipal":7940,"Ġmaiden":7941,"Ġgranted":7942,"31":7943,"HL":7944,"will":7945,"Ġbom":7946,"oria":7947,"Ġtomb":7948,"irmed":7949,"ĠBud":7950,"Ġknees":7951,"Ġvast":7952,"Ġslide":7953,"ĠArk":7954,"Ġminds":7955,"ĠConne":7956,"iami":7957,"Ġorganized":7958,"Ġdevices":7959,"ĠSteven":7960,"ĠBetter":7961,"Ġbowl":7962,"Ġliquid":7963,"Ġarranged":7964,"emetery":7965,"uv":7966,"ygen":7967,"Ġaid":7968,"lle":7969,"Ġnurse":7970,"ĠBand":7971,"ĠOtt":7972,"Ġ(_":7973,"ĠKan":7974,"oster":7975,"Ġrope":7976,"Ġcontem":7977,"issed":7978,"ĠBring":7979,"ĠSeven":7980,"azed":7981,"Ġextended":7982,"Ġcutting":7983,"Ġspiritual":7984,"ĠBaby":7985,"ĠMiller":7986,"Ġbranches":7987,"Cl":7988,"FC":7989,"bu":7990,"met":7991,"isk":7992,"Ġinfect":7993,"ĠAmb":7994,"ĠPress":7995,"ĠKal":7996,"Ġteen":7997,"Ġsmiled":7998,"ĠArgent":7999,"Ġlistened":8000,"Ġbedroom":8001,"derer":8002,"Ġ1947":8003,"ĠAustria":8004,"Ġkissed":8005,"ĠGrandma":8006,"nesday":8007,"Ġemotions":8008,"ón":8009,"Ġbegun":8010,"Ġanswers":8011,"cia":8012,"iency":8013,"Ġnuts":8014,"utor":8015,"ĠHoney":8016,"ĠMain":8017,"ĠBC":8018,"ĠPoor":8019,"ĠGordon":8020,"uled":8021,"Ġnoble":8022,"ĠUr":8023,"Ġprote":8024,"Ġcontext":8025,"Ġhousehold":8026,"Ġdistingu":8027,"Ġparish":8028,"Ġdepos":8029,"ĠCorpor":8030,"Ġquietly":8031,"ĠDarling":8032,"Ġdescription":8033,"Ġpunishment":8034,"ĠOfficer":8035,"Ġimplement":8036,"ãĥ":8037,"erable":8038,"Ġbike":8039,"Ġmamm":8040,"Ġlately":8041,"Ġstim":8042,"ctive":8043,"ĠFord":8044,"Ġarrow":8045,"Ġletting":8046,"Ġchildhood":8047,"Ġsurgery":8048,"Ġinspired":8049,"Ġstrate":8050,"uesday":8051,"ĠConference":8052,"Ġexplore":8053,"ĠShah":8054,"Ġnathaniel":8055,"Ġexecutive":8056,"Ġanaly":8057,"Ġdespite":8058,"ĠToronto":8059,"Ġpollution":8060,"Ġdemonstr":8061,"Ġnuclear":8062,"Ġabandoned":8063,"Ġexplanation":8064,"ĠÌģ":8065,"OP":8066,"Un":8067,"fly":8068,"press":8069,"Ġtag":8070,"Ġmud":8071,"Ġfond":8072,"Ġtoy":8073,"aro":8074,"kel":8075,"ĠPu":8076,"ĠLiber":8077,"Ġjoseph":8078,"Ġ1920":8079,"orders":8080,"Ġerror":8081,"Ġrelief":8082,"Ġalongside":8083,"Ġphotos":8084,"ĠDesp":8085,"ĠSpecial":8086,"Ġdomestic":8087,"Ġglobal":8088,"CT":8089,"Ġtries":8090,"Ġchampionship":8091,"Ġfab":8092,"Ġincl":8093,"athan":8094,"ĠSly":8095,"Ġforb":8096,"ĠPo":8097,"ĠFind":8098,"Ġjury":8099,"Ġcompar":8100,"Ġunlike":8101,"ĠAssembly":8102,"ĠAllen":8103,"Ġreturning":8104,"Ġpurs":8105,"lause":8106,"Ġvillages":8107,"Ġprofession":8108,"Ġpubl":8109,"Ġsailed":8110,"ĠHistor":8111,"Ġemotional":8112,"Ġcomposer":8113,"Ġjacket":8114,"Ġelder":8115,"Ġalternative":8116,"Ġsustain":8117,"Ġstrategy":8118,"gic":8119,"ouch":8120,"itched":8121,"Ġchamber":8122,"Ġgy":8123,"Ġgathered":8124,"Ġhockey":8125,"usive":8126,"ĠSweet":8127,"ifts":8128,"raph":8129,"usting":8130,"ĠInf":8131,"Ġuncom":8132,"Ġ34":8133,"Ġsmiling":8134,"ounced":8135,"Ġdrives":8136,"Ġ1977":8137,"Ġstepped":8138,"Ġ1944":8139,"Ġillness":8140,"Ġelections":8141,"phas":8142,"Ġreduce":8143,"Ġarchitect":8144,"Ġarchitecture":8145,"Ġmaximum":8146,"ĠPicard":8147,"Ġcorrespond":8148,"Tr":8149,"When":8150,"cop":8151,"hot":8152,"lan":8153,"ĠÄ":8154,"Ġfoss":8155,"ĠImp":8156,"lly":8157,"Ġyards":8158,"ĠBi":8159,"ĠBall":8160,"urches":8161,"ĠOd":8162,"umble":8163,"ĠUN":8164,"Ġspons":8165,"Ġimages":8166,"Ġdisg":8167,"Ġaccur":8168,"Ġcraw":8169,"Ġattacks":8170,"Ġannoy":8171,"Ġpersu":8172,"Ġdramatic":8173,"RY":8174,"gie":8175,"nat":8176,"Ġwars":8177,"Ġpeak":8178,"ombe":8179,"Ġthread":8180,"ĠMaine":8181,"ĠCroat":8182,"eau":8183,"ĠElect":8184,"ĠZe":8185,"Ġ1967":8186,"Ġdiagn":8187,"Ġcommander":8188,"ĠFinally":8189,"Ġ£":8190,"Ġsacrif":8191,"ĠCampbell":8192,"Ġcandidate":8193,"ĠGoogle":8194,"Ne":8195,"pent":8196,"ñ":8197,"Ġtack":8198,"imb":8199,"ĠHart":8200,"ĠRE":8201,"thm":8202,"ĠJu":8203,"Ġscored":8204,"Ġpromoted":8205,"Ġparliament":8206,"Ġpositions":8207,"Ġcrossing":8208,"ĠCheck":8209,"ĠPhiladelphia":8210,"Just":8211,"Mar":8212,"door":8213,"non":8214,"wing":8215,"Ġfir":8216,"aned":8217,"atures":8218,"ĠCole":8219,"rak":8220,"olves":8221,"Ġalpha":8222,"Ġagents":8223,"Ġthrone":8224,"Ġunderground":8225,"Ġassault":8226,"ĠIndones":8227,"Ġmeetings":8228,"ĠMmm":8229,"AND":8230,"Ġ1965":8231,"Ġparallel":8232,"Ġadmitted":8233,"ĠMcG":8234,"ĠKevin":8235,"ĠYOUR":8236,"Ġclubs":8237,"Ġidentified":8238,"ĠPalace":8239,"Ġfrequently":8240,"Ġpirate":8241,"ĠIdaho":8242,"Ġexpedition":8243,"Ġcooper":8244,"Ġfulf":8245,"Ġhills":8246,"Ġwashed":8247,"iao":8248,"Ġpron":8249,"Ġappropriate":8250,"onsieur":8251,"Ġwarning":8252,"ĠProdu":8253,"Ġfriendship":8254,"Ġoperated":8255,"ĠMatthew":8256,"ĠBrook":8257,"Ġelectricity":8258,"Ġexperiences":8259,"Ġheavily":8260,"Ġcapacity":8261,"Ah":8262,"Re":8263,"rons":8264,"sar":8265,"zed":8266,"Ġoption":8267,"Ġinse":8268,"Ġstairs":8269,"ĠDNA":8270,"Ġselect":8271,"Ġatom":8272,"Ġrug":8273,"ĠViv":8274,"Ġchrist":8275,"otted":8276,"Ġchart":8277,"Ġstrateg":8278,"Ġconfess":8279,"Ġlargely":8280,"ĠCentre":8281,"Ġexisting":8282,"ĠGlob":8283,"Ġintroduce":8284,"Ġaffair":8285,"Ġconstitution":8286,"33":8287,"oard":8288,"hab":8289,"ington":8290,"Ġdow":8291,"atically":8292,"Ġhunt":8293,"ĠAld":8294,"ĠAlf":8295,"Ġashamed":8296,"ifer":8297,"Ġcollabor":8298,"ographer":8299,"Ġcritics":8300,"Ġphysics":8301,"Ġviolent":8302,"ĠAirport":8303,"ĠHonor":8304,"ĠFreud":8305,"Ġvotes":8306,"ĠSanta":8307,"Ġconvinced":8308,"Ġrabbit":8309,"fit":8310,"iri":8311,"tan":8312,"ĠTar":8313,"ĠBishop":8314,"opher":8315,"ĠRilla":8316,"ĠForm":8317,"oyd":8318,"Ġprecious":8319,"Ġcolumn":8320,"amental":8321,"Ġreplace":8322,"Ġabsor":8323,"Ġsubjects":8324,"Ġchairman":8325,"Ġbreathing":8326,"rin":8327,"ĠAS":8328,"ĠSuff":8329,"Ġefficient":8330,"ĠHook":8331,"irts":8332,"ĠOri":8333,"ĠPot":8334,"ĠEconom":8335,"igs":8336,"velope":8337,"Ġheaded":8338,"Ġdefense":8339,"Ġexpecting":8340,"Ġabsolute":8341,"Ġdollar":8342,"Ġvolunte":8343,"Ġepisodes":8344,"Ġbehavior":8345,"ĠHawai":8346,"Ġexperienced":8347,"For":8348,"To":8349,"uate":8350,"Ġwicked":8351,"Ġsam":8352,"Ġfer":8353,"Ġdaughters":8354,"ĠSher":8355,"ĠSever":8356,"ĠMiami":8357,"ĠBor":8358,"ĠBible":8359,"Ġash":8360,"ĠFederal":8361,"Ġneat":8362,"Ġpartly":8363,"Ġgrateful":8364,"Ġsets":8365,"Ġreputation":8366,"Ġservant":8367,"ĠTechn":8368,"Ġpicking":8369,"Ġ1941":8370,"Ġengineer":8371,"ĠDoesn":8372,"Ġprepare":8373,"ĠGolden":8374,"ĠThings":8375,"Ill":8376,"pass":8377,"icia":8378,"ĠWonder":8379,"ĠHospital":8380,"roid":8381,"ĠPret":8382,"ĠJos":8383,"odge":8384,"Ġnowhere":8385,"ciences":8386,"Ġenorm":8387,"Ġcoordin":8388,"hedral":8389,"issa":8390,"pective":8391,"INE":8392,"certain":8393,"Ġsooner":8394,"Ġpursu":8395,"Ġtreasure":8396,"Ġalbums":8397,"Ġmessages":8398,"ĠMexican":8399,"Ġoxygen":8400,"Ġaltogether":8401,"ratulations":8402,"Ġdelicious":8403,"case":8404,"heme":8405,"erted":8406,"haw":8407,"Ġcod":8408,"Ġcattle":8409,"Ġtool":8410,"Ġpant":8411,"Ġwashing":8412,"ĠHog":8413,"ĠMos":8414,"ĠNOT":8415,"Ġseats":8416,"ĠLo":8417,"istol":8418,"ĠStone":8419,"Ġcontained":8420,"Ġrecy":8421,"Ġ48":8422,"Ġacad":8423,"Ġadding":8424,"Ġlesson":8425,"Ġhated":8426,"Ġallowing":8427,"ĠRomania":8428,"Ġprojects":8429,"Ġpresidential":8430,"Ġpurposes":8431,"Ġdocuments":8432,"ĠSpeaker":8433,"Ġmystery":8434,"ĠSlyne":8435,"Than":8436,"four":8437,"hus":8438,"mont":8439,"Ġinch":8440,"ĠCass":8441,"ĠBav":8442,"ĠDale":8443,"ĠGun":8444,"ĠLew":8445,"ello":8446,"aks":8447,"Ġspoon":8448,"Ġextent":8449,"Ġpossession":8450,"ĠBlood":8451,"Ġprobability":8452,"Ġmurderer":8453,"Ġnaturally":8454,"Ġrailroad":8455,"Ġbaseball":8456,"Ġthreatened":8457,"Ġessentially":8458,"ĠHeaven":8459,"ĠWednesday":8460,"One":8461,"long":8462,"laughter":8463,"wick":8464,"hah":8465,"Ġfaced":8466,"orious":8467,"Ġdating":8468,"ĠTuesday":8469,"Ġthir":8470,"Ġstones":8471,"ĠDu":8472,"ĠFC":8473,"ĠFu":8474,"agers":8475,"Ġformat":8476,"ĠForget":8477,"Ġlanded":8478,"ĠEmma":8479,"odecahedron":8480,"Ġtesting":8481,"Ġproperties":8482,"Ġdipl":8483,"Ġcollected":8484,"ĠBetween":8485,"Ġprinciple":8486,"Ġtelephone":8487,"Ġillegal":8488,"ĠAnthony":8489,"ĠPicardie":8490,".&":8491,"erest":8492,"yard":8493,"Ġbone":8494,"usa":8495,"ĠAren":8496,"ĠSP":8497,"ĠSav":8498,"ĠSister":8499,"Ġbeings":8500,"ithm":8501,"ĠPrem":8502,"Ġnotable":8503,"ĠRet":8504,"Ġworn":8505,"itty":8506,"Ġages":8507,"Ġgray":8508,"Ġchoo":8509,"Ġsmooth":8510,"Ġdifferences":8511,"Ġoblig":8512,"Ġextend":8513,"ĠHarrison":8514,"Ġvaluable":8515,"ĠMorgan":8516,"Ġvacc":8517,"Ġadults":8518,"Ġfrank":8519,"ller":8520,"ĠYan":8521,"ĠDal":8522,"ilton":8523,"iga":8524,"Ġinches":8525,"Ġsites":8526,"Ġadvoc":8527,"Ġapproved":8528,"Ġpulling":8529,"smith":8530,"Ġlatest":8531,"Footnote":8532,"dney":8533,"has":8534,"itled":8535,"attered":8536,"Ġnap":8537,"Ġhes":8538,"ĠMY":8539,"ĠMot":8540,"ĠBah":8541,"Ġstable":8542,"Ġasks":8543,"ĠAndy":8544,"Ġuseless":8545,"Ġprosec":8546,"Ġtwin":8547,"Ġgrace":8548,"Ġbrid":8549,"Ġinvasion":8550,"Ġstops":8551,"Ġcausing":8552,"coming":8553,"Ġamongst":8554,"ĠWHAT":8555,"ĠInternet":8556,"95":8557,"bro":8558,"hist":8559,"rum":8560,"Ġtheatre":8561,"ĠAM":8562,"Ġthorough":8563,"ĠLuther":8564,"ĠFace":8565,"ules":8566,"agne":8567,"icking":8568,"ixon":8569,"ĠAsk":8570,"Ġattached":8571,"Ġcourts":8572,"Ġpasses":8573,"ĠAbb":8574,"Ġequival":8575,"Ġstrongly":8576,"ĠMinistry":8577,"bourne":8578,"Ġinitially":8579,"cers":8580,"Ġtank":8581,"iner":8582,"eness":8583,"Ġpipe":8584,"Ġhits":8585,"ĠNAR":8586,"ĠPass":8587,"Ġvul":8588,"pei":8589,"Ġlover":8590,"Ġadj":8591,"Ġprecise":8592,"fulness":8593,"formation":8594,"Ġformal":8595,"Ġdefined":8596,"prise":8597,"ĠAmong":8598,"Ġstarred":8599,"III":8600,"Ġportion":8601,"Ġclaims":8602,"Are":8603,"LRB":8604,"eenth":8605,"Ġtropical":8606,"Ġwing":8607,"Ġsar":8608,"Ġbark":8609,"Ġdea":8610,"oos":8611,"outheast":8612,"ĠOrigin":8613,"ĠLive":8614,"Ġdece":8615,"ĠJerry":8616,"udes":8617,"Ġdownstairs":8618,"gines":8619,"irds":8620,"Ġsingles":8621,"ĠMean":8622,"ĠPlan":8623,"Ġappointment":8624,"Ġinternal":8625,"Ġunconscious":8626,"Ġexercise":8627,"Ġunhappy":8628,"On":8629,"RRB":8630,"Siden":8631,"lie":8632,"pool":8633,"°":8634,"inem":8635,"essee":8636,"Ġnit":8637,"oty":8638,"Ġthief":8639,"ĠYug":8640,"ĠLock":8641,"...!":8642,"ĠEnd":8643,"Ġnewly":8644,"ggie":8645,"Ġcharges":8646,"Ġparad":8647,"Ġawake":8648,"Ġcleaning":8649,"Ġsuperior":8650,"Ġbeaten":8651,"Ġbanks":8652,"Ġlicense":8653,"Ġencourage":8654,"Ġlinear":8655,"ĠLisa":8656,"Ġdedicated":8657,"Ġdesperate":8658,"ĠIraq":8659,"Sidenote":8660,"bal":8661,"lad":8662,"oons":8663,"Ġfaint":8664,"oration":8665,"Ġdomin":8666,"Ġyield":8667,"ĠMs":8668,"ĠCamer":8669,"ĠLin":8670,"ĠLion":8671,"Ġsheet":8672,"Ġwherever":8673,"ordinary":8674,"cling":8675,"Ġshower":8676,"Ġslipped":8677,"Ġheadquarters":8678,"Ġindic":8679,"ĠTHIS":8680,"Ġmodels":8681,"ĠTomorrow":8682,"Ġspirits":8683,"Ġrepeat":8684,"ĠDespite":8685,"48":8686,"oz":8687,"ã":8688,"ç":8689,"Ġindu":8690,"ĠDri":8691,"ĠDog":8692,"ĠGran":8693,"opp":8694,"uda":8695,"rang":8696,"Ġpride":8697,"Ġ33":8698,"Ġ38":8699,"Ġcarriage":8700,"Ġleaf":8701,"ibilities":8702,"Ġentry":8703,"Ġinstinct":8704,"Ġrestrict":8705,"Ġdeveloping":8706,"Ġclassic":8707,"Ġruined":8708,"going":8709,"Ġnegoti":8710,"Ġstores":8711,"ĠAnton":8712,"ĠOlympic":8713,"Ġprinted":8714,"Ġacquired":8715,"ĠSilver":8716,"Ġpirates":8717,"Ġrenamed":8718,"Con":8719,"cript":8720,"die":8721,"fire":8722,"nor":8723,"sur":8724,"isen":8725,"ĠID":8726,"Ġdoo":8727,"Ġdates":8728,"ĠSO":8729,"ĠSally":8730,"acles":8731,"ĠHig":8732,"ĠMoo":8733,"Ġassociation":8734,"ĠNine":8735,"ĠGene":8736,"ĠRea":8737,"ĠFat":8738,"Ġsoap":8739,"Ġuser":8740,"aste":8741,"neath":8742,"teenth":8743,"ologists":8744,"Ġstandards":8745,"Ġyoungest":8746,"Ġstrict":8747,"Ġhurts":8748,"Ġ1966":8749,"Ġwondered":8750,"Ġconstantly":8751,"ĠCommon":8752,"ĠPhilip":8753,"Ġregarding":8754,"ĠMountain":8755,"keeper":8756,"Ġrescue":8757,"Mic":8758,"inter":8759,"Ġwoo":8760,"Ġwishes":8761,"hara":8762,"iders":8763,"ĠWon":8764,"ĠWars":8765,"ĠCas":8766,"ĠBorn":8767,"Ġanch":8768,"ĠDin":8769,"Ġseized":8770,"ĠLind":8771,"Ġsup":8772,"ĠKelly":8773,"Ġagency":8774,"Ġpeasant":8775,"Ġdisag":8776,"Ġcris":8777,"ĠArmen":8778,"Ġconfident":8779,"Ġrivers":8780,"Ġ1954":8781,"ĠDrink":8782,"aughing":8783,"idae":8784,"uki":8785,"ĠLaura":8786,"Ġtechnical":8787,"Ġgenus":8788,"Ġtaxes":8789,"ĠChristianity":8790,"Ġinjured":8791,"Ġprinciples":8792,"Ġblew":8793,"Ġnewspapers":8794,"Ġrelatively":8795,"Ġrapidly":8796,"Ġinvented":8797,"Ġmysterious":8798,"Ġfantastic":8799,"Ġcotton":8800,"Ġphrase":8801,"Ġnickn":8802,"47":8803,"iro":8804,"Ġtheater":8805,"Ġwreck":8806,"Ġfisher":8807,"Ġduties":8808,"Ġgal":8809,"icians":8810,"ĠSave":8811,"ĠSports":8812,"Ġthunder":8813,"ĠYoon":8814,"Ġgosh":8815,"unting":8816,"Ġsav":8817,"Ġargue":8818,"pert":8819,"ucker":8820,"Ġgreatly":8821,"Ġexpressed":8822,"Ġmovements":8823,"Ġ75":8824,"Ġfellows":8825,"Ġorganizations":8826,"Ġruin":8827,"ĠPolish":8828,"ĠJews":8829,"ĠPanama":8830,"Ġjournalist":8831,"Ġadventure":8832,"ĠFollowing":8833,"cular":8834,"phan":8835,"race":8836,"Ġphen":8837,"Ġlap":8838,"Ġgross":8839,"ĠAff":8840,"ĠSounds":8841,"ĠWild":8842,"urg":8843,"ĠFif":8844,"ĠKings":8845,"aga":8846,"Ġwrites":8847,"ĠAncient":8848,"Ġslip":8849,"ĠDevelop":8850,"Ġobst":8851,"Ġairpl":8852,"Ġ1956":8853,"Ġarrive":8854,"Ġgenius":8855,"Ġemotion":8856,"Ġresource":8857,"Ġoccupied":8858,"ĠRollo":8859,"Ġvessels":8860,"Ġkilomet":8861,"ifferent":8862,"Ex":8863,"ridge":8864,"Ġtube":8865,"Ġcant":8866,"ĠIV":8867,"ĠIce":8868,"Ġtoler":8869,"ĠHim":8870,"ĠHoll":8871,"ĠCook":8872,"stan":8873,"ĠProm":8874,"ĠLow":8875,"umps":8876,"Ġaboard":8877,"Ġproport":8878,"Ġoffering":8879,"Ġbrush":8880,"Ġguide":8881,"ensity":8882,"ĠChuck":8883,"Ġmighty":8884,"ilda":8885,"Ġelimin":8886,"Ġglance":8887,"ĠShort":8888,"ĠClark":8889,"Ġarticles":8890,"Ġsolo":8891,"Ġeighteen":8892,"Ġinvolve":8893,"Ġgrandfather":8894,"Ġdebate":8895,"Ġpolicies":8896,"Ġthrowing":8897,"Ġopportunities":8898,"Ġlifted":8899,"ĠHollywood":8900,"cription":8901,"Ġprovinces":8902,"ĠTennessee":8903,"uy":8904,"ÅŁ":8905,"ĠBase":8906,"ĠField":8907,"uma":8908,"Ġric":8909,"oslav":8910,"hang":8911,"abel":8912,"ĠKN":8913,"ĠUP":8914,"berry":8915,"hibit":8916,"Ġengines":8917,"rane":8918,"Ġscheme":8919,"Ġlasted":8920,"Ġcrimes":8921,"Ġopens":8922,"Ġslave":8923,"Ġswift":8924,"Ġhurricane":8925,"Ġgrandma":8926,"Ġprivile":8927,"Ġforests":8928,"Ġcells":8929,"Ġdistribution":8930,"Ġintelligence":8931,"ropolitan":8932,"ĠTokyo":8933,"Laughter":8934,"zes":8935,"Ġtiss":8936,"Ġdign":8937,"Ġdump":8938,"ico":8939,"icing":8940,"Ġbegged":8941,"imore":8942,"ĠNed":8943,"ĠPardon":8944,"Ġselection":8945,"Ġupd":8946,"ĠUt":8947,"tainment":8948,"Ġfourteen":8949,"Ġretreat":8950,"Ġemperor":8951,"Ġconfirmed":8952,"Ġservants":8953,"Ġrival":8954,"Ġprofit":8955,"ĠGrant":8956,"chae":8957,"ĠChap":8958,"Ġconcerns":8959,"Ġcompete":8960,"Ġsecretary":8961,"Ġprimarily":8962,"ĠPatrick":8963,"Ġfortun":8964,"rified":8965,"Ġwrestling":8966,"Ġnearer":8967,"Ġpermanent":8968,"BI":8969,"VID":8970,"cour":8971,"ds":8972,"Ġbot":8973,"Ġcub":8974,"ĠALL":8975,"ĠMA":8976,"cho":8977,"Ġjam":8978,"Ġconven":8979,"Ġintent":8980,"Ġintense":8981,"ĠArm":8982,"Ġaccused":8983,"Ġformation":8984,"Ġemphas":8985,"ĠAusten":8986,"Ġlaura":8987,"ĠSeries":8988,"ĠSydney":8989,"Ġangle":8990,"Ġcomputers":8991,"after":8992,"Ġsurvived":8993,"Ġcelebrated":8994,"ĠJudy":8995,"Ġinstruments":8996,"Ġbubbles":8997,"Ġconcrete":8998,"ĠLAUGH":8999,"75":9000,"Ahm":9001,"Hey":9002,"Ġsna":9003,"Ġbent":9004,"Ġbold":9005,"ori":9006,"ĠAvenue":9007,"Ġreaching":9008,"ĠYu":9009,"Ġangel":9010,"ĠDON":9011,"tery":9012,"Ġvon":9013,"Ġvain":9014,"Ġrolled":9015,"ĠUnless":9016,"ĠMarie":9017,"Ġworldwide":9018,"Ġregist":9019,"Ġdistant":9020,"Ġobtained":9021,"lessly":9022,"theless":9023,"Ġspeaker":9024,"Ġsquad":9025,"Ġ1948":9026,"Ġmerged":9027,"Ġwooden":9028,"Ġlieutenant":9029,"ĠCongratulations":9030,"ĠMoz":9031,"ĠLuke":9032,"Ġliterary":9033,"Ġholes":9034,"Ġprayer":9035,"Ġvacation":9036,"Ġplatforms":9037,"Ġtickets":9038,"ĠHitler":9039,"Ġincredible":9040,"Ġdefinition":9041,"ré":9042,"Ġaye":9043,"inations":9044,"inction":9045,"Ġsample":9046,"Ġobey":9047,"Ġmath":9048,"Ġfake":9049,"orf":9050,"omer":9051,"ĠSame":9052,"ĠWITH":9053,"ĠMun":9054,"ĠMolly":9055,"ĠPitt":9056,"ulating":9057,"umph":9058,"Ġcomed":9059,"Ġintention":9060,"ĠStat":9061,"Ġspark":9062,"Ġoffers":9063,"ĠVar":9064,"ĠVill":9065,"Ġfled":9066,"ĠReal":9067,"Ġ400":9068,"Ġheading":9069,"Ġpassengers":9070,"Ġcreatures":9071,"Ġ1942":9072,"ARD":9073,"Ġarrival":9074,"Ġrecognition":9075,"ĠContin":9076,"Ġwhispered":9077,"Ġconstructed":9078,"Ġsemi":9079,"Ġphase":9080,"ĠTolombe":9081,"Ġsplendid":9082,"Ahmad":9083,"ĠTolombeh":9084,"fa":9085,"kind":9086,"rary":9087,"ãĤ":9088,"Ġwounds":9089,"Ġsou":9090,"Ġmos":9091,"Ġfiction":9092,"arth":9093,"Ġnic":9094,"Ġnarr":9095,"icit":9096,"lete":9097,"Ġbend":9098,"ĠWoman":9099,"ĠBos":9100,"ĠDyn":9101,"Ġshoe":9102,"avig":9103,"Ġkeen":9104,"Ġfounder":9105,"ĠFranz":9106,"Ġproducing":9107,"Ġ1961":9108,"shit":9109,"ova":9110,"ĠTelevision":9111,"Ġdivide":9112,"Ġreasonable":9113,"Ġ1952":9114,"Ġcompeted":9115,"Ġdeeply":9116,"Ġexception":9117,"Ġhosted":9118,"Ġaffairs":9119,"Ġseventh":9120,"Ġethnic":9121,"Ġapologize":9122,"ĠBangladesh":9123,"uct":9124,"orous":9125,"Ġlamb":9126,"Ġna":9127,"ĠMort":9128,"Ġwhoops":9129,"ĠEp":9130,"Ġalgor":9131,"ellow":9132,"Ġwheels":9133,"Ġpreced":9134,"Ġremote":9135,"ĠAlways":9136,"Ġsla":9137,"iolet":9138,"ĠSpring":9139,"sels":9140,"Ġ1962":9141,"iki":9142,"Ġclassical":9143,"Ġidentify":9144,"ĠRegion":9145,"Ġearliest":9146,"ĠMountains":9147,"Ġclimb":9148,"Ġroughly":9149,"Ġmemories":9150,"Ġpoetry":9151,"Ġbacter":9152,"Ġaccompan":9153,"ĠReagan":9154,"from":9155,"Ġawards":9156,"Ġbars":9157,"Ġmouse":9158,"anne":9159,"Ġpushing":9160,"omed":9161,"ĠCON":9162,"ĠBry":9163,"ĠNations":9164,"Ġplates":9165,"Ġtrunk":9166,"Ġloan":9167,"ĠVeg":9168,"iped":9169,"Ġlongest":9170,"Ġ46":9171,"alend":9172,"ĠLeft":9173,"Ġdeaths":9174,"Ġ1958":9175,"ĠJohan":9176,"Ġstraw":9177,"Ġtests":9178,"ĠEnough":9179,"ĠMaryland":9180,"Ġbags":9181,"Ġgradually":9182,"Ġconsiderable":9183,"Ġdiseases":9184,"Ġhonestly":9185,"Ġdemanded":9186,"Ġachieved":9187,"Ġpaintings":9188,"lar":9189,"Ġsang":9190,"itals":9191,"Ġpap":9192,"Ġpump":9193,"Ġgreet":9194,"ĠHope":9195,"ĠBir":9196,"alling":9197,"uration":9198,"ĠGro":9199,"ĠLl":9200,"igen":9201,"abi":9202,"agle":9203,"pton":9204,"urname":9205,"Ġreply":9206,"ĠChristians":9207,"Ġmode":9208,"uese":9209,"ĠColor":9210,"Ġsailing":9211,"ĠClear":9212,"ĠCareer":9213,"Ġearthquake":9214,"42":9215,"instein":9216,"Ġsorrow":9217,"Ġdull":9218,"Ġgrief":9219,"ĠMoon":9220,"ĠBul":9221,"ĠPra":9222,"ĠGardens":9223,"Ġje":9224,"elson":9225,"Ġpee":9226,"Ġloving":9227,"actor":9228,"ruits":9229,"Ġchurches":9230,"Ġhanded":9231,"Ġcray":9232,"Ġ55":9233,"Ġmonarch":9234,"Ġinteract":9235,"Ġevident":9236,"Ġmedium":9237,"Ġawesome":9238,"Ġindex":9239,"Ġmerry":9240,"Ġimmediate":9241,"UST":9242,"Ġcategory":9243,"Ġcrisis":9244,"97":9245,"Can":9246,"cr":9247,"Ġmask":9248,"Ġgest":9249,"ĠHop":9250,"ĠMoney":9251,"ĠCru":9252,"sea":9253,"ĠDear":9254,"ĠGary":9255,"Ġshining":9256,"Ġrit":9257,"emon":9258,"resents":9259,"Ġvice":9260,"ĠKnight":9261,"Ġfever":9262,"Ġcounting":9263,"ternal":9264,"otto":9265,"Ġpassenger":9266,"OULD":9267,"Ġexcit":9268,"ĠUSA":9269,"ĠNorman":9270,"Go":9271,"NG":9272,"oves":9273,"rors":9274,"there":9275,"real":9276,"Ġfox":9277,"ingo":9278,"Ġinher":9279,"asia":9280,"ĠAR":9281,"ĠAz":9282,"idel":9283,"ĠNik":9284,"unts":9285,"ulpt":9286,"umin":9287,"ĠKaren":9288,"Ġwhoever":9289,"ĠVin":9290,"ordan":9291,"Ġunderneath":9292,"Ġextensive":9293,"Ġdivine":9294,"Ġ1946":9295,"ĠBoyer":9296,"Ġextraordinary":9297,"ĠGirls":9298,"Ġcontaining":9299,"ĠTaipei":9300,"ĠShiv":9301,"ĠWayne":9302,"Ġconsciousness":9303,"ĠSuffolk":9304,"des":9305,"jud":9306,"low":9307,"vation":9308,"Ġwoke":9309,"Ġbrig":9310,"Ġpup":9311,"Ġpowder":9312,"ĠSum":9313,"uting":9314,"ĠHappy":9315,"sell":9316,"ĠPict":9317,"ĠRu":9318,"oland":9319,"Ġroots":9320,"angers":9321,"ĠAnim":9322,"Ġassigned":9323,"Ġrepresents":9324,"Ġexposed":9325,"Ġlessons":9326,"Ġanimated":9327,"Ġcomplain":9328,"Ġutter":9329,"Ġrarely":9330,"Ġcontrast":9331,"ĠTaylor":9332,"Ġreckon":9333,"Ġfarther":9334,"Wh":9335,"bes":9336,"gas":9337,"mate":9338,"mates":9339,"nis":9340,"âģ":9341,"Ġfare":9342,"Ġinner":9343,"Ġholy":9344,"eters":9345,"ĠAst":9346,"Ġitem":9347,"idency":9348,"ĠTheatre":9349,"Ġ\"...":9350,"Ġknee":9351,"ĠFur":9352,"ntown":9353,"ighed":9354,"Ġserves":9355,"Ġfactors":9356,"ĠAdams":9357,"Ġ1943":9358,"ĠMiche":9359,"Ġrequires":9360,"Ġstarring":9361,"Ġ1938":9362,"load":9363,"Ġrelationships":9364,"Ġannounce":9365,"Ġessential":9366,"Ġdistributed":9367,"ĠForest":9368,"cticut":9369,"ĠJonathan":9370,"âģĦ":9371,"49":9372,"fle":9373,"life":9374,"pack":9375,"Ġboring":9376,"ĠHuman":9377,"ĠCamb":9378,"antry":9379,"ĠRos":9380,"Ġalien":9381,"osity":9382,"Ġexists":9383,"Ġcloth":9384,"ĠVI":9385,"Ġpoem":9386,"ĠDoc":9387,"Ġbelt":9388,"Then":9389,"Ġdecent":9390,"Ġsounded":9391,"ĠPlace":9392,"Ġstructures":9393,"Ġtemporary":9394,"Ġsweetheart":9395,"Ġmotiv":9396,"asket":9397,"ĠSecurity":9398,"ĠPoland":9399,"Ġmistakes":9400,"Ġamounts":9401,"Ġprisoner":9402,"Ġsearching":9403,"Ġfacilities":9404,"ĠBobby":9405,"Ġhistoric":9406,"Ġofficials":9407,"Ġcustomers":9408,"Ġremarkable":9409,"ĠHotel":9410,"ĠPapa":9411,"ĠPortuguese":9412,"EF":9413,"EM":9414,"dam":9415,"je":9416,"laughs":9417,"Ġtoss":9418,"Ġpond":9419,"aton":9420,"ĠHou":9421,"ĠHug":9422,"ĠCreek":9423,"ĠBY":9424,"ĠLog":9425,"Ġlied":9426,"olis":9427,"three":9428,"arts":9429,"Ġusers":9430,"Ġintend":9431,"Ġtram":9432,"Ġblast":9433,"Ġguards":9434,"ĠArn":9435,"gedy":9436,"ribed":9437,"Ġeval":9438,"Ġwinds":9439,"Ġpresentation":9440,"Ġ1959":9441,"Ġsumm":9442,"ĠSuz":9443,"Ġimagination":9444,"Ġfrozen":9445,"Ġopposition":9446,"Ġscholar":9447,"Ġanxious":9448,"Ġtroubles":9449,"ĠLabour":9450,"ĠConnecticut":9451,"43":9452,"IVE":9453,"num":9454,"organ":9455,"esar":9456,"otes":9457,"alph":9458,"Ġthri":9459,"ĠMale":9460,"ĠCE":9461,"Ġstorage":9462,"Ġkings":9463,"chi":9464,"ĠPR":9465,"ĠRus":9466,"ĠSof":9467,"Ġadapt":9468,"Ġ39":9469,"Ġrecovered":9470,"Ġtrap":9471,"Ġdistract":9472,"ĠGeography":9473,"Ġvisible":9474,"ĠXX":9475,"Ġprotected":9476,"Ġexisted":9477,"Ġvisitors":9478,"ĠAdminist":9479,"Ġgoddamn":9480,"Ġbubble":9481,"Ġuniversities":9482,"Ġmanufacture":9483,"ĠMuslims":9484,"ĠVietnam":9485,"ĠTurkish":9486,"ĠProtestant":9487,"Ġenormous":9488,"ão":9489,"Ġexcitement":9490,"gro":9491,"gate":9492,"occ":9493,"inet":9494,"itated":9495,"Ġdial":9496,"ĠSet":9497,"Ġey":9498,"Ġabst":9499,"Ġorphan":9500,"Ġrural":9501,"Ġspaces":9502,"Ġrecon":9503,"ĠBeing":9504,"Ġsynt":9505,"Ġoffices":9506,"Ġdepression":9507,"Ġpoliceman":9508,"ĠFinn":9509,"ĠAlexand":9510,"Ġspecifically":9511,"ĠCarlos":9512,"ĠEntertainment":9513,"ĠHAVE":9514,"ĠManipur":9515,"equ":9516,"wind":9517,"Ġcows":9518,"Ġmr":9519,"Ġmister":9520,"ushes":9521,"state":9522,"ĠPay":9523,"ĠJam":9524,"orted":9525,"Ġclown":9526,"Ġprices":9527,"pless":9528,"Ġbuff":9529,"gger":9530,"ĠProgram":9531,"shine":9532,"ĠPeace":9533,"alda":9534,"Ġclosing":9535,"Ġdepending":9536,"piration":9537,"Ġdivorced":9538,"ĠPersonal":9539,"Illustration":9540,"86":9541,"GRUN":9542,"MAN":9543,"hh":9544,"master":9545,"po":9546,"Ġtune":9547,"orters":9548,"Ġpunch":9549,"Ġnonsense":9550,"leans":9551,"ĠCard":9552,"Ġstamp":9553,"Ġdode":9554,"ĠLiz":9555,"ĠRan":9556,"ĠRound":9557,"olas":9558,"olve":9559,"ĠJordan":9560,"cknow":9561,"ĠKy":9562,"Ġscary":9563,"Ġwarn":9564,"Ġassass":9565,"Ġelsewhere":9566,"Ġfacts":9567,"ĠĠĠĠĠĠĠĠĠ":9568,"Ġproviding":9569,"Ġ1949":9570,"ĠGrace":9571,"Ġdamaged":9572,"Ġrepresenting":9573,"Ġhopes":9574,"Ġcelebrate":9575,"Ġconducted":9576,"Ġfrogs":9577,"Ġinternet":9578,"Ġsurrounding":9579,"Ġexclaimed":9580,"Ġwriters":9581,"ĠNapole":9582,"Ġincorpor":9583,"Ġtremend":9584,"ĠMeanwhile":9585,"'?":9586,"41":9587,"two":9588,"erick":9589,"nda":9590,"itage":9591,"Ġdirt":9592,"Ġisol":9593,"Ġbears":9594,"ĠWrest":9595,"ĠWAS":9596,"utiful":9597,"ĠCe":9598,"ĠNelson":9599,"ĠDude":9600,"Ġshops":9601,"Ġorchestra":9602,"Ġsauce":9603,"Ġgoodbye":9604,"Ġundert":9605,"ective":9606,"hesis":9607,"Ġkinda":9608,"Ġcleared":9609,"Ġfunctions":9610,"ribly":9611,"Ġcurtain":9612,"ĠAustrian":9613,"ĠHaving":9614,"Ġdifficulties":9615,"Ġsafely":9616,"Ġjudgment":9617,"Ġbreathe":9618,"Ġinjuries":9619,"Ġgraduate":9620,"Ġbarely":9621,"ĠCorporation":9622,"ĠPretty":9623,"ĠMoore":9624,"):":9625,"IA":9626,"SH":9627,"div":9628,"gi":9629,"xual":9630,"ÂĿ":9631,"Ġvel":9632,"Ġaired":9633,"orse":9634,"Ġdwell":9635,"Ġhid":9636,"idering":9637,"ĠCertain":9638,"Ġhers":9639,"about":9640,"Ġbackwards":9641,"ĠUnlike":9642,"pected":9643,"Ġinsist":9644,"Ġparticles":9645,"Ġlimits":9646,"Ġresear":9647,"Ġfunds":9648,"Ġattempted":9649,"Ġbehalf":9650,"LAUGH":9651,"Ġlinked":9652,"ĠHamilton":9653,"ĠBaltimore":9654,"cury":9655,"rome":9656,"sk":9657,"wi":9658,"wall":9659,"heastern":9660,"Ġwax":9661,"oust":9662,"oni":9663,"Ġnations":9664,"ĠNich":9665,"Ġseas":9666,"ĠGET":9667,"ĠFame":9668,"ĠJa":9669,"Ġcance":9670,"Ġrude":9671,"Ġarc":9672,"Ġclin":9673,"Ġfee":9674,"Ġenvelope":9675,"ermans":9676,"ĠTherefore":9677,"ailed":9678,"ocks":9679,"ahn":9680,"ĠGodd":9681,"Ġdecre":9682,"Ġtransm":9683,"ĠBarry":9684,"Ġdestruction":9685,"change":9686,"Ġintroduction":9687,"ĠCrown":9688,"ĠWinter":9689,"Ġtypically":9690,"Ġtransferred":9691,"ĠChairman":9692,"Ġgravity":9693,"ĠRepresentatives":9694,"ĠBavaria":9695,"?'":9696,"IG":9697,"Su":9698,"iors":9699,"nels":9700,"rine":9701,"Ġ+":9702,"inburgh":9703,"Ġbond":9704,"Ġfetch":9705,"orig":9706,"arse":9707,"Ġgran":9708,"ĠDall":9709,"ilst":9710,"ĠLO":9711,"ĠRen":9712,"ĠFriend":9713,"ĠHell":9714,"ainted":9715,"Ġalarm":9716,"Ġracing":9717,"Ġcomic":9718,"aby":9719,"inking":9720,"Ġque":9721,"Ġrecover":9722,"Ġshares":9723,"ocation":9724,"rett":9725,"ĠMeet":9726,"Ġlanding":9727,"Ġoppon":9728,"Ġstaring":9729,"Ġ1939":9730,"fficiency":9731,"Ġlads":9732,"Ġringing":9733,"ĠRoberts":9734,"ĠLucy":9735,"Ġcompanion":9736,"Ġdetermine":9737,"Ġdunno":9738,"Ġretirement":9739,"Ġadministrative":9740,"isdom":9741,"Ġbass":9742,"Ġbunny":9743,"Ġfierce":9744,"orld":9745,"ĠTower":9746,"Ġseated":9747,"Ġjazz":9748,"Ġshield":9749,"Ġexcess":9750,"ckets":9751,"udi":9752,"soft":9753,"ishna":9754,"Ġactors":9755,"Ġbuzz":9756,"Ġentering":9757,"ĠOrleans":9758,"Ġpayment":9759,"Ġequally":9760,"ONE":9761,"Ġtempt":9762,"Ġcampus":9763,"Ġscare":9764,"Ġbelonged":9765,"Ġinfluenced":9766,"Ġaccounts":9767,"ĠImperial":9768,"Ġdocumentary":9769,"Ġtalent":9770,"ĠLarry":9771,"ĠLadies":9772,"Ġthirteen":9773,"ĠYugoslav":9774,"dale":9775,"gun":9776,"Ġâ":9777,"Ġacknow":9778,"Ġgently":9779,"vet":9780,"Ġbeans":9781,"acement":9782,"ĠChile":9783,"ĠCooper":9784,"illing":9785,"ĠLax":9786,"antle":9787,"ĠFel":9788,"osure":9789,"Ġvoted":9790,"aku":9791,"oused":9792,"ĠVi":9793,"Ġadjust":9794,"ĠAllah":9795,"Ġslaves":9796,"Ġsurvey":9797,"Ġ65":9798,"Ġreprodu":9799,"ĠOrgan":9800,"Ġcontrols":9801,"ĠAmanda":9802,"Ġsuccessfully":9803,"ĠChand":9804,"Ġcondens":9805,"ICE":9806,"Ġperspective":9807,"uela":9808,"Ġblowing":9809,"ĠNorway":9810,"Ġfocused":9811,"Ġdigital":9812,"Ġfeeding":9813,"ĠDaisy":9814,"Ġoccasionally":9815,"ĠIndeed":9816,"Ġcomponents":9817,"Ġrhythm":9818,"RATOR":9819,"Ġequivalent":9820,"Ġ;":9821,"Ġauth":9822,"Ġsession":9823,"Ġsurname":9824,"atin":9825,"ĠCham":9826,"Ġstack":9827,"Ġseeds":9828,"Ġcomments":9829,"inder":9830,"ĠInspect":9831,"feld":9832,"Ġpeas":9833,"ansion":9834,"Ġwhereas":9835,"arson":9836,"Ġsubm":9837,"ĠScots":9838,"Ġprominent":9839,"airies":9840,"Ġ170":9841,"Ġbeds":9842,"ĠPlatform":9843,"Ġtermin":9844,"Ġperforming":9845,"Ġabsence":9846,"Ġbanana":9847,"Ġgarbage":9848,"Ġsensitive":9849,"ĠResearch":9850,"Ġattracted":9851,"ĠCharlotte":9852,"Ġchapter":9853,"Ġsequence":9854,"Ġstretched":9855,"Ġstroke":9856,"Ġfurniture":9857,"ĠTemple":9858,"Ġfeathers":9859,"Ġnortheast":9860,"44":9861,"UCK":9862,"gian":9863,"your":9864,"ndered":9865,"Ġbills":9866,"Ġyοu":9867,"ĠTour":9868,"alie":9869,"ĠNay":9870,"ĠDenn":9871,"herry":9872,"ĠOak":9873,"ĠGor":9874,"estion":9875,"bery":9876,"Ġeveryday":9877,"Ġperce":9878,"ĠMayor":9879,"Ġstopping":9880,"Ġsixteen":9881,"Ġvisual":9882,"Ġappearances":9883,"Ġtitles":9884,"Ġpalm":9885,"ĠSarhad":9886,"udden":9887,"ĠDeputy":9888,"Ġleadership":9889,"Ġfloating":9890,"Ġdiamond":9891,"Ġarrangement":9892,"Ġmicrophone":9893,"Ġintellectual":9894,"Ġsacrifice":9895,"ĠNARRATOR":9896,".!":9897,"rings":9898,"itate":9899,"Ġchips":9900,"Ġdio":9901,"anes":9902,"ayan":9903,"ĠMP":9904,"Ġ120":9905,"ĠFBI":9906,"Ġabroad":9907,"ĠUgh":9908,"Ġmanif":9909,"ideo":9910,"ĠWeb":9911,"ureau":9912,"ogy":9913,"Ġdishes":9914,"Ġfoundation":9915,"Ġ47":9916,"Ġconscience":9917,"cluding":9918,"Ġswing":9919,"Ġmetro":9920,"ungle":9921,"ĠMeite":9922,"Ġdrift":9923,"Ġmusicians":9924,"Ġfiles":9925,"onym":9926,"Ġcraft":9927,"ipper":9928,"Ġmercy":9929,"ederation":9930,"iffs":9931,"culiar":9932,"Ġfoolish":9933,"Ġfarmers":9934,"ĠJudge":9935,"Ġbeliefs":9936,"Ġwithdraw":9937,"ĠMarshall":9938,"bits":9939,"rous":9940,"ser":9941,"ı":9942,"Ġbore":9943,"Ġcalend":9944,"atched":9945,"ĠMas":9946,"stock":9947,"ĠRoc":9948,"ĠFight":9949,"ĠJen":9950,"Ġshed":9951,"ĠKon":9952,"Ġcompass":9953,"ĠWhether":9954,"Ġsupper":9955,"Ġmonkey":9956,"ĠGoing":9957,"then":9958,"ĠProject":9959,"Ġskill":9960,"ĠChristopher":9961,"Ġrefers":9962,"Ġrefuse":9963,"ĠNeil":9964,"Ġsupporting":9965,"Ġeffectively":9966,"Ġworthy":9967,"Ġmeantime":9968,"Ġquarters":9969,"Ġfaithful":9970,"music":9971,"ĠLynde":9972,"ĠIndepend":9973,"Ġscarcely":9974,"ĠPremier":9975,"67":9976,"MS":9977,"Qu":9978,"gain":9979,"ught":9980,"uine":9981,"Ġbid":9982,"Ġfeared":9983,"Ġpip":9984,"ĠAha":9985,"Ġease":9986,"verty":9987,"rians":9988,"star":9989,"ĠOnt":9990,"ĠRy":9991,"Ġnep":9992,"quiao":9993,"Ġseeking":9994,"weather":9995,"Ġapples":9996,"Ġfinishing":9997,"ugs":9998,"Ġentitled":9999,"Ġsubt":10000,"ĠBlair":10001,"Ġprompt":10002,"Ġjoining":10003,"Ġdefence":10004,"Ġsteady":10005,"Ġruler":10006,"Ġprimitive":10007,"Ġemployed":10008,"Ġscratch":10009,"ĠEgyptian":10010,"Ġentertainment":10011,"Ġexpanded":10012,"Ġunex":10013,"ĠBroadway":10014,"ĠHindu":10015,"ĠPhilippines":10016,"Ġconclusion":10017,"ĠHawaii":10018,"ĠDevelopment":10019,"ĠInspector":10020,"his":10021,"Ġtheat":10022,"Ġbay":10023,"Ġpor":10024,"Ġpardon":10025,"Ġinject":10026,"otal":10027,"ĠAut":10028,"ĠNative":10029,"ĠDom":10030,"ĠPur":10031,"ĠLyn":10032,"ĠEth":10033,"ques":10034,"cker":10035,"Ġvary":10036,"Ġpoverty":10037,"issions":10038,"ĠAlmost":10039,"Ġ49":10040,"Ġdecades":10041,"Ġfollowers":10042,"they":10043,"Ġconfirm":10044,"Ġpriests":10045,"Ġ1957":10046,"ĠGuys":10047,"EST":10048,"ĠBaron":10049,"ĠEdinburgh":10050,"Ġstatue":10051,"Ġ1937":10052,"Ġseventeen":10053,"Ġbriefly":10054,"Ġromance":10055,"Ġphilosopher":10056,"Ġlandscape":10057,"ĠCOVID":10058,"ĠBusiness":10059,"Ġkittie":10060,"ĠFoundation":10061,"ĠSeveral":10062,"ĠVegas":10063,"App":10064,"BO":10065,"dog":10066,"fin":10067,"ghan":10068,"Ġaston":10069,"Ġfranch":10070,"Ġtom":10071,"omon":10072,"Ġhal":10073,"aya":10074,"ĠBurn":10075,"ĠNFL":10076,"ĠPad":10077,"Ġsear":10078,"Ġsector":10079,"ĠLas":10080,"ĠAnderson":10081,"Ġexceed":10082,"ccer":10083,"Ġdisaster":10084,"Ġsculpt":10085,"Ġinstantly":10086,"Ġobtain":10087,"Ġasshole":10088,"Ġfarmer":10089,"ifications":10090,"Ġconfront":10091,"umbled":10092,"yrics":10093,"Ġcookie":10094,"Ġexecution":10095,"Ġbleeding":10096,"Ġapplications":10097,"Ġdelighted":10098,"Ġassumed":10099,"ĠGyp":10100,"Ġbattery":10101,"Ġdiplom":10102,"ĠMeitei":10103,"sighs":10104,"Ġtiger":10105,"hall":10106,"Ġfence":10107,"orne":10108,"ĠShip":10109,"ĠMonsieur":10110,"Ġstadium":10111,"ifted":10112,"iland":10113,"Ġshots":10114,"ĠUse":10115,"ĠThird":10116,"Ġcoinc":10117,"Ġscra":10118,"ĠDove":10119,"Ġsecrets":10120,"ĠEngine":10121,"ĠShir":10122,"ĠShoot":10123,"ĠComing":10124,"Ġkidna":10125,"Ġeighth":10126,"Ġbands":10127,"Ġzone":10128,"ĠSerb":10129,"Ġtechniques":10130,"Ġeducated":10131,"Ġmiserable":10132,"Ġshark":10133,"Ġfacing":10134,"Ġlifetime":10135,"Ġpanel":10136,"Ġclouds":10137,"Ġdynam":10138,"Ġaspects":10139,"Ġdisappointed":10140,"Ġcolleagues":10141,"ĠNetwork":10142,"Ġestimated":10143,"ĠKNOW":10144,"**":10145,"ii":10146,"Ġwins":10147,"icop":10148,"alia":10149,"Ġthrill":10150,"Ġpros":10151,"ĠKil":10152,"ĠStew":10153,"Ġuncertain":10154,"Ġregister":10155,"IND":10156,"Ġenthus":10157,"Ġinsane":10158,"Ġimpressed":10159,"ĠExcept":10160,"Ġgovernments":10161,"Ġcreative":10162,"zech":10163,"ĠAmendment":10164,"ĠCommand":10165,"Ġboxes":10166,"Ġcultiv":10167,"Ġgenuine":10168,"Ġpencil":10169,"Ġsoftly":10170,"Ġmadam":10171,"Ġpatterns":10172,"ĠHalf":10173,"Ġensure":10174,"CC":10175,"bors":10176,"din":10177,"iable":10178,"Ġarose":10179,"Ġbin":10180,"Ġdrank":10181,"Ġlamp":10182,"Ġgates":10183,"ĠWat":10184,"ĠMack":10185,"roit":10186,"ĠFant":10187,"igr":10188,"ĠKu":10189,"Ġpeculiar":10190,"obile":10191,"ĠMars":10192,"Ġmarch":10193,"Ġdrum":10194,"Ġmetres":10195,"Ġwarrant":10196,"iversary":10197,"shot":10198,"ART":10199,"levant":10200,"ESS":10201,"Ġchecking":10202,"Ġetern":10203,"Ġjudges":10204,"ĠMadam":10205,"Ġmidnight":10206,"Ġroutes":10207,"Ġoffend":10208,"Ġtailor":10209,"ĠCaesar":10210,"Ġparticipate":10211,"ĠWindows":10212,"Ġdynasty":10213,"Ġnephew":10214,"!!":10215,"gments":10216,"piece":10217,"vable":10218,"rek":10219,"Ġsack":10220,"Ġcave":10221,"Ġpent":10222,"Ġinfection":10223,"ications":10224,"ĠSara":10225,"Ġthirst":10226,"Ġwelf":10227,"achi":10228,"ĠCold":10229,"stream":10230,"ĠBaker":10231,"raham":10232,"Ġvig":10233,"agan":10234,"Ġspy":10235,"ĠVis":10236,"ĠWhit":10237,"Ġlets":10238,"Ġresident":10239,"Ġhelpful":10240,"Ġcourses":10241,"ĠâĻªâĻª":10242,"Ġinspect":10243,"ĠArea":10244,"ĠProp":10245,"Ġstead":10246,"Ġ1955":10247,"ĠGuy":10248,"Ġversus":10249,"Ġkicked":10250,"Ġdespair":10251,"Ġshouted":10252,"ĠDragon":10253,"Ġagricultural":10254,"Ġwelfare":10255,"68":10256,"burn":10257,"dle":10258,"ige":10259,"mic":10260,"ww":10261,"Ġsore":10262,"Ġlaughter":10263,"ĠAuthor":10264,"ĠSA":10265,"ĠSaid":10266,"ĠMine":10267,"rob":10268,"ĠNO":10269,"ĠDer":10270,"ĠDub":10271,"ĠRud":10272,"ĠRachel":10273,"ĠFem":10274,"unning":10275,"Ġabdom":10276,"ĠKurd":10277,"ĠThought":10278,"Ġsometime":10279,"Ġmock":10280,"Ġrecall":10281,"othy":10282,"Ġchee":10283,"Ġpresents":10284,"Ġchase":10285,"Ġtriangle":10286,"Ġreceiving":10287,"ĠMinnes":10288,"ĠDavis":10289,"ienna":10290,"Ġtouching":10291,"Ġcounsel":10292,"Ġdiscussed":10293,"Ġobser":10294,"Ġaffili":10295,"Ġoptim":10296,"Ġoptions":10297,"Ġcriticism":10298,"Ġscreaming":10299,"Ġpossessed":10300,"Ġsurrender":10301,"Ġshelter":10302,"Ġathlet":10303,"ĠIndonesia":10304,"ĠLewis":10305,"Ġairplane":10306,"ture":10307,"Ġ~":10308,"Ġcough":10309,"Ġfame":10310,"Ġnerves":10311,"Ġhollow":10312,"alty":10313,"ĠAth":10314,"ĠGriff":10315,"ĠRub":10316,"ĠRalph":10317,"ĠJae":10318,"ppet":10319,"Ġabe":10320,"ateur":10321,"pering":10322,"Ġgrounds":10323,"Ġflesh":10324,"mann":10325,"Ġsurve":10326,"Ġcares":10327,"ĠClare":10328,"ĠExec":10329,"century":10330,"Ġdesigns":10331,"Ġresulted":10332,"Ġpractically":10333,"Ġradiation":10334,"ĠSeriously":10335,"Ġsuggests":10336,"Ġtrusted":10337,"ĠApple":10338,"Ġchemistry":10339,"Ġfavourite":10340,"Ġtravelling":10341,"Ġtravelled":10342,"ĠCommunity":10343,"Ġultimately":10344,"Ġceremon":10345,"ĠHouston":10346,"With":10347,"lia":10348,"made":10349,"oa":10350,"oft":10351,"uits":10352,"hey":10353,"Ġtherap":10354,"rez":10355,"ester":10356,"Ġnaught":10357,"uster":10358,"ussels":10359,"acent":10360,"ammy":10361,"ĠCart":10362,"ĠCAN":10363,"rov":10364,"ĠYale":10365,"ĠDak":10366,"ĠPLA":10367,"ĠJob":10368,"Ġrushed":10369,"Ġconvince":10370,"ĠKermans":10371,"ranean":10372,"Ġflav":10373,"Ġshaking":10374,"Ġmatrix":10375,"ĠMayweather":10376,"umbling":10377,"engu":10378,"Ġprogramming":10379,"Ġcookies":10380,"Ġsharks":10381,"ĠBenj":10382,"ĠRobinson":10383,"Ġpackage":10384,"Ġimproved":10385,"Ġsuitable":10386,"Ġattractive":10387,"ĠMurray":10388,"ĠDevil":10389,"Ġmemorial":10390,"Ġinstitutions":10391,"Ġvehicles":10392,"Ġfluid":10393,"Ġdivorce":10394,"Ġfascin":10395,"lausner":10396,"Ġacademic":10397,"Ġaccompanied":10398,"ĠColorado":10399,"ĠKermanshah":10400,"Car":10401,"OK":10402,"Saint":10403,"cow":10404,"Ġtact":10405,"Ġwives":10406,"Ġpoo":10407,"armed":10408,"ican":10409,"Ġhitting":10410,"ĠSudden":10411,"idodecahedron":10412,"ĠWy":10413,"iration":10414,"ĠPun":10415,"ĠPoly":10416,"agu":10417,"Ġtrace":10418,"izza":10419,"Ġbrows":10420,"ruption":10421,"ĠUnivers":10422,"ĠAlicia":10423,"Ġsupplies":10424,"Ġsecondary":10425,"chen":10426,"ĠPlus":10427,"Ġhopefully":10428,"Ġbreaks":10429,"Ġcopper":10430,"Ġtitled":10431,"ĠMedic":10432,"Ġbehavi":10433,"Ġweakness":10434,"Ġrebu":10435,"ĠPacquiao":10436,"Ġparticipated":10437,"Ġdetective":10438,"Ġresistance":10439,"ĠAriz":10440,"Ġcasual":10441,"Ġboots":10442,"Ġnodded":10443,"ĠWWE":10444,"ĠOntario":10445,"64":10446,"kward":10447,"rm":10448,"rected":10449,"isible":10450,"anium":10451,"Ġga":10452,"Ġnaval":10453,"acc":10454,"ĠMuch":10455,"Ġstiff":10456,"ĠDomin":10457,"ĠFars":10458,"Ġabuse":10459,"Ġabund":10460,"Ġsho":10461,"odox":10462,"ags":10463,"ĠThom":10464,"Ġcler":10465,"never":10466,"ĠVas":10467,"Ġscattered":10468,"ailing":10469,"Ġhelicop":10470,"Ġraw":10471,"Ġminimum":10472,"Ġ41":10473,"Ġpolite":10474,"Ġaccord":10475,"aza":10476,"azon":10477,"Ġmeets":10478,"Ġpatri":10479,"Ġhoriz":10480,"Ġ1953":10481,"ĠNeither":10482,"Ġperformances":10483,"urious":10484,"ĠLaure":10485,"ĠPola":10486,"Ġsurprising":10487,"Ġcovering":10488,"Ġchairs":10489,"ĠOtherwise":10490,"Ġurban":10491,"Ġcrops":10492,"Ġcrook":10493,"Ġsolemn":10494,"Ġdreadful":10495,"Ġmilitia":10496,"Ġabstract":10497,"%.":10498,"Get":10499,"lah":10500,"Ġtan":10501,"Ġtables":10502,"Ġwipe":10503,"Ġsits":10504,"Ġmild":10505,"Ġloop":10506,"Ġgig":10507,"ĠAx":10508,"ĠSi":10509,"ĠCzech":10510,"ĠNag":10511,"ĠDream":10512,"ĠPant":10513,"ĠJin":10514,"Ġalle":10515,"estine":10516,"osaur":10517,"rying":10518,"Ġvital":10519,"Ġvirus":10520,"pecies":10521,"onsin":10522,"Ġsmoking":10523,"ĠAllison":10524,"ggy":10525,"Ġ44":10526,"Ġindicated":10527,"ĠTrue":10528,"Ġ1936":10529,"Ġattempts":10530,"ĠWelsh":10531,"Ġeldest":10532,"Ġfraud":10533,"Ġinstitution":10534,"ĠNazi":10535,"Ġquantity":10536,"ĠSelena":10537,"iveness":10538,"Ġvertex":10539,"Ġprotein":10540,"Ġashore":10541,"ĠNapoleon":10542,"Br":10543,"iop":10544,"tion":10545,"woman":10546,"Ġtide":10547,"hattan":10548,"Ġhoy":10549,"Ġbeef":10550,"ĠWake":10551,"ĠHorn":10552,"ĠCæ":10553,"Ġstern":10554,"Ġklausner":10555,"Ġgoin":10556,"ĠFle":10557,"eller":10558,"Ġraces":10559,"care":10560,"Ġaffection":10561,"Ġunfortunately":10562,"Ġamendment":10563,"Ġbron":10564,"Ġchuck":10565,"bean":10566,"Ġchances":10567,"Ġtragedy":10568,"Ġrelatives":10569,"Ġglory":10570,"Ġsubsc":10571,"Ġdistur":10572,"Ġedges":10573,"Ġ99":10574,"Ġrefuge":10575,"Ġ1951":10576,"Ġorganic":10577,"ĠGray":10578,"ĠMicro":10579,"Ġtested":10580,"Ġtrading":10581,"Ġeducational":10582,"Ġstrip":10583,"Ġinnit":10584,"Ġinnov":10585,"Here":10586,"shaped":10587,"Ġdeny":10588,"ĠSandy":10589,"Ġbutterfly":10590,"Ġcitizen":10591,"ĠEspecially":10592,"Ġignor":10593,"ĠSquare":10594,"liga":10595,"Ġtunnel":10596,"Ġpremie":10597,"ĠRicky":10598,"SPEA":10599,"Ġprocedure":10600,"ĠBhaer":10601,"ĠDallas":10602,"07":10603,"ACK":10604,"Gu":10605,"ND":10606,"VD":10607,"Will":10608,"got":10609,"mi":10610,"oi":10611,"walk":10612,"Ġfairies":10613,"Ġpanc":10614,"veland":10615,"Ġhousing":10616,"ĠAB":10617,"ĠSult":10618,"Ġego":10619,"Ġweigh":10620,"riet":10621,"Ġsty":10622,"term":10623,"ĠPin":10624,"ĠRidge":10625,"ĠYouT":10626,"Ġjur":10627,"ersen":10628,"Ġyourselves":10629,"udge":10630,"Ġpeep":10631,"Ġworker":10632,"Ġdisorder":10633,"Ġchop":10634,"Ġfounding":10635,"ĠâĻ«":10636,"Ġinvite":10637,"Ġinstall":10638,"Ġassess":10639,"Ġlighthouse":10640,"Ġaddressed":10641,"Ġimprison":10642,"Ġinterse":10643,"Ġbusinesses":10644,"Ġcondem":10645,"ographic":10646,"ĠEarl":10647,"Ġdeeper":10648,"Ġgenetic":10649,"isconsin":10650,"Ġmunicipal":10651,"ĠBrothers":10652,"Ġtranslation":10653,"Ġtranslated":10654,"ĠModern":10655,"Ġsituations":10656,"Ġdowntown":10657,"ĠMinnesota":10658,");":10659,"57":10660,"God":10661,"give":10662,"Ġwolf":10663,"Ġmast":10664,"Ġgle":10665,"Ġnavig":10666,"ĠSis":10667,"ĠSnow":10668,"utter":10669,"ĠCool":10670,"ĠNancy":10671,"Ġgoat":10672,"ĠFR":10673,"ĠFood":10674,"Ġexternal":10675,"ĠUk":10676,"ferences":10677,"Ġquack":10678,"assador":10679,"Ġgrat":10680,"Ġflows":10681,"Ġresign":10682,"Ġresidents":10683,"Ġhelpless":10684,"Ġkindly":10685,"ĠBrussels":10686,"insula":10687,"ĠShh":10688,"Ġstays":10689,"Ġlandl":10690,"Ġoperate":10691,"ARS":10692,"Ġbarn":10693,"Ġceased":10694,"Ġapproaching":10695,"Ġavo":10696,"Ġethan":10697,"ĠFranklin":10698,"Ġsharing":10699,"ĠMedia":10700,"ĠMadame":10701,"Ġparking":10702,"Ġcivilization":10703,"âĢİ,":10704,"Ġmidst":10705,"Ġcandy":10706,"Ġdescribes":10707,"ĠLawrence":10708,"ĠLouisiana":10709,"Ġcolours":10710,"Ġimpressive":10711,"Ġguarantee":10712,"Ġfirms":10713,"Sm":10714,"pat":10715,"rade":10716,"Ġq":10717,"Ġaer":10718,"onge":10719,"Ġpairs":10720,"Ġgorge":10721,"ĠSky":10722,"ĠCre":10723,"ĠBenn":10724,"Ġstages":10725,"oret":10726,"emen":10727,"aboo":10728,"abilities":10729,"ĠNobel":10730,"Ġspeaks":10731,"Ġrolling":10732,"Ġunited":10733,"Ġgrim":10734,"Ġflies":10735,"Ġcaravan":10736,"upon":10737,"ĠDeh":10738,"Ġregiment":10739,"Ġsynd":10740,"Ġbelieves":10741,"Ġmonitor":10742,"Ġlighting":10743,"Ġdragged":10744,"ĠOrchestra":10745,"ĠErn":10746,"Ġreturns":10747,"Ġhurried":10748,"Ġ178":10749,"Ġinfinite":10750,"Ġlegit":10751,"Ġlabour":10752,"Ġrepresentative":10753,"ĠCorps":10754,"ĠAgent":10755,"mmet":10756,"Ġfaculty":10757,"ĠApparently":10758,"ĠBuilding":10759,"Ġdeliber":10760,"Ġgeomet":10761,"Ġpigs":10762,"Ġmaintained":10763,"Ġrevenue":10764,"Ġliberty":10765,"Ġsubstance":10766,"Ġdiscipline":10767,"Ġsubsequently":10768,"Ġalphabet":10769,"Ġcalendar":10770,"Ab":10771,"MA":10772,"Mr":10773,"bly":10774,"bie":10775,"pur":10776,"Ġcord":10777,"Ġfires":10778,"Ġdia":10779,"arians":10780,"omot":10781,"ĠMama":10782,"Ġuna":10783,"ĠNash":10784,"ĠPed":10785,"ĠPage":10786,"antine":10787,"ĠFull":10788,"Ġjunior":10789,"ĠEasy":10790,"quet":10791,"--_":10792,"Ġprev":10793,"Ġflour":10794,"aund":10795,"Ġconservative":10796,"Ġrealise":10797,"Ġgrain":10798,"ĠLooking":10799,"Ġfract":10800,"Ġsweat":10801,"ĠHarris":10802,"Ġinformed":10803,"Ġlaying":10804,"Ġapproval":10805,"Ġinvolves":10806,"Ġreligions":10807,"Ġneighbors":10808,"Ġirrit":10809,"Ġgrocer":10810,"Ġacceleration":10811,"Ġoccasions":10812,"igenous":10813,"ĠFurther":10814,"ĠSarhadi":10815,"lahoma":10816,"ĠCæsar":10817,"46":10818,"Ant":10819,"vate":10820,"Ġske":10821,"itches":10822,"Ġcage":10823,"Ġfest":10824,"ĠScient":10825,"ĠSection":10826,"uter":10827,"ĠBox":10828,"keys":10829,"oute":10830,"ilation":10831,"ĠLim":10832,"ĠRain":10833,"uns":10834,"ĠJenn":10835,"Ġexhibition":10836,"ĠKis":10837,"earl":10838,"Ġsprang":10839,"Ġclar":10840,"Ġadap":10841,"Ġdisgr":10842,"Ġrecovery":10843,"Ġraising":10844,"Ġconsidering":10845,"grad":10846,"Ġdisturb":10847,"Ġinterfe":10848,"Ġinterior":10849,"Ġpresently":10850,"Ġoccurs":10851,"ATH":10852,"Ġprocesses":10853,"Ġmistress":10854,"Ġcloset":10855,"ourable":10856,"Ġexecuted":10857,"ĠHurricane":10858,"ĠUpon":10859,"arette":10860,"Ġcandidates":10861,"ĠDetective":10862,"Ġschedule":10863,"ĠTonight":10864,"300":10865,"Or":10866,"fare":10867,"some":10868,"Ġtons":10869,"Ġtheories":10870,"Ġbattles":10871,"Ġlyrics":10872,"ashes":10873,"ĠAL":10874,"Ġbeard":10875,"ĠWisconsin":10876,"ĠCox":10877,"ĠBert":10878,"ĠGi":10879,"ĠGulf":10880,"ĠJason":10881,"Ġconvent":10882,"quis":10883,"Ġvic":10884,"Ġvoy":10885,"ĠInca":10886,"ĠStory":10887,"Ġdispl":10888,"ocated":10889,"Ġattorney":10890,"ĠDonald":10891,"Ġkills":10892,"Ġdifferently":10893,"Ġwarri":10894,"Ġcontinent":10895,"Ġsolar":10896,"Ġawkward":10897,"Ġelectronic":10898,"Ġperiods":10899,"Ġencoun":10900,"Äģn":10901,"ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ":10902,"Ġopinions":10903,"Ġjumping":10904,"Ġoxid":10905,"Ġnearest":10906,"ĠDiego":10907,"ĠLeonard":10908,"Ġmammals":10909,"ĠAlfred":10910,"NE":10911,"cham":10912,"ĠÅ":10913,"Ġsung":10914,"Ġbump":10915,"Ġcable":10916,"Ġdict":10917,"Ġlux":10918,"Ġnasty":10919,"ĠTerry":10920,"ĠAra":10921,"acious":10922,"kee":10923,"abled":10924,"astian":10925,"ĠKay":10926,"ĠVik":10927,"Ġbug":10928,"Ġbucks":10929,"azy":10930,"Ġlocations":10931,"Ġartific":10932,"Ġpublication":10933,"Ġtremb":10934,"fortable":10935,"Ġdirections":10936,"REAM":10937,"ĠAgency":10938,"Ġcircuit":10939,"Ġburnt":10940,"ommod":10941,"Ġnovels":10942,"Ġassistance":10943,"ĠPrefecture":10944,"Ġrubber":10945,"ĠONE":10946,"ĠForeign":10947,"Ġmagnific":10948,"Ġuniversal":10949,"Ġanxiety":10950,"ĠFrancesco":10951,"Ġmultipl":10952,"ĠClaire":10953,"ĠAssyrian":10954,"Ġdistinguished":10955,"Ġvulner":10956,"ĠYouTube":10957,"!'":10958,"55":10959,"fight":10960,"power":10961,"uary":10962,"zi":10963,"erior":10964,"ancing":10965,"esc":10966,"ĠTun":10967,"Ġhay":10968,"ĠABC":10969,"Ġrele":10970,"ĠMess":10971,"ĠCrow":10972,"ĠBou":10973,"Ġdoggie":10974,"uru":10975,"ĠLane":10976,"Ġgolf":10977,"ĠJose":10978,"ested":10979,"Ġouter":10980,"Ġwors":10981,"Ġvoc":10982,"inding":10983,"ĠKang":10984,"Ġpeek":10985,"Ġloaded":10986,"Ġgrows":10987,"ĠUnfortunately":10988,"Ġscan":10989,"velt":10990,"Ġmothers":10991,"ĠClause":10992,"Ġgenerations":10993,"ussy":10994,"Ġsentiment":10995,"ĠTruth":10996,"OUR":10997,"Ġpainter":10998,"Ġpurse":10999,"ĠEmmy":11000,"Ġbearing":11001,"scar":11002,"Ġfacility":11003,"ĠMalays":11004,"Ġtrucks":11005,"Ġreveal":11006,"Ġcrowded":11007,"Ġblessed":11008,"ĠTransport":11009,"orkshire":11010,"Ġmeasured":11011,"ĠMiy":11012,"Ġblanket":11013,"ĠSuddenly":11014,"Ġhoyt":11015,"Look":11016,"Your":11017,"yers":11018,"hent":11019,"rels":11020,"hak":11021,"Ġbum":11022,"Ġfict":11023,"org":11024,"Ġdat":11025,"Ġduke":11026,"ĠSad":11027,"Ġefficiency":11028,"ĠMaced":11029,"irs":11030,"ĠBUT":11031,"ĠNC":11032,"ĠNear":11033,"ĠLI":11034,"ĠLau":11035,"olin":11036,"ĠJuan":11037,"ĠKatherine":11038,"Ġtrun":11039,"asses":11040,"ĠVienna":11041,"Ġcoins":11042,"Ġbund":11043,"Ġtrapped":11044,"ĠDead":11045,"Ġpresum":11046,"asht":11047,"ĠClay":11048,"Ġdischar":11049,"ĠManchester":11050,"Ġfreely":11051,"Ġfoods":11052,"ĠPhys":11053,"Ġdreaming":11054,"Ġstatements":11055,"Ġproposal":11056,"rooms":11057,"Ġdropping":11058,"Ġcombat":11059,"ĠMommy":11060,"speaking":11061,"Ġfatal":11062,"Ġfrequent":11063,"ĠJefferson":11064,"ĠCommunist":11065,"heimer":11066,"Ġhydro":11067,"Ġrejected":11068,"ĠArizona":11069,"Bill":11070,"aus":11071,"oen":11072,"vol":11073,"Ġwisdom":11074,"erate":11075,"hant":11076,"Ġoath":11077,"Ġborders":11078,"Ġcure":11079,"Ġcries":11080,"Ġfits":11081,"Ġpitch":11082,"Ġgear":11083,"oting":11084,"ĠWolf":11085,"acon":11086,"ĠMaim":11087,"ĠCow":11088,"adays":11089,"ĠYorkshire":11090,"illery":11091,"child":11092,"olished":11093,"ulance":11094,"ĠEinstein":11095,"estly":11096,"Ġrust":11097,"Ġrats":11098,"ĠStadium":11099,"Ġlend":11100,"Ġfeud":11101,"ĠWhoo":11102,"Ġbuck":11103,"Ġpockets":11104,"Ġcharity":11105,"Ġcharming":11106,"Ġbreed":11107,"Ġexpansion":11108,"Ġfuckin":11109,"Ġtopic":11110,"Ġcuts":11111,"ĠMickey":11112,"Ġcreep":11113,"ĠQuite":11114,"oosevelt":11115,"Ġportra":11116,"Ġconsideration":11117,"ĠJesse":11118,"ĠOklahoma":11119,"Ġcompanions":11120,"Ġroutine":11121,"Ġemployment":11122,"Ġpraised":11123,"Ġdisgusting":11124,"ĠBrooklyn":11125,"Ġtissue":11126,"Ġbacteria":11127,"Ġtremendous":11128,"Am":11129,"XT":11130,"ez":11131,"nik":11132,"Ġwagon":11133,"Ġol":11134,"Ġbishop":11135,"Ġfert":11136,"ingle":11137,"Ġtoes":11138,"Ġgender":11139,"ĠSN":11140,"Ġrehe":11141,"Ġweary":11142,"ĠHicks":11143,"aments":11144,"iry":11145,"irit":11146,"ĠBeng":11147,"Ġstove":11148,"ĠNem":11149,"ĠOrange":11150,"iler":11151,"ĠLi":11152,"ĠRest":11153,"ĠRio":11154,"ĠFern":11155,"ĠExt":11156,"Ġconvention":11157,"employ":11158,"inks":11159,"Ġprospect":11160,"Ġdont":11161,"icken":11162,"ĠAlb":11163,"Ġattrib":11164,"oots":11165,"Ġrounds":11166,"Ġsleepy":11167,"Ġhumanity":11168,"Ġconcerning":11169,"Ġdestro":11170,"Ġtechnique":11171,"Ġpeaceful":11172,"Ġscientist":11173,"Ġdelivery":11174,"Ġpredict":11175,"Ġshocked":11176,"Ġpretending":11177,"ĠSolomon":11178,"ĠIslamic":11179,"ĠBelgium":11180,"ĠBowl":11181,"Ġbench":11182,"Ġassignment":11183,"Ġauthors":11184,"69":11185,"eges":11186,"song":11187,"town":11188,"vard":11189,"hai":11190,"Ġori":11191,"Ġchess":11192,"orus":11193,"ĠAle":11194,"ĠSound":11195,"Ġreci":11196,"utt":11197,"amar":11198,"ĠChampionships":11199,"rav":11200,"Ġlily":11201,"ĠRoosevelt":11202,"odore":11203,"Ġcompounds":11204,"Ġunre":11205,"Ġcarries":11206,"ĠSeb":11207,"Ġcheek":11208,"ĠAfghan":11209,"Ġcentim":11210,"Ġslee":11211,"annah":11212,"iterranean":11213,"Ġstealing":11214,"ĠAmazon":11215,"Ġvalid":11216,"headed":11217,"ĠChah":11218,"Ġsilk":11219,"ĠChel":11220,"ĠHighness":11221,"Ġselfish":11222,"Ġtaxi":11223,"Ġfundamental":11224,"ĠJuliet":11225,"Ġbelly":11226,"Christ":11227,"Ġpanic":11228,"ĠRogers":11229,"Ġshouting":11230,"Ġexerc":11231,"Ġtribes":11232,"ĠMoscow":11233,"Thank":11234,"ĠMaimie":11235,"800":11236,"DP":11237,"FF":11238,"away":11239,"kur":11240,"oqu":11241,"erg":11242,"Ġcul":11243,"Ġdick":11244,"Ġdated":11245,"arre":11246,"Ġnigg":11247,"leton":11248,"Ġhed":11249,"ĠBO":11250,"ĠBoo":11251,"Ġstake":11252,"ĠOt":11253,"thodox":11254,"ĠKi":11255,"Ġ1919":11256,"Ġclients":11257,"anga":11258,"Ġresigned":11259,"Ġmines":11260,"Ġconsent":11261,"Ġaccommod":11262,"tenance":11263,"Ġ83":11264,"ĠAbraham":11265,"Ġconfusion":11266,"Ġparam":11267,"ĠWarren":11268,"Ġ160":11269,"ĠJackie":11270,"ĠPerry":11271,"Ġfreak":11272,"Ġgrandmother":11273,"ĠGlad":11274,"Ġ1928":11275,"Ġenjoying":11276,"Ġantib":11277,"Ġfunding":11278,"ĠCleveland":11279,"Ġconductor":11280,"Ġsequel":11281,"avalry":11282,"Ġqualified":11283,"break":11284,"track":11285,"Ġconsequences":11286,"Ġancestors":11287,"Ġexhausted":11288,"LING":11289,"Me":11290,"Se":11291,"bone":11292,"cos":11293,"isa":11294,"isha":11295,"Ġmac":11296,"Ġdared":11297,"Ġloo":11298,"ashi":11299,"ĠTR":11300,"ĠSem":11301,"ĠWes":11302,"Ġrejo":11303,"imens":11304,"ĠHockey":11305,"ĠYa":11306,"ĠNHL":11307,"ĠDance":11308,"ĠDVD":11309,"ĠRO":11310,"ĠEli":11311,"ĠKirk":11312,"udible":11313,"Ġintr":11314,"ĠStr":11315,"Ġspray":11316,"Ġbacks":11317,"Ġbrut":11318,"Ġbrick":11319,"gins":11320,"Ġrage":11321,"grim":11322,"plete":11323,"Ġrestored":11324,"ĠProv":11325,"Ġdrill":11326,"Ġrecorder":11327,"Ġsneak":11328,"anguage":11329,"ĠGround":11330,"aima":11331,"Ġzoo":11332,"Ġmounted":11333,"Ġfilling":11334,"Ġcommanded":11335,"Ġbelonging":11336,"Ġnetworks":11337,"Ġconception":11338,"ĠPopeye":11339,"Ġstretch":11340,"Ġpurchase":11341,"ĠMarshal":11342,"Ġpuzzle":11343,"Ġslavery":11344,"Ind":11345,"Pl":11346,"bish":11347,"cribed":11348,"wear":11349,"when":11350,"ĠÐ":11351,"Ġbust":11352,"itis":11353,"Ġfib":11354,"athe":11355,"Ġgifts":11356,"ĠWag":11357,"imir":11358,"ĠCond":11359,"ĠDC":11360,"ĠKle":11361,"ĠKiss":11362,"Ġtwist":11363,"Ġfeast":11364,"Ġunp":11365,"izer":11366,"pled":11367,"Ġchim":11368,"rently":11369,"Ġmonaster":11370,"ieth":11371,"Ġstrings":11372,"Ġevolved":11373,"Ġtransition":11374,"Ġwalks":11375,"rington":11376,"Ġanniversary":11377,"former":11378,"ĠMediterranean":11379,"Star":11380,"Ġburden":11381,"Ġhistorian":11382,"gressive":11383,"USIC":11384,"Ġargued":11385,"ĠServices":11386,"Ġsouls":11387,"Ġgesture":11388,"Ġfranchise":11389,"\";":11390,"SR":11391,"UE":11392,"Ġtid":11393,"Ġcrop":11394,"icip":11395,"ĠSU":11396,"Ġbees":11397,"ĠMand":11398,"ĠBed":11399,"Ġdoct":11400,"ĠNixon":11401,"ĠDig":11402,"ĠDIC":11403,"Ġwhilst":11404,"Ġ(),":11405,"eling":11406,"ĠInn":11407,"iah":11408,"Ġunsu":11409,"Ġchoices":11410,"Ġchoir":11411,"ĠMario":11412,"Ġslope":11413,"Ġaccent":11414,"Ġgloom":11415,"cycle":11416,"ĠRights":11417,"Ġextract":11418,"aneously":11419,"Ġpromotion":11420,"Ġsquee":11421,"ĠCalm":11422,"Ġlayer":11423,"ambling":11424,"Ġ1934":11425,"REE":11426,"ĠQueens":11427,"ĠRoom":11428,"Ġimmense":11429,"Ġessay":11430,"ĠAtlanta":11431,"ère":11432,"Ġcontrary":11433,"ĠDetroit":11434,"ĠTayeb":11435,"Ġnursery":11436,"Ġsympathy":11437,"rella":11438,"Ġexplosion":11439,"Ġaccurate":11440,"ĠHolland":11441,"ĠDakota":11442,"Ġdialect":11443,"98":11444,"Did":11445,"Eng":11446,"cod":11447,"Ġtin":11448,"held":11449,"Ġsank":11450,"ingham":11451,"Ġdip":11452,"Ġyay":11453,"Ġlf":11454,"Ġgap":11455,"Ġgrie":11456,"ĠTall":11457,"owered":11458,"ĠARE":11459,"ĠSend":11460,"ĠSign":11461,"Ġreaches":11462,"ĠHills":11463,"rily":11464,"ĠFall":11465,"ĠFederation":11466,"ĠEt":11467,"Ġovert":11468,"ĠIsa":11469,"Ġphones":11470,"ĠLeo":11471,"Ġrepublic":11472,"Ġextension":11473,"Ġdealt":11474,"Ġterribly":11475,"ARE":11476,"ĠPhill":11477,"ĠMississ":11478,"Ġsatell":11479,"Ġelectron":11480,"Ġelectrical":11481,"Ġformerly":11482,"ĠMohammad":11483,"Ġpacked":11484,"cules":11485,"Ġhunger":11486,"ĠChang":11487,"ĠFrederick":11488,"Ġrebell":11489,"Ġclimbed":11490,"Ġcabinet":11491,"ĠBeautiful":11492,"Ġhammer":11493,"ĠLucas":11494,"Ġinterpretation":11495,"Ġwrapped":11496,"Ġpursue":11497,"ĠTayebi":11498,"600":11499,"Char":11500,"cal":11501,"Ġbored":11502,"Ġpressed":11503,"Ġnaima":11504,"Ġreverse":11505,"ĠMong":11506,"ĠCatherine":11507,"roph":11508,"Ġanth":11509,"ĠNation":11510,"ĠOp":11511,"Ġsections":11512,"ilight":11513,"ĠFig":11514,"thy":11515,"ĠJenny":11516,"Ġvamp":11517,"ichi":11518,"actory":11519,"Ġbloke":11520,"Ġhappily":11521,"Ġsurf":11522,"Ġbush":11523,"Ġcared":11524,"Ġcollaps":11525,"ĠCountry":11526,"Ġrig":11527,"Ġbrains":11528,"Ġsuspend":11529,"ĠRepublicans":11530,"guing":11531,"ĠFucking":11532,"Ġlinks":11533,"Ġmechanism":11534,"ĠHungarian":11535,"ĠConfederate":11536,"ĠCuba":11537,"ĠRabbit":11538,"Ġcontemporary":11539,"ĠArgentina":11540,"Ġuncomfortable":11541,"Sy":11542,"Sighs":11543,"bus":11544,"bound":11545,"cated":11546,"hum":11547,"pan":11548,"sor":11549,"Ġward":11550,"isd":11551,"Ġoven":11552,"Ġchip":11553,"Ġfruits":11554,"vex":11555,"vell":11556,"usalem":11557,"Ġrenew":11558,"ĠHIS":11559,"ĠChes":11560,"ĠYouth":11561,"ĠNam":11562,"ĠPint":11563,"rah":11564,"oples":11565,"ĠEvent":11566,"istinct":11567,"Ġrating":11568,"Ġcongress":11569,"Ġprocl":11570,"ĠKate":11571,"Ġ1900":11572,"Ġmans":11573,"ĠâĢİ":11574,"Ġdaylight":11575,"forest":11576,"aware":11577,"ials":11578,"Ġcheaper":11579,"otta":11580,"Ġcolony":11581,"Ġtribe":11582,"Ġlearnt":11583,"Ġdivisions":11584,"Ġengagement":11585,"Ġsuccession":11586,"ĠAnybody":11587,"Ġapproached":11588,"Ġ1932":11589,"Ġdestination":11590,"Ġwallet":11591,"Ġpopularity":11592,"Ġsuggestion":11593,"ĠPolit":11594,"Ġarmies":11595,"Ġbullshit":11596,"ĠDemi":11597,"ĠDarwin":11598,"Ġemployees":11599,"án":11600,"Ġprayers":11601,"Ġcoward":11602,"Ġcameras":11603,"ĠStudios":11604,"Ġderived":11605,"Ġranked":11606,"Ġholidays":11607,"Ġconstitu":11608,"warf":11609,"Ġmeasures":11610,"ĠDenmark":11611,"ĠStanley":11612,"ĠBernard":11613,"ĠWalker":11614,"ĠUsually":11615,"Ġconverted":11616,"ĠDennis":11617,"Ġsoph":11618,"only":11619,"erto":11620,"Ġdiver":11621,"Ġpier":11622,"ĠTel":11623,"Ġhen":11624,"ĠAge":11625,"Ġretain":11626,"Ġ1000":11627,"ĠGill":11628,"ĠGentle":11629,"Ġgoss":11630,"igration":11631,"elf":11632,"Ġvocal":11633,"Ġoverse":11634,"Ġbeloved":11635,"Ġdesired":11636,"Ġdescent":11637,"grat":11638,"Ġswept":11639,"Ġwarned":11640,"ĠIndust":11641,"Ġgenerous":11642,"ĠConnor":11643,"ika":11644,"Ġsteep":11645,"def":11646,"ĠCharusa":11647,"Ġtempor":11648,"Ġresulting":11649,"Ġmembership":11650,"ĠDavy":11651,"ĠSwiss":11652,"Ġtraditions":11653,"Ġcooked":11654,"ĠSyria":11655,"Ġpenny":11656,"Ġsailors":11657,"Ġresemb":11658,"Ġviolin":11659,"Ġpunished":11660,"Ġturb":11661,"Ġvoting":11662,"Ġstrangers":11663,"ĠSwedish":11664,"Ġintelligent":11665,"Ġmathematics":11666,"ĠAffairs":11667,"Ġdignity":11668,"ĠLloyd":11669,"ĠBenjamin":11670,"65":11671,"UL":11672,"WH":11673,"dis":11674,"iate":11675,"ju":11676,"mun":11677,"ÂĻ":11678,"α":11679,"ĠIP":11680,"ĠIron":11681,"Ġdot":11682,"Ġpace":11683,"Ġhire":11684,"ĠAC":11685,"ĠAG":11686,"ĠWalt":11687,"Ġreun":11688,"acha":11689,"ĠCensus":11690,"ĠBart":11691,"uran":11692,"ĠGir":11693,"ĠLear":11694,"ĠFalls":11695,"Ġjoking":11696,"Ġjungle":11697,"ĠJake":11698,"Ġupside":11699,"Ġvague":11700,"ĠKaz":11701,"Ġwilliam":11702,"Ġcompre":11703,"ĠShel":11704,"irlines":11705,"Ġconspir":11706,"ĠSprings":11707,"ĠPrice":11708,"Ġartistic":11709,"Ġcreates":11710,"Ġadvis":11711,"Ġdeputy":11712,"Ġprotecting":11713,"Ġmisunder":11714,"afa":11715,"ĠMonte":11716,"ĠMedical":11717,"Thou":11718,"guard":11719,"Ġblessing":11720,"ĠMembers":11721,"Ġadventures":11722,"Ġspinning":11723,"Ġcigarette":11724,"Ġembarrassing":11725,"ĠPortugal":11726,"Ġcomponent":11727,"Ġwhistle":11728,"Ġbuttons":11729,"ĠKrishna":11730,"Ġmartial":11731,"ĠCosta":11732,"Ġfossil":11733,"Ġinsects":11734,"ĠPitts":11735,"Ġcomedian":11736,"ĠCEO":11737,"Ġcheeks":11738,"Ad":11739,"IX":11740,"Of":11741,"dad":11742,"found":11743,"iary":11744,"pse":11745,"parent":11746,"ĠIvan":11747,"Ġyog":11748,"asures":11749,"ĠTogether":11750,"Ġhence":11751,"ĠAah":11752,"ĠWOR":11753,"ĠHERE":11754,"ĠNort":11755,"ĠGus":11756,"ĠGab":11757,"ĠGOT":11758,"ĠLiter":11759,"ĠLiver":11760,"unted":11761,"Ġdeleg":11762,"Ġoutta":11763,"apse":11764,"ĠThirty":11765,"Ġquote":11766,"Ġblown":11767,"Ġchlor":11768,"pson":11769,"ĠAllies":11770,"venth":11771,"Ġhighlight":11772,"Ġ67":11773,"Ġdeadly":11774,"Ġ95":11775,"ĠConvention":11776,"Ġsunshine":11777,"Ġseparation":11778,"Ġvolcan":11779,"Ġwaist":11780,"APRI":11781,"Ġbehave":11782,"Ġtourist":11783,"ĠFerrier":11784,"Ġambulance":11785,"Ġencouraged":11786,"Ġchatter":11787,"Ġtroubled":11788,"Ġnomination":11789,"Ġscheduled":11790,"ĠRonald":11791,"Ġprocedures":11792,"08":11793,"nut":11794,"pers":11795,"such":11796,"Ġau":11797,"Ġpause":11798,"Ġgene":11799,"omous":11800,"ĠTreat":11801,"ĠTiger":11802,"ĠAPP":11803,"Ġange":11804,"Ġdoin":11805,"chuckles":11806,"ĠLower":11807,"ante":11808,"ĠRap":11809,"Ġdeals":11810,"Ġalike":11811,"Ġalert":11812,"Ġalleg":11813,"Ġconsec":11814,"Ġvo":11815,"Ġnoon":11816,"Ġarchae":11817,"ivia":11818,"Ġtrash":11819,"Ġloads":11820,"wegian":11821,"Ġdisgu":11822,"rency":11823,"Ġindicate":11824,"ANS":11825,"Ġpromote":11826,"Ġmessenger":11827,"ippi":11828,"Ġcatching":11829,"ĠSurely":11830,"ĠBoys":11831,"Ġsalary":11832,"Ġreduction":11833,"Ġdenied":11834,"Ġhypot":11835,"Ġpurchased":11836,"Ġvariable":11837,"Ġvegetables":11838,"Ġpreparation":11839,"ĠSongs":11840,"Ġconcluded":11841,"Ġdeaf":11842,"ĠCertainly":11843,"62":11844,"Okay":11845,"making":11846,"Ġod":11847,"Ġbury":11848,"encer":11849,"Ġpic":11850,"Ġpills":11851,"atar":11852,"ĠMam":11853,"riac":11854,"ĠYi":11855,"ĠDug":11856,"ifies":11857,"Ġseal":11858,"ĠRi":11859,"ĠFront":11860,"olics":11861,"Ġshy":11862,"Ġvit":11863,"Ġ1918":11864,"ako":11865,"cale":11866,"ivals":11867,"Ġquid":11868,"iren":11869,"arks":11870,"olla":11871,"Ġrecurs":11872,"ĠAllied":11873,"ée":11874,"ologies":11875,"Ġsmallest":11876,"ĠZone":11877,"enez":11878,"Ġhumor":11879,"Ġtransmit":11880,"Ġnicely":11881,"aneous":11882,"ĠChristine":11883,"Ġtennis":11884,"Ġstruct":11885,"Ġ1935":11886,"Ġdrops":11887,"ĠSmall":11888,"Ġcoverage":11889,"ĠMaur":11890,"Ġninth":11891,"ĠAngel":11892,"Ġdemands":11893,"itchell":11894,"ĠJerusalem":11895,"handed":11896,"fortunate":11897,"kerchief":11898,"ĠLisbon":11899,"Ġadvertising":11900,"ĠHunter":11901,"ĠLibrary":11902,"Ġneutral":11903,"Ġalgorithm":11904,"ĠDICAPRI":11905,"ĠDICAPRIO":11906,"El":11907,"bird":11908,"dig":11909,"him":11910,"mers":11911,"names":11912,"spe":11913,"Ġalex":11914,"Ġfet":11915,"Ġfiring":11916,"Ġdough":11917,"anas":11918,"ĠWick":11919,"ĠBorough":11920,"ĠDue":11921,"ĠPC":11922,"ĠPier":11923,"ĠEat":11924,"ieval":11925,"Ġcongrat":11926,"osidodecahedron":11927,"Ġoutput":11928,"Ġtwe":11929,"Ġscen":11930,"Ġhandling":11931,"ĠAlt":11932,"Ġcriter":11933,"Ġowns":11934,"Ġrelie":11935,"Ġ42":11936,"Ġharsh":11937,"Ġfinance":11938,"Ġmuscle":11939,"Ġassure":11940,"ĠSpace":11941,"Ġcolum":11942,"Ġcurve":11943,"Ġprovision":11944,"Ġ177":11945,"Ġbusinessman":11946,"ATION":11947,"Ġranks":11948,"ĠGrammy":11949,"ĠTHEY":11950,"Ġmurm":11951,"Ġtreaty":11952,"Ġdiag":11953,"Ġincreases":11954,"Ġmistaken":11955,"Ġrecognised":11956,"Ġstriking":11957,"ĠCourse":11958,"Ġidentical":11959,"Ġrevol":11960,"Ġobservation":11961,"OTH":11962,"Ġsensation":11963,"Ġflights":11964,"Ġfrequency":11965,"Ġcriticized":11966,"ĠMelbourne":11967,"Ġsuspected":11968,"Ġpraise":11969,"ĠGraham":11970,"ĠHugh":11971,"ĠTechnology":11972,"ĠAdministration":11973,"Ġunexpected":11974,"Ġnaughty":11975,"?!":11976,"PER":11977,"bac":11978,"chard":11979,"gal":11980,"wyn":11981,"zard":11982,"edge":11983,"Ġpile":11984,"aration":11985,"Ġly":11986,"Ġhut":11987,"Ġreception":11988,"ĠMans":11989,"ĠMade":11990,"ĠMerry":11991,"rik":11992,"ĠBass":11993,"ĠBund":11994,"ĠFruit":11995,"unes":11996,"Ġsob":11997,"Ġshone":11998,"ortion":11999,"Ġclick":12000,"Ġbetray":12001,"Ġmakeup":12002,"avia":12003,"Ġtragic":12004,"ĠSey":12005,"Ġbelieving":12006,"ĠNewton":12007,"Ġpointing":12008,"Ġdistinction":12009,"Ġproduces":12010,"Ġincom":12011,"Ġreader":12012,"Ġexperiments":12013,"Ġcommunicate":12014,"Ġveter":12015,"amba":12016,"Ġdestiny":12017,"Ġabsurd":12018,"ĠQuiet":12019,"ographical":12020,"Ġpropag":12021,"ĠCheers":12022,"Ġ1929":12023,"Ġcandle":12024,"Ġmummy":12025,"Ġcontribution":12026,"ĠCatal":12027,"Ġdiameter":12028,"ĠMemorial":12029,"ĠRelax":12030,"Ġpillow":12031,"Ġmysteries":12032,"ĠGilbert":12033,"ĠFaith":12034,"Ġingred":12035,"ĠArmenian":12036,"Ġprosper":12037,"Ġbehaviour":12038,".-":12039,"85":12040,"eor":12041,"maker":12042,"word":12043,"world":12044,"Ġtales":12045,"ouver":12046,"Ġsoutheast":12047,"Ġoops":12048,"Ġmales":12049,"Ġferry":12050,"Ġporn":12051,"Ġpatch":12052,"Ġpunk":12053,"Ġlos":12054,"lement":12055,"ĠSall":12056,"Ġbegg":12057,"ĠHat":12058,"ĠCors":12059,"Ġstared":12060,"Ġdock":12061,"ĠOUT":12062,"ĠGon":12063,"ĠLang":12064,"ĠLenn":12065,"oped":12066,"ĠFinal":12067,"ĠFitz":12068,"Ġjim":12069,"ĠJas":12070,"ĠKl":12071,"Ġ1914":12072,"ĠUpper":12073,"Ġlectures":12074,"nee":12075,"Ġcontempt":12076,"Ġchin":12077,"Ġpreserved":12078,"aleh":12079,"Ġinspiration":12080,"Ġmaintenance":12081,"Ġfights":12082,"Ġfucked":12083,"OUT":12084,"Ġdefine":12085,"Ġdefensive":12086,"ĠGeoff":12087,"Ġhath":12088,"ĠAustin":12089,"ORE":12090,"Ġceiling":12091,"Ġpractices":12092,"Ġcleaned":12093,"borough":12094,"Ġfemales":12095,"Ġtraveling":12096,"ĠRegional":12097,"Ġthreatening":12098,"Ġpercentage":12099,"Ġarguments":12100,"ĠDemocrats":12101,"Ġignore":12102,"belie":12103,"Ġpolyhedron":12104,"Ġ{\\":12105,"Ġsociet":12106,"ĠVivie":12107,"Ġphenomen":12108,"Com":12109,"Every":12110,"Per":12111,"Take":12112,"first":12113,"jin":12114,"mare":12115,"vals":12116,"Äį":12117,"Ġtent":12118,"Ġtension":12119,"Ġwag":12120,"Ġsab":12121,"Ġcam":12122,"Ġcater":12123,"ĠTob":12124,"ĠTrent":12125,"ĠAin":12126,"ĠSW":12127,"Ġthumb":12128,"Ġweld":12129,"ĠMitchell":12130,"ĠCou":12131,"ĠCand":12132,"ĠChampion":12133,"ĠPir":12134,"Ġnotion":12135,"ĠROB":12136,"Ġjerk":12137,"ando":12138,"oshi":12139,"ĠKw":12140,"ĠKra":12141,"Ġ1917":12142,"Ġbackpack":12143,"Ġunemploy":12144,"Ġimper":12145,"Ġscores":12146,"Ġcarpet":12147,"Ġdiff":12148,"Ġassets":12149,"Ġsignals":12150,"ĠCarib":12151,"Ġeats":12152,"Ġexplo":12153,"Ġ175":12154,"Ġpainful":12155,"ĠManhattan":12156,"ĠHarvey":12157,"Ġdesigner":12158,"Ġrepresentation":12159,"ĠJulia":12160,"EAD":12161,"Ġregularly":12162,"Ġbells":12163,"Ġconvicted":12164,"Ġliberal":12165,"Ġchemicals":12166,"Ġsuspicious":12167,"Ġagriculture":12168,"Ġsubstant":12169,"Ġelevator":12170,"becca":12171,"ĠJoyce":12172,"Ġfabric":12173,"Ġvaccine":12174,"ĠAntonio":12175,"ĠEthiop":12176,"ĠAthlet":12177,"Ġcolumns":12178,"94":12179,"AF":12180,"GUN":12181,"LSB":12182,"kar":12183,"lines":12184,"lNG":12185,"rac":12186,"six":12187,"Ġtu":12188,"eries":12189,"aron":12190,"Ġlod":12191,"usions":12192,"ĠMight":12193,"steps":12194,"ĠBast":12195,"ĠBrig":12196,"ĠNad":12197,"ĠDark":12198,"ĠDiam":12199,"ĠPull":12200,"Ġliver":12201,"ĠRaven":12202,"ĠRoute":12203,"ista":12204,"Ġrates":12205,"ĠKam":12206,"Ġspan":12207,"Ġadam":12208,"closed":12209,"Ġthrust":12210,"Ġleap":12211,"ĠAround":12212,"Ġconsol":12213,"Ġrealised":12214,"rows":12215,"Ġmush":12216,"Ġevac":12217,"ĠExam":12218,"Ġclassified":12219,"Ġcoron":12220,"ĠXV":12221,"Ġadmire":12222,"Ġlocalities":12223,"Ġcircus":12224,"Ġbullets":12225,"ĠHelen":12226,"ĠAntar":12227,"Ġchallenged":12228,"Ġreactions":12229,"ĠBradford":12230,"Ġconcentration":12231,"ĠHardy":12232,"ĠPersian":12233,"ĠBarbara":12234,"Ġstrategic":12235,"Ġthoroughly":12236,"Ġconvenient":12237,"ĠStewart":12238,"ĠMississippi":12239,"Pro":12240,"RSB":12241,"Te":12242,"hol":12243,"hour":12244,"lings":12245,"ê":12246,"Ġwages":12247,"Ġmol":12248,"enz":12249,"atoes":12250,"ĠTro":12251,"imony":12252,"ĠName":12253,"ĠNature":12254,"ifully":12255,"ĠLam":12256,"olia":12257,"ĠJama":12258,"Ġ1913":12259,"agine":12260,"Ġspots":12261,"active":12262,"ptic":12263,"Ġcompare":12264,"ubs":12265,"ructure":12266,"Ġcontents":12267,"Ġperpet":12268,"Ġmustn":12269,"ĠBey":12270,"Ġhomework":12271,"lessness":12272,"ĠClose":12273,"Ġskull":12274,"ĠAborig":12275,"eez":12276,"ĠĠĠĠĠĠĠĠĠĠĠ":12277,"Ġexplains":12278,"Ġbasement":12279,"Ġpoliticians":12280,"ATTER":12281,"Ġbarrel":12282,"Ġbargain":12283,"Ġlayout":12284,"hampagne":12285,"ĠChase":12286,"Ġ1933":12287,"Ġposted":12288,"ĠGlen":12289,"ĠMorris":12290,"Ġrobot":12291,"ür":12292,"Ġpsychiat":12293,"ĠCaroline":12294,"Ġmiracle":12295,"ön":12296,"Ġlogic":12297,"ĠTeddy":12298,"Ġpurely":12299,"Ġpaused":12300,"Ġtrailer":12301,"Ġritual":12302,"ĠMalaysia":12303,"ĠLiverpool":12304,"Co":12305,"free":12306,"rating":12307,"say":12308,"via":12309,"zheimer":12310,"ÏĦ":12311,"Ġο":12312,"Ġtenth":12313,"Ġber":12314,"Ġbicy":12315,"Ġnan":12316,"Ġnerve":12317,"owell":12318,"ĠSoph":12319,"ĠMumb":12320,"ĠCemetery":12321,"sta":12322,"ĠBR":12323,"ĠPole":12324,"ĠGE":12325,"ĠJosh":12326,"Ġrh":12327,"igma":12328,"Ġvirgin":12329,"Ġtwisted":12330,"Ġlob":12331,"ĠVenez":12332,"Ġunfortunate":12333,"ĠSheriff":12334,"Ġamateur":12335,"Ġprec":12336,"Ġserial":12337,"Ġhandkerchief":12338,"ĠAlber":12339,"ĠMarcus":12340,"ĠBron":12341,"Ġ43":12342,"Ġregards":12343,"Ġ57":12344,"Ġdrown":12345,"Ġswitched":12346,"Ġlocomot":12347,"Ġ85":12348,"Ġcontinuous":12349,"Ġsolic":12350,"Ġvisits":12351,"ĠHarvard":12352,"Ġterrified":12353,"Ġballoon":12354,"Ġorganisation":12355,"mingham":12356,"ĠJoan":12357,"Ġapprove":12358,"untary":12359,"Ġdepressed":12360,"Ġinvolving":12361,"ĠMcK":12362,"Ġrespectively":12363,"ĠCollins":12364,"regon":12365,"Ġ1924":12366,"Ġsticks":12367,"ĠMedal":12368,"ĠMadrid":12369,"ĠNorwegian":12370,"Ġcelebration":12371,"Ġdanced":12372,"ĠMilton":12373,"Ġutil":12374,"Ġremarked":12375,"Ġoccupation":12376,"ĠSharon":12377,"ĠDoug":12378,"colm":12379,"Ġwidow":12380,"ĠHands":12381,"Ġcertific":12382,"Ġmarginal":12383,"natural":12384,"inema":12385,"Ġbothered":12386,"Ġgorgeous":12387,"ĠKlein":12388,"05":12389,"Af":12390,"BE":12391,"Brit":12392,"ahedron":12393,"nal":12394,"produ":12395,"sky":12396,"xide":12397,"Ġtum":12398,"Ġware":12399,"Ġsins":12400,"Ġbob":12401,"Ġbonds":12402,"Ġcents":12403,"oro":12404,"orph":12405,"Ġgum":12406,"Ġhosp":12407,"imm":12408,"acre":12409,"ĠCase":12410,"ĠCrit":12411,"ĠCBS":12412,"ĠLily":12413,"ĠFuk":12414,"through":12415,"Ġsocks":12416,"hana":12417,"orting":12418,"Ġnobles":12419,"ĠNoah":12420,"ĠStock":12421,"Ġpeoples":12422,"osexual":12423,"neum":12424,"Ġcomprom":12425,"irect":12426,"rup":12427,"Ġguid":12428,"Ġresolution":12429,"Ġreserve":12430,"olds":12431,"Ġmini":12432,"Ġelabor":12433,"Ġinsisted":12434,"Ġdecides":12435,"Ġwarming":12436,"Ġbuses":12437,"Ġcolonel":12438,"Ġbabe":12439,"OUGH":12440,"Ġvisiting":12441,"ĠGuess":12442,"chair":12443,"Ġbottles":12444,"Ġhanged":12445,"Ġactivist":12446,"OWN":12447,"Ġ1890":12448,"Ġvanished":12449,"ĠDevon":12450,"ĠArabia":12451,"Ġrequirements":12452,"Ġaxis":12453,"Ġlegislation":12454,"ĠCroce":12455,"Ġtorture":12456,"Ġcontroversy":12457,"ĠCroatian":12458,"Ġdisagre":12459,"Ġproportion":12460,"ĠDynasty":12461,"Ġfictional":12462,"ĠCaribbean":12463,"Che":12464,"SA":12465,"cat":12466,"houses":12467,"qi":12468,"rams":12469,"whel":12470,"ú":12471,"Ġwolves":12472,"reh":12473,"Ġinev":12474,"arat":12475,"aser":12476,"ĠTru":12477,"Ġhilda":12478,"eta":12479,"ĠMes":12480,"ĠChat":12481,"ĠCraw":12482,"stall":12483,"ĠDob":12484,"ĠDrop":12485,"ĠPsych":12486,"andin":12487,"ĠEM":12488,"elli":12489,"elic":12490,"aba":12491,"Ġagencies":12492,"acey":12493,"Ġclay":12494,"ĠVic":12495,"Ġcargo":12496,"ĠAns":12497,"ĠIsabel":12498,"Ġcounted":12499,"Ġkindness":12500,"Ġslap":12501,"Ġinvisible":12502,"Ġmuscles":12503,"Ġassured":12504,"ĠSpirit":12505,"ĠClinton":12506,"Ġfewer":12507,"Ġcollar":12508,"Ġartillery":12509,"Ġfilmed":12510,"Ġ98":12511,"Ġrifle":12512,"ĠFlowers":12513,"ĠAdv":12514,"pring":12515,"ĠLords":12516,"Ġpenet":12517,"Ġ1927":12518,"Ġkissing":12519,"Ġobserv":12520,"ĠBoyd":12521,"Ġsurviv":12522,"related":12523,"ancouver":12524,"ĠCatholics":12525,"ĠDelaware":12526,"Ġphilosoph":12527,"Ġacquaint":12528,"Ġcustomer":12529,"Ġclimbing":12530,"IGHS":12531,"Ġwritings":12532,"Ġcorporate":12533,"ĠCraig":12534,"Ġaccomplished":12535,"Ġlungs":12536,"ĠAfghanistan":12537,"Ġgossip":12538,"92":12539,"OG":12540,"PH":12541,"á»":12542,"Ġtο":12543,"Ġoct":12544,"itness":12545,"Ġcups":12546,"Ġflex":12547,"Ġpi":12548,"arms":12549,"Ġhint":12550,"Ġhip":12551,"usk":12552,"ĠAges":12553,"Ġecho":12554,"ĠHud":12555,"ĠBour":12556,"ĠNBA":12557,"ĠGang":12558,"ĠLt":12559,"ĠFro":12560,"ĠFund":12561,"Ġjer":12562,"iege":12563,"essa":12564,"Ġexit":12565,"Ġmankind":12566,"Ġcoin":12567,"Ġneedle":12568,"Ġrabb":12569,"ĠReed":12570,"Ġsymmet":12571,"Ġchasing":12572,"Ġkidney":12573,"ĠBlake":12574,"Ġtriumph":12575,"Ġmarkets":12576,"Ġawait":12577,"Ġtrend":12578,"Ġlowest":12579,"boat":12580,"yram":12581,"OMAN":12582,"ĠAngela":12583,"ĠDesign":12584,"Ġdispute":12585,"Ġsmells":12586,"Ġpsycho":12587,"Ġsatisfaction":12588,"ĠObviously":12589,"Ġcategories":12590,"Ġpartnership":12591,"Ġestablishment":12592,"Ġinterrupted":12593,"ĠOriental":12594,"Ġnitrogen":12595,"ĠWrestling":12596,"ĠMicrosoft":12597,"Ġartificial":12598,"Ġmagnificent":12599,".;":12600,"By":12601,"See":12602,"round":12603,"whe":12604,"à¥":12605,"isure":12606,"Ġbree":12607,"itudes":12608,"Ġdried":12609,"Ġpiss":12610,"Ġlou":12611,"Ġhug":12612,"ione":12613,"Ġrect":12614,"riel":12615,"ribe":12616,"ĠBasket":12617,"ĠPam":12618,"ĠLabor":12619,"anta":12620,"ĠFal":12621,"ĠEnt":12622,"ĠEqu":12623,"ĠEmb":12624,"ĠJun":12625,"ĠJournal":12626,"Ġcann":12627,"eston":12628,"Ġshorter":12629,"Ġconvert":12630,"ĠKha":12631,"ĠStorm":12632,"Ġblows":12633,"pling":12634,"Ġprey":12635,"ĠAlaska":12636,"ĠMarilla":12637,"Ġ52":12638,"Ġdecade":12639,"Ġinvaded":12640,"Ġ600":12641,"Ġimpat":12642,"Ġrepair":12643,"Ġmainland":12644,"Ġpromises":12645,"Ġtriple":12646,"ikes":12647,"Ġpathetic":12648,"Ġsnakes":12649,"ĠPeters":12650,"ĠEdith":12651,"ĠEnv":12652,"ĠEnjoy":12653,"Ġ1921":12654,"Ġpermit":12655,"Ġbanned":12656,"ĠGrandpa":12657,"Ġdelicate":12658,"Ġpriority":12659,"Ġmythology":12660,"Ġtowel":12661,"Ġswallow":12662,"Ġpublisher":12663,"ĠPLAY":12664,"Ġadapted":12665,"Ġvulnerable":12666,"Ġpeekaboo":12667,"ĠSebastian":12668,"ĠPittsburgh":12669,"400":12670,"66":12671,"cad":12672,"iens":12673,"top":12674,"vonne":12675,"ativity":12676,"asm":12677,"Ġgau":12678,"ĠSax":12679,"Ġbee":12680,"amous":12681,"ĠMR":12682,"illo":12683,"ĠOregon":12684,"Ġsew":12685,"ĠLan":12686,"oper":12687,"ĠRand":12688,"ĠHeb":12689,"ĠHeart":12690,"ĠItanium":12691,"Ġjokes":12692,"ĠJi":12693,"Ġalter":12694,"istical":12695,"emed":12696,"ĠAndre":12697,"ĠKey":12698,"Ġleather":12699,"Ġcompound":12700,"ĠAlzheimer":12701,"Ġcounties":12702,"insky":12703,"Ġgloves":12704,"Ġsubur":12705,"uffs":12706,"Ġresting":12707,"Ġordering":12708,"ovak":12709,"Ġrocket":12710,"Ġappearing":12711,"Ġsends":12712,"Ġcrept":12713,"Ġpropose":12714,"Ġ250":12715,"Ġ1926":12716,"ĠSamuel":12717,"Ġflee":12718,"Ġreferring":12719,"USE":12720,"ĠMatcham":12721,"ĠDelta":12722,"ĠNathan":12723,"Ġsurround":12724,"agonal":12725,"Ġpreferred":12726,"ĠNazis":12727,"Ġanswering":12728,"Ġsuspicion":12729,"ĠRomans":12730,"ĠNEW":12731,"ĠBelgian":12732,"Ġdemocracy":12733,"ĠPictures":12734,"ĠExecutive":12735,"Ġrehears":12736,"ML":12737,"PA":12738,"],":12739,"fr":12740,"fu":12741,"zan":12742,"inth":12743,"Ġwret":12744,"Ġcm":12745,"Ġpizza":12746,"Ġls":12747,"Ġrelevant":12748,"riz":12749,"Ġumb":12750,"Ġlip":12751,"Ġjunk":12752,"ĠEither":12753,"umi":12754,"estyle":12755,"Ġexhib":12756,"ods":12757,"Ġmanip":12758,"Ġlovers":12759,"ishment":12760,"Ġoffensive":12761,"aux":12762,"olley":12763,"Ġmarching":12764,"Ġ54":12765,"Ġdrummer":12766,"Ġobsc":12767,"Ġemp":12768,"ĠClara":12769,"Ġfilming":12770,"ĠTrade":12771,"Ġcontrolling":12772,"Ġagenda":12773,"cover":12774,"sterdam":12775,"Ġorganised":12776,"ĠAnyone":12777,"ĠColon":12778,"Ġdiary":12779,"Ġcharacteristics":12780,"ominations":12781,"Ġphysically":12782,"ĠSimilar":12783,"ĠPrior":12784,"ĠOlya":12785,"ĠSaudi":12786,"Ġrubbish":12787,"Ġmechanical":12788,"Ġconsumption":12789,"Ġrequested":12790,"ĠJeffrey":12791,"Ġaccompany":12792,"................":12793,"Ġstimul":12794,"Ġsustainable":12795,"Ġnickname":12796,"Ġgalax":12797,"Ġregistered":12798,"ĠSofla":12799,"Ġcurtains":12800,"namese":12801,"Great":12802,"Mus":12803,"PC":12804,"Species":12805,"gans":12806,"rations":12807,"uji":12808,"haus":12809,"Ġcemetery":12810,"Ġdwarf":12811,"Ġpneum":12812,"Ġlemon":12813,"ĠSop":12814,"ĠWoo":12815,"Ġrecept":12816,"ĠCry":12817,"ĠBranch":12818,"alle":12819,"ĠNon":12820,"ĠOcc":12821,"ĠLE":12822,"rained":12823,"ĠRiley":12824,"ĠFrem":12825,"Ġdefect":12826,"Ġcancel":12827,"odia":12828,"venge":12829,"ĠThor":12830,"Ġtwent":12831,"Ġtrous":12832,"Ġtricks":12833,"ormal":12834,"ĠBrid":12835,"ĠDeep":12836,"Ġindigenous":12837,"ibal":12838,"Ġsworn":12839,"braska":12840,"Ġterminal":12841,"ĠPhoen":12842,"Ġdesignated":12843,"Ġ1931":12844,"Ġcrystal":12845,"Ġforgetting":12846,"Ġcollecting":12847,"ĠHighland":12848,"Ġ1925":12849,"Ġsailor":12850,"Ġsticky":12851,"ĠOthers":12852,"ĠWouldn":12853,"Ġmixture":12854,"Ġsandwich":12855,"iotics":12856,"Ġloudly":12857,"Ġstruggling":12858,"Ġrestaurants":12859,"intendent":12860,"ĠBrandon":12861,"Ġresponded":12862,"ĠAdmiralty":12863,"Ġsubsid":12864,"Ġvertices":12865,"mphony":12866,"Ġbombs":12867,"Ġbridges":12868,"ĠLionel":12869,"ĠUtah":12870,"Ġalleged":12871,"Ġbundle":12872,"Din":12873,"List":12874,"cott":12875,"dr":12876,"dia":12877,"hr":12878,"nun":12879,"Ġties":12880,"Ġtang":12881,"inea":12882,"rend":12883,"Ġcust":12884,"Ġmice":12885,"Ġmaps":12886,"ĠIF":12887,"orable":12888,"Ġlazy":12889,"asks":12890,"ĠTal":12891,"enton":12892,"ĠCit":12893,"ĠBuff":12894,"Ġaspir":12895,"ĠDE":12896,"ĠDifferent":12897,"hers":12898,"ĠPA":12899,"ĠRIGHT":12900,"Ġdeer":12901,"ĠJunior":12902,"Ġsovere":12903,"ellig":12904,"essions":12905,"ĠKid":12906,"ĠUR":12907,"Ġmanners":12908,"Ġmanaging":12909,"high":12910,"ĠVideo":12911,"ĠVancouver":12912,"Ġflame":12913,"Ġhandled":12914,"Ġrecru":12915,"ĠAllan":12916,"ontin":12917,"Ġpolar":12918,"Ġcaps":12919,"Ġproducers":12920,"Ġcolleges":12921,"ĠAbby":12922,"Ġclassroom":12923,"Ġpatience":12924,"ĠManagement":12925,"Ġoperates":12926,"ĠAmsterdam":12927,"Ġattacking":12928,"Ġsummon":12929,"ĠPerfect":12930,"ĠColin":12931,"Ġworrying":12932,"Ġsexy":12933,"Ġpenalty":12934,"Ġrainbow":12935,"Ġfemin":12936,"Ġsurvival":12937,"ammar":12938,"ĠMagazine":12939,"ĠKarl":12940,"ĠMurphy":12941,"Ġconsumer":12942,"Ġdelightful":12943,"Ġcontroversial":12944,"Ġdiagnosed":12945,"Ġrecycling":12946,"NO":12947,"OH":12948,"West":12949,"bat":12950,"cs":12951,"lace":12952,"xy":12953,"inch":12954,"Ġdining":12955,"Ġpissed":12956,"Ġinput":12957,"level":12958,"Ġhipp":12959,"oton":12960,"Ġheap":12961,"alysis":12962,"ĠSout":12963,"ĠSham":12964,"ĠWard":12965,"ĠWald":12966,"ĠHamps":12967,"ĠMember":12968,"stick":12969,"irable":12970,"irrel":12971,"ĠNiger":12972,"ĠPil":12973,"Ġsealed":12974,"ĠLud":12975,"ĠFan":12976,"ĠHear":12977,"thou":12978,"arte":12979,"oded":12980,"soever":12981,"Ġclip":12982,"Ġoverwhel":12983,"ountain":12984,"Ġcoff":12985,"Ġbetrayed":12986,"Ġscandal":12987,"ĠMarion":12988,"Ġsurgeon":12989,"Ġmonument":12990,"atively":12991,"ĠTHERE":12992,"Ġextinct":12993,"Ġfighter":12994,"Ġdreamed":12995,"Ġsouthwest":12996,"ĠItalians":12997,"Ġpropos":12998,"ĠChem":12999,"Ġphotographer":13000,"Ġsecretly":13001,"Ġengineers":13002,"Ġpotato":13003,"Ġinfluential":13004,"Ġdiscussing":13005,"Ġplanted":13006,"ĠBrahm":13007,"Ġtendency":13008,"Ġirre":13009,"Ġlosses":13010,"Chuckles":13011,"Ġpuppy":13012,"Ġrecommended":13013,"ĠCambridge":13014,"Ġgathering":13015,"Ġinflation":13016,"ĠPuerto":13017,"Ġrugby":13018,"Ġfrankly":13019,"ĠBaseball":13020,"Ġpeasants":13021,"Ġvoyage":13022,"ĠEventually":13023,"ĠMumbai":13024,"ĠHampshire":13025,"Dr":13026,"Down":13027,"SON":13028,"dri":13029,"kers":13030,"tic":13031,"Ãł":13032,"ĪĴ":13033,"Ġwrap":13034,"repre":13035,"Ġsigh":13036,"oning":13037,"Ġgardens":13038,"omi":13039,"eton":13040,"ettle":13041,"Ġbegging":13042,"ĠWals":13043,"Ġrevers":13044,"ĠMult":13045,"ĠCause":13046,"storm":13047,"ĠBald":13048,"ĠNah":13049,"ĠOscar":13050,"ĠPas":13051,"ĠGener":13052,"ĠRat":13053,"ĠFun":13054,"ulu":13055,"abama":13056,"ĠKind":13057,"agen":13058,"agraph":13059,"hika":13060,"Ġclo":13061,"Ġclue":13062,"Ġclause":13063,"Ġgrasp":13064,"plus":13065,"rug":13066,"Ġpole":13067,"ĠChun":13068,"ĠAlong":13069,"Ġconsisted":13070,"Ġlighter":13071,"Ġlightning":13072,"Ġdrawer":13073,"Ġ77":13074,"Ġcouch":13075,"ĠHarold":13076,"Ġterrific":13077,"Ġengage":13078,"Ġruins":13079,"Ġexceptions":13080,"Ġ1923":13081,"Ġfeaturing":13082,"Station":13083,"Ġdresses":13084,"ĠBelieve":13085,"Ġsurviving":13086,"ĠMalcolm":13087,"Ġdigging":13088,"ĠRailroad":13089,"ès":13090,"Ġautomatically":13091,"Ġmurders":13092,"ĠHungary":13093,"Ġbatteries":13094,"Ġmolecules":13095,"Ġloyalty":13096,"ĠBirmingham":13097,"Ġevidently":13098,"Ġsearched":13099,"ĠGentlemen":13100,"Ġoverseas":13101,"Ġguidance":13102,"reprene":13103,":\"":13104,"CA":13105,"Cha":13106,"Fran":13107,"Que":13108,"hou":13109,"lon":13110,"maid":13111,"uously":13112,"Ġze":13113,"isons":13114,"Ġbisc":13115,"Ġfoul":13116,"Ġles":13117,"Ġlane":13118,"Ġnail":13119,"Ġheels":13120,"ĠSaw":13121,"Ġbew":13122,"ĠWright":13123,"ĠHose":13124,"ĠHaj":13125,"ĠMaid":13126,"ĠBureau":13127,"ĠYang":13128,"Ġassemb":13129,"ĠPly":13130,"raine":13131,"ĠEva":13132,"ppen":13133,"pple":13134,"ĠKids":13135,"Ġqueer":13136,"Ġbrass":13137,"issance":13138,"Ġprejud":13139,"Ġflung":13140,"Ġsecured":13141,"Ġslipp":13142,"ĠDeal":13143,"Ġcheating":13144,"Ġharbour":13145,"Ġeleg":13146,"Ġenters":13147,"Ġ66":13148,"ĠSpart":13149,"Ġgraves":13150,"Ġplanes":13151,"Ġmedieval":13152,"Ġwinners":13153,"oviÄĩ":13154,"Ġpatron":13155,"ĠHarper":13156,"Ġestimate":13157,"Ġdevoted":13158,"Ġruling":13159,"Ġrecognise":13160,"Ġverse":13161,"Ġphysic":13162,"Ġcooling":13163,"offs":13164,"Ġdressing":13165,"ĠFinland":13166,"ĠWHO":13167,"Ġsymbols":13168,"ÃŃa":13169,"Ġcomposers":13170,"Ġboundaries":13171,"Ġchapel":13172,"Ġdiamonds":13173,"Ġlaboratory":13174,"Ġvirtue":13175,"Ġpreparing":13176,"Ġborrowed":13177,"Ġjewel":13178,"ĠBloody":13179,"LAUGHS":13180,"ĠFelix":13181,"ĠAuthority":13182,"Ġhelicopter":13183,"ĠErnest":13184,"ĠMacedonia":13185,"Ġhedge":13186,"ĠIsaac":13187,"58":13188,"Have":13189,"bin":13190,"bul":13191,"ere":13192,"last":13193,"var":13194,"Ġtel":13195,"Ġsunk":13196,"erals":13197,"Ġbats":13198,"Ġmand":13199,"Ġfist":13200,"Ġfran":13201,"anim":13202,"Ġpian":13203,"Ġpadd":13204,"Ġofthe":13205,"arter":13206,"Ġln":13207,"aland":13208,"ĠAway":13209,"ĠSaf":13210,"ĠSciences":13211,"Ġthomas":13212,"Ġwasting":13213,"ĠHum":13214,"ĠMis":13215,"ĠBright":13216,"ĠNarr":13217,"ĠDow":13218,"ĠDraft":13219,"terior":13220,"ĠLag":13221,"ĠJai":13222,"ights":13223,"sole":13224,"Ġovercome":13225,"Ġblade":13226,"wealth":13227,"Ġprecip":13228,"onson":13229,"orship":13230,"Ġshalt":13231,"phones":13232,"Ġharvest":13233,"Ġfinest":13234,"Ġ51":13235,"iba":13236,"grade":13237,"és":13238,"otton":13239,"Ġinvitation":13240,"Ġdistress":13241,"ĠJustin":13242,"Ġpopulations":13243,"reaming":13244,"Ġimpulse":13245,"Ġforehead":13246,"Ġrip":13247,"Ġprofound":13248,"Ġpaste":13249,"Ġelectrons":13250,"Ġdeparture":13251,"Ġcharacteristic":13252,"Ġprivacy":13253,"ĠCoach":13254,"Ġobjective":13255,"ĠMadison":13256,"Ġdependent":13257,"ĠPrivate":13258,"Ġ1904":13259,"Ġsenses":13260,"Ġbowed":13261,"ĠMarket":13262,"ĠÃĹ":13263,"Ġblend":13264,"Ġspreading":13265,"Ġreminds":13266,"ĠSquad":13267,"ĠConservative":13268,"Ġqualities":13269,"Ġghosts":13270,"Ġshadows":13271,"Ġconsistent":13272,"Ġconstruct":13273,"Phone":13274,"ĠJessica":13275,"Ġanchor":13276,"ĠLAUGHTER":13277,"ĠNicholas":13278,"Super":13279,"ĠFremantle":13280,"91":13281,"Pa":13282,"Rober":13283,"ais":13284,"eed":13285,"eight":13286,"oj":13287,"pot":13288,"pol":13289,"rast":13290,"yed":13291,"ν":13292,"Ġbol":13293,"Ġbail":13294,"Ġfog":13295,"oric":13296,"Ġpul":13297,"Ġhood":13298,"ĠAction":13299,"Ġbeam":13300,"ĠMall":13301,"ĠManu":13302,"Ġwhip":13303,"ĠPE":13304,"ĠPle":13305,"ĠLinda":13306,"unci":13307,"Ġrud":13308,"osy":13309,"abet":13310,"Ġplun":13311,"Ġsheets":13312,"ĠInside":13313,"Ġamid":13314,"ogen":13315,"Ġburial":13316,"ensed":13317,"Ġappet":13318,"itionally":13319,"Ġmarched":13320,"Ġchew":13321,"Ġregulations":13322,"Ġpreserve":13323,"Ġboast":13324,"Ġdrums":13325,"Ġcharm":13326,"Ġsimult":13327,"Ġsitcom":13328,"ĠOrd":13329,"Ġ81":13330,"Ġ71":13331,"Ġparagraph":13332,"ovan":13333,"ĠTrump":13334,"Ġsquire":13335,"ĠHero":13336,"ĠShaw":13337,"Ġpublicly":13338,"ĠCapital":13339,"Ġcircles":13340,"END":13341,"Ġtestimony":13342,"Ġimagined":13343,"Ġanticip":13344,"Ġcorners":13345,"Ġmarketing":13346,"Ġobserve":13347,"ĠGreeks":13348,"Ġpermitted":13349,"Ġpersist":13350,"Ġtourists":13351,"Ġrobbery":13352,"ĠMetropolitan":13353,"Ġdancer":13354,"ĠRadha":13355,"white":13356,"Ġcommerce":13357,"Ġcontributions":13358,"market":13359,"Ġaltar":13360,"Ġlicence":13361,"Ġmotorcycle":13362,"Ġminority":13363,"EEP":13364,"Ġtraditionally":13365,"hearted":13366,"ĠVenice":13367,"Ġwealthy":13368,"Ġembarrassed":13369,"ĠBulgar":13370,"ĠMichelle":13371,"ĠFriends":13372,"Ġeternal":13373,"Ġbronze":13374,"Ġrelieved":13375,"ĠBundes":13376,"ĠPlymouth":13377,"96":13378,"==":13379,"Bob":13380,"aver":13381,"may":13382,"rics":13383,"sal":13384,"want":13385,"zo":13386,"Ġtire":13387,"Ġtatt":13388,"Ġmaj":13389,"Ġdent":13390,"Ġdensity":13391,"encing":13392,"Ġtore":13393,"Ġtobac":13394,"ĠTW":13395,"ĠTamp":13396,"Ġheir":13397,"ĠWP":13398,"ĠWANT":13399,"Ġreef":13400,"ĠMAR":13401,"ĠBL":13402,"ĠBret":13403,"ĠDiana":13404,"ĠOR":13405,"ĠPy":13406,"ĠPit":13407,"ĠKir":13408,"ĠStaff":13409,"Ġpean":13410,"ĠOhh":13411,"Ġcompens":13412,"Ġscoring":13413,"gina":13414,"ĠBeh":13415,"ĠRebecca":13416,"ét":13417,"Ġelector":13418,"INK":13419,"Ġdrowned":13420,"Ġglanced":13421,"Ġswore":13422,"Ġchains":13423,"Ġchased":13424,"ĠLeban":13425,"meal":13426,"Ġcollapse":13427,"Ġdrain":13428,"Ġhumili":13429,"Ġexpense":13430,"Ġlawyers":13431,"ervoir":13432,"Ġsweep":13433,"covery":13434,"Ġprocessing":13435,"ĠGreater":13436,"Ġbiological":13437,"Ġkicking":13438,"Ġcomplaint":13439,"OSE":13440,"Ġscrub":13441,"ĠPlayStation":13442,"Ġmanufacturing":13443,"ĠBreak":13444,"ĠSHE":13445,"Ġcalculated":13446,"Ġultimate":13447,"ĠBrazilian":13448,"Black":13449,"Ġsympat":13450,"Ġmosque":13451,"ĠChandler":13452,"Ġgeometry":13453,"Ġdisgrace":13454,"isdiction":13455,"ĠBasketball":13456,"ĠEnvironment":13457,"77":13458,"Mon":13459,"SI":13460,"good":13461,"mind":13462,"tles":13463,"Ġsighed":13464,"atics":13465,"ĠTroll":13466,"Ġhind":13467,"Ġhabits":13468,"ĠSE":13469,"ĠSac":13470,"ĠSleep":13471,"verted":13472,"aders":13473,"Ġascend":13474,"ĠGate":13475,"ĠRaw":13476,"ĠRena":13477,"uno":13478,"unty":13479,"Ġsuits":13480,"Ġexhibit":13481,"Ġ1915":13482,"Ġblond":13483,"ruct":13484,"Ġflip":13485,"Ġresidence":13486,"Ġshapes":13487,"ĠAlabama":13488,"cese":13489,"Ġnamely":13490,"Ġforming":13491,"azines":13492,"Ġlists":13493,"Ġgrapes":13494,"Ġexposure":13495,"Ġcontinuing":13496,"Ġhates":13497,"Ġdealer":13498,"ĠWorks":13499,"umbo":13500,"ĠCommunic":13501,"Ġcamps":13502,"Ġtreating":13503,"Ġradical":13504,"Ġcollections":13505,"ĠSmart":13506,"ĠJere":13507,"regular":13508,"Ġ1922":13509,"Ġtraveled":13510,"Ġmedication":13511,"Ġexamined":13512,"Ġaccessible":13513,"IDE":13514,"Ġtexts":13515,"Ġfrost":13516,"Ġcycl":13517,"Ġimprovement":13518,"Ġarrangements":13519,"ĠHorse":13520,"Ġseverely":13521,"ĠBroadcast":13522,"ĠCommissioner":13523,"Ġconsequence":13524,"Ġoccasional":13525,"ĠGibbs":13526,"Ġpronounced":13527,"Ġadjacent":13528,"Ġnarrative":13529,"Ġfascinating":13530,"Ġinterfere":13531,"Ġdatab":13532,"Ġsatellite":13533,"Ġcriteria":13534,"93":13535,"Hello":13536,"__":13537,"card":13538,"iper":13539,"iji":13540,"khar":13541,"mie":13542,"person":13543,"rice":13544,"ãģ":13545,"Ġoat":13546,"Ġfu":13547,"lla":13548,"Ġpoured":13549,"Ġyummy":13550,"Ġinaug":13551,"icular":13552,"Ġhither":13553,"othe":13554,"ĠSeth":13555,"ĠSlo":13556,"ĠHannah":13557,"amo":13558,"amoto":13559,"ĠMeth":13560,"stop":13561,"Ġmeals":13562,"ĠDol":13563,"Ġwhore":13564,"ĠOm":13565,"ĠPick":13566,"ĠLocal":13567,"ophy":13568,"ĠFried":13569,"Ġsoccer":13570,"Ġworries":13571,"Ġvest":13572,"Ġ1912":13573,"Ġthemes":13574,"Ġarguing":13575,"Ġclan":13576,"acts":13577,"Ġquad":13578,"onda":13579,"ĠVance":13580,"orns":13581,"adeh":13582,"Ġmoist":13583,"Ġapprent":13584,"Ġscales":13585,"ocity":13586,"Ġcrashed":13587,"ĠForgive":13588,"Ġsubdiv":13589,"Ġinstruction":13590,"Ġ88":13591,"Ġdefinite":13592,"Ġhonourable":13593,"ĠSeeing":13594,"uka":13595,"Ġ1909":13596,"ĠReserve":13597,"Ġheroes":13598,"Ġmultiply":13599,"Ġdefended":13600,"Ġdefendant":13601,"ĠEllis":13602,"ĠGOOD":13603,"Ġglobe":13604,"Ġrescued":13605,"Ġneighbourhood":13606,"Ġdismissed":13607,"Ġincreasingly":13608,"Ġinstrumental":13609,"Ġdelayed":13610,"ĠSuppose":13611,"Ġcolleague":13612,"Ġsync":13613,"Ġobliged":13614,"ĠDrive":13615,"Ġprivilege":13616,"Billboard":13617,"ĠGiralda":13618,"Ġtobacco":13619,"ĠJeremy":13620,",.":13621,"04":13622,"DO":13623,"SN":13624,"Tell":13625,"rep":13626,"eros":13627,"ĠIke":13628,"inge":13629,"Ġdual":13630,"Ġpulse":13631,"Ġpyram":13632,"Ġlun":13633,"Ġhaw":13634,"ĠSri":13635,"Ġwasted":13636,"aco":13637,"ĠHm":13638,"ĠMull":13639,"ĠMason":13640,"ĠMister":13641,"ĠCatch":13642,"ĠBuc":13643,"Ġstalk":13644,"ĠNy":13645,"ĠDong":13646,"rawn":13647,"ĠJUST":13648,"Ġorn":13649,"Ġrational":13650,"Ġcongreg":13651,"Ġoutfit":13652,"Ġexport":13653,"Ġvom":13654,"Ġoffence":13655,"neg":13656,"Ġamend":13657,"Ġbru":13658,"Ġflames":13659,"Ġserver":13660,"Ġchannels":13661,"ĠReview":13662,"ĠDerek":13663,"Ġ58":13664,"ĠâϬ":13665,"Ġsubway":13666,"ĠWhoever":13667,"ĠCommer":13668,"Ġrestore":13669,"Ġreaders":13670,"Ġsigning":13671,"inaudible":13672,"atti":13673,"Ġcolored":13674,"Ġreflected":13675,"Ġcurrency":13676,"ONG":13677,"Ġguessed":13678,"ĠNeed":13679,"ĠJoey":13680,"ĠRomanian":13681,"Ġarrives":13682,"Ġenerg":13683,"Ġcloses":13684,"Ġaudio":13685,"Ġtemperatures":13686,"Ġurgent":13687,"Ġsignificance":13688,"Ġfirmly":13689,"Ġcomposition":13690,"Ġconviction":13691,"Ġfolded":13692,"ĠHeavy":13693,"Ġguitarist":13694,"ĠRaja":13695,"Ġadvertis":13696,"ĠThailand":13697,"ĠGlobal":13698,"Ġpursuit":13699,"course":13700,"Ġcrayons":13701,"Ġopponent":13702,"ĠExamples":13703,"ĠSophie":13704,"ĠHudson":13705,"Queen":13706,"Bar":13707,"King":13708,"Laughs":13709,"cap":13710,"fucker":13711,"giving":13712,"hog":13713,"somet":13714,"shire":13715,"Ġwilt":13716,"Ġcodes":13717,"Ġmu":13718,"Ġtoxic":13719,"Ġnails":13720,"etta":13721,"Ġhare":13722,"Ġhack":13723,"Ġhaste":13724,"usively":13725,"Ġrevel":13726,"ĠHob":13727,"ĠMik":13728,"riger":13729,"rod":13730,"Ġstout":13731,"Ġassembly":13732,"ĠNope":13733,"ĠDiet":13734,"ĠOv":13735,"Ġ\"'":13736,"ĠGas":13737,"ĠLot":13738,"ĠRis":13739,"ĠRangers":13740,"ĠFM":13741,"ppers":13742,"Ġalliance":13743,"Ġrack":13744,"Ġtwins":13745,"Ġlean":13746,"necess":13747,"izzy":13748,".\"--_":13749,"Ġapparent":13750,"xton":13751,"Ġministers":13752,"Ġmarine":13753,"Ġcharts":13754,"ĠSpani":13755,"ierra":13756,"Ġopenly":13757,"Ġsignature":13758,"Ġprett":13759,"Ġpays":13760,"2013":13761,"shop":13762,"Ġtopics":13763,"Ġprotocol":13764,"Ġcorrupt":13765,"ĠEmil":13766,"Ġballet":13767,"Ġreporting":13768,"Ġsupports":13769,"Ġzinc":13770,"ĠPerkins":13771,"Ġlawn":13772,"Ġmisery":13773,"Ġsticking":13774,"ĠSteel":13775,"Ġsharply":13776,"ĠHelena":13777,"Ġsaddle":13778,"Ġexplaining":13779,"ĠSalz":13780,"minar":13781,"ĠFeel":13782,"Ġwitnesses":13783,"Ġexclusive":13784,"Ġscrewed":13785,"Ġmagnetic":13786,"Ġbacon":13787,"Ġfantasy":13788,"Ġtransformation":13789,"ĠGallery":13790,"Ġhorns":13791,"Ġwandering":13792,"Ġstabbed":13793,"ĠPeninsula":13794,"ĠAbdul":13795,"Ġchristmas":13796,"Ġannouncement":13797,"Ġmanifest":13798,"Ġabundant":13799,"Ġtrousers":13800,"02":13801,"BLE":13802,"Col":13803,"Em":13804,"Give":13805,"IO":13806,"apped":13807,"cH":13808,"cca":13809,"eches":13810,"hill":13811,"ipt":13812,"jam":13813,"rise":13814,"uum":13815,"uity":13816,"Ġbio":13817,"Ġborough":13818,"Ġcakes":13819,"Ġchampions":13820,"anche":13821,"lley":13822,"Ġpp":13823,"Ġpad":13824,"Ġlest":13825,"asi":13826,"ĠTit":13827,"ĠTak":13828,"Ġthither":13829,"Ġonwards":13830,"ĠMater":13831,"ĠCary":13832,"ĠBerm":13833,"Ġkit":13834,"Ġashes":13835,"ĠNina":13836,"ĠGarden":13837,"ulum":13838,"Ġjet":13839,"ĠEP":13840,"ĠEVER":13841,"estone":13842,"Ġ1910":13843,"ĠInit":13844,"ĠWeek":13845,"arer":13846,"ĠVlad":13847,"ĠWhose":13848,"Ġresolved":13849,"Ġremov":13850,"âĢĿ.":13851,"Ġrape":13852,"Ġendea":13853,"ĠBristol":13854,"ĠShin":13855,"Ġpretended":13856,"ĠOrthodox":13857,"Ġ78":13858,"Ġsentenced":13859,"Ġshortest":13860,"OND":13861,"Ġbarrier":13862,"Ġstarving":13863,"Ġmagazines":13864,"Ġdiaper":13865,"attering":13866,"imentary":13867,"Ġgraduation":13868,"ĠMartha":13869,"Ġblocked":13870,"ĠBurke":13871,"CHUCK":13872,"ĠBuzz":13873,"Ġcontracts":13874,"ĠCouldn":13875,"Ġimmort":13876,"ĠMaggie":13877,"ttes":13878,"minster":13879,"Ġdefending":13880,"writing":13881,"Ġpuppet":13882,"Ġplainly":13883,"Ġconsisting":13884,"ĠGerald":13885,"Ġventure":13886,"Ġsubsequent":13887,"ĠOttoman":13888,"Ġatomic":13889,"oppy":13890,"ĠArnold":13891,"Ġacknowled":13892,"Applause":13893,"Ġencounter":13894,"ĠChelsea":13895,"Ġunsuccess":13896,"Ġvampire":13897,"Ġcomprehens":13898,"Ġsocieties":13899,"ĠAboriginal":13900,"ĠCrawford":13901,"ĠHebrew":13902,"78":13903,"Har":13904,"Wait":13905,"cons":13906,"nell":13907,"oks":13908,"rater":13909,"Ġtherm":13910,"Ġwides":13911,"Ġba":13912,"Ġbrew":13913,"Ġfurious":13914,"Ġdum":13915,"eda":13916,"edom":13917,"Ġlime":13918,"ĠAub":13919,"ĠSport":13920,"ayed":13921,"ĠHOW":13922,"ĠBrew":13923,"ĠYvonne":13924,"outing":13925,"Ġmelt":13926,"ĠDur":13927,"ĠDest":13928,"ĠPearl":13929,"ĠEX":13930,"ĠEug":13931,"ĠKel":13932,"ĠKab":13933,"Ġ1916":13934,"Ġaggressive":13935,"Ġtrump":13936,"Ġleo":13937,"Ġroast":13938,"Ġbucket":13939,"ĠAlger":13940,"Ġcounts":13941,"Ġcrushed":13942,"Ġattach":13943,"restrial":13944,"ĠSean":13945,"Ġglorious":13946,"ĠSpencer":13947,"ĠAbbey":13948,"Ġconfession":13949,"ovich":13950,"archy":13951,"Ġsolved":13952,"Ġorganisms":13953,"Ġdamned":13954,"iences":13955,"ĠMcM":13956,"Ġfootballer":13957,"Ġcathedral":13958,"ĠHighway":13959,"Ġresponsibilities":13960,"Ġtravels":13961,"Ġemployee":13962,"ĠCricket":13963,"Ġpetrol":13964,"Ġattraction":13965,"ĠImagine":13966,"itarian":13967,"Ġcopyright":13968,"ĠObama":13969,"ĠSomers":13970,"Ġdemocratic":13971,"Ġgrip":13972,"ĠLeslie":13973,"Ġforbidden":13974,"Ġcomparison":13975,"Ġcrawl":13976,"Ġprecisely":13977,"ĠRoche":13978,"Ġstyles":13979,"Ġportrait":13980,"believable":13981,"Ap":13982,"BM":13983,"Dear":13984,"IRE":13985,"LO":13986,"Par":13987,"Please":13988,"hon":13989,"powder":13990,"ø":13991,"Ġtab":13992,"Ġwaking":13993,"Ġsor":13994,"Ġoak":13995,"Ġcatherine":13996,"Ġding":13997,"Ġdub":13998,"etus":13999,"uscript":14000,"Ġbean":14001,"ĠWiz":14002,"amation":14003,"ĠMing":14004,"ĠCode":14005,"riages":14006,"adt":14007,"ĠBach":14008,"Ġank":14009,"ĠNong":14010,"ĠDOWN":14011,"Ġwhatsoever":14012,"ĠEc":14013,"ĠEmer":14014,"Ġorche":14015,"Ġorgans":14016,"Ġdonkey":14017,"ĠKham":14018,"ĠInformation":14019,"mented":14020,"Ġleaning":14021,"Ġovernight":14022,"Ġimperial":14023,"Ġadequ":14024,"ccane":14025,"obe":14026,"hames":14027,"plex":14028,"Ġglow":14029,"Ġ68":14030,"Ġinterference":14031,"Ġfiled":14032,"Ġ91":14033,"ĠGetting":14034,"brid":14035,"Ġexperts":14036,"ĠFlore":14037,"Ġprofile":14038,"ĠNebraska":14039,"ĠDanish":14040,"amboo":14041,"Ġviewers":14042,"Ġdefeating":14043,"ĠGlass":14044,"Ġcivilian":14045,"Ġreducing":14046,"Ġemerged":14047,"Ġassociate":14048,"Ġremarks":14049,"Ġmeasuring":14050,"Ġmanufactured":14051,"Ġconcentrate":14052,"ĠMiranda":14053,"Ġphotographs":14054,"Ġbulk":14055,"ĠOperation":14056,"ĠMotor":14057,"Ġassassin":14058,"Ġcompassion":14059,"Ġthirsty":14060,"ĠMedicine":14061,"Ġgratitude":14062,"Ġworshi":14063,"Ġpresumably":14064,"ĠLennon":14065,"03":14066,"GN":14067,"MEN":14068,"ei":14069,"folk":14070,"iology":14071,"mia":14072,"mble":14073,"nia":14074,"Ġtails":14075,"Ġwires":14076,"Ġchampionships":14077,"anor":14078,"anch":14079,"esy":14080,"Ġpistol":14081,"icial":14082,"Ġhier":14083,"ĠSic":14084,"ente":14085,"imer":14086,"ĠHIM":14087,"ĠBess":14088,"Ġmead":14089,"ĠNOW":14090,"ĠOH":14091,"ĠOle":14092,"ĠPain":14093,"ĠGU":14094,"rave":14095,"Ġjar":14096,"Ġconvey":14097,"Ġshelf":14098,"astics":14099,"people":14100,"ĠKyle":14101,"Ġnowadays":14102,"ivan":14103,"Ġclerk":14104,"Ġoverhead":14105,"nered":14106,"Ġpartial":14107,"ffff":14108,"Ġbloom":14109,"Ġdeserted":14110,"Ġearning":14111,"Ġheadache":14112,"Ġentreprene":14113,"Ġpersonnel":14114,"Ġpassport":14115,"Ġbreeding":14116,"Ġtransaction":14117,"Ġsketch":14118,"Ġshallow":14119,"Ġreflection":14120,"ĠExcellent":14121,"Ġequipped":14122,"airo":14123,"Ġfootage":14124,"Ġhatred":14125,"Ġsolutions":14126,"Ġadvise":14127,"Ġhonored":14128,"Ġsummit":14129,"Ġmessed":14130,"ĠWasn":14131,"Ġfails":14132,"Ġmotive":14133,"Ġcultures":14134,"Ġphysician":14135,"ĠCoven":14136,"Ġvolumes":14137,"Ġinfluences":14138,"Ġparks":14139,"âĢİ?":14140,"ĠPortland":14141,"Ġfools":14142,"Ġcoastal":14143,"ĠSlow":14144,"Ġcontributed":14145,"Ġwhisper":14146,"Ġreminded":14147,"ĠInterest":14148,"Ġcuriosity":14149,"Ġbachel":14150,"Ġelementary":14151,"ĠHorace":14152,"Ġnurses":14153,"ĠTerrit":14154,"Ġdimensions":14155,"Ġcottage":14156,"ĠBuddh":14157,"Ġdragons":14158,"Ġinclined":14159,"Ġsupreme":14160,"Ġkidnapped":14161,"dinand":14162,"Ġmonastery":14163,"Ġsuspended":14164,"Ġangels":14165,"09":14166,"Ed":14167,"Some":14168,"iated":14169,"log":14170,"nard":14171,"pill":14172,"vas":14173,"Ġted":14174,"Ġmasters":14175,"Ġdug":14176,"Ġginger":14177,"ĠTend":14178,"Ġhob":14179,"ĠSide":14180,"ĠSang":14181,"ĠSkin":14182,"ĠCad":14183,"stones":14184,"ĠBol":14185,"ĠBain":14186,"ĠBear":14187,"ĠBless":14188,"Ġ-(":14189,"ĠNin":14190,"ĠNav":14191,"ĠNBC":14192,"ifting":14193,"ĠGON":14194,"Ġliar":14195,"ĠFoon":14196,"Ġdee":14197,"istant":14198,"Ġorbit":14199,"Ġconj":14200,"osom":14201,"igious":14202,"abe":14203,"Ġlikewise":14204,"arded":14205,"Ġwholly":14206,"Ġintim":14207,"Ġarray":14208,"Ġarrog":14209,"Ġenhan":14210,"angular":14211,"ĠMarian":14212,"Ġaccum":14213,"Ġpresidency":14214,"lier":14215,"Ġmatt":14216,"Ġ800":14217,"ĠCarm":14218,"Ġ96":14219,"Ġ97":14220,"Ġmodified":14221,"Ġweekly":14222,"Ġfreeze":14223,"ĠWithin":14224,"ĠPeru":14225,"Ġarriving":14226,"ĠJulian":14227,"Ġyelling":14228,"Ġhistorians":14229,"Ġdeclare":14230,"üh":14231,"Ġbiology":14232,"ĠKenta":14233,"minute":14234,"Ġescort":14235,"Ġducks":14236,"Ġpilgrim":14237,"ĠColumbus":14238,"Ġliquor":14239,"Ġdetailed":14240,"Ġshells":14241,"Ġframework":14242,"Ġmathematical":14243,"ĠEconomics":14244,"Ġfarewell":14245,"ĠLogan":14246,"ĠRussell":14247,"Ġcancelled":14248,"Ġqueue":14249,"Ġceremonies":14250,"Ġtherapy":14251,"SIGHS":14252,"list":14253,"Ġwider":14254,"Ġcavalry":14255,"Ġyer":14256,"Ġgor":14257,"ĠTab":14258,"ĠTIM":14259,"Ġhorm":14260,"Ġhem":14261,"Ġhex":14262,"ĠWELL":14263,"ĠHamm":14264,"ĠMunicip":14265,"ĠPrest":14266,"ĠLore":14267,"ĠList":14268,"ĠLiving":14269,"ĠLanc":14270,"Ġjelly":14271,"ĠEllen":14272,"Ġdeeds":14273,"iels":14274,"âĢľ":14275,"Ġproven":14276,"Ġvap":14277,"ĠStri":14278,"ĠStrange":14279,"plant":14280,"avid":14281,"ictions":14282,"Ġnevertheless":14283,"beat":14284,"Ġcrust":14285,"Ġchef":14286,"airy":14287,"ĠIndies":14288,"Ġemail":14289,"ĠScandin":14290,"Ġ72":14291,"Ġ73":14292,"Ġpossibilities":14293,"Ġequations":14294,"eyed":14295,"Ġfreezing":14296,"ORGE":14297,"Ġlayers":14298,"Ġreplacing":14299,"Ġnatives":14300,"Ġconnections":14301,"Ġhyper":14302,"Ġhosts":14303,"Ġclosest":14304,"Ġauton":14305,"Ġauthent":14306,"Ġ1902":14307,"ĠPalm":14308,"Ġpaths":14309,"ourage":14310,"Ġpetition":14311,"strong":14312,"Ġcruise":14313,"flies":14314,"Ġcorrectly":14315,"ĠBagh":14316,"Ġfrag":14317,"Ġincredibly":14318,"Ġbeasts":14319,"Ġinfections":14320,"Ġpublishing":14321,"ĠJosé":14322,"Ġcoordinates":14323,"ĠCommonwealth":14324,"Ġsavage":14325,"Ġclergy":14326,"ĠABOUT":14327,"ĠBengal":14328,"Ġrebellion":14329,"Ġbicycle":14330,"ĠHoseyn":14331,"06":14332,"72":14333,"900":14334,"IP":14335,"Japan":14336,"]:":14337,"aving":14338,"fol":14339,"mans":14340,"rades":14341,"tar":14342,"tail":14343,"Ġshat":14344,"Ġsciences":14345,"onies":14346,"Ġlan":14347,"Ġlined":14348,"Ġgown":14349,"Ġgoose":14350,"ĠTerm":14351,"Ġheating":14352,"ĠAgr":14353,"ĠAFC":14354,"ĠAaron":14355,"ĠWu":14356,"ĠHom":14357,"ĠHence":14358,"Ġstub":14359,"ĠNana":14360,"ĠDy":14361,"ĠDoub":14362,"ĠPie":14363,"ĠLoc":14364,"Ġknot":14365,"ĠFra":14366,"ĠHeming":14367,"Ġsober":14368,"Ġshh":14369,"essed":14370,"Ġrows":14371,"Ġheritage":14372,"respect":14373,"ĠSoft":14374,"Ġspill":14375,"Ġspider":14376,"Ġclam":14377,"arel":14378,"Ġamus":14379,"urned":14380,"Ġperf":14381,"Ġschem":14382,"Ġdeserved":14383,"Ġnightmare":14384,"ĠArchie":14385,"ĠArctic":14386,"Ġmonk":14387,"Ġinstalled":14388,"Ġfarming":14389,"Ġhumour":14390,"ĠPrim":14391,"Ġskip":14392,"Ġmoderate":14393,"Ġshorts":14394,"ĠEmerson":14395,"hyd":14396,"ĠMichel":14397,"ĠEdgar":14398,"ĠWestminster":14399,"Ġmischief":14400,"Ġcommands":14401,"Ġfears":14402,"Ġhostile":14403,"Ġboarding":14404,"Ġhunts":14405,"Ġknocking":14406,"ĠNevertheless":14407,"ĠNatalie":14408,"Ġprede":14409,"ĠArabic":14410,"Ġrenov":14411,"Ġtiming":14412,"Ġcomplications":14413,"ĠModel":14414,"Ġconquer":14415,"ĠVietnamese":14416,"Ġwandered":14417,"otype":14418,"ĠPromise":14419,"Ġutterly":14420,"GRUNTING":14421,"ĠYugoslavia":14422,"onymous":14423,"ĠJenna":14424,"Ġsteadily":14425,"ĠKurdish":14426,"Ġwarrior":14427,"Ġnigga":14428,"ĠDiamond":14429,"Ġcertificate":14430,"ĠAnswer":14431,"Ġpneumonia":14432,"ĠWalsh":14433,"ĠSalzburg":14434,"\":":14435,"01":14436,"52":14437,"Cor":14438,"Hi":14439,"Je":14440,"Jack":14441,"east":14442,"kets":14443,"pread":14444,"sl":14445,"would":14446,"wig":14447,"rection":14448,"erness":14449,"isle":14450,"isations":14451,"Ġchi":14452,"Ġlords":14453,"ĠTag":14454,"icity":14455,"ĠSS":14456,"ĠSCH":14457,"ĠSalem":14458,"Ġeut":14459,"ĠMitch":14460,"ĠMiles":14461,"Ġfork":14462,"stro":14463,"ĠBali":14464,"Ġster":14465,"Ġstall":14466,"Ġkettle":14467,"urst":14468,"ĠNit":14469,"ĠDID":14470,"illance":14471,"chy":14472,"church":14473,"ĠGR":14474,"ĠGosp":14475,"ĠGhost":14476,"ĠLav":14477,"ĠLamb":14478,"opes":14479,"ĠEyes":14480,"Ġcans":14481,"umed":14482,"Ġconsole":14483,"Ġplaint":14484,"inky":14485,"Ġvine":14486,"ĠStupid":14487,"oughs":14488,"Ġoffs":14489,"Ġquart":14490,"Ġenable":14491,"oyal":14492,"acht":14493,"Ġhappier":14494,"Ġchill":14495,"ĠBeck":14496,"Ġreluct":14497,"Ġelbow":14498,"Ġboards":14499,"Ġmetaph":14500,"oka":14501,"ĠLegend":14502,"shin":14503,"Ġsolvent":14504,"Ġawoke":14505,"Ġvisitor":14506,"Ġblacksmith":14507,"Ġtemples":14508,"ĠPerform":14509,"ĠSyl":14510,"Ġdinosaur":14511,"Ġdebuted":14512,"ĠPaulie":14513,"Ġeconomics":14514,"Ġautumn":14515,"Ġrainforest":14516,"ĠFinance":14517,"ĠTurks":14518,"ĠMajnun":14519,"Ġcowboy":14520,"ĠRocky":14521,"Ġheavens":14522,"ĠBelle":14523,"Ġdomain":14524,"ĠTyler":14525,"Ġterritories":14526,"books":14527,"Ġproceeded":14528,"ĠValent":14529,"Ġreinforce":14530,"Ġsamples":14531,"ĠFacebook":14532,"Ġeliminated":14533,"Ġswiftly":14534,"ĠVillage":14535,"Ġbrowser":14536,"Ġsqueeze":14537,"Ġcollapsed":14538,"Ġtweet":14539,"Ġgauge":14540,"ĠBundesliga":14541,"ĠHemingway":14542,",[":14543,"-,":14544,"IES":14545,"Pr":14546,"iator":14547,"las":14548,"listed":14549,"mns":14550,"oving":14551,"oise":14552,"uated":14553,"Ġsaints":14554,"Ġcited":14555,"Ġdil":14556,"Ġtoe":14557,"Ġinward":14558,"ĠTaking":14559,"Ġheal":14560,"ĠSard":14561,"Ġretained":14562,"uto":14563,"lder":14564,"Ġwears":14565,"ĠCob":14566,"ĠChampions":14567,"ĠChamber":14568,"riers":14569,"stration":14570,"Ġdose":14571,"ĠGT":14572,"ĠGaga":14573,"ĠEaster":14574,"Ġsod":14575,"Ġshipping":14576,"ĠKor":14577,"Ġmanuscript":14578,"ousy":14579,"ĠIng":14580,"Ġenforce":14581,"Ġcoaching":14582,"Ġcompelled":14583,"Ġunple":14584,"Ġpoems":14585,"ĠChop":14586,"Ġcarb":14587,"ixed":14588,"ĠAlliance":14589,"ĠCanon":14590,"ĠCanal":14591,"Ġfarms":14592,"oko":14593,"Ġhardware":14594,"Ġ89":14595,"INGS":14596,"Ġ94":14597,"Ġrefriger":14598,"Ġcontinually":14599,"ikh":14600,"ĠPetty":14601,"Ġcommunist":14602,"Ġbehold":14603,"coat":14604,"ĠBarcel":14605,"Ġapproaches":14606,"Ġdepartments":14607,"Ġcompeting":14608,"ĠANY":14609,"Ġsensible":14610,"suit":14611,"Ġsettlements":14612,"Ġcomplaints":14613,"ĠMilitary":14614,"Ġconversations":14615,"OST":14616,"ĠHasan":14617,"ĠÎ¥":14618,"Ġcoalition":14619,"ĠEsther":14620,"Ġmortal":14621,"Phil":14622,"Ġfossils":14623,"ĠCameron":14624,"Ġinherited":14625,"Ġcoincidence":14626,"Ġdynamic":14627,"Ġluxury":14628,"ĠNCAA":14629,"ĠVenezuela":14630,"ĠSophia":14631,"Cap":14632,"Ge":14633,"GRO":14634,"bag":14635,"even":14636,"election":14637,"ih":14638,"iott":14639,"inery":14640,"Ġwiped":14641,"Ġsul":14642,"Ġsaint":14643,"erre":14644,"Ġpuff":14645,"Ġpengu":14646,"Ġlust":14647,"Ġlakes":14648,"asa":14649,"iche":14650,"icious":14651,"Ġhears":14652,"ĠWong":14653,"acular":14654,"ĠMou":14655,"ĠMut":14656,"ĠCR":14657,"ĠCreat":14658,"ĠCale":14659,"ĠCelt":14660,"ĠCOME":14661,"rolled":14662,"ĠBri":14663,"ĠYears":14664,"ĠNep":14665,"ĠDonna":14666,"ĠPowell":14667,"ĠGust":14668,"ĠRah":14669,"ources":14670,"qual":14671,"Ġsafer":14672,"Ġusage":14673,"ardo":14674,"ĠKum":14675,"ĠUl":14676,"Ġintu":14677,"arettes":14678,"Ġbackup":14679,"Ġunnecess":14680,"Ġamp":14681,"Ġprick":14682,"ĠWhenever":14683,"ĠAnnie":14684,"Ġhandful":14685,"Ġshaft":14686,"Ġspecially":14687,"ĠRead":14688,"Ġrealm":14689,"ĠShr":14690,"cessor":14691,"Ġchaos":14692,"Ġlightly":14693,"Ġsincere":14694,"Ġinterrog":14695,"Ġplanets":14696,"Ġ87":14697,"atsu":14698,"ĠExpl":14699,"Ġrecordings":14700,"Ġsnap":14701,"Ġsqueak":14702,"Ġcorpse":14703,"Ġcommunications":14704,"ĠNev":14705,"Ġbarr":14706,"Ġcostume":14707,"Ġillusion":14708,"lights":14709,"Ġviewed":14710,"Ġgrandpa":14711,"ĠKeith":14712,"Ġdirectors":14713,"Ġhymn":14714,"Ġsuggesting":14715,"screen":14716,"Ġrises":14717,"Ġ1908":14718,"ĠMoreover":14719,"Ġpsychological":14720,"Ġsacrific":14721,"Ġprints":14722,"Ġprinting":14723,"Ġmoonlight":14724,"ĠFreddy":14725,"ĠRomeo":14726,"Ġvoters":14727,"Donald":14728,"Ġencouraging":14729,"Ġowing":14730,"ĠSpeaking":14731,"ĠBatman":14732,"Ġneighbours":14733,"ĠWorkers":14734,"Ġtransformed":14735,"Ġdesperately":14736,"Ġtorped":14737,"Ġinquired":14738,"Ġwhales":14739,"Ġracial":14740,"ĠTestament":14741,"Ġsurrendered":14742,"Ġarrows":14743,"ĠGlobe":14744,"Ġresidential":14745,"ĠDublin":14746,"Ġresignation":14747,"Ġorient":14748,"Ġcentimeters":14749,"Ġdoctrine":14750,"Ġanthrop":14751,"Ġsophistic":14752,"Ġphenomenon":14753,"ĠGONNA":14754,"??":14755,"CO":14756,"En":14757,"GM":14758,"July":14759,"aire":14760,"cup":14761,"gage":14762,"iast":14763,"lishing":14764,"yla":14765,"including":14766,"itating":14767,"Ġdys":14768,"Ġdivers":14769,"Ġdimin":14770,"Ġink":14771,"arity":14772,"Ġnests":14773,"ĠAV":14774,"ĠSue":14775,"Ġreass":14776,"aca":14777,"ĠHaut":14778,"ĠMach":14779,"rium":14780,"ĠLost":14781,"Ġjolly":14782,"ĠEagle":14783,"ths":14784,"ĠJab":14785,"Ġrides":14786,"Ġpluck":14787,"Ġvib":14788,"Ġtramp":14789,"Ġunity":14790,"Ġblues":14791,"Ġflock":14792,"Ġresort":14793,"ĠIsle":14794,"cester":14795,"Ġspeeches":14796,"Ġcrimin":14797,"formed":14798,"Ġrelativity":14799,"Ġ1800":14800,"Ġsupporters":14801,"ĠArd":14802,"Ġsubtle":14803,"oker":14804,"Ġfraction":14805,"Ġsongwriter":14806,"Ġmonthly":14807,"Ġstere":14808,"Ġparticle":14809,"ĠAdvent":14810,"ĠHarbor":14811,"Ġvariation":14812,"ĠCommons":14813,"Ġtreason":14814,"Ġsunlight":14815,"Ġposter":14816,"Ġcompetitive":14817,"scap":14818,"ĠQuebec":14819,"Ġhopeless":14820,"hoibi":14821,"Ġclaiming":14822,"Ġquarrel":14823,"Ġtends":14824,"Ġdecline":14825,"Ġemployer":14826,"Äģr":14827,"Ġfortnight":14828,"Ġaddresses":14829,"ĠMercury":14830,"Ġsignificantly":14831,"Ġcustoms":14832,"ĠHyde":14833,"Ġboundary":14834,"Ġmechanics":14835,"Ġderiv":14836,"Ġbothering":14837,"Ġtransportation":14838,"ĠAttorney":14839,"ĠMustang":14840,"Ġcolonial":14841,"Ġdrafted":14842,"Ġathlete":14843,"TAIN":14844,"Ġreferences":14845,"Ġdeposit":14846,"ĠHistoric":14847,"Ġelderly":14848,"Ġabsorbed":14849,"Ġvolunteers":14850,"Ġadvocate":14851,"ĠGoddamn":14852,"Ġpremiered":14853,"Ġtrembling":14854,"Ġdestroying":14855,"Ġantibiotics":14856,"Ġtemporarily":14857,"ĠMaurice":14858,"Ġingredients":14859,"British":14860,"ĠURL":14861,"Ġproposals":14862,"ĠAgric":14863,"ĠBarcelona":14864,"700":14865,"DT":14866,"Dan":14867,"June":14868,"Pol":14869,"aud":14870,"bishop":14871,"ku":14872,"nings":14873,"tra":14874,"ÏĤ":14875,"Ġtense":14876,"Ġsings":14877,"onso":14878,"isan":14879,"Ġbun":14880,"Ġmall":14881,"Ġmoth":14882,"atu":14883,"Ġnavy":14884,"ĠTournament":14885,"ĠThames":14886,"Ġheck":14887,"user":14888,"iday":14889,"ĠHBO":14890,"ĠCult":14891,"selling":14892,"ĠDR":14893,"ĠDim":14894,"ĠPack":14895,"Ġsegment":14896,"Ġ\"\".":14897,"ĠGul":14898,"ĠLET":14899,"ĠRow":14900,"oline":14901,"Ġneur":14902,"ells":14903,"istocr":14904,"ieves":14905,"Ġwheat":14906,"Ġvag":14907,"ĠUH":14908,"Ġaggreg":14909,"Ġquery":14910,"Ġroses":14911,"uba":14912,"ressing":14913,"avil":14914,"Ġflank":14915,"Ġflashed":14916,"ĠChin":14917,"Ġcarn":14918,"Ġcarr":14919,"avender":14920,"ĠMarine":14921,"ĠDec":14922,"Ġcheat":14923,"Ġ56":14924,"Ġlighted":14925,"Ġfrust":14926,"ussia":14927,"ĠExcell":14928,"ĠExpress":14929,"Ġhurting":14930,"Ġprotests":14931,"Ġsolitary":14932,"Ġawfully":14933,"ĠTwitter":14934,"Ġprocession":14935,"Ġfreight":14936,"Ġcatal":14937,"Ġlimbs":14938,"arrison":14939,"Ġgenes":14940,"AST":14941,"Ġmasses":14942,"ĠBurg":14943,"ylon":14944,"Ġ1905":14945,"Ġprayed":14946,"ĠIranian":14947,"Ġ1869":14948,"Ġinvestigate":14949,"Ġconversion":14950,"Ġsatisfy":14951,"ĠFerdinand":14952,"ĠAnglo":14953,"Ġstruggled":14954,"Ġexclusively":14955,"Ġprogressive":14956,"osaurs":14957,"Ġunfair":14958,"Ġpassionate":14959,"Ġcommissioned":14960,"Ġintegrated":14961,"Ġrevolutionary":14962,"andalay":14963,"ĠTamil":14964,"ĠOttawa":14965,"ĠÄĢ":14966,"ĠReturn":14967,"Ġvelocity":14968,"Ġcondenser":14969,"ĠAxel":14970,"ĠSultan":14971,"Ġlandlord":14972,"Ġsyndrome":14973,"Ġlegitimate":14974,"ĠScientists":14975,"Ġvocals":14976,"ĠSallie":14977,"Ġremoval":14978,"Big":14979,"GAS":14980,"char":14981,"cule":14982,"di":14983,"eals":14984,"green":14985,"tree":14986,"why":14987,"Ġsizes":14988,"Ġfug":14989,"Ġpy":14990,"Ġlid":14991,"Ġniece":14992,"icus":14993,"Ġhee":14994,"Ġhealing":14995,"ĠSony":14996,"Ġrely":14997,"ĠCAP":14998,"style":14999,"ĠOber":15000,"ĠPRO":15001,"ĠPorter":15002,"ilies":15003,"ĠGol":15004,"ĠLay":15005,"anton":15006,"ĠRot":15007,"gered":15008,"ĠJur":15009,"ĠJava":15010,"inkle":15011,"berries":15012,"Ġintimate":15013,"ĠThunder":15014,"Ġspit":15015,"Ġspine":15016,"Ġspont":15017,"Ġleisure":15018,"Ġroar":15019,"Ġamazed":15020,"because":15021,"psy":15022,"Ġraid":15023,"Ġrelate":15024,"Ġindign":15025,"Ġindirect":15026,"ĠForces":15027,"Ġswung":15028,"Ġswords":15029,"nery":15030,"Ġdistances":15031,"ĠZoo":15032,"eredith":15033,"Ġ86":15034,"Ġgenerated":15035,"Ġcurse":15036,"ĠConcha":15037,"Ġprizes":15038,"Ġtrigger":15039,"ĠPlummer":15040,"umbers":15041,"convex":15042,"Ġrespir":15043,"Ġvillain":15044,"Ġconcerts":15045,"Ġposts":15046,"ienne":15047,"Ġfastest":15048,"Ġgrandson":15049,"Ġepic":15050,"Ġstrikes":15051,"ĠParker":15052,"Ġrisen":15053,"incinn":15054,"Ġindustries":15055,"Ġgarments":15056,"ĠÃī":15057,"Ġtaller":15058,"ĠPreviously":15059,"Ġroller":15060,"Ġchallenges":15061,"Ann":15062,"Ġtimber":15063,"ĠCathedral":15064,"Ġearnest":15065,"iasm":15066,"ĠTrevor":15067,"ĠAndrews":15068,"--------":15069,"ĠStarting":15070,"Ġvertical":15071,"ĠFemale":15072,"Ġignorance":15073,"Ġconspiracy":15074,"ĠJamaica":15075,"Ġpianist":15076,"Ġendeav":15077,"Ġwidespread":15078,"Ġbachelor":15079,"Raw":15080,"South":15081,"Woman":15082,"tor":15083,"have":15084,"Ġbade":15085,"Ġcri":15086,"Ġfres":15087,"ĠIan":15088,"ĠIike":15089,"orc":15090,"Ġdorm":15091,"Ġdense":15092,"Ġdominated":15093,"edo":15094,"Ġinex":15095,"ĠSud":15096,"ĠSalt":15097,"ĠSierra":15098,"ĠMeredith":15099,"rock":15100,"ĠBark":15101,"ĠBird":15102,"seud":15103,"Ġstating":15104,"ĠDunk":15105,"illes":15106,"ĠOft":15107,"ĠGann":15108,"ĠLucky":15109,"oping":15110,"ĠRac":15111,"ĠRoth":15112,"ĠFab":15113,"ĠFarm":15114,"ulator":15115,"Ġshiver":15116,"eland":15117,"Ġplague":15118,"ĠAndroid":15119,"inde":15120,"ĠStre":15121,"Ġtract":15122,"cials":15123,"Ġambit":15124,"Ġblah":15125,"Ġblamed":15126,"Ġguilt":15127,"oba":15128,"Ġsergeant":15129,"Ġscorn":15130,"Ġshaped":15131,"Ġcrush":15132,"ĠRein":15133,"ĠDex":15134,"Ġ53":15135,"ĠNote":15136,"ĠNotting":15137,"Ġmindfulness":15138,"Ġ82":15139,"Ġ84":15140,"Ġsorted":15141,"Ġhalfway":15142,"Ġforecast":15143,"Ġinfant":15144,"Ġ168":15145,"Ġabsent":15146,"ĠPavel":15147,"forced":15148,"Ġrespectable":15149,"Ġcomputing":15150,"Ġsusp":15151,"ĠSenior":15152,"ylum":15153,"Ġwaving":15154,"ETH":15155,"Ġfocusing":15156,"Ġaffects":15157,"ĠDelhi":15158,"ĠMikey":15159,"ĠRadhika":15160,"Ġcomplained":15161,"Ġcontribute":15162,"Art":15163,"Ġbombing":15164,"Ġalcoholic":15165,"Ġcontrad":15166,"pherd":15167,"Ġcalculate":15168,"Ġautomatic":15169,"Ġaimed":15170,"Ġwithdrew":15171,"Ġwhale":15172,"Ġconquered":15173,"ĠGregory":15174,"ĠCLARE":15175,"Ġkilometers":15176,"court":15177,"ĠMunich":15178,"Ġresearchers":15179,"Ġsubtract":15180,"Ġaffiliate":15181,"Ġhorizont":15182,"ĠWagner":15183,"Ġchimney":15184,"Ġyogurt":15185,"Ġhospitals":15186,"rastructure":15187,"Ġoatmeal":15188,"March":15189,"PR":15190,"hop":15191,"mill":15192,"offic":15193,"sized":15194,"tin":15195,"zig":15196,"ε":15197,"Ġts":15198,"Ġtad":15199,"Ġtens":15200,"erts":15201,"hay":15202,"Ġpand":15203,"Ġpussy":15204,"Ġyup":15205,"ĠToy":15206,"ĠTax":15207,"ĠSor":15208,"ĠSyn":15209,"ido":15210,"ĠWILL":15211,"ĠWOMAN":15212,"Ġwept":15213,"ĠMaking":15214,"ĠDoll":15215,"ĠDisc":15216,"ĠDodge":15217,"ĠLen":15218,"ĠLess":15219,"anth":15220,"ĠFA":15221,"ĠHend":15222,"Ġjaw":15223,"ourning":15224,"Ġsoy":15225,"Ġaltered":15226,"Ġray":15227,"igo":15228,"Ġoutstanding":15229,"Ġplug":15230,"resident":15231,"odka":15232,"akened":15233,"ĠSold":15234,"Ġtrim":15235,"ickets":15236,"Ġunions":15237,"Ġwrist":15238,"Ġshade":15239,"Ġsupplied":15240,"ĠAthens":15241,"Ġregulation":15242,"Ġ59":15243,"ologically":15244,"Ġreadily":15245,"Ġreporter":15246,"ĠTHINK":15247,"INGING":15248,"Ġ92":15249,"Ġmodest":15250,"Ġmissions":15251,"Ġsoundtrack":15252,"Ġspeakers":15253,"ĠPlant":15254,"OUND":15255,"Ġadvised":15256,"Ġadmiration":15257,"ĠReport":15258,"Ġmerc":15259,"Ġstripes":15260,"ITT":15261,"Ġhunter":15262,"Ġnecklace":15263,"Ġirregular":15264,"ĠSussex":15265,"ĠFreddie":15266,"Ġhomosexual":15267,"ÃŃn":15268,"Ġdemonstration":15269,"Ġflowing":15270,"ĠCareful":15271,"ĠMovement":15272,"Ġcousins":15273,"Ġtribut":15274,"ĠAriel":15275,"ĠRhine":15276,"Ġdescended":15277,"Ġcommitment":15278,"Ġinflamm":15279,"Ġsituated":15280,"ĠCroatia":15281,"Ġcollaboration":15282,"Ġfortunate":15283,"Ġbrigade":15284,"Ġdialogue":15285,"Ġperceived":15286,"Ġdioxide":15287,"ĠShirley":15288,"Ġsleeve":15289,"Ġmansion":15290,"ĠGEORGE":15291,"Ġacquaintance":15292,"Ġoffspring":15293,"%)":15294,"53":15295,"August":15296,"GO":15297,"aired":15298,"bear":15299,"bility":15300,"fold":15301,"jab":15302,"loss":15303,"sie":15304,"ÂĴ":15305,"ž":15306,"Ġtheoret":15307,"Ġsib":15308,"erd":15309,"hage":15310,"Ġbog":15311,"Ġbounce":15312,"Ġcel":15313,"Ġcoup":15314,"Ġfitting":15315,"Ġinvention":15316,"arin":15317,"Ġgut":15318,"ĠTA":15319,"ĠTate":15320,"ĠSire":15321,"ĠCOM":15322,"ĠCincinn":15323,"ĠBit":15324,"ĠBil":15325,"ĠBog":15326,"urring":15327,"ĠDA":15328,"ĠOst":15329,"ilian":15330,"ĠEu":15331,"Ġalarmed":15332,"Ġexclud":15333,"Ġexagger":15334,"Ġ1911":15335,"Ġarbit":15336,"iva":15337,"Ġleaned":15338,"Ġoverl":15339,"neys":15340,"Ġrod":15341,"ĠVick":15342,"ĠUniverse":15343,"ipher":15344,"Ġperil":15345,"bee":15346,"Ġsmugg":15347,"ĠBee":15348,"ĠSeems":15349,"Ġcheated":15350,"Ġformally":15351,"them":15352,"ĠLeader":15353,"Ġidle":15354,"Ġ101":15355,"Ġconfined":15356,"Ġtrips":15357,"Ġparrot":15358,"ĠPlot":15359,"Ġcoral":15360,"Ġanimation":15361,"ĠWarner":15362,"ficial":15363,"Ġchecks":15364,"Ġdevast":15365,"Ġconnects":15366,"ĠPhilos":15367,"Ġburns":15368,"Ġparked":15369,"ül":15370,"Ġexamination":15371,"ĠTravis":15372,"Ġmaintaining":15373,"ĠGarcia":15374,"Ġconsumers":15375,"Ġwrestler":15376,"Ġmathematic":15377,"Ġhydrogen":15378,"Ġinquiry":15379,"Ġdescendants":15380,"Ġrecommendation":15381,"rimination":15382,"Ġdepths":15383,"Ġastronaut":15384,"ĠInfantry":15385,"ĠBahrain":15386,"ĠOriginally":15387,"Ġfishermen":15388,"hangba":15389,"ĠHopkins":15390,"ĠCruz":15391,"Ġincorporated":15392,"Ġisolated":15393,"Ġdisturbed":15394,"Ġimprisoned":15395,"Ġdeliberately":15396,"Ġfestivals":15397,"Ġpicnic":15398,"Ġbeggar":15399,"Ġelaborate":15400,"Ġtwentieth":15401,"Robert":15402,"ĠTWO":15403,"CHUCKLES":15404,"Ġamusement":15405,"Ġschemes":15406,"51":15407,"54":15408,"59":15409,"Best":15410,"EX":15411,"QU":15412,"SW":15413,"San":15414,"UF":15415,"Was":15416,"cot":15417,"great":15418,"kan":15419,"overs":15420,"rays":15421,"wright":15422,"wife":15423,"worm":15424,"ĠØ":15425,"Ġtuck":15426,"Ġwage":15427,"Ġbald":15428,"Ġcyl":15429,"Ġdiversity":15430,"eded":15431,"ĠTib":15432,"ĠTams":15433,"icism":15434,"ĠAch":15435,"ĠSM":15436,"ĠMandalay":15437,"Ġstare":15438,"Ġsteak":15439,"ĠDod":15440,"ĠObs":15441,"olo":15442,"ĠEsp":15443,"Ġram":15444,"Ġramp":15445,"Ġrotten":15446,"oodle":15447,"Ġsaus":15448,"ĠThrow":15449,"Ġaristocr":15450,"Ġsphere":15451,"iang":15452,"Ġoverth":15453,"Ġbacked":15454,"Ġquiz":15455,"assy":15456,"Ġfees":15457,"ĠVel":15458,"auer":15459,"uckle":15460,"Ġresid":15461,"Ġresolve":15462,"Ġscold":15463,"ĠBeen":15464,"Ġmining":15465,"Ġrelating":15466,"Ġsurplus":15467,"Ġmonsters":15468,"Ġ61":15469,"Ġreads":15470,"Ġexpenses":15471,"Ġprobable":15472,"Ġtrials":15473,"Ġbasin":15474,"ĠTracy":15475,"Ġclassification":15476,"Ġstepping":15477,"Ġclearing":15478,"umbria":15479,"Ġhotels":15480,"Ġsuccessor":15481,"Ġelectro":15482,"ĠCentury":15483,"Ġtraded":15484,"Ġrespected":15485,"Ġgenre":15486,"Ġfixing":15487,"Ġcirculation":15488,"Ġnonconvex":15489,"Ġcivilians":15490,"Ġbananas":15491,"Ġ1901":15492,"Ġ1907":15493,"Ġmarrying":15494,"ĠTodd":15495,"backs":15496,"glass":15497,"ĠMontana":15498,"Ġassociations":15499,"ĠAtlantis":15500,"aptist":15501,"Ġlogical":15502,"ĠSomalia":15503,"Ġquantum":15504,"Ġtapes":15505,"ĠNaples":15506,"Ġrepeatedly":15507,"ĠAssyrians":15508,"Ġownership":15509,"Ġpersuaded":15510,"Ġsarah":15511,"Ġstrictly":15512,"Ġuncertainty":15513,"ĠUkraine":15514,"Ġconsecutive":15515,"Ġdiagram":15516,"ATTERING":15517,"Ġrabbits":15518,"Ġsophisticated":15519,"Gy":15520,"General":15521,"Pe":15522,"bot":15523,"fan":15524,"fty":15525,"faced":15526,"gus":15527,"girl":15528,"iard":15529,"jack":15530,"know":15531,"lane":15532,"table":15533,"à¸":15534,"Ġcav":15535,"Ġcham":15536,"Ġft":15537,"oral":15538,"Ġlaund":15539,"asis":15540,"asan":15541,"Ġgent":15542,"omers":15543,"ĠTill":15544,"ĠApart":15545,"ĠHerm":15546,"ĠMak":15547,"ĠCher":15548,"ĠYor":15549,"ĠNAS":15550,"Ġwhirl":15551,"ĠPH":15552,"opard":15553,"ĠRaid":15554,"ĠRoland":15555,"ĠFO":15556,"Ġneuro":15557,"Ġdeploy":15558,"ĠJed":15559,"Ġoutcome":15560,"ĠIns":15561,"Ġintestine":15562,"ĠButter":15563,"nae":15564,"ĠVe":15565,"Ġunlock":15566,"izen":15567,"Ġbloss":15568,"ateral":15569,"avi":15570,"Ġperception":15571,"Ġhomeless":15572,"ĠRegan":15573,"Ġmarble":15574,"Ġacute":15575,"Ġretail":15576,"Ġmeteor":15577,"Ġbushes":15578,"Ġcenters":15579,"Ġexpon":15580,"Ġ93":15581,"shore":15582,"ĠAhmad":15583,"Ġcorruption":15584,"ĠAdrian":15585,"ĠPresently":15586,"Ġquestioning":15587,"Ġorganize":15588,"levard":15589,"Ġpoorly":15590,"Ġsunset":15591,"Ġcompetitions":15592,"ĠRica":15593,"ĠHenri":15594,"adeshi":15595,"Ġbankrupt":15596,"ĠChange":15597,"Ġtastes":15598,"Ġmorality":15599,"Ġcrucial":15600,"Ġstorms":15601,"ĠArtie":15602,"ĠITV":15603,"Ġaccidentally":15604,"ĠLovely":15605,"ĠMilan":15606,"Ġbroadcasting":15607,"Ġstreams":15608,"ĠOwen":15609,"Ġfloat":15610,"profit":15611,"Ġnomi":15612,"Ġvirtually":15613,"Ġcheerful":15614,"ĠRichmond":15615,"Ġdiesel":15616,"ĠConstruction":15617,"Ġeagerly":15618,"Ġmentally":15619,"Ġbitterly":15620,"Ġinvolvement":15621,"Ġupdate":15622,"Ġemphasis":15623,"omeday":15624,"Ġpapa":15625,"Ġcrayon":15626,"ĠAlexandria":15627,"Ġinspector":15628,"Ġintersection":15629,"ĠMiyamoto":15630,"imensional":15631,"Ġbrutal":15632,"Ġauction":15633,"ĠPierre":15634,"Ġrhomb":15635,"olleyball":15636,"ĠPhoenix":15637,"Ġlantern":15638,"Ġunpleasant":15639,"ĠDunkirk":15640,"ĠNottingham":15641,"56":15642,"January":15643,"LM":15644,"Our":15645,"PEN":15646,"VEN":15647,"gam":15648,"mund":15649,"pin":15650,"rans":15651,"uana":15652,"wald":15653,"Ãī":15654,"Ġá":15655,"Ġtasks":15656,"rec":15657,"ref":15658,"Ġcher":15659,"Ġfuss":15660,"Ġfitted":15661,"omena":15662,"Ġnoun":15663,"ethe":15664,"ĠAirlines":15665,"ĠSie":15666,"ĠSOME":15667,"idal":15668,"lda":15669,"ĠHok":15670,"ĠCany":15671,"ĠChess":15672,"ĠCairo":15673,"stead":15674,"Ġstored":15675,"Ġants":15676,"Ġdod":15677,"ĠDays":15678,"terstock":15679,"ĠOil":15680,"ĠPey":15681,"Ġseals":15682,"ĠGoth":15683,"ĠFortun":15684,"unity":15685,"ĠEner":15686,"Ġrated":15687,"oso":15688,"ema":15689,"ackDown":15690,"resa":15691,"oding":15692,"ĠUsing":15693,"ĠInvest":15694,"Ġspotted":15695,"Ġoffense":15696,"ĠVII":15697,"Ġcompact":15698,"ubby":15699,"Ġcontamin":15700,"Ġprest":15701,"Ġresur":15702,"ĠAssoci":15703,"Ġendure":15704,"Ġtraitor":15705,"ĠSevent":15706,"Ġsubstitute":15707,"Ġadds":15708,"Ġ62":15709,"Ġcaut":15710,"ĠClar":15711,"ĠLex":15712,"Ġrestra":15713,"Ġinterface":15714,"Ġrepro":15715,"ĠProvin":15716,"Ġextrater":15717,"Ġ74":15718,"Ġprovisions":15719,"Ġriot":15720,"pending":15721,"Ġcorrected":15722,"ĠAdolf":15723,"ĠShad":15724,"Ġstrongest":15725,"Ġstrain":15726,"Ġprofessors":15727,"Ġdepict":15728,"ĠSwan":15729,"ĠSyriac":15730,"Ġpotatoes":15731,"Ġseparately":15732,"ĠRegiment":15733,"Ġsalad":15734,"Ġdeclined":15735,"ĠWilbur":15736,"Ġ1861":15737,"Ġchickens":15738,"ĠHonestly":15739,"ĠMelissa":15740,"Ġattending":15741,"Ġ1870":15742,"ĠStudies":15743,"Ġignored":15744,"Ġowl":15745,"Ġbastards":15746,"Ġscreamed":15747,"Ġcolonies":15748,"Ġdisappointment":15749,"Nothing":15750,"ĠDefinitely":15751,"Ġwitchcraft":15752,"ĠGaelic":15753,"Ġsufficiently":15754,"ĠBuddhist":15755,"Ġsanct":15756,"ĠLegisl":15757,"Ġscholarship":15758,"Ġjewels":15759,"ĠPotter":15760,"Ġdominant":15761,"Ġindicates":15762,"Ġkilometres":15763,"Ġinherit":15764,"ĠCambodia":15765,"Ġeyew":15766,"ĠOakland":15767,"Ġenthusiasm":15768,"Ġoffended":15769,"Ġsurveillance":15770,"Ġcondemned":15771,"Ġdisplays":15772,"children":15773,"Ġsubstantial":15774,"ĠRavens":15775,"elligence":15776,"Ġdatabase":15777,"Ġmattress":15778,"ĠCincinnati":15779,"ĠTamsui":15780,"##":15781,"DER":15782,"Pad":15783,"bling":15784,"eyes":15785,"forth":15786,"iy":15787,"mag":15788,"puts":15789,"rust":15790,"rates":15791,"yx":15792,"hend":15793,"herent":15794,"erie":15795,"half":15796,"Ġboun":15797,"Ġcunning":15798,"Ġfag":15799,"Ġdiverse":15800,"atisf":15801,"ĠTouch":15802,"Ġheated":15803,"acter":15804,"ĠHER":15805,"ĠMap":15806,"rived":15807,"ctica":15808,"ĠDrew":15809,"ĠDuc":15810,"ĠPink":15811,"ĠGhar":15812,"ĠLanguage":15813,"ĠFaw":15814,"ĠFOUR":15815,"eap":15816,"Ġ().":15817,"igible":15818,"Ġworm":15819,"Ġanyhow":15820,"ĠButt":15821,"soon":15822,"Ġclaws":15823,"ountered":15824,"ĠVIII":15825,"Ġcoc":15826,"Ġcompat":15827,"Ġcompute":15828,"Ġblog":15829,"cled":15830,"obi":15831,"Ġsmack":15832,"ĠMarx":15833,"Ġtrauma":15834,"Ġindul":15835,"Ġharass":15836,"Ġinval":15837,"Ġmetropolitan":15838,"ĠArena":15839,"ieties":15840,"Ġinterval":15841,"Ġfilthy":15842,"byter":15843,"Ġinfrastructure":15844,"Ġdevelopments":15845,"ĠTrad":15846,"Ġvalve":15847,"ĠMission":15848,"Ġexpectations":15849,"ĠEden":15850,"Ġreplacement":15851,"Ġpracticed":15852,"Ġrespects":15853,"ĠFrankie":15854,"AME":15855,"ĠBravo":15856,"Ġ1906":15857,"Ġattempting":15858,"Ġrobbed":15859,"EAH":15860,"ustomed":15861,"Ġessence":15862,"ĠPrep":15863,"ĠShutterstock":15864,"Ġcredits":15865,"ĠFreedom":15866,"Ġyawn":15867,"ĠHawkins":15868,"Ġmuttered":15869,"Ġtargets":15870,"Ġambition":15871,"Ġhastily":15872,"Ġassuming":15873,"keeping":15874,"Ġneighbouring":15875,"Ġtalented":15876,"Ġcigar":15877,"Ġcigarettes":15878,"Ġinitiative":15879,"Ġinfected":15880,"Ġparadox":15881,"Ġtossed":15882,"Ġpipes":15883,"Ġthriller":15884,"ĠBennet":15885,"ĠGabriel":15886,"Ġscenario":15887,"Ġwarehouse":15888,"Ġimpatient":15889,"Ġwretched":15890,"ĠCrystal":15891,"Ġcustody":15892,"ĠBroadcasting":15893,"minarayan":15894,"ĠCanyon":15895,"CR":15896,"Mal":15897,"Right":15898,"front":15899,"grand":15900,"iago":15901,"lore":15902,"pit":15903,"yon":15904,"zel":15905,"áº":15906,"Ġwig":15907,"rera":15908,"Ġsip":15909,"ishi":15910,"Ġom":15911,"Ġdamp":15912,"Ġpets":15913,"Ġlur":15914,"Ġgard":15915,"Ġgee":15916,"Ġnope":15917,"ĠTot":15918,"ĠActor":15919,"ĠSug":15920,"ĠSaints":15921,"aying":15922,"ĠWen":15923,"ldom":15924,"ims":15925,"acea":15926,"amas":15927,"ĠCic":15928,"ĠBrent":15929,"ĠBels":15930,"ĠYEAH":15931,"urred":15932,"cht":15933,"ĠLilly":15934,"anto":15935,"ĠRing":15936,"ĠRice":15937,"ĠRug":15938,"ĠEisen":15939,"Ġdeed":15940,"Ġdeity":15941,"ĠAndersen":15942,"Ġexca":15943,"Ġvivid":15944,"aparte":15945,"ĠWeather":15946,"Ġtheirs":15947,"Ġgrin":15948,"avian":15949,"Ġmeanwhile":15950,"ĠChp":15951,"Ġerrors":15952,"Ġrelics":15953,"Ġregime":15954,"liest":15955,"INA":15956,"Ġmotherfucker":15957,"ĠQaleh":15958,"Ġcaf":15959,"ĠAbu":15960,"Ġconfusing":15961,"idding":15962,"Ġsleeps":15963,"Ġhats":15964,"ĠManager":15965,"Ġquestioned":15966,"Ġdevotion":15967,"Ġlowered":15968,"working":15969,"Ġradar":15970,"loaded":15971,"Ġinvestors":15972,"zzar":15973,"Ġrisks":15974,"Ġnecessity":15975,"Ġvoluntary":15976,"Ġencountered":15977,"Ġpacking":15978,"ĠPalmer":15979,"Ġapology":15980,"Ġpsychology":15981,"Ġmicros":15982,"Ġlifestyle":15983,"ĠDaily":15984,"ĠMontreal":15985,"ót":15986,"Ġranking":15987,"ĠTurner":15988,"ĠMustafa":15989,"Ġpremises":15990,"Ġwebsites":15991,"Ġgreedy":15992,"ĠCirc":15993,"Ġunlikely":15994,"ĠElectric":15995,"Ġdeceased":15996,"ĠMorton":15997,"Ġabdomen":15998,"Ġdischarge":15999} \ No newline at end of file